/* ==========================================================================
   Shiva Ganesh Nannari — stylesheet
   Earthy green · cream · brown · subtle gold
   ========================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  --green-950: #0e2415;
  --green-900: #14301d;
  --green-800: #1c3d26;
  --green-700: #275036;
  --green-600: #356444;
  --green-100: #e7efe6;

  --brown-900: #3f2817;
  --brown-700: #6b4226;
  --brown-500: #8a5a33;

  --gold-600: #b8903c;
  --gold-400: #d4ae63;
  --gold-100: #efe2c4;

  --cream-50:  #fbf7ef;
  --cream-100: #f5efe3;
  --cream-200: #ece3d2;

  --ink:       #221e18;
  --ink-soft:  #4c463a;
  --muted:     #6e6657;

  --white: #ffffff;
  --border: #e5dcc8;

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Jost", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(20, 48, 29, 0.06);
  --shadow-md: 0 14px 34px rgba(20, 48, 29, 0.10);
  --shadow-lg: 0 26px 60px rgba(20, 48, 29, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.18; color: var(--green-900); }

[id] { scroll-margin-top: calc(var(--header-h) + 20px); }

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold-100); color: var(--brown-900); }

.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--green-900);
  color: var(--cream-50);
  padding: 0.8rem 1.4rem;
  border-radius: 0 0 10px 10px;
  font-weight: 500;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

.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;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold-600);
  opacity: 0.7;
}

/* ---------- 3. Section scaffolding ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.section-side { background: var(--cream-50); }
.section-cream { background: var(--cream-100); }
.section-green { background: var(--green-900); }

.section-green .eyebrow { color: var(--gold-400); }
.section-green .eyebrow::before { background: var(--gold-400); }
.section-green .section-title { color: var(--cream-50); }
.section-green .section-sub { color: rgba(251, 247, 239, 0.82); }

.section-head { margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow { justify-content: center; }

.section-title {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  margin-top: 0.9rem;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold-600); }

.section-sub {
  max-width: 58ch;
  margin: 1.1rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.16rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}

/* ---------- 4. Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95em 2em;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--green-950);
  box-shadow: 0 10px 24px rgba(184, 144, 60, 0.35);
}
.btn-gold:hover { box-shadow: 0 16px 34px rgba(184, 144, 60, 0.45); }

.btn-green {
  background: var(--green-800);
  color: var(--cream-50);
  box-shadow: var(--shadow-sm);
}
.btn-green:hover { background: var(--green-700); box-shadow: var(--shadow-md); }

.btn-outline-light {
  border: 1.5px solid rgba(251, 247, 239, 0.55);
  color: var(--cream-50);
}
.btn-outline-light:hover { background: rgba(251, 247, 239, 0.1); border-color: var(--cream-50); }

.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--green-700);
  transition: color 0.2s;
}
.link-arrow::after {
  content: "\2192";
  transition: transform 0.25s var(--ease);
}
.link-arrow:hover { color: var(--gold-600); }
.link-arrow:hover::after { transform: translateX(4px); }

.section-green .link-arrow { color: var(--gold-400); }

/* ---------- 5. Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
              backdrop-filter 0.3s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 36, 21, 0.5), rgba(14, 36, 21, 0));
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), 0 8px 30px rgba(20, 48, 29, 0.08);
}
.site-header.scrolled::before { opacity: 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.75rem; }

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold-600), 0 0 0 4px rgba(251, 247, 239, 0.9);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled .brand-mark { box-shadow: 0 0 0 2px var(--gold-600), 0 0 0 4px var(--cream-100); }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream-50);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.site-header.scrolled .brand-name { color: var(--green-900); }

.site-nav { display: flex; align-items: center; gap: 0.35rem; }
.site-nav a {
  position: relative;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(251, 247, 239, 0.9);
  letter-spacing: 0.03em;
  border-radius: 999px;
  transition: color 0.2s, background-color 0.2s;
}
.site-nav a:hover { color: var(--cream-50); background: rgba(251, 247, 239, 0.12); }
.site-header.scrolled .site-nav a { color: var(--ink-soft); }
.site-header.scrolled .site-nav a:hover { color: var(--green-900); background: var(--green-100); }

.site-nav .nav-cta {
  margin-left: 0.6rem;
  background: var(--gold-600);
  color: var(--green-950);
  padding: 0.55rem 1.4rem;
}
.site-nav .nav-cta:hover {
  background: var(--gold-400);
  color: var(--green-950);
}
.site-header.scrolled .site-nav .nav-cta { color: var(--green-950); }

/* ---------- 6. Mobile menu ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--cream-50);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.site-header.scrolled .nav-toggle-bar { background: var(--green-900); }

body.menu-open {
  overflow: hidden;
}
body.menu-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--cream-50); }
body.menu-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--cream-50); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 2rem 2.5rem;
  background:
    radial-gradient(90% 60% at 100% 0%, rgba(212, 174, 99, 0.16), transparent 60%),
    linear-gradient(160deg, var(--green-900), var(--green-950));
  text-align: center;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  visibility: hidden;
  overflow-y: auto;
}
body.menu-open .mobile-menu { opacity: 1; transform: none; visibility: visible; }

.mobile-menu nav { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 2.4rem; }
.mobile-menu nav a {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 6vw, 2.1rem);
  font-weight: 600;
  color: var(--cream-50);
  padding: 0.45rem 0;
  border-radius: 8px;
  transition: color 0.2s;
}
.mobile-menu nav a:hover { color: var(--gold-400); }

.mobile-menu-foot { border-top: 1px solid rgba(251, 247, 239, 0.18); padding-top: 1.6rem; }
.mobile-menu-foot a {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--cream-50);
}
.mobile-menu-foot .muted { color: rgba(251, 247, 239, 0.6); font-size: 0.9rem; margin-top: 0.4rem; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(70% 55% at 88% 12%, rgba(212, 174, 99, 0.14), transparent 65%),
    radial-gradient(55% 45% at 8% 90%, rgba(53, 100, 68, 0.55), transparent 70%),
    linear-gradient(155deg, var(--green-800) 0%, var(--green-900) 55%, var(--green-950) 100%);
  color: var(--cream-50);
  padding: calc(var(--header-h) + clamp(2rem, 6vw, 4.5rem)) 0 clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(251, 247, 239, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 60%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
}

.hero-eyebrow { color: var(--gold-400); animation: fadeUp 0.9s var(--ease) both; }
.hero-eyebrow::before { background: var(--gold-400); }

.hero-title {
  font-size: clamp(2.7rem, 6.4vw, 4.6rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--cream-50);
  margin: 1.3rem 0 1.4rem;
  animation: fadeUp 0.9s var(--ease) 0.08s both;
}
.hero-title em { font-style: italic; color: var(--gold-400); }

.hero-sub {
  max-width: 52ch;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  font-weight: 300;
  color: rgba(251, 247, 239, 0.85);
  animation: fadeUp 0.9s var(--ease) 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
  animation: fadeUp 0.9s var(--ease) 0.24s both;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  margin-top: 2.4rem;
  animation: fadeUp 0.9s var(--ease) 0.32s both;
}
.hero-chips li {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 247, 239, 0.72);
}
.hero-chips li::before {
  content: "\2726";
  color: var(--gold-600);
  margin-right: 0.5rem;
  font-size: 0.6rem;
  vertical-align: 0.15em;
}

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 1s var(--ease) 0.2s both;
}

.hero-frame {
  position: relative;
  width: min(340px, 78vw);
  aspect-ratio: 0.72;
  border-radius: 200px 200px 30px 30px;
  border: 1px solid rgba(212, 174, 99, 0.45);
  background:
    radial-gradient(75% 60% at 50% 30%, rgba(251, 247, 239, 0.10), transparent 70%),
    linear-gradient(180deg, rgba(53, 100, 68, 0.35), rgba(14, 36, 21, 0.6));
  box-shadow:
    0 0 0 8px rgba(212, 174, 99, 0.10),
    0 0 0 9px rgba(212, 174, 99, 0.35),
    0 40px 80px rgba(10, 25, 15, 0.5);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 190px 190px 22px 22px;
  border: 1px solid rgba(212, 174, 99, 0.25);
  pointer-events: none;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.02);
}

.hero-caption {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 247, 239, 0.6);
}

/* ---------- 8. Trust strip ---------- */
.trust {
  background: var(--cream-100);
  border-bottom: 1px solid var(--border);
  padding: 2.6rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item { text-align: center; }
.trust-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.9rem;
  padding: 11px;
  color: var(--green-700);
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.trust-item h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 0.35rem;
}
.trust-item p {
  font-size: 0.86rem;
  color: var(--muted);
  max-width: 24ch;
  margin-inline: auto;
}

