/* ═══════════════════════════════════════════════════════
   AGNI NATURAL LIVING — Design System
   ICP: Sourdough bakers, 25-45, eco-conscious Canada
   Palette: Amber + Cream + Earth tones (warm, fire-element brand — no cool greens)
   Typography: Georgia display + Inter body (confident, editorial)
   ═══════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS ── */
@import url('/fonts/fonts.css');

/* ── DESIGN TOKENS ── */
:root {
  /* Brand colors */
  --amber:       #D4891A;
  --amber-dk:    #A0620E;
  --amber-lt:    #FFF5E0;
  --amber-mid:   #F4E4B8;
  --cream:       #FAF6EF;
  --oat:         #F2EDE4;
  --taupe:       #C4A882;
  --dark:        #2C1810;
  --charcoal:    #3D2B1F;
  --mid:         #6B5744;
  --muted:       #9B8880;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:    4px;
  --space-sm:    8px;
  --space-md:    16px;
  --space-lg:    24px;
  --space-xl:    40px;
  --space-2xl:   64px;
  --space-3xl:   96px;
  --space-4xl:   128px;

  /* Max widths */
  --max-content: 1120px;
  --max-text:    680px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration:    0.3s;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── BASE ── */
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.3;
}
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}
.body-lg  { font-size: 1.1rem; line-height: 1.75; }
.body-md  { font-size: 1rem;   line-height: 1.7;  }
.body-sm  { font-size: 0.875rem; line-height: 1.65; }
.body-xs  { font-size: 0.75rem;  line-height: 1.6;  }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.container--narrow {
  max-width: var(--max-text);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
.section { padding: var(--space-3xl) 0; }
.section--lg { padding: var(--space-4xl) 0; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration) var(--ease),
              backdrop-filter var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.nav.scrolled {
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44, 24, 16, 0.08);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--dark);
  transition: color var(--duration) var(--ease);
}
.nav-logo span { color: var(--amber); }
.nav-links {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.82);
  transition: color var(--duration) var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--amber);
  transition: right var(--duration) var(--ease);
}
.nav-links a:hover { color: var(--amber); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-links a.active { color: var(--amber); }
.nav-cta {
  background: var(--amber);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-size: 0.75rem !important;
  letter-spacing: 0.12em;
  transition: background var(--duration) var(--ease) !important;
}
.nav-cta:hover { background: var(--amber-dk) !important; }
.nav-cta::after { display: none !important; }
.nav-mobile-btn { display: none; flex-direction: column; gap: 5px; }
.nav-mobile-btn span {
  width: 22px; height: 1.5px;
  background: var(--dark);
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 72% 52%, rgba(212, 137, 26, 0.28) 0%, rgba(212,137,26,0.1) 35%, transparent 58%),
    radial-gradient(ellipse at 28% 78%, rgba(139, 157, 131, 0.12) 0%, transparent 48%),
    radial-gradient(ellipse at 50% 110%, rgba(212, 137, 26, 0.08) 0%, transparent 50%);
}
/* top-edge gradient darkens hero for nav legibility */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(20,8,3,0.55) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  opacity: 0.55;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 40px 80px;
  max-width: 820px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.hero-eyebrow .label { color: var(--amber); }
.hero-line {
  width: 40px;
  height: 1px;
  background: rgba(212, 137, 26, 0.4);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: var(--space-xl);
  text-shadow: 0 4px 60px rgba(0,0,0,0.25);
}
.hero h1 em {
  color: var(--amber);
  font-style: italic;
}
.hero-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(250, 246, 239, 0.65);
  max-width: 520px;
  margin-bottom: var(--space-2xl);
}
.hero-actions {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.35);
}
.hero-scroll svg { color: rgba(212, 137, 26, 0.5); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-illustration {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.18;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover { background: var(--amber-dk); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid rgba(250, 246, 239, 0.3);
  color: var(--cream);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn-outline-dark {
  border: 1px solid rgba(44, 24, 16, 0.25);
  color: var(--dark);
}
.btn-outline-dark:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn-sm { padding: 10px 22px; font-size: 0.72rem; }

/* ── EMAIL CAPTURE ── */
.email-capture-section {
  background: var(--oat);
  padding: var(--space-2xl) 0;
  border-top: 1px solid rgba(196, 168, 130, 0.3);
  border-bottom: 1px solid rgba(196, 168, 130, 0.3);
}
.email-capture-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  text-align: center;
}
.email-capture-inner .label { margin-bottom: 12px; }
.email-capture-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}
.email-capture-inner p {
  color: var(--mid);
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}
.email-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.email-form input {
  flex: 1 1 240px;
  padding: 14px 18px;
  border: 1.5px solid rgba(196, 168, 130, 0.5);
  border-radius: 2px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--duration) var(--ease);
}
.email-form input:focus { border-color: var(--amber); }
.email-form input::placeholder { color: var(--muted); }
.success-msg {
  display: none;
  background: var(--amber);
  color: #fff;
  padding: 14px 20px;
  border-radius: 2px;
  font-size: 0.9rem;
  margin-top: 12px;
}
.privacy-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ── PRODUCTS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.product-card {
  background: #fff;
  border: 1px solid rgba(196, 168, 130, 0.25);
  border-radius: 3px;
  overflow: hidden;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 24, 16, 0.1);
}
.product-thumb {
  aspect-ratio: 4/3;
  background: var(--amber-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  overflow: hidden;
  position: relative;
}
.product-thumb .coming-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--amber);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
}
.product-thumb .launch-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--amber);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
}
.product-info { padding: var(--space-xl) var(--space-lg) var(--space-lg); }
.product-info .label { margin-bottom: 8px; }
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}
.product-info p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--amber);
  margin-bottom: var(--space-lg);
}

