* {
	box-sizing: border-box;
}

:root {
	--page-bg: #1e1e1e;
	--panel-bg: #f7f3e8;
	--panel-border: rgba(74, 95, 35, 0.35);
	--header-bg: #566d24;
	--header-accent: #b8c28d;
	--text: #25301b;
	--title: #5a7129;
	--muted: #5d614f;
	--shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

html {
	scroll-behavior: smooth;
    scrollbar-width: none;
	scroll-padding-top: 40px;
}

body {
	margin: 0;
	min-height: 100vh;
	width: 100%;
	padding: 0;
	background:
		radial-gradient(circle at top left, rgba(92, 112, 46, 0.28), transparent 35%),
		radial-gradient(circle at bottom right, rgba(181, 153, 92, 0.15), transparent 28%),
		var(--page-bg);
	color: var(--text);
	font-family: "Poppins", system-ui, sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.page-shell {
	width: 100%;
	min-height: 100vh;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 244, 0.98));
	border: 0;
	box-shadow: var(--shadow);
	overflow: visible;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 8px 18px;
	background: linear-gradient(180deg, #5f7629 0%, var(--header-bg) 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-shell {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	margin-left: auto;
	position: relative;
}

.brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 0;
	flex: 0 0 auto;
}

.brand-logo {
	display: block;
/* 	width: clamp(88px, 10vw, 132px); */
	height: 5rem;
    aspect-ratio: 1-1;
	object-fit: contain;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
	transition: transform 180ms ease, filter 180ms ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
	transform: translateY(-1px) scale(1.02);
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 26px;
	font-family: "Aboreto", Georgia, serif;
	font-size: clamp(1rem, 1.5vw, 1.16rem);
    font-size: 0.8rem !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-nav a {
	position: relative;
	color: rgba(255, 240, 190, 0.92);
	padding: 10px 0;
	transition: color 160ms ease, transform 160ms ease;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 46px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(255, 247, 220, 0.26);
	border-radius: 12px;
	background: rgba(38, 49, 15, 0.16);
	cursor: pointer;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.nav-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: #fff2cf;
	transition: transform 220ms ease, opacity 180ms ease;
	transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1),
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2),
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0.2);
}

.nav-toggle.is-open span:nth-child(3),
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
	transform: translateY(-1px);
	background: rgba(38, 49, 15, 0.26);
	border-color: rgba(255, 247, 220, 0.42);
}

/* Line under hover of nav options */
.site-nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 3px;
	width: 65%;
	height: 1px;
	background: currentColor;
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: #fff7dc;
	transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: translateX(-50%) scaleX(1);
}

.hero {
	display: grid;
	grid-template-columns: minmax(280px, 43%) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 72px);
	align-items: center;
	padding: clamp(18px, 3vw, 40px) clamp(18px, 4vw, 40px) clamp(28px, 5vw, 48px);
	scroll-margin-top: 78px;
}

.hero-media {
	min-height: 560px;
	max-width: 100%;
	overflow: hidden;
	background: #dde3cd;
	border: 1px solid rgba(71, 88, 39, 0.14);
	box-shadow: 0 16px 40px rgba(41, 53, 20, 0.18);
}

.hero-media img {
    cursor: pointer;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 560px;
	object-fit: cover;
	object-position: center;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px 10px;
}

.eyebrow {
	margin: 0 0 6px;
	font-family: "Cinzel Decorative", Georgia, serif;
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.hero h1 {
	margin: 0;
	font-family: "Abril Fatface", Georgia, serif;
	font-size: clamp(3rem, 5.1vw, 5.25rem);
	line-height: 0.95;
	letter-spacing: 0.01em;
	color: var(--title);
	text-wrap: balance;
	font-weight: 400;
}

.hero-copy {
	margin: 16px 0 0;
	max-width: 28ch;
	font-family: "Cinzel Decorative", system-ui, sans-serif;
	font-size: clamp(1.15rem, 1.6vw, 1.6rem);
	line-height: 1.35;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--text);
}

.scroll-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 700ms ease, transform 700ms ease;
	will-change: opacity, transform;
}

