/* ==========================================================================
   NextGen Industries — design system
   Warm artisan-premium: deep green + cream + gold, Fraunces / DM Sans.
   ========================================================================== */

:root {
	/* Brand */
	--green-900: #0b3d20;
	--green-700: #0e5c2f;
	--green-600: #12763c; /* core brand */
	--green-500: #1c8f4c;
	--green-wash: #e7f1ea;
	--gold: #e8a317;
	--gold-soft: #f2b705;

	/* Neutrals */
	--cream: #fbf8f2;
	--cream-deep: #f3ecdd;
	--paper: #ffffff;
	--ink: #1a1a1a;
	--ink-soft: #45514a;
	--line: #e4ddcd;

	/* Type */
	--display: "Fraunces", Georgia, "Times New Roman", serif;
	--body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	/* Space */
	--container: 1200px;
	--gutter: clamp(1.25rem, 4vw, 3rem);
	--section-y: clamp(4.5rem, 9vw, 8rem);

	--radius: 18px;
	--radius-lg: 28px;
	--shadow-sm: 0 2px 8px rgba(11, 61, 32, 0.06);
	--shadow-md: 0 14px 40px -18px rgba(11, 61, 32, 0.28);
	--shadow-lg: 0 30px 70px -30px rgba(11, 61, 32, 0.45);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
body {
	font-family: var(--body);
	color: var(--ink);
	background: var(--cream);
	line-height: 1.65;
	font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	font-family: var(--display);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.01em;
	margin: 0;
}

a { color: inherit; }

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	font-family: var(--body);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--green-600);
}
.eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--gold);
	display: inline-block;
}
.eyebrow--light { color: var(--gold-soft); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head h2 {
	font-size: clamp(2rem, 1.4rem + 2.6vw, 3.3rem);
	margin-top: 0.6rem;
}
.section-head p {
	color: var(--ink-soft);
	font-size: 1.08rem;
	margin: 1rem 0 0;
	max-width: 40rem;
}

.script,
.section-head h2 em,
.about-copy h2 em {
	font-family: var(--display);
	font-style: italic;
	font-weight: 400;
	color: var(--gold);
}
.export h2 em { font-style: italic; color: var(--gold-soft); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	font-family: var(--body);
	font-weight: 700;
	font-size: 0.98rem;
	letter-spacing: 0.01em;
	padding: 0.9em 1.6em;
	border-radius: 999px;
	border: 1.5px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--gold { background: var(--gold); color: #3a2600; box-shadow: 0 12px 26px -12px rgba(232, 163, 23, 0.8); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -14px rgba(232, 163, 23, 0.9); }
.btn--green { background: var(--green-600); color: #fff; }
.btn--green:hover { transform: translateY(-3px); background: var(--green-700); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); }
.btn--outline { border-color: var(--green-600); color: var(--green-700); }
.btn--outline:hover { background: var(--green-600); color: #fff; transform: translateY(-3px); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
	padding: 1.1rem 0;
}
.site-header.is-stuck {
	background: rgba(251, 248, 242, 0.88);
	backdrop-filter: saturate(1.4) blur(14px);
	box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(11, 61, 32, 0.5);
	padding: 0.65rem 0;
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
	font-family: var(--display);
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: -0.01em;
	transition: color 0.35s ease;
}
.brand-tag {
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 500;
	transition: color 0.35s ease;
}

.primary-nav { display: flex; align-items: center; gap: 2rem; }
.primary-nav a {
	text-decoration: none;
	font-weight: 500;
	font-size: 0.98rem;
	position: relative;
	padding: 0.2rem 0;
	transition: color 0.35s ease;
}

/* Over the dark hero (header transparent): light text */
.site-header .brand-name { color: #fff; }
.site-header .brand-tag  { color: rgba(255, 255, 255, 0.7); }
.site-header .primary-nav a { color: rgba(255, 255, 255, 0.92); }
.site-header .nav-toggle span { background: #fff; }

/* Once stuck on the cream bar: dark text */
.site-header.is-stuck .brand-name { color: var(--green-700); }
.site-header.is-stuck .brand-tag  { color: var(--ink-soft); }
.site-header.is-stuck .primary-nav a { color: var(--ink); }
.site-header.is-stuck .nav-toggle span { background: var(--green-700); }

/* Mobile drawer is always on a cream panel — keep its links + close icon dark */
body.nav-open .site-header .primary-nav a { color: var(--ink); }
body.nav-open .site-header .nav-toggle span { background: var(--green-700); }
.primary-nav a::after {
	content: "";
	position: absolute;
	left: 0; bottom: -2px;
	width: 100%; height: 2px;
	background: var(--gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.28s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 8px;
}
.nav-toggle span {
	width: 24px; height: 2px;
	background: var(--green-700);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
	position: relative;
	background:
		radial-gradient(120% 90% at 80% -10%, rgba(28, 143, 76, 0.55) 0%, transparent 55%),
		radial-gradient(90% 70% at 0% 110%, rgba(232, 163, 23, 0.22) 0%, transparent 50%),
		linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
	color: #fff;
	padding: clamp(9rem, 16vw, 13rem) 0 clamp(5rem, 9vw, 8rem);
	overflow: hidden;
	isolation: isolate;
}
.hero::after { /* grain */
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
	opacity: 0.05;
	mix-blend-mode: overlay;
	pointer-events: none;
	z-index: -1;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.45rem 1rem 0.45rem 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	font-size: 0.78rem;
	letter-spacing: 0.03em;
	font-weight: 500;
	backdrop-filter: blur(6px);
}
.hero-badge b { color: var(--gold-soft); font-weight: 700; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(232,163,23,0.25); }

.hero h1 {
	font-size: clamp(2.8rem, 1.8rem + 5vw, 5.6rem);
	font-weight: 600;
	margin: 1.4rem 0 0;
	letter-spacing: -0.02em;
}
.hero h1 .line { display: block; }
.hero-tagline {
	font-family: var(--display);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(1.5rem, 1rem + 2vw, 2.4rem);
	color: var(--gold-soft);
	margin-top: 0.2rem;
}
.hero p.lede {
	max-width: 34rem;
	margin: 1.6rem 0 2.2rem;
	font-size: 1.12rem;
	color: rgba(255, 255, 255, 0.82);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero side — bento grid of product cards */
.hero-bento {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	grid-template-areas:
		"a a b"
		"a a c"
		"d e f";
	gap: 0.75rem;
	aspect-ratio: 1 / 1;
}
.bento-a { grid-area: a; }
.bento-b { grid-area: b; }
.bento-c { grid-area: c; }
.bento-d { grid-area: d; }
.bento-e { grid-area: e; }
.bento-f { grid-area: f; }

.bento-card {
	position: relative;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 18px;
	padding: 0.9rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	text-align: center;
	text-decoration: none;
	color: var(--green-700);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.bento-badge {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: radial-gradient(circle at 40% 35%, #fff, var(--green-wash));
	border: 1px solid var(--line);
	display: grid;
	place-items: center;
	flex: none;
}
.bento-badge img { width: 26px; height: 26px; object-fit: contain; }
.bento-name { font-family: var(--display); font-weight: 600; font-size: 0.92rem; line-height: 1.15; }

/* Large feature card */
.bento-a {
	background: linear-gradient(160deg, #ffffff 0%, var(--cream-deep) 100%);
	align-items: flex-start;
	justify-content: space-between;
	text-align: left;
	padding: 1.3rem;
}
.bento-a .bento-badge { width: 76px; height: 76px; }
.bento-a .bento-badge img { width: 44px; height: 44px; }
.bento-a .bento-meta { display: flex; flex-direction: column; gap: 0.25rem; }
.bento-kicker {
	font-family: var(--body);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
}
.bento-a .bento-name { font-size: 1.5rem; }
.bento-desc { font-family: var(--body); font-size: 0.82rem; font-weight: 400; color: var(--ink-soft); line-height: 1.4; }

/* Export tag on the rice card */
.bento-tag {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background: var(--gold);
	color: #3a2600;
	font-family: var(--body);
	font-size: 0.56rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.18rem 0.45rem;
	border-radius: 999px;
}

/* Trust strip under hero */
.hero-strip {
	margin-top: clamp(3rem, 6vw, 5rem);
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.hero-strip .stat .num {
	font-family: var(--display);
	font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.6rem);
	font-weight: 600;
	color: #fff;
}
.hero-strip .stat .num span { color: var(--gold-soft); }
.hero-strip .stat .lbl {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.02em;
	margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   Section shell
   -------------------------------------------------------------------------- */
.section { padding: var(--section-y) 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}
.about-copy p { color: var(--ink-soft); font-size: 1.1rem; }
.about-copy p + p { margin-top: 1.1rem; }
.about-visual {
	position: relative;
	border-radius: var(--radius-lg);
	background:
		radial-gradient(90% 80% at 70% 15%, rgba(28,143,76,0.55), transparent 60%),
		linear-gradient(150deg, var(--green-700) 0%, var(--green-900) 100%);
	border: 1px solid var(--green-900);
	padding: clamp(2rem, 4vw, 3rem);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}
.about-visual .mark {
	width: min(240px, 60%);
	margin: 0 auto;
	filter: drop-shadow(0 20px 34px rgba(0,0,0,0.35));
}
.about-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-top: 1.6rem; }
.about-badges span {
	background: #fff;
	border: 1px solid var(--line);
	color: var(--green-700);
	font-weight: 600;
	font-size: 0.85rem;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	box-shadow: var(--shadow-sm);
}
.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}
.about-stats .cell {
	border-left: 3px solid var(--gold);
	padding-left: 1rem;
}
.about-stats .cell .num { font-family: var(--display); font-weight: 700; font-size: 1.9rem; color: var(--green-700); }
.about-stats .cell .lbl { font-size: 0.85rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Pillars (Why us)
   -------------------------------------------------------------------------- */
.pillar-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
}
.pillar {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem 1.6rem;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	position: relative;
	overflow: hidden;
}
.pillar::before {
	content: "";
	position: absolute;
	inset: auto auto 0 0;
	width: 100%; height: 4px;
	background: linear-gradient(90deg, var(--green-600), var(--gold));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
	width: 64px; height: 64px;
	border-radius: 16px;
	background: var(--green-wash);
	display: grid; place-items: center;
	margin-bottom: 1.2rem;
}
.pillar-icon img { width: 34px; height: 34px; object-fit: contain; }
.pillar h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.pillar p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* --------------------------------------------------------------------------
   Products
   -------------------------------------------------------------------------- */
.section--products { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.product-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.3rem;
}
.product-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.8rem 1.5rem;
	text-align: center;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-badge {
	width: 92px; height: 92px;
	margin: 0 auto 1.1rem;
	border-radius: 50%;
	background: radial-gradient(circle at 40% 35%, #fff, var(--green-wash));
	border: 1px solid var(--line);
	display: grid; place-items: center;
	box-shadow: inset 0 -6px 14px rgba(11,61,32,0.06);
}
.product-badge img { width: 52px; height: 52px; object-fit: contain; }
.product-card h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.product-card p { color: var(--ink-soft); font-size: 0.88rem; margin: 0; }
.product-card .tag-export {
	position: absolute;
	top: 1rem; right: 1rem;
	background: var(--gold);
	color: #3a2600;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
}

/* Category cards on the homepage link out to the filtered catalogue */
.product-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.product-card .product-card-link {
	margin-top: auto;
	padding-top: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font-family: var(--body);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	color: var(--green-600);
}
.product-card .product-card-link svg { width: 1em; height: 1em; transition: transform 0.25s ease; }
.product-card:hover .product-card-link svg { transform: translateX(3px); }
.products-cta { text-align: center; margin-top: 2.5rem; }

/* --------------------------------------------------------------------------
   All Products page (catalogue)
   -------------------------------------------------------------------------- */
.shop-head {
	background:
		radial-gradient(90% 120% at 100% 0%, rgba(232,163,23,0.22), transparent 55%),
		linear-gradient(155deg, var(--green-700), var(--green-900));
	color: #fff;
	padding: clamp(7rem, 12vw, 9.5rem) 0 clamp(2.5rem, 5vw, 4rem);
	text-align: center;
}
.shop-head h1 { font-size: clamp(2.2rem, 1.5rem + 3vw, 3.6rem); margin: 0.6rem 0 0; }
.shop-head p { color: rgba(255,255,255,0.82); max-width: 40rem; margin: 1rem auto 0; }

.shop-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}
.shop-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-filter {
	font-family: var(--body);
	font-weight: 600;
	font-size: 0.88rem;
	text-decoration: none;
	color: var(--ink-soft);
	padding: 0.5rem 1rem;
	border-radius: 999px;
	border: 1.5px solid var(--line);
	background: #fff;
	transition: all 0.2s ease;
}
.chip-filter:hover { border-color: var(--green-500); color: var(--green-700); }
.chip-filter.is-active { background: var(--green-600); border-color: var(--green-600); color: #fff; }

.shop-search {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	padding: 0.5rem 1rem;
	min-width: 240px;
}
.shop-search svg { width: 18px; height: 18px; color: var(--ink-soft); flex: none; }
.shop-search input { border: 0; outline: 0; background: none; font-family: var(--body); font-size: 0.95rem; width: 100%; }

.shop-count { font-size: 0.85rem; color: var(--ink-soft); margin: 0 0 1.2rem; }

.shop-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
}
.shop-card {
	display: flex;
	flex-direction: column;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.shop-card-media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: radial-gradient(circle at 50% 40%, #fff, var(--green-wash));
	display: grid;
	place-items: center;
	border-bottom: 1px solid var(--line);
}
.shop-card-media img { width: 58%; height: 58%; object-fit: contain; }
.shop-card-media .tag-export {
	position: absolute; top: 0.8rem; right: 0.8rem;
	background: var(--gold); color: #3a2600;
	font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
	padding: 0.25rem 0.55rem; border-radius: 999px;
}
.shop-card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.shop-card-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.shop-card-body h3 { font-size: 1.18rem; margin: 0.3rem 0 0.3rem; }
.shop-card-body p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.shop-card-foot {
	margin-top: auto;
	padding-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.shop-card .price { font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--green-700); }
.shop-card .price-ask { font-family: var(--body); font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }
.shop-card .price-unit { font-family: var(--body); font-size: 0.72rem; font-weight: 500; color: var(--ink-soft); }
.shop-card-link { display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 700; font-size: 0.82rem; color: var(--green-600); }
.shop-card-link svg { width: 1em; height: 1em; transition: transform 0.25s ease; }
.shop-card:hover .shop-card-link svg { transform: translateX(3px); }
.shop-empty { text-align: center; color: var(--ink-soft); padding: 3rem 0; }

/* --------------------------------------------------------------------------
   Single product
   -------------------------------------------------------------------------- */
.product-hero { padding: clamp(7rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 5rem); background: var(--cream); }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.product-media {
	position: relative;
	aspect-ratio: 1;
	border-radius: var(--radius-lg);
	background: radial-gradient(circle at 45% 35%, #fff, var(--green-wash));
	border: 1px solid var(--line);
	display: grid; place-items: center;
	box-shadow: var(--shadow-md);
}
.product-media img { width: 60%; height: 60%; object-fit: contain; }
.product-media .tag-export {
	position: absolute; top: 1.2rem; right: 1.2rem;
	background: var(--gold); color: #3a2600;
	font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
	padding: 0.3rem 0.7rem; border-radius: 999px;
}
.crumbs { display: flex; gap: 0.5rem; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1rem; }
.crumbs a { color: var(--green-600); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.product-info h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem); margin: 0.4rem 0; }
.product-lede { font-size: 1.1rem; color: var(--ink-soft); margin: 0 0 1.2rem; }
.product-price { font-family: var(--display); font-weight: 600; font-size: 2.2rem; color: var(--green-700); margin-bottom: 1.5rem; }
.product-body { color: var(--ink-soft); margin-bottom: 2rem; }
.product-body p { margin: 0 0 1rem; }
.product-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --------------------------------------------------------------------------
   Export callout
   -------------------------------------------------------------------------- */
.export {
	position: relative;
	background:
		radial-gradient(100% 120% at 100% 0%, rgba(232,163,23,0.28), transparent 55%),
		linear-gradient(150deg, var(--green-700), var(--green-900));
	color: #fff;
	border-radius: var(--radius-lg);
	padding: clamp(2.5rem, 5vw, 4rem);
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 2.5rem;
	align-items: center;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.export h2 { font-size: clamp(1.8rem, 1.3rem + 2vw, 2.8rem); margin: 0.7rem 0 1rem; }
.export p { color: rgba(255,255,255,0.82); margin: 0 0 1.8rem; max-width: 34rem; }
.export .export-mark {
	justify-self: center;
	width: min(220px, 70%);
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
	border: 1px dashed rgba(232,163,23,0.5);
	display: grid; place-items: center;
}
.export .export-mark img { width: 55%; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
.contact-info .info-row {
	display: flex;
	gap: 1rem;
	padding: 1.2rem 0;
	border-bottom: 1px solid var(--line);
}
.contact-info .info-row:first-of-type { padding-top: 0; }
.info-ic {
	flex: none;
	width: 46px; height: 46px;
	border-radius: 12px;
	background: var(--green-wash);
	display: grid; place-items: center;
}
.info-ic img { width: 22px; height: 22px; }
.info-row .k { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green-600); font-weight: 700; }
.info-row .v { color: var(--ink); font-weight: 500; }
.info-row .v a { text-decoration: none; }
.info-row .v a:hover { color: var(--green-600); }

.contact-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: clamp(1.6rem, 3vw, 2.4rem);
	box-shadow: var(--shadow-md);
}
.contact-card h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.contact-card > p { color: var(--ink-soft); margin: 0 0 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--ink-soft); }
.field input, .field textarea {
	width: 100%;
	font-family: var(--body);
	font-size: 1rem;
	padding: 0.8rem 1rem;
	border: 1.5px solid var(--line);
	border-radius: 12px;
	background: var(--cream);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field textarea:focus {
	outline: none;
	border-color: var(--green-500);
	box-shadow: 0 0 0 4px rgba(28,143,76,0.12);
	background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.8rem; }

/* --- Contact Form 7 integration --- */
.wpcf7 .form-row { margin-bottom: 0; }
.wpcf7-form-control-wrap { display: block; }
.wpcf7 .field .wpcf7-not-valid { border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1); }
.wpcf7 .wpcf7-not-valid-tip {
	display: block;
	color: #c0392b;
	font-size: 0.78rem;
	margin-top: 0.35rem;
}
.wpcf7 .btn { border: 0; margin-top: 0.4rem; }
.wpcf7 .btn:hover { transform: translateY(-3px); }
.wpcf7-spinner { margin: 0.6rem 0 0 0.6rem; }
.wpcf7 .wpcf7-response-output {
	margin: 1.2rem 0 0;
	padding: 0.85rem 1.1rem;
	border-radius: 12px;
	font-size: 0.9rem;
	border: 1.5px solid var(--line);
	background: var(--cream);
}
.wpcf7 form.sent .wpcf7-response-output { border-color: var(--green-500); background: var(--green-wash); color: var(--green-700); }
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output { border-color: #e0b4ac; background: #fbeeec; color: #a5342a; }
.map-embed {
	margin-top: 1.6rem;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	line-height: 0;
}
.map-embed iframe { width: 100%; height: 260px; border: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
	background: var(--green-900);
	color: rgba(255,255,255,0.75);
	padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.1rem; }
.footer-brand img { width: 52px; }
.footer-brand .brand-name { color: #fff; font-size: 1.35rem; }
.footer-col p { margin: 0.3rem 0; font-size: 0.95rem; }
.footer-col h4 { color: #fff; font-family: var(--body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { text-decoration: none; transition: color 0.2s ease; }
.footer-col ul a:hover { color: var(--gold-soft); }
.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.8rem;
	padding-top: 1.6rem;
	font-size: 0.85rem;
}
.footer-bottom a { color: var(--gold-soft); text-decoration: none; }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* Hero load animation */
.hero [data-anim] { opacity: 0; transform: translateY(22px); animation: heroIn 0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero [data-anim="1"] { animation-delay: 0.1s; }
.hero [data-anim="2"] { animation-delay: 0.24s; }
.hero [data-anim="3"] { animation-delay: 0.38s; }
.hero [data-anim="4"] { animation-delay: 0.52s; }
.hero [data-anim="5"] { animation-delay: 0.66s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
	.reveal { opacity: 1; transform: none; }
	.hero [data-anim] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-bento { max-width: 440px; margin-inline: auto; order: -1; }
	.pillar-grid, .product-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
	.about-grid, .export, .contact-grid, .product-hero-grid { grid-template-columns: 1fr; }
	.export .export-mark { display: none; }
	.product-media { max-width: 380px; margin-inline: auto; }
}

@media (max-width: 820px) {
	.primary-nav, .nav-cta .btn { display: none; }
	.nav-toggle { display: flex; }
	.primary-nav {
		position: fixed;
		inset: 0 0 0 auto;
		width: min(320px, 82vw);
		background: var(--cream);
		flex-direction: column;
		align-items: flex-start;
		gap: 0.4rem;
		padding: 6rem 2rem 2rem;
		box-shadow: var(--shadow-lg);
		transform: translateX(100%);
		transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
		z-index: 90;
	}
	body.nav-open .primary-nav { display: flex; transform: none; }
	.primary-nav a { font-size: 1.15rem; width: 100%; padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
	.primary-nav a::after { display: none; }
	.hero-strip { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
	.form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.brand-tag { display: none; }
	.hero-bento {
		max-width: 100%;
		aspect-ratio: auto;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: none;
		grid-template-areas:
			"a a"
			"b c"
			"d e"
			"f f";
	}
	.bento-card { min-height: 92px; }
	.bento-a { flex-direction: row; align-items: center; gap: 1rem; }
	.bento-a .bento-name { font-size: 1.25rem; }
}

@media (max-width: 640px) {
	.shop-toolbar { flex-direction: column; align-items: stretch; }
	.shop-search { min-width: 0; }
}

@media (max-width: 520px) {
	.pillar-grid, .product-grid, .about-stats, .shop-grid { grid-template-columns: 1fr; }
	.about-stats { gap: 1.2rem; }
	.hero-strip { grid-template-columns: 1fr 1fr; }
}