/* ── VALUES / PILLARS ── */
.values-section {
  background: var(--dark);
  color: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}
.value-item { border-top: 1px solid rgba(212, 137, 26, 0.3); padding-top: var(--space-lg); }
.value-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(212, 137, 26, 0.3);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.value-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.value-item p { font-size: 0.875rem; color: rgba(250, 246, 239, 0.55); line-height: 1.7; }

/* ── BRAND STORY / EDITORIAL ── */
.editorial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.editorial-text {
  background: var(--oat);
  padding: var(--space-4xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.editorial-visual {
  background: var(--amber-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.editorial-visual-inner { position: relative; z-index: 1; text-align: center; }
.editorial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--dark);
  margin: var(--space-xl) 0;
}
.editorial-cite {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--mid);
  text-transform: uppercase;
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--oat); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.testimonial-card {
  background: #fff;
  padding: var(--space-xl);
  border-radius: 2px;
  border-left: 3px solid var(--amber);
}
.stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.testimonial-author { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.08em; }

/* ── B2B CALLOUT ── */
.b2b-callout {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
}
.b2b-callout h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}
.b2b-callout p { color: rgba(250, 246, 239, 0.6); max-width: 560px; margin: 0 auto var(--space-xl); font-size: 0.95rem; }
.b2b-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.b2b-pill {
  border: 1px solid rgba(212, 137, 26, 0.4);
  color: var(--amber);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(212, 137, 26, 0.15);
  padding: var(--space-3xl) 0 var(--space-xl);
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(250, 246, 239, 0.45);
  line-height: 1.8;
  margin: var(--space-md) 0 var(--space-xl);
  max-width: 280px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream);
}
.footer-logo span { color: var(--amber); }
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.35);
  margin-bottom: var(--space-lg);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(250, 246, 239, 0.5);
  transition: color var(--duration) var(--ease);
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(250, 246, 239, 0.06);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(250, 246, 239, 0.25);
}
.social-links { display: flex; gap: var(--space-md); }
.social-links a {
  color: rgba(250, 246, 239, 0.3);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--duration) var(--ease);
}
.social-links a:hover { color: var(--amber); }

/* ── PAGE HEADER (interior pages) ── */
.page-header {
  background: var(--dark);
  padding: 140px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  bottom: -20%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at center,
    rgba(212,137,26,0.14) 0%,
    rgba(212,137,26,0.06) 40%,
    transparent 70%);
  pointer-events: none;
}
.page-header .label { margin-bottom: 16px; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}
.page-header p {
  color: rgba(250, 246, 239, 0.55);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
}

/* ── WHOLESALE PAGE ── */
.wholesale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}
.wholesale-card {
  background: #fff;
  border: 1px solid rgba(196, 168, 130, 0.25);
  border-radius: 3px;
  padding: var(--space-2xl);
}
.wholesale-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.moq-table { width: 100%; margin: var(--space-xl) 0; border-collapse: collapse; }
.moq-table th, .moq-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(196, 168, 130, 0.2);
}
.moq-table th {
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  text-transform: uppercase;
  background: var(--amber-lt);
}
.inquiry-form { max-width: 680px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-bottom: var(--space-md); }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-md); }
.form-group label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; color: var(--mid); text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(196, 168, 130, 0.4);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  outline: none;
  transition: border-color var(--duration) var(--ease);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--amber); }