/* ---------- 9. Split layout (about / syrup / contact) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split-reverse .split-media { order: 2; }
.split-reverse .split-copy { order: 1; }

.split-media { position: relative; }

.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-100);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1 / 1;
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.media-frame:hover img { transform: scale(1.035); }

.media-frame-syrup { aspect-ratio: 0.82; background: var(--cream-50); }
.media-frame-syrup img { object-fit: contain; padding: 1.5rem; }

.media-note {
  position: absolute;
  left: -1.1rem;
  bottom: 1.6rem;
  width: min(270px, 80%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.1rem 1.3rem;
  border-left: 4px solid var(--gold-600);
}
.note-kicker {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.35rem;
}
.note-text {
  font-size: 0.92rem;
  font-family: var(--font-serif);
  color: var(--ink-soft);
  line-height: 1.5;
}
.split-copy .eyebrow { margin-bottom: 0; }
.split-copy h2 { margin-top: 0.9rem; }
.split-copy > p { margin-top: 1.15rem; }

/* Value list */
.value-list { margin-top: 2.2rem; display: grid; gap: 1.35rem; }
.value-list li { display: flex; gap: 1.15rem; align-items: flex-start; }
.value-mark {
  flex: none;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-600);
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-600);
  border-radius: 50%;
  margin-top: 0.25rem;
  background: var(--cream-50);
}
.value-list h3 { font-size: 1.12rem; margin-bottom: 0.2rem; }
.value-list p { font-size: 0.95rem; color: var(--muted); }