.scroll-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.about-section {
	padding: clamp(34px, 5vw, 72px) clamp(18px, 4vw, 40px) clamp(44px, 6vw, 84px);
	border-top: 1px solid rgba(93, 112, 51, 0.08);
	border-bottom: 1px solid rgba(93, 112, 51, 0.08);
	scroll-margin-top: 78px;
}

.section-label {
    min-width: 100%;
	display: inline-flex;
	justify-content: center;
	margin: 0;
    margin-bottom: 20px;
	padding: 8px 16px;
	border-radius: 999px;
	color: var(--title);
	font-family: "Abril Fatface", Georgia, serif;
	font-size: 2.5rem;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.about-grid {
	display: grid;
    text-align: center;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: start;
	max-width: 1180px;
	margin: 0 auto;
}

.about-copy {
	max-width: 68ch;
}

.section-kicker {
	margin: 0 0 10px;
	font-family: "Poppin", Georgia, serif;
	font-size: 0.92rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.about-copy h2 {
	margin: 0 0 18px;
	font-family: "Abril Fatface", Georgia, serif;
/* 	font-size: clamp(2.15rem, 4vw, 3.8rem); */
    font-size: 1.7rem;
	line-height: 0.98;
	font-weight: 100;
	color: var(--title);
}

.about-copy p {
    text-align: center;
	margin: 0 0 14px;
	font-size: clamp(1rem, 1.2vw, 1.08rem);
	line-height: 1.8;
	color: var(--text);
}

.about-card-row {
	display: grid;
	gap: 14px;
}

.about-card {
	display: grid;
	gap: 8px;
	padding: 18px 18px 20px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(93, 112, 51, 0.12);
	border-radius: 18px;
	box-shadow: 0 14px 30px rgba(66, 73, 37, 0.08);
	backdrop-filter: blur(6px);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-card:hover,
.about-card:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(66, 73, 37, 0.12);
	border-color: rgba(93, 112, 51, 0.2);
}

.about-card span {
	font-family: "Aboreto", Georgia, serif;
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--title);
}

.about-card strong {
	font-family: "Poppins", system-ui, sans-serif;
	font-size: 1rem;
	line-height: 1.55;
	font-weight: 500;
	color: var(--text);
}

.products-section {
	padding: clamp(32px, 5vw, 64px) clamp(18px, 4vw, 40px) clamp(52px, 6vw, 80px);
	border-top: 1px solid rgba(93, 112, 51, 0.08);
	scroll-margin-top: 78px;
}

.products-title {
	margin: 0;
	text-align: center;
	font-family: "Abril Fatface", Georgia, serif;
	font-weight: 400;
	font-size: clamp(2rem, 3.6vw, 3.2rem);
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--title);
}

.products-subtitle {
	margin: 10px 0 0;
	text-align: center;
	font-size: clamp(0.95rem, 1.2vw, 1.08rem);
	color: var(--muted);
}

.products-toolbar {
	display: grid;
	justify-items: center;
	gap: 8px;
	margin: 22px 0 24px;
}

.products-controls {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px;
	gap: 12px;
	width: min(100%, 580px);
}

.search-label {
    font-family:"Cinzel", Georgia, serif;;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

#productSearchInput {
	width: 100%;
	height: 44px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid rgba(86, 109, 36, 0.22);
	background: #f5f2e8;
	color: var(--text);
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

#productSearchInput:focus {
	border-color: rgba(86, 109, 36, 0.48);
	box-shadow: 0 0 0 3px rgba(86, 109, 36, 0.13);
	background: #fffdf7;
}

#productTypeSelect {
	width: 100%;
	height: 44px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgba(86, 109, 36, 0.22);
	background: #f5f2e8;
	color: var(--text);
	text-transform: capitalize;
	outline: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

#productTypeSelect:focus {
	border-color: rgba(86, 109, 36, 0.48);
	box-shadow: 0 0 0 3px rgba(86, 109, 36, 0.13);
	background: #fffdf7;
}

#productGrid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 18px;
	align-items: stretch;
	max-width: 1100px;
	margin: 0 auto;
}

.product-card {
	display: grid;
	gap: 8px;
	padding: 12px;
	background: #eadcb1;
	border: 1px solid rgba(86, 109, 36, 0.16);
	border-radius: 2px;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 18px rgba(59, 64, 34, 0.12);
	border-color: rgba(86, 109, 36, 0.28);
}