/* ── DIVIDER ── */
.divider {
  width: 40px;
  height: 2px;
  background: var(--amber);
  margin: var(--space-lg) 0;
}
.divider--center { margin: var(--space-lg) auto; }

/* ── FEATURE TAGS ── */
.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: var(--space-lg) 0; }
.feature-tag {
  background: var(--amber-lt);
  color: var(--amber);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.feature-tag.amber-tag {
  background: var(--amber-lt);
  color: var(--amber-dk);
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.commitment-item { display: flex; gap: var(--space-md); }
.commitment-icon {
  width: 40px;
  height: 40px;
  background: var(--amber-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
}
.commitment-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; margin-bottom: 4px; }
.commitment-item p { font-size: 0.85rem; color: var(--mid); line-height: 1.65; }

/* ── ANIMATIONS ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-amber { color: var(--amber); }
.text-muted { color: var(--muted); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* ══════════════════════════════════════════════════════════
   EXTENDED COMPONENTS — added for multi-page build
   ══════════════════════════════════════════════════════════ */

/* ── NAV EXTENDED ── */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--cream);
  transition: color var(--duration) var(--ease);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(250,246,239,0.85);
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease), background var(--duration) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
}
.nav-mobile.open { display: flex; }
.nav-mobile ul { display: flex; flex-direction: column; align-items: center; gap: var(--space-xl); }
.nav-mobile a { font-size: 1.5rem; color: var(--cream); letter-spacing: 0.08em; font-family: var(--font-display); }
.nav-mobile a:hover { color: var(--amber); }

/* Scrolled state — light background, dark text */
.nav.scrolled .nav-logo-text { color: var(--dark); }
.nav.scrolled .nav-links a { color: var(--charcoal); }
.nav.scrolled .nav-cta { background: var(--amber); }
.nav.scrolled .nav-toggle span { background: var(--dark); }

/* ── HERO EXTENDED ── */
.hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 0 80px;
  gap: var(--space-3xl);
  min-height: 100vh;
  position: relative;
  z-index: 2;
}
.hero-label {
  color: var(--amber);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: heroEntrance 0.9s 0.15s both cubic-bezier(0.25,0.46,0.45,0.94);
}
.hero-title {
  color: #FFFFFF;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: heroEntrance 1s 0.3s both cubic-bezier(0.25,0.46,0.45,0.94);
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--amber); font-style: italic; }
.hero-subtitle {
  color: rgba(250,246,239,0.72);
  max-width: 500px;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  animation: heroEntrance 0.9s 0.5s both cubic-bezier(0.25,0.46,0.45,0.94);
}
.hero-actions {
  opacity: 0;
  animation: heroEntrance 0.9s 0.68s both cubic-bezier(0.25,0.46,0.45,0.94);
}
@keyframes heroEntrance {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  animation: heroVisualIn 1.1s 0.4s both cubic-bezier(0.25,0.46,0.45,0.94);
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateX(30px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
/* Decorative accent line left of hero text */
.hero-content {
  position: relative;
}
.hero-content::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--amber) 25%, var(--amber) 75%, transparent);
  opacity: 0.5;
}
.hero-product-stack { position: relative; text-align: center; width: 100%; }
.hero-product-img {
  width: 88%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 16px;
  filter:
    drop-shadow(0 50px 120px rgba(212,137,26,0.6))
    drop-shadow(0 16px 40px rgba(0,0,0,0.55))
    drop-shadow(0 0 80px rgba(212,137,26,0.2));
  animation: heroFloat 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  33%      { transform: translateY(-14px) rotate(0.4deg); }
  66%      { transform: translateY(-7px) rotate(-0.25deg); }
}
/* warm amber spotlight behind product */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(212,137,26,0.32) 0%,
    rgba(212,137,26,0.18) 30%,
    rgba(212,137,26,0.06) 55%,
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
/* second ring for depth */
.hero-visual::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 320px; height: 320px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center,
    rgba(244,185,66,0.18) 0%,
    transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite reverse;
}
@keyframes glowPulse {
  0%,100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 0.7; transform: translate(-50%,-50%) scale(1.08); }
}
.hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(44,24,16,0.75);
  border: 1px solid rgba(212,137,26,0.45);
  backdrop-filter: blur(12px);
  padding: 10px var(--space-xl);
  border-radius: 2px;
  margin-top: var(--space-xl);
}
.hero-badge .label { color: var(--amber); font-size: 0.65rem; }
.hero-badge-sub { font-size: 0.78rem; color: rgba(250,246,239,0.7); letter-spacing: 0.05em; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,246,239,0.35);
  animation: scrollHint 2.5s ease-in-out infinite;
  z-index: 3;
}
@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll-hint .label { color: rgba(250,246,239,0.3); }

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(212,137,26,0.18);
  border-bottom: 1px solid rgba(212,137,26,0.18);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(to right, var(--charcoal), transparent); }