/* ---------- 10. Soda cards ---------- */
.two-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
}

.soda-card {
  background: rgba(251, 247, 239, 0.05);
  border: 1px solid rgba(251, 247, 239, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}
.soda-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 174, 99, 0.5);
  box-shadow: 0 30px 60px rgba(8, 20, 12, 0.45);
}

.soda-figure {
  position: relative;
  aspect-ratio: 0.9;
  overflow: hidden;
  background:
    radial-gradient(80% 70% at 50% 10%, rgba(212, 174, 99, 0.16), transparent 65%),
    linear-gradient(180deg, var(--green-800), #12281a);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.soda-figure img {
  height: 88%;
  width: auto;
  max-width: 78%;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(5, 12, 7, 0.55));
  transition: transform 0.6s var(--ease);
}
.soda-card:hover .soda-figure img { transform: translateY(-6px) scale(1.03); }

.soda-size {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
}

.soda-body {
  padding: 1.8rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  flex: 1;
}
.soda-body h3 { font-size: 1.35rem; color: var(--cream-50); }
.soda-body > p { color: rgba(251, 247, 239, 0.78); font-size: 0.96rem; }

.tick-list { margin-top: 0.4rem; display: grid; gap: 0.5rem; }
.tick-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.92rem;
  color: rgba(251, 247, 239, 0.85);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.65rem;
  height: 0.4rem;
  border-left: 2px solid var(--gold-400);
  border-bottom: 2px solid var(--gold-400);
  transform: rotate(-45deg);
}
.soda-body .link-arrow { margin-top: 1.1rem; }

.two-col { grid-template-columns: 1fr 1fr; }
.section:not(.section-green) .tick-list li { color: var(--ink-soft); }
.section:not(.section-green) .tick-list li::before { border-color: var(--green-600); }

/* ---------- 11. Syrup CTA ---------- */
.syrup-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