.product-card-image-wrap {
	overflow: hidden;
	background: #d9d9d9;
	border: 1px solid rgba(0, 0, 0, 0.07);
}

.product-card-image {
	display: block;
	width: 100%;
	height: 95px;
	object-fit: cover;
}

.product-card h3 {
	margin: 2px 0 0;
	font-size: 0.79rem;
	text-align: center;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.product-card p {
	margin: 0;
	text-align: center;
	font-size: 0.74rem;
	text-transform: uppercase;
}

.product-price {
	font-size: 0.9rem;
	font-weight: 600;
	color: #25301b;
}

.qty-row {
	display: inline-flex;
	justify-self: center;
	align-items: center;
	gap: 8px;
	font-size: 0.72rem;
	text-transform: uppercase;
	color: var(--muted);
}

.qty-row input {
	width: 56px;
	height: 28px;
	padding: 0 6px;
	border: 1px solid rgba(86, 109, 36, 0.3);
	border-radius: 6px;
	background: #fffdf8;
	color: var(--text);
	text-align: center;
}

.purchase-btn {
	justify-self: center;
	border: 0;
	padding: 6px 14px;
	border-radius: 6px;
	background: #4f6a2a;
	color: #fff6d9;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: filter 160ms ease, transform 160ms ease;
}

.purchase-btn:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}

.product-empty-state {
	grid-column: 1 / -1;
	padding: 34px 16px;
	text-align: center;
	border: 1px dashed rgba(86, 109, 36, 0.25);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.64);
}

.product-empty-state h3 {
	margin: 0;
	font-family: "Cinzel Decorative", Georgia, serif;
	font-size: 1.2rem;
	color: var(--title);
}

.product-empty-state p {
	margin: 8px 0 0;
	color: var(--muted);
}

.gallery-section {
	padding: clamp(32px, 5vw, 64px) clamp(18px, 4vw, 40px) clamp(52px, 6vw, 86px);
	border-top: 1px solid rgba(93, 112, 51, 0.08);
	scroll-margin-top: 78px;
}

.gallery-title {
	margin: 0;
	text-align: center;
	font-family: "Abril Fatface", Georgia, serif;
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--title);
}

.gallery-subtitle {
	margin: 10px auto 22px;
	max-width: 52ch;
	text-align: center;
	font-size: clamp(0.95rem, 1.2vw, 1.06rem);
	line-height: 1.5;
	color: var(--muted);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	max-width: 1120px;
	margin: 0 auto;
}

.gallery-grid img {
	display: block;
    cursor: pointer;
	width: 100%;
	height: 220px;
	object-fit: cover;
	background: #d4d4d4;
	border: 1px solid rgba(0, 0, 0, 0.08);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-grid img:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(47, 54, 25, 0.14);
}

.blog-section {
	padding: clamp(32px, 5vw, 64px) clamp(18px, 4vw, 40px) clamp(52px, 6vw, 86px);
	border-top: 1px solid rgba(93, 112, 51, 0.08);
	scroll-margin-top: 78px;
}

.blog-title {
	margin: 0 0 16px;
	text-align: center;
	font-family: "Abril Fatface", Georgia, serif;
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--title);
}

.blog-feature {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr);
	gap: clamp(18px, 3vw, 34px);
	align-items: stretch;
	max-width: 1120px;
	margin: 0 auto;
	padding: 14px;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(93, 112, 51, 0.12);
}

.blog-copy {
	display: grid;
	align-content: center;
	gap: 12px;
	padding: clamp(10px, 2vw, 18px);
	text-align: center;
}

.blog-copy h3 {
	margin: 0;
	font-family: "Cinzel Decorative", Georgia, serif;
	font-size: clamp(1rem, 1.6vw, 1.3rem);
	line-height: 1.35;
	text-transform: uppercase;
	color: var(--title);
}

.blog-copy p {
	margin: 0;
	font-size: clamp(0.94rem, 1.1vw, 1rem);
	line-height: 1.65;
	color: var(--text);
}

.blog-source {
	font-family: "Aboreto", Georgia, serif;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	color: var(--muted);
}