.marquee-strip::after  { right: 0; background: linear-gradient(to left, var(--charcoal), transparent); }
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
  align-items: center;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.48);
  padding: 0 var(--space-xl);
  transition: color 0.2s;
}
.marquee-item:hover { color: var(--amber); }
.marquee-sep {
  color: var(--amber);
  opacity: 0.6;
  font-size: 0.55rem;
  padding: 0 2px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--oat);
  border-bottom: 1px solid rgba(196,168,130,0.25);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.trust-item svg { color: var(--amber); flex-shrink: 0; }
.trust-divider { width: 1px; height: 18px; background: rgba(196,168,130,0.4); }

/* ── SECTION HEADERS ── */
.section-header { margin-bottom: var(--space-2xl); }
.section-header .label { margin-bottom: var(--space-md); }
.section-label { color: var(--amber); }
.section-intro { max-width: 560px; color: var(--mid); margin-top: var(--space-lg); }
.section-header h2 {
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--amber), rgba(212,137,26,0));
  margin-top: 18px;
}

/* ── PRODUCT CARDS (homepage/products page) ── */
.product-card-img-wrap {
  display: block;
  position: relative;
  background: var(--amber-lt);
  padding: var(--space-xl);
  border-bottom: 1px solid rgba(196,168,130,0.15);
  overflow: hidden;
}
.product-card-img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--amber);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
}
.product-card-badge--coming { background: var(--amber); }
.product-card-body { padding: var(--space-xl) var(--space-lg) var(--space-lg); }
.product-card-label { color: var(--amber); margin-bottom: var(--space-sm); }
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}
.product-card-pack {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 300;
}
.product-card-desc { font-size: 0.875rem; color: var(--mid); line-height: 1.7; margin-bottom: var(--space-lg); }
.product-card-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-sm); }
.product-card-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--amber); }
.product-card-price--tbd { color: var(--muted); font-size: 1rem; }
.products-cta { text-align: center; margin-top: var(--space-2xl); }

/* ── EDITORIAL SECTION (dark) ── */
.dark-section { background: var(--dark); padding: var(--space-3xl) 0; }
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}
.editorial-content { max-width: 520px; }
.editorial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cream);
  line-height: 1.5;
  margin: var(--space-xl) 0;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(212,137,26,0.5);
}
.editorial-attr { color: var(--amber); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: var(--space-xl); }
.editorial-body { color: rgba(250,246,239,0.65); line-height: 1.8; }
.editorial-image { display: flex; align-items: center; justify-content: center; }
.editorial-img-frame {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--charcoal);
}
.editorial-img-frame--oat { background: var(--oat); }
.editorial-img-inner { width: 100%; height: 100%; }

/* ── VALUES GRID (homepage) ── */
.values-section { padding: var(--space-3xl) 0; }
.value-card {
  padding: var(--space-xl) 0;
  border-top: 1px solid rgba(196,168,130,0.3);
}
.value-icon {
  width: 52px;
  height: 52px;
  background: var(--amber-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: var(--space-lg);
}
.value-title { margin-bottom: var(--space-md); color: var(--cream); }
.value-desc { color: rgba(250,246,239,0.62); font-size: 0.875rem; line-height: 1.75; }
.values-section .value-card { border-top-color: rgba(212,137,26,0.2); }

/* ── EMAIL CAPTURE EXTENDED ── */
.email-capture-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.email-capture-text h2 { color: var(--dark); }
.email-capture-form { display: flex; flex-direction: column; gap: var(--space-md); }
.email-capture-row { display: flex; gap: 10px; flex-wrap: wrap; }
.email-capture-input {
  flex: 1 1 200px;
  padding: 13px 16px;
  border: 1.5px solid rgba(196,168,130,0.45);
  border-radius: 2px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color var(--duration) var(--ease);
}
.email-capture-input--name { flex: 0 1 140px; }
.email-capture-input:focus { border-color: var(--amber); }
.email-capture-input::placeholder { color: var(--muted); }
.email-capture-btn { flex-shrink: 0; white-space: nowrap; }
.email-capture-note { font-size: 0.72rem; color: var(--muted); }
.email-capture-success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--amber);
  font-weight: 500;
}