/* ---------- 12. Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.story-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.story-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--gold-600);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.story-card h3 { font-size: 1.22rem; margin-bottom: 0.5rem; }
.story-card p { font-size: 0.94rem; color: var(--muted); }
.story-card em { color: var(--green-700); font-style: italic; }

.story-quote {
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  max-width: 46rem;
  text-align: center;
}
.story-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--green-900);
}
.story-quote cite {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}

/* ---------- 13. Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 0.75;
  background: linear-gradient(180deg, var(--green-100), var(--cream-100));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}
.product-img-wrap img {
  height: 100%;
  width: auto;
  max-width: 82%;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(20, 48, 29, 0.28));
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: translateY(-5px) scale(1.04); }

.product-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-50);
  background: var(--green-800);
  border: 1px solid var(--green-600);
  border-radius: 999px;
  padding: 0.32rem 0.8rem;
}

.product-body { padding: 1.5rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1.2rem; }
.product-meta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0.3rem 0 0.6rem;
}
.product-body p:not(.product-meta) { font-size: 0.92rem; color: var(--muted); flex: 1; }
.product-body .link-arrow { margin-top: 1.1rem; }

.product-card-trade {
  background: linear-gradient(160deg, var(--green-900), var(--green-950));
  border-color: var(--green-800);
  justify-content: center;
}
.product-card-trade .trade-icon {
  width: 64px;
  height: 64px;
  margin: 1.8rem auto 0.6rem;
  padding: 15px;
  color: var(--gold-400);
  background: rgba(251, 247, 239, 0.07);
  border: 1px solid rgba(212, 174, 99, 0.4);
  border-radius: 50%;
}
.product-card-trade h3 { color: var(--cream-50); }
.product-card-trade .product-meta { color: var(--gold-400); }
.product-card-trade p:not(.product-meta) { color: rgba(251, 247, 239, 0.75); }
.product-card-trade .link-arrow { color: var(--gold-400); margin-top: 1.1rem; }

/* ---------- 14. Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(251, 247, 239, 0.14);
  background: rgba(251, 247, 239, 0.04);
}
.gallery-item img {
  aspect-ratio: 0.82;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.1rem 1rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--cream-50);
  background: linear-gradient(180deg, transparent, rgba(14, 36, 21, 0.82));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption { opacity: 1; }
.gallery-item:focus-visible { outline-offset: -4px; }

/* ---------- 15. FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: 0.9rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.faq-item.open { border-color: var(--gold-400); box-shadow: var(--shadow-sm), 0 0 0 1px rgba(184, 144, 60, 0.25); }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  text-align: left;
}
.faq-btn span {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--green-900);
}
.faq-icon {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--gold-600);
  transition: transform 0.35s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  padding: 0 1.4rem 1.3rem;
  font-size: 0.96rem;
  color: var(--muted);
}
.faq-a-inner em { font-style: italic; color: var(--green-700); }

/* ---------- 16. Contact ---------- */
.contact-list { margin-top: 2.4rem; display: grid; gap: 1.3rem; }
.contact-list li {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  padding: 1.15rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-list li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
  padding: 12px;
}
.contact-list h3 { font-size: 1.02rem; margin-bottom: 0.05rem; }
.contact-list a { color: var(--ink-soft); font-size: 0.98rem; transition: color 0.2s; }
.contact-list a:hover { color: var(--gold-600); }
.contact-list p { color: var(--muted); font-size: 0.98rem; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { margin-bottom: 1.1rem; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-700);
  margin-bottom: 0.45rem;
}
.form-field .opt { text-transform: none; letter-spacing: 0; color: var(--muted); font-weight: 400; }
.form-field input,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #a89e8c; }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184, 144, 60, 0.18);
}
.form-field input.invalid,
.form-field textarea.invalid { border-color: #b3402e; }

.form-note { min-height: 1.4rem; font-size: 0.9rem; color: var(--green-700); margin-bottom: 0.8rem; }
.form-note.error { color: #b3402e; }
.form-hint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- 17. Footer ---------- */
.site-footer {
  background: linear-gradient(170deg, var(--green-950), #0a1c10);
  color: rgba(251, 247, 239, 0.72);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251, 247, 239, 0.12);
}
.footer-brand-link .brand-name { color: var(--cream-50); }
.footer-brand-link .brand-mark { box-shadow: 0 0 0 2px var(--gold-600), 0 0 0 4px var(--green-950); }
.footer-brand > p { margin-top: 1.2rem; font-size: 0.92rem; max-width: 34ch; }

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.1rem;
}
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { font-size: 0.93rem; color: rgba(251, 247, 239, 0.72); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-col li:last-child { color: rgba(251, 247, 239, 0.9); font-size: 0.93rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1.6rem;
  font-size: 0.82rem;
  color: rgba(251, 247, 239, 0.5);
}
.footer-line { font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; color: rgba(212, 174, 99, 0.8); }

/* ---------- 18. Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 24, 15, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.2rem;
  animation: fadeIn 0.25s var(--ease) both;
}
.lightbox[hidden] { display: none; }

.lb-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: min(640px, 92vw);
  max-height: 88vh;
}
.lb-stage img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  background: var(--cream-50);
  animation: fadeUp 0.35s var(--ease) both;
}
.lb-stage figcaption {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream-50);
  text-align: center;
}

.lb-close, .lb-nav {
  position: absolute;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--cream-50);
  background: rgba(251, 247, 239, 0.1);
  border: 1px solid rgba(251, 247, 239, 0.25);
  transition: background-color 0.2s, transform 0.2s var(--ease);
}
.lb-close:hover, .lb-nav:hover { background: var(--gold-600); color: var(--green-950); transform: scale(1.06); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-close svg, .lb-nav svg { width: 22px; height: 22px; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }

/* ---------- 19. Back to top ---------- */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 150;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-600);
  color: var(--green-950);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.to-top svg { width: 20px; height: 20px; }
.to-top.visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold-400); transform: translateY(-3px); }