.blog-image-wrap {
	min-height: 260px;
	overflow: hidden;
	background: #d7d7d7;
}

.blog-image-wrap img {
	display: block;
    cursor: pointer;
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
}

.contact-section {
	padding: clamp(32px, 5vw, 64px) clamp(18px, 4vw, 40px) clamp(52px, 6vw, 86px);
	border-top: 1px solid rgba(93, 112, 51, 0.08);
	scroll-margin-top: 78px;
}

.contact-title {
	margin: 0 0 14px;
	text-align: center;
	font-family: "Abril Fatface", Georgia, serif;
	font-size: clamp(2rem, 3.4vw, 3rem);
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--title);
}

.contact-card {
	max-width: 980px;
	margin: 0 auto;
	padding: 14px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(93, 112, 51, 0.24);
	border-radius: 12px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

#contactMessage {
	width: 100%;
	min-height: 280px;
	padding: 16px 14px;
	border: 0;
	border-radius: 8px;
	resize: vertical;
	font: inherit;
	font-size: 1rem;
	line-height: 1.5;
	background: #f7f7f7;
	color: var(--text);
	outline: none;
	box-shadow: inset 0 0 0 1px rgba(93, 112, 51, 0.35);
}

#contactMessage:focus {
	box-shadow:
		inset 0 0 0 1px rgba(93, 112, 51, 0.58),
		0 0 0 3px rgba(93, 112, 51, 0.12);
}

.contact-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 14px;
}

#whatsappSendBtn {
	border: 0;
	padding: 10px 16px;
	border-radius: 10px;
	background: #19a91d;
	color: #fff;
	font-family: "Poppins", system-ui, sans-serif;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 160ms ease, filter 160ms ease;
}

#whatsappSendBtn:hover,
#whatsappSendBtn:focus-visible {
	transform: translateY(-1px);
	filter: brightness(1.05);
}

.site-footer {
	margin-top: 22px;
	background: var(--header-bg);
	border-top: 1px solid rgba(97, 105, 83, 0.22);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.footer-columns {
	max-width: 1180px;
	margin: 0 auto;
	padding: 26px clamp(18px, 4vw, 40px);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
}

.footer-col {
	padding: 0 18px;
	border-right: 1px solid rgba(97, 105, 83, 0.18);
}

.footer-col:last-child {
	border-right: 0;
}

.footer-col h3 {
	margin: 0 0 10px;
	font-family: "poppins", Georgia, serif;
	font-size: 1rem;
	letter-spacing: 0.04em;
	color: var(--panel-bg);
	text-transform: uppercase;
}

.footer-col p {
	margin: 0 0 8px;
	font-size: 0.94rem;
	line-height: 1.6;
	color: var(--panel-bg);
}

.footer-links a {
	display: inline-flex;
	margin: 0 12px 8px 0;
	padding-bottom: 2px;
	font-size: 0.8rem;
	font-family: "poppins", Georgia, serif;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--panel-bg);
	border-bottom: 1px solid transparent;
	transition: color 160ms ease, border-color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	color: var(--header-accent);
	border-color: currentColor;
}

.footer-bottom {
	max-width: 1180px;
	margin: 0 auto;
	padding: 14px clamp(18px, 4vw, 40px) 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	border-top: 1px solid rgba(97, 105, 83, 0.16);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.86rem;
	letter-spacing: 0.03em;
	color: var(--panel-bg);
}

.footer-bottom a {
	font-size: 0.86rem;
	letter-spacing: 0.04em;
	color: var(--panel-bg);
	border-bottom: 1px solid transparent;
	transition: border-color 160ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
	border-color: currentColor;
    color: var(--header-accent);
    transition: all 200ms;
}

@media (prefers-reduced-motion: reduce) {
	.scroll-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.about-card {
		transition: none;
	}
}