/* ── B2B SECTION ── */
.b2b-callout { padding: var(--space-3xl) 0; }
.b2b-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3xl);
  align-items: center;
  background: var(--dark);
  padding: var(--space-3xl);
  border-radius: 3px;
}
.b2b-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  min-width: 200px;
}
.b2b-feature { text-align: center; }
.b2b-feature-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  display: block;
}
.b2b-feature-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

/* ── FOOTER EXTENDED ── */
.footer-logo { display: flex; align-items: center; gap: 10px; color: var(--cream); margin-bottom: var(--space-md); }
.footer-logo span { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.14em; }
.footer-tagline { color: rgba(250,246,239,0.45); font-size: 0.875rem; line-height: 1.7; max-width: 240px; }
.footer-nav-title { color: rgba(250,246,239,0.35); margin-bottom: var(--space-lg); }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.875rem; color: rgba(250,246,239,0.5); }
.footer-nav a:hover { color: var(--amber); }
.footer-email-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(250,246,239,0.15);
  border-radius: 2px;
  background: rgba(250,246,239,0.07);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--cream);
  outline: none;
}
.footer-email-input::placeholder { color: rgba(250,246,239,0.3); }
.footer-email-input:focus { border-color: var(--amber); }
.footer-form-row { display: flex; gap: 8px; }
.footer-legal { display: flex; gap: var(--space-lg); }
.footer-legal a { color: rgba(250,246,239,0.25); }
.footer-legal a:hover { color: var(--amber); }

/* ── PAGE HEADER VARIANTS ── */
.page-header--dark { background: var(--dark); }
.page-header--accent { background: var(--amber-lt); }
.page-header--accent h1 { color: var(--dark); }
.page-header--accent .page-header-sub { color: var(--mid); }
.page-header-label { color: var(--taupe); }
.page-header-sub { max-width: 580px; margin: var(--space-lg) auto 0; }

/* ── PRODUCT DETAIL PAGE ── */
.product-detail-section { padding: var(--space-3xl) 0; border-bottom: 1px solid rgba(196,168,130,0.15); }
.product-detail-section--alt { background: var(--oat); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
.product-detail-grid--reversed .product-detail-visual { order: 2; }
.product-detail-grid--reversed .product-detail-content { order: 1; }
.product-detail-img-frame {
  background: var(--amber-lt);
  border-radius: 3px;
  padding: var(--space-2xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-img-frame--oat { background: var(--oat); }
.product-detail-img-frame--accent { background: var(--amber-lt); }
.product-detail-img { max-width: 100%; max-height: 400px; object-fit: contain; }
.product-detail-badge-row { margin-top: var(--space-md); }
.product-launch-badge {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 1px;
}
.product-launch-badge--coming { background: var(--amber); }
.product-detail-pack {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: var(--space-xl);
}
.product-detail-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(196,168,130,0.2);
  border-bottom: 1px solid rgba(196,168,130,0.2);
}
.product-detail-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--amber);
}
.product-detail-price--tbd { font-size: 1.2rem; color: var(--muted); }
.product-detail-per { font-size: 0.8rem; color: var(--muted); }
.product-detail-early-price {
  font-size: 0.8rem;
  color: var(--amber);
  background: var(--amber-lt);
  padding: 4px 10px;
  border-radius: 20px;
}
.product-features { display: flex; flex-direction: column; gap: var(--space-lg); margin: var(--space-xl) 0; }
.product-features li { display: flex; align-items: flex-start; gap: var(--space-md); font-size: 0.875rem; color: var(--mid); line-height: 1.7; }
.product-features li svg { flex-shrink: 0; margin-top: 3px; }
.product-features li strong { color: var(--dark); }
.product-detail-care {
  background: var(--oat);
  padding: var(--space-lg);
  border-radius: 2px;
  margin-bottom: var(--space-xl);
}
.product-detail-cta { margin-top: var(--space-xl); }

/* ── COMING SOON DIVIDER ── */
.coming-soon-divider { padding: var(--space-lg) 0; background: var(--cream); }
.coming-soon-inner { display: flex; align-items: center; gap: 0; }
.coming-soon-line { flex: 1; height: 1px; background: rgba(196,168,130,0.3); }

