/* ==========================================================================
   Ngũ Cốc Vàng — Design System
   "Warm Golden Harvest": cream canvas, metallic gold, deep harvest green,
   warm honey CTA. Display: Fraunces. Body/UI: Be Vietnam Pro.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
	/* Surfaces */
	--cream:        #FBF5E9;
	--cream-deep:   #F4E9D2;
	--card:         #FFFCF5;
	--green-ink:    #16301D; /* dark band background */
	--green-ink-2:  #1E3C26;

	/* Brand */
	--gold-100: #FBEFCF;
	--gold-200: #F2D58A;
	--gold-400: #E7B843;
	--gold-500: #E0A82E;
	--gold-600: #C8901F;
	--gold-700: #9E6F14;
	--green-500:#4C8A52;
	--green-600:#3A6B40;
	--green-700:#2F5D3A;

	/* CTA — warm honey→ember */
	--cta:      #E8631B;
	--cta-deep: #CE4E12;

	/* Accent (overridden per landing page) */
	--accent:      var(--gold-500);
	--accent-deep: var(--gold-700);
	--accent-soft: var(--gold-100);

	/* Ink */
	--ink:      #2A2012;
	--ink-soft: #5E5341;
	--ink-mute: #8A7E68;
	--line:     #E8DcC2;

	/* Type */
	--display: "Fraunces", Georgia, serif;
	--sans: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Radius + shadow */
	--r-sm: 12px;
	--r:    20px;
	--r-lg: 28px;
	--r-xl: 40px;
	--shadow-sm: 0 2px 8px rgba(74,52,12,.06);
	--shadow:    0 14px 40px -18px rgba(74,52,12,.30);
	--shadow-lg: 0 30px 70px -28px rgba(74,52,12,.40);

	--maxw: 1160px;
	--gap: clamp(1rem, 3vw, 2rem);
}

/* Per-landing accent themes */
.accent-rose  { --accent: #D9728A; --accent-deep:#A84A62; --accent-soft:#FBE6EC; }
.accent-green { --accent: #5FA85A; --accent-deep:#2F6B30; --accent-soft:#E6F2E2; }
.accent-gold  { --accent: var(--gold-500); --accent-deep: var(--gold-700); --accent-soft: var(--gold-100); }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--sans);
	color: var(--ink);
	background: var(--cream);
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.12; color: var(--ink); margin: 0 0 .4em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
::selection { background: var(--gold-200); color: var(--ink); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.2rem, 7vw, 6rem); position: relative; }
.section--cream { background: var(--cream); }
.section--deepcream { background: var(--cream-deep); }
.section--dark { background: var(--green-ink); color: #F6EFDD; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
	display: inline-flex; align-items: center; gap: .5em;
	font-family: var(--sans); font-weight: 700; font-size: .8rem;
	letter-spacing: .16em; text-transform: uppercase;
	color: var(--accent-deep);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.center .eyebrow::before { display: none; }
.h-display { font-size: clamp(2rem, 5.4vw, 3.4rem); }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.center .lead { margin-inline: auto; }
.section-head { max-width: 720px; margin: 0 auto clamp(2rem,4vw,3rem); }
.section-head.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .6em;
	font-family: var(--sans); font-weight: 700; font-size: 1.02rem;
	padding: .95em 1.7em; border: 0; border-radius: 999px;
	line-height: 1; text-align: center; transition: transform .18s ease, box-shadow .18s ease, background .18s;
	will-change: transform;
}
.btn--cta {
	color: #fff;
	background: linear-gradient(135deg, var(--cta), var(--cta-deep));
	box-shadow: 0 12px 26px -10px rgba(206,78,18,.7);
}
.btn--cta:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -10px rgba(206,78,18,.85); }
.btn--gold {
	color: #3a2a08;
	background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
	box-shadow: 0 12px 26px -12px rgba(158,111,20,.8);
}
.btn--gold:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn--lg { font-size: 1.12rem; padding: 1.1em 2.1em; }
.btn--block { width: 100%; }
.btn .pulse { display:inline-block; }