@media (max-width: 900px) {
	.site-header {
		align-items: center;
	}

	.nav-shell {
		margin-left: auto;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: absolute;
		top: calc(100% + 10px);
		right: 0;
		min-width: min(320px, calc(100vw - 36px));
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px;
		background: linear-gradient(180deg, #62772c 0%, #4f6421 100%);
		border: 1px solid rgba(255, 247, 220, 0.16);
		border-radius: 18px;
		box-shadow: 0 20px 34px rgba(23, 28, 10, 0.24);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px) scale(0.98);
		transform-origin: top right;
		transition: opacity 180ms ease, transform 180ms ease;
		z-index: 20;
        text-align: center;
	}

	.site-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0) scale(1);
	}

	.site-nav a {
		opacity: 0;
		transform: translateY(-6px);
		transition:
			opacity 180ms ease,
			transform 180ms ease,
			background-color 180ms ease,
			color 180ms ease;
	}

	.site-nav.is-open a {
		opacity: 1;
		transform: translateY(0);
	}

	.site-nav.is-open a:nth-child(1) {
		transition-delay: 20ms;
	}

	.site-nav.is-open a:nth-child(2) {
		transition-delay: 50ms;
	}

	.site-nav.is-open a:nth-child(3) {
		transition-delay: 80ms;
	}

	.site-nav.is-open a:nth-child(4) {
		transition-delay: 110ms;
	}

	.site-nav.is-open a:nth-child(5) {
		transition-delay: 140ms;
	}

	.site-nav.is-open a:nth-child(6) {
		transition-delay: 170ms;
	}

	.site-nav:not(.is-open) a {
		transition-delay: 0ms;
	}

	.hero {
		grid-template-columns: 1fr;
	}

	.hero-media,
	.hero-media img {
		min-height: 380px;
	}

	.hero-content {
		padding-top: 0;
		padding-bottom: 10px;
	}

	.about-grid {
		grid-template-columns: 1fr;
	}

	.products-section {
		padding-top: 28px;
	}

	.gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.blog-feature {
		grid-template-columns: 1fr;
	}

	.contact-card {
		max-width: 100%;
	}

	.footer-columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.footer-col {
		padding: 0;
		border-right: 0;
	}

	.footer-col:nth-child(1),
	.footer-col:nth-child(2) {
		padding-bottom: 8px;
		border-bottom: 1px solid rgba(97, 105, 83, 0.16);
	}
}

@media (max-width: 560px) {
	.site-header {
		padding: 14px 14px 12px;
	}

	.site-nav {
		font-size: 0.98rem;
		gap: 0;
	}

	.site-nav a {
		padding: 14px 12px;
		border-radius: 12px;
	}

	.site-nav a::after {
		width: 30%;
	}

	.site-nav a:hover,
	.site-nav a:focus-visible {
		background: rgba(255, 247, 220, 0.08);
	}

	.hero {
		padding: 14px 14px 28px;
		gap: 20px;
		min-height: calc(100svh - 66px);
	}

	.hero-media,
	.hero-media img {
		min-height: 300px;
	}

	.hero-content {
		padding: 6px 4px 0;
	}

	.hero-copy {
		max-width: 24ch;
	}

	.about-section {
		padding: 28px 14px 56px;
	}

	.about-copy h2 {
		font-size: clamp(1.8rem, 8vw, 2.5rem);
	}

	.about-card {
		padding: 16px;
	}

	.products-toolbar {
		margin: 18px 0 20px;
	}

	.products-controls {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	#productGrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.gallery-section {
		padding: 28px 14px 56px;
	}

	.gallery-subtitle {
		margin-bottom: 16px;
	}

	.gallery-grid {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: 84%;
		grid-template-columns: none;
		gap: 10px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-padding-left: 14px;
		padding: 2px 2px 8px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.gallery-grid::-webkit-scrollbar {
		display: none;
	}

	.gallery-grid img {
		scroll-snap-align: start;
		height: 200px;
	}

	.blog-section {
		padding: 28px 14px 56px;
	}

	.blog-feature {
		gap: 12px;
		padding: 10px;
	}

	.blog-image-wrap,
	.blog-image-wrap img {
		min-height: 210px;
	}

	.contact-section {
		padding: 28px 14px 56px;
	}

	#contactMessage {
		min-height: 220px;
	}

	.contact-actions {
		justify-content: center;
	}

	.footer-columns {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.footer-col:nth-child(1),
	.footer-col:nth-child(2) {
		padding-bottom: 0;
		border-bottom: 0;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 12px;
	}
}