/* ── WHOLESALE PAGE ── */
.wholesale-icp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.wholesale-icp-card {
  padding: var(--space-xl);
  background: #fff;
  border: 1px solid rgba(196,168,130,0.2);
  border-radius: 2px;
}
.wholesale-icp-icon {
  width: 52px;
  height: 52px;
  background: var(--amber-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: var(--space-lg);
}
.wholesale-icp-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: var(--space-sm); }
.wholesale-icp-card p { font-size: 0.875rem; color: var(--mid); line-height: 1.7; }
.moq-table-wrap { overflow-x: auto; margin-top: var(--space-2xl); }
.moq-row--sample { background: var(--oat); color: var(--mid); }
.moq-row--highlight td { color: var(--dark); font-weight: 500; }
.moq-row--highlight { background: var(--amber-lt); }
.wholesale-form-wrap { max-width: 760px; margin: 0 auto; }
.wholesale-form-header { margin-bottom: var(--space-2xl); }
.wholesale-inquiry-form { background: rgba(250,246,239,0.05); padding: var(--space-2xl); border-radius: 3px; border: 1px solid rgba(250,246,239,0.08); }
.wholesale-success { text-align: center; padding: var(--space-3xl); }
.branding-options { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-xl); }
.branding-option { display: flex; align-items: center; gap: var(--space-md); }
.branding-option-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--amber-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── FORM CLASSES ── */
.form-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.5);
}
.form-input {
  padding: 13px 16px;
  border: 1.5px solid rgba(250,246,239,0.15);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream);
  background: rgba(250,246,239,0.07);
  outline: none;
  width: 100%;
  transition: border-color var(--duration) var(--ease);
  resize: vertical;
}
.form-input:focus { border-color: var(--amber); }
.form-input::placeholder { color: rgba(250,246,239,0.3); }
/* Light-bg form inputs (contact page) */
.contact-form .form-label { color: var(--mid); }
.contact-form .form-input {
  color: var(--dark);
  background: #fff;
  border-color: rgba(196,168,130,0.4);
}
.contact-form .form-input:focus { border-color: var(--amber); }
.contact-form .form-input::placeholder { color: var(--muted); }
.form-textarea { min-height: 120px; }
.form-submit-row { margin-top: var(--space-xl); }
.form-submit-btn { min-width: 180px; }