/* ---------- 20. Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* Subtle stagger for card grids */
.trust-grid > .reveal:nth-child(2) { transition-delay: 0.07s; }
.trust-grid > .reveal:nth-child(3) { transition-delay: 0.14s; }
.trust-grid > .reveal:nth-child(4) { transition-delay: 0.21s; }
.story-grid > .reveal:nth-child(2) { transition-delay: 0.07s; }
.story-grid > .reveal:nth-child(3) { transition-delay: 0.14s; }
.story-grid > .reveal:nth-child(4) { transition-delay: 0.21s; }
.product-grid > .reveal:nth-child(2) { transition-delay: 0.07s; }
.product-grid > .reveal:nth-child(3) { transition-delay: 0.14s; }
.product-grid > .reveal:nth-child(4) { transition-delay: 0.21s; }
.two-cards > .reveal:nth-child(2) { transition-delay: 0.12s; }
.faq-list > .reveal:nth-child(2) { transition-delay: 0.05s; }
.faq-list > .reveal:nth-child(3) { transition-delay: 0.1s; }
.faq-list > .reveal:nth-child(4) { transition-delay: 0.15s; }
.faq-list > .reveal:nth-child(5) { transition-delay: 0.2s; }
.faq-list > .reveal:nth-child(6) { transition-delay: 0.25s; }
.faq-list > .reveal:nth-child(7) { transition-delay: 0.3s; }
.faq-list > .reveal:nth-child(8) { transition-delay: 0.35s; }

/* ---------- 20b. 404 page ---------- */
.error-body {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--cream-50), var(--cream-100));
}
.error-wrap {
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 40rem;
}
.error-mark { width: 88px; height: 88px; margin: 0 auto 1.6rem; border-radius: 50%; box-shadow: 0 0 0 2px var(--gold-600), 0 0 0 4px var(--cream-100), var(--shadow-md); }
.error-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--green-900);
  margin: 1rem 0;
}
.error-wrap .section-sub { margin-bottom: 2rem; }

/* ---------- 21. Animations (entrance) ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* ---------- 23. Responsive ---------- */
@media (max-width: 1080px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-chips { justify-content: center; }
  .hero-media { order: -1; }
  .hero-frame { width: min(300px, 70vw); }
  .hero { padding-top: calc(var(--header-h) + 1.5rem); }

  .split, .split-reverse .split { grid-template-columns: 1fr; }
  .split .split-media, .split-reverse .split-media { order: 0; }
  .media-frame { max-width: 560px; }

  .two-cards { grid-template-columns: 1fr; }

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

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

@media (max-width: 640px) {
  .trust-grid { grid-template-columns: 1fr; }
  .story-grid, .product-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .media-note { left: 0.8rem; }
  .lb-prev, .lb-next { top: auto; bottom: 1.1rem; transform: none; }
  .lb-prev { left: 1.4rem; }
  .lb-next { right: 1.4rem; }
  .lb-prev:hover { transform: scale(1.06); }
  .lb-next:hover { transform: scale(1.06); }
}