/* ---------- Badges / pills ---------- */
.pill {
	display: inline-flex; align-items: center; gap: .45em;
	background: var(--accent-soft); color: var(--accent-deep);
	font-weight: 600; font-size: .9rem; padding: .4em .9em; border-radius: 999px;
}
.discount-badge {
	display:inline-flex; flex-direction: column; align-items:center; justify-content:center;
	width: 64px; height: 64px; border-radius: 50%;
	background: radial-gradient(circle at 30% 25%, var(--cta), var(--cta-deep));
	color: #fff; font-weight: 800; line-height: 1; transform: rotate(-8deg);
	box-shadow: var(--shadow-sm);
}
.discount-badge b { font-size: 1.25rem; }
.discount-badge span { font-size: .62rem; letter-spacing: .04em; }

/* "Wax seal" natural badge — signature mark */
.seal {
	display:grid; place-items:center; width: 104px; height: 104px; border-radius: 50%;
	background:
		radial-gradient(circle at 50% 50%, var(--green-600) 0 60%, transparent 61%),
		conic-gradient(from 0deg, var(--green-700), var(--green-500), var(--green-700));
	color: #fff; text-align:center; padding: 6px;
	box-shadow: var(--shadow), inset 0 0 0 4px rgba(255,255,255,.15);
	font-family: var(--sans);
}
.seal b { display:block; font-size: 1.5rem; font-family: var(--display); line-height:1; }
.seal span { font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

/* ---------- Header ---------- */
.site-header {
	position: sticky; top: 0; z-index: 60;
	background: rgba(251,245,233,.82); backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--ink); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand small { display:block; font-family: var(--sans); font-weight:600; font-size:.6rem; letter-spacing:.12em; text-transform:uppercase; color: var(--accent-deep); margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { font-weight: 600; font-size: .98rem; color: var(--ink-soft); transition: color .15s; }
.nav a:hover { color: var(--accent-deep); }
/* CTA button inside the nav keeps its white button text (beats .nav a). */
.nav a.btn--cta, .nav a.btn--cta:hover { color: #fff; }
.header-cta { display: flex; align-items: center; gap: .8rem; }
.header-phone { display:inline-flex; align-items:center; gap:.45rem; font-weight:700; color: var(--green-700); white-space: nowrap; }
.menu-toggle { display:none; background:none; border:0; padding:.4rem; }
.menu-toggle svg { width: 28px; height: 28px; }

/* Hamburger nav through tablet landscape; full horizontal nav only on desktop. */
@media (max-width: 1024px) {
	.nav { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
		background: var(--cream); border-bottom: 1px solid var(--line); padding: .5rem 1rem 1rem;
		transform: translateY(-130%); transition: transform .28s ease; box-shadow: var(--shadow); }
	.nav.open { transform: translateY(0); }
	.nav a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); }
	.nav a.btn--cta { margin-top: .6rem; border-bottom: 0; }
	.menu-toggle { display: inline-flex; }
}
@media (max-width: 600px) {
	.header-phone span { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(2.4rem, 5vw, 4.5rem); background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.hero__title { font-size: clamp(2.3rem, 5.6vw, 4rem); }
.hero__title .accentword {
	color: var(--accent-deep);
	background: linear-gradient(var(--gold-200), var(--gold-200)) no-repeat 0 90% / 100% .22em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	padding: 0 .02em;
}
.hero__sub { font-size: clamp(1.05rem,2.3vw,1.3rem); color: var(--ink-soft); max-width: 46ch; }
.hero__price { display:flex; align-items:center; gap: 1rem; margin: 1.4rem 0; flex-wrap: wrap; }
.hero__price .now { font-family: var(--display); font-size: 2.2rem; font-weight: 700; color: var(--cta-deep); }
.hero__price .was { text-decoration: line-through; color: var(--ink-mute); font-size: 1.1rem; }
.hero__actions { display:flex; gap: .8rem; flex-wrap: wrap; }
.hero__trust { display:flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.5rem; color: var(--ink-soft); font-size:.92rem; font-weight:600; }
.hero__trust span { display:inline-flex; align-items:center; gap:.4rem; }
.hero__trust svg { width:18px; height:18px; color: var(--green-600); }

/* Ingredient orbit — signature element */
.orbit { position: relative; aspect-ratio: 1/1; max-width: 480px; margin-inline: auto; }
.orbit__ring { position:absolute; inset: 6%; border: 2px dashed var(--gold-200); border-radius: 50%; }
.orbit__ring--2 { inset: 18%; border-color: rgba(192,144,31,.25); }
.orbit__bowl {
	position: absolute; inset: 22%; border-radius: 50%;
	background: radial-gradient(circle at 38% 30%, var(--gold-200), var(--gold-500) 70%, var(--gold-700));
	box-shadow: var(--shadow-lg), inset 0 -18px 36px rgba(158,111,20,.5), inset 0 10px 24px rgba(255,255,255,.45);
	display:grid; place-items:center; color:#3a2a08; text-align:center; padding: 8%;
}
.orbit__bowl .label { font-family: var(--display); font-weight:700; font-size: clamp(1rem,3vw,1.5rem); }
.orbit__bowl .num { font-size: clamp(2.4rem,8vw,3.4rem); font-weight:800; line-height:1; font-family: var(--display); }
.seed {
	position:absolute; top:50%; left:50%; width: 76px; height: 76px; margin:-38px;
	background: var(--card); border-radius: 50%; display:grid; place-items:center;
	box-shadow: var(--shadow); font-size: 1.9rem;
	animation: ngc-float 6s ease-in-out infinite;
}
.seed small { position:absolute; bottom:-1.4rem; font-family: var(--sans); font-size:.62rem; font-weight:700; color: var(--ink-soft); white-space:nowrap; }
@keyframes ngc-float { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-8px); } }

/* Framed real-photo hero (replaces the orbit when a product photo is set) */
.hero-photo-wrap { position: relative; aspect-ratio: 1/1; max-width: 460px; margin-inline: auto; display: grid; place-items: center; }
.hero-photo-wrap .orbit__ring { inset: 4%; }
.hero-photo-wrap .orbit__ring--2 { inset: 15%; }
.hero__photo {
	position: relative; z-index: 1; margin: 0;
	width: 74%; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden;
	border: 6px solid var(--card); background: var(--card);
	box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(158,111,20,.12);
}
.hero__photo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-wrap .seed small { display: none; } /* decorative seeds only — labels live in the ingredients section */
.hero__badge {
	position: absolute; right: 2%; bottom: 9%; z-index: 3; text-align: center; line-height: 1;
	background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: #3a2a08;
	border-radius: 16px; padding: .55rem .8rem; box-shadow: var(--shadow); transform: rotate(4deg);
	border: 2px solid rgba(255,255,255,.5);
}
.hero__badge b { display: block; font-family: var(--display); font-weight: 800; font-size: 1.7rem; }
.hero__badge span { font-size: .6rem; font-weight: 700; letter-spacing: .02em; }

@media (max-width: 860px) {
	.hero__grid { grid-template-columns: 1fr; text-align: center; }
	.hero__sub, .orbit, .hero-photo-wrap { margin-inline: auto; }
	.hero__price, .hero__actions, .hero__trust { justify-content: center; }
	.orbit { max-width: 340px; order: -1; }
	.hero-photo-wrap { max-width: 360px; }
	.seed small { display:none; }
}
@media (max-width: 480px) {
	.orbit { max-width: 300px; }
	.hero-photo-wrap { max-width: 300px; }
	.seed { width: 56px; height: 56px; margin: -28px; font-size: 1.4rem; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--green-ink); color: #F6EFDD; }
.trust-strip__row { display:flex; flex-wrap:wrap; justify-content: space-around; gap: 1.2rem; padding-block: 1.3rem; }
.trust-strip__item { display:flex; align-items:center; gap:.6rem; font-weight:600; font-size:.95rem; }
.trust-strip__item svg { width: 24px; height:24px; color: var(--gold-400); flex:none; }

/* ---------- Cards / grids ---------- */
.grid { display:grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){ .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit { text-align: left; }
.benefit__icon { width: 56px; height: 56px; border-radius: 16px; display:grid; place-items:center; font-size:1.7rem; background: var(--accent-soft); color: var(--accent-deep); margin-bottom: 1rem; }
.benefit h3 { font-size: 1.25rem; }
.benefit p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* Product cards (home) */
.product-card { overflow:hidden; padding: 0; display:flex; flex-direction: column; }
.product-card__media { aspect-ratio: 4/3; background: linear-gradient(160deg, var(--accent-soft), var(--cream-deep)); display:grid; place-items:center; position:relative; }
.product-card__media .emoji { font-size: 4.5rem; }
.product-card__body { padding: 1.5rem; display:flex; flex-direction: column; gap: .6rem; flex: 1; }
.product-card__body h3 { font-size: 1.4rem; margin:0; }
.product-card__body p { color: var(--ink-soft); font-size:.96rem; margin:0; flex:1; }
.product-card__foot { display:flex; align-items:center; justify-content: space-between; margin-top: .6rem; }
.product-card__price { font-family: var(--display); font-weight:700; font-size: 1.3rem; color: var(--cta-deep); }

/* ---------- Ingredients showcase ---------- */
.ingredient-chips { display:flex; flex-wrap:wrap; gap:.7rem; justify-content:center; }
.ingredient-chips .chip { background: var(--card); border:1px solid var(--line); border-radius: 999px; padding:.55rem 1.1rem; font-weight:600; display:inline-flex; gap:.5rem; align-items:center; box-shadow: var(--shadow-sm); }
.ingredient-chips .chip .e { font-size:1.2rem; }

/* ---------- Nutrition counters ---------- */
.stats { display:grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
@media (max-width:560px){ .stats { grid-template-columns:1fr; } }
.stat { text-align:center; }
.stat__num { font-family: var(--display); font-weight:800; font-size: clamp(2.6rem,8vw,3.6rem); color: var(--gold-400); line-height:1; }
.stat__unit { font-size:1.1rem; color: var(--gold-200); }
.stat__label { color:#E5DcC4; font-weight:600; margin-top:.4rem; }

/* ---------- How to use (steps) ---------- */
.steps { counter-reset: step; display:grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
@media (max-width:720px){ .steps { grid-template-columns:1fr; } }
.step { position:relative; padding-top: 1.4rem; }
.step__no { font-family: var(--display); font-weight:800; font-size: 2.4rem; color: var(--accent); line-height:1; }
.step h3 { font-size:1.2rem; margin:.4rem 0 .3rem; }
.step p { color: var(--ink-soft); margin:0; font-size:.97rem; }

/* ---------- Testimonials ---------- */
.testi { background: var(--card); border:1px solid var(--line); border-radius: var(--r-lg); padding:1.6rem; box-shadow: var(--shadow-sm); }
.testi__stars { color: var(--gold-500); letter-spacing:2px; margin-bottom:.6rem; }
.testi p { font-size:1.02rem; }
.testi__who { display:flex; align-items:center; gap:.7rem; margin-top:1rem; }
.testi__ava { width:44px; height:44px; border-radius:50%; background: var(--accent-soft); color:var(--accent-deep); display:grid; place-items:center; font-weight:800; }
.testi__who b { display:block; font-size:.95rem; }
.testi__who span { font-size:.82rem; color: var(--ink-mute); }

/* ---------- Combos / pricing ---------- */
.combos { display:grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); align-items: stretch; }
@media (max-width:820px){ .combos { grid-template-columns:1fr; } }
.combo { position:relative; background: var(--card); border:2px solid var(--line); border-radius: var(--r-lg); padding:1.8rem 1.5rem; text-align:center; display:flex; flex-direction:column; gap:.5rem; transition: transform .2s, border-color .2s; }
.combo:hover { transform: translateY(-4px); }
.combo--best { border-color: var(--accent); box-shadow: var(--shadow); }
.combo__tag { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background: var(--cta); color:#fff; font-weight:700; font-size:.78rem; padding:.35em .9em; border-radius:999px; white-space:nowrap; }
.combo__qty { font-family:var(--display); font-weight:700; font-size:1.5rem; }
.combo__price { font-family:var(--display); font-weight:800; font-size:2.1rem; color: var(--cta-deep); line-height:1.1; }
.combo__was { text-decoration:line-through; color:var(--ink-mute); }
.combo__save { color: var(--green-600); font-weight:700; font-size:.92rem; }
.combo ul { list-style:none; padding:0; margin:.6rem 0; text-align:left; font-size:.93rem; color:var(--ink-soft); }
.combo ul li { padding:.25rem 0 .25rem 1.6rem; position:relative; }
.combo ul li::before { content:"✓"; position:absolute; left:0; color: var(--green-600); font-weight:800; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline:auto; }
.faq__item { border-bottom:1px solid var(--line); }
.faq__q { width:100%; text-align:left; background:none; border:0; padding:1.1rem 2.4rem 1.1rem 0; font-weight:700; font-size:1.08rem; color:var(--ink); position:relative; }
.faq__q::after { content:"+"; position:absolute; right:.2rem; top:50%; transform:translateY(-50%); font-size:1.6rem; color:var(--accent-deep); transition: transform .2s; }
.faq__item.open .faq__q::after { content:"−"; }
.faq__a { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq__a p { padding-bottom:1.1rem; color:var(--ink-soft); margin:0; }

/* ---------- Lead form ---------- */
.order { background: var(--green-ink); color:#F6EFDD; position:relative; overflow:hidden; }
.order__grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); align-items:center; }
@media (max-width:860px){ .order__grid { grid-template-columns:1fr; } }
.order h2 { color:#fff; }
.order__list { list-style:none; padding:0; margin:1.2rem 0 0; }
.order__list li { display:flex; gap:.7rem; align-items:flex-start; padding:.5rem 0; color:#EADfC8; }
.order__list svg { width:22px; height:22px; color: var(--gold-400); flex:none; margin-top:2px; }
.lead-form { background: var(--card); color: var(--ink); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2.2rem); box-shadow: var(--shadow-lg); }
.lead-form h3 { font-size:1.5rem; }
.field { margin-bottom: .9rem; }
.field label { display:block; font-weight:600; font-size:.9rem; margin-bottom:.35rem; }
.field input, .field textarea, .field select {
	width:100%; padding:.85rem 1rem; border:1.5px solid var(--line); border-radius: var(--r-sm);
	font-family:inherit; font-size:1rem; background:#fff; color:var(--ink); transition:border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field--row { display:grid; grid-template-columns:1fr 1fr; gap:.8rem; }
@media (max-width:480px){ .field--row { grid-template-columns:1fr; } }
.field.err input { border-color:#D64545; }
.field .msg { color:#D64545; font-size:.82rem; margin-top:.25rem; display:none; }
.field.err .msg { display:block; }
.form-note { font-size:.85rem; color:var(--ink-mute); text-align:center; margin-top:.8rem; }
.form-success { display:none; text-align:center; padding:1.5rem 0; }
.form-success.show { display:block; }
.form-success .big { font-size:3rem; }
.lead-form.done .lead-form__body { display:none; }
.lead-form.done .form-success { display:block; }

/* ---------- Floating contact + mobile sticky ---------- */
.floating { position: fixed; right: 14px; bottom: 84px; z-index: 70; display:flex; flex-direction:column; gap:.6rem; }
@media (min-width:861px){ .floating { bottom: 22px; } }
.floating a { width:52px; height:52px; border-radius:50%; display:grid; place-items:center; color:#fff; box-shadow: var(--shadow); animation: ngc-bob 2.6s ease-in-out infinite; }
.floating a svg { width:26px; height:26px; }
.floating .f-zalo { background:#0068FF; font-weight:800; font-size:.8rem; }
.floating .f-mess { background:#0084FF; }
.floating .f-call { background: var(--green-600); }
@keyframes ngc-bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-5px);} }

.mobile-bar { position:fixed; left:0; right:0; bottom:0; z-index:71; display:none; gap:.6rem; padding:.6rem; background: rgba(251,245,233,.96); backdrop-filter: blur(10px); border-top:1px solid var(--line); }
.mobile-bar .btn { flex:1; }
.mobile-bar .mb-call { flex:none; width:54px; padding:0; background: var(--green-600); color:#fff; border-radius:999px; display:grid; place-items:center; }
.mobile-bar .mb-call svg { width:24px; height:24px; }
@media (max-width:860px){ .mobile-bar { display:flex; } .floating { bottom: 78px; } body.is-landing { padding-bottom: 72px; } body.is-landing .floating .f-call { display:none; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-ink-2); color:#D9D0BC; padding-block: clamp(2.5rem,5vw,4rem) 1.5rem; }
.site-footer a:hover { color: var(--gold-400); }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
@media (max-width:760px){ .footer-grid { grid-template-columns:1fr; gap:1.5rem; } }
.site-footer h4 { color:#fff; font-family:var(--sans); font-weight:700; font-size:1rem; letter-spacing:.04em; margin-bottom:.8rem; }
.site-footer ul { list-style:none; padding:0; margin:0; }
.site-footer li { padding:.3rem 0; }
.footer-contact li { display:flex; align-items:center; gap:.6rem; }
.footer-contact svg { width:18px; height:18px; color: var(--gold-400); flex:none; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); margin-top:2rem; padding-top:1.4rem; font-size:.85rem; color:#A99F8B; text-align:center; }

/* ---------- Product gallery + lightbox ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.gallery-item { position: relative; display: block; aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item::after { content: "⛶"; position: absolute; right: .5rem; bottom: .45rem; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(20,12,4,.5); color: #fff; font-size: .85rem; opacity: 0; transition: opacity .2s; }
.gallery-item:hover::after { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,12,4,.92); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: .8rem; right: 1.2rem; background: none; border: 0; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; z-index: 2; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 54px; height: 54px; border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center; background: rgba(255,255,255,.16); color: #fff; font-size: 2rem; line-height: 1; transition: background .2s; }
.lightbox__nav:hover { background: rgba(255,255,255,.34); }
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox.is-single .lightbox__nav { display: none; }
@media (max-width: 560px) {
	.lightbox__nav { width: 44px; height: 44px; font-size: 1.6rem; }
	.lightbox__prev { left: .4rem; }
	.lightbox__next { right: .4rem; }
}

/* ---------- Video section ---------- */
.video-wrap { max-width: 920px; margin-inline: auto; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #000; }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Section divider (grain wave) ---------- */
.wave { display:block; width:100%; height:40px; }

/* ---------- Scroll reveal (progressive enhancement: only hides when JS is on) ---------- */
.js .reveal { opacity:0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity:1; transform:none; }

/* ---------- A11y ---------- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.skip-link { position:absolute; left:-999px; top:0; background:#fff; padding:.6rem 1rem; z-index:200; }
.skip-link:focus { left: 8px; top: 8px; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
	.reveal { opacity:1; transform:none; }
}