/* ── ABOUT PAGE ── */
.about-story-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-3xl);
  align-items: start;
}
.about-story-content { max-width: 620px; }
.about-story-aside { position: sticky; top: 100px; }
.about-values-stack { display: flex; flex-direction: column; gap: var(--space-xl); }
.about-value-item { display: flex; align-items: flex-start; gap: var(--space-md); }
.about-value-item > svg { flex-shrink: 0; margin-top: 2px; }
.about-value-item .label { margin-bottom: 4px; }
.about-value-item .body-sm { color: var(--mid); }
.about-founder-sig {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(196,168,130,0.3);
}
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}
.commitment-item {
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) 0;
  border-top: 3px solid var(--amber);
}
.commitment-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(212,137,26,0.25);
  line-height: 1;
  margin-bottom: var(--space-md);
}
.commitment-title { margin-bottom: var(--space-md); color: var(--dark); }
.about-mission { max-width: 700px; margin: 0 auto; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-3xl);
  align-items: start;
}
.contact-sidebar { position: sticky; top: 100px; }
.contact-method { display: flex; align-items: flex-start; gap: var(--space-md); margin-bottom: var(--space-xl); }
.contact-method-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--amber-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-link { color: var(--amber); font-weight: 500; }
.contact-link:hover { text-decoration: underline; }
.contact-quick-links { margin-top: var(--space-2xl); padding-top: var(--space-xl); border-top: 1px solid rgba(196,168,130,0.25); }
.contact-faq-list { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-md); }
.contact-faq-list li { display: flex; flex-direction: column; gap: 4px; }
.contact-faq-list a { font-size: 0.875rem; color: var(--dark); font-weight: 500; }
.contact-faq-list a:hover { color: var(--amber); }
.contact-faq-list .body-xs { color: var(--muted); }
.contact-form-wrap { background: #fff; padding: var(--space-2xl); border-radius: 3px; border: 1px solid rgba(196,168,130,0.2); }
.contact-success { text-align: center; padding: var(--space-2xl); }
.contact-b2b-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
  .editorial-section { grid-template-columns: 1fr; }
  .editorial-visual { min-height: 300px; }
  .editorial-text { padding: var(--space-2xl); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .wholesale-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  /* Extended components */
  .hero-inner { grid-template-columns: 1fr; padding-top: 120px; padding-bottom: 60px; }
  .hero-visual { display: none; }
  .editorial-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .editorial-content { max-width: 100%; }
  .email-capture-inner { grid-template-columns: 1fr; }
  .b2b-inner { grid-template-columns: 1fr; }
  .b2b-features { flex-direction: row; justify-content: space-around; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-grid--reversed .product-detail-visual { order: 0; }
  .product-detail-grid--reversed .product-detail-content { order: 0; }
  .wholesale-icp-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
  .about-story-aside { position: static; }
}
@media (max-width: 768px) {
  :root { --space-3xl: 64px; --space-4xl: 80px; }
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-btn { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.2rem; color: var(--cream); }
  .hero-content { padding: 100px 24px 60px; }
  .hero-illustration { display: none; }
  .container { padding: 0 var(--space-lg); }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .commitment-grid { grid-template-columns: 1fr; }
  .editorial-text { padding: var(--space-xl); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  /* Extended responsive */
  .trust-items { gap: var(--space-lg); }
  .trust-divider { display: none; }
  .email-capture-row { flex-direction: column; }
  .email-capture-input--name { flex: 1; }
  .b2b-inner { padding: var(--space-xl); }
  .b2b-features { flex-direction: row; flex-wrap: wrap; gap: var(--space-lg); }
  .wholesale-icp-grid { grid-template-columns: 1fr; }
  .wholesale-inquiry-form { padding: var(--space-lg); }
  .contact-b2b-callout { flex-direction: column; }
  .nav-cta { display: none; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

/* ── DARK PRODUCT FRAME (real photos with amber spotlight) ── */
.product-detail-img-frame--dark {
  background: var(--dark);
  border-radius: 3px;
  padding: var(--space-xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-detail-img-frame--dark::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 65%;
  background: radial-gradient(ellipse at center,
    rgba(212,137,26,0.22) 0%,
    rgba(212,137,26,0.10) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.product-detail-img-frame--dark .product-detail-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}

/* ── COMING SOON DIVIDER (2027 products) ── */
.coming-2027-divider {
  padding: var(--space-3xl) 0 0;
}
.coming-2027-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.coming-2027-line { flex: 1; height: 1px; background: var(--oat); }
.coming-2027-label {
  padding: var(--space-sm) var(--space-xl);
  background: var(--dark);
  color: var(--cream);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 2px;
}
.coming-2027-sub {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--muted);
}
.product-launch-badge--2027 { background: var(--charcoal); color: var(--taupe); }


/* ── REDUCED MOTION — respect user preference ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in-up, .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
  html { scroll-behavior: auto; }
}


/* ── WHOLESALE: How It Works steps ── */
.wholesale-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.wholesale-step {
  background: #fff;
  border: 1px solid rgba(196, 168, 130, 0.25);
  border-radius: 3px;
  padding: var(--space-xl);
}
.wholesale-step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--amber);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.wholesale-step h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
  color: var(--dark);
}
.wholesale-step p {
  color: var(--mid);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .wholesale-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .wholesale-steps-grid { grid-template-columns: 1fr; }
}


/* ── RECIPE LIBRARY ── */
.recipe { background: var(--cream); }
.recipe-hero {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}
.recipe-hero-img {
  width: 100%;
  height: clamp(280px, 50vh, 520px);
  object-fit: cover;
  display: block;
}
.recipe-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,24,16,0.05) 0%, rgba(44,24,16,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-2xl) 0;
}
.recipe-hero-overlay h1, .recipe-hero-overlay .display-lg { color: var(--cream); }
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  font-size: 0.85rem;
  color: var(--cream);
}
.recipe-meta-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.recipe-section { padding: var(--space-3xl) 0; }
.recipe-lede {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(196,168,130,0.3);
}
.recipe-h2 { margin-top: var(--space-2xl); margin-bottom: var(--space-lg); color: var(--dark); }
.recipe-h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--dark); margin: var(--space-lg) 0 var(--space-sm); }
.recipe-section p { margin-bottom: var(--space-md); color: var(--charcoal); line-height: 1.8; }

.recipe-ingredients {
  background: var(--amber-lt);
  padding: var(--space-xl);
  border-radius: 3px;
  border-left: 3px solid var(--amber);
  margin: var(--space-xl) 0;
}
.recipe-ingredients .recipe-h3 { margin-top: 0; color: var(--amber-dk); }
.ingredient-list { list-style: none; padding: 0; }
.ingredient-list li {
  padding: var(--space-sm) 0;
  border-bottom: 1px dashed rgba(196,168,130,0.3);
  color: var(--charcoal);
  line-height: 1.6;
}
.ingredient-list li:last-child { border-bottom: none; }
.ingredient-list strong { display: inline-block; min-width: 60px; color: var(--dark); }
.ing-alt { color: var(--mid); font-size: 0.9em; }

.recipe-callout {
  background: #fff;
  border: 1px solid rgba(196,168,130,0.3);
  padding: var(--space-xl);
  border-radius: 3px;
  margin: var(--space-xl) 0;
}
.recipe-callout--accent {
  background: var(--oat);
  border-left: 3px solid var(--amber);
}
.recipe-callout .label { color: var(--amber-dk); margin-bottom: var(--space-md); }
.recipe-callout p { margin-bottom: var(--space-md); }
.recipe-callout p:last-child { margin-bottom: 0; }

.method-steps { list-style: none; padding: 0; counter-reset: step; }
.method-steps > li {
  counter-increment: step;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(196,168,130,0.2);
  position: relative;
  padding-left: 70px;
}
.method-steps > li:last-child { border-bottom: none; }
.method-steps > li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: var(--space-xl);
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.method-steps .recipe-h3 { margin-top: 0; }

.variations-list { list-style: none; padding: 0; }
.variations-list li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(196,168,130,0.25);
  color: var(--charcoal);
  line-height: 1.7;
}
.variations-list li:last-child { border-bottom: none; }
.variations-list strong { color: var(--dark); }

.recipe-faq details {
  background: #fff;
  border: 1px solid rgba(196,168,130,0.25);
  padding: var(--space-md) var(--space-lg);
  border-radius: 3px;
  margin-bottom: var(--space-md);
}
.recipe-faq summary {
  cursor: pointer;
  padding: var(--space-sm) 0;
  color: var(--dark);
  font-size: 1rem;
  outline: none;
}
.recipe-faq summary:hover { color: var(--amber); }
.recipe-faq details[open] summary { color: var(--amber); padding-bottom: var(--space-md); border-bottom: 1px dashed rgba(196,168,130,0.3); }
.recipe-faq details p { margin: var(--space-md) 0 var(--space-sm); }

.related-list { list-style: none; padding: 0; }
.related-list li {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(196,168,130,0.25);
}
.related-list li:last-child { border-bottom: none; }
.related-list a {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  transition: color var(--duration) var(--ease);
}
.related-list a:hover { color: var(--amber-dk); }

/* ── RECIPE LIBRARY INDEX (cards grid) ── */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.recipe-card {
  background: #fff;
  border: 1px solid rgba(196,168,130,0.25);
  border-radius: 3px;
  overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.recipe-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,24,16,0.1); }
.recipe-card-img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.recipe-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration) var(--ease); }
.recipe-card:hover .recipe-card-img img { transform: scale(1.03); }
.recipe-card-body { padding: var(--space-lg); }
.recipe-card-tag { color: var(--mid); margin-bottom: var(--space-sm); font-size: 0.65rem; }
.recipe-card-body h3 { margin-bottom: var(--space-sm); font-size: 1.2rem; line-height: 1.3; }
.recipe-card-body h3 a { color: var(--dark); transition: color var(--duration) var(--ease); }
.recipe-card-body h3 a:hover { color: var(--amber); }
.recipe-card-body p { color: var(--mid); margin-bottom: var(--space-md); line-height: 1.6; }
.recipe-card-meta { color: var(--mid); font-size: 0.78rem; display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.recipe-card--pillar { border-left: 3px solid var(--amber); }

.upcoming-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md) var(--space-2xl);
}
.upcoming-list li {
  padding: var(--space-md) 0;
  border-bottom: 1px dashed rgba(196,168,130,0.4);
  color: var(--charcoal);
  line-height: 1.6;
}
.upcoming-list strong { display: inline-block; min-width: 50px; color: var(--amber); font-family: var(--font-display); font-size: 1rem; }
.upcoming-list em { color: var(--amber-dk); font-size: 0.85rem; }

@media (max-width: 900px) {
  .recipe-grid { grid-template-columns: repeat(2, 1fr); }
  .upcoming-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .recipe-grid { grid-template-columns: 1fr; }
  .method-steps > li { padding-left: 50px; }
  .method-steps > li::before { font-size: 1.3rem; }
  .recipe-meta { gap: var(--space-md); font-size: 0.8rem; }
  .recipe-lede { font-size: 1.15rem; }
}
