/* ═══════════════════════════════════════════════════════
   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-stack picture { display: inline-block; max-width: 460px; width: 88%; }
.hero-product-img {
  width: 100%;
  max-width: 460px;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  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;
  display: block;
}
@media (max-width: 900px) {
  .hero-product-img { max-height: 380px; }
}
@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; }
}


/* ═══════════════════════════════════════════════════════════
   v3.6.1 SITE REFRESH — 2026-05-07
   Customer-feedback-driven changes (Dany interview + UX review)
   This version fixes the v3.6 regression on the values-section.
   ═══════════════════════════════════════════════════════════ */

/* ── 1. NAV LOGO — significantly larger, more confident ── */
.nav-logo svg { width: 44px !important; height: 44px !important; transition: transform 0.4s var(--ease); }
.nav-logo:hover svg { transform: rotate(-4deg) scale(1.06); }
.nav-logo-text { font-size: 1.7rem !important; letter-spacing: 0.22em !important; font-weight: 500 !important; }
.nav-logo { gap: 12px !important; }
@media (max-width: 720px) {
  .nav-logo svg { width: 36px !important; height: 36px !important; }
  .nav-logo-text { font-size: 1.4rem !important; }
}

/* ── 2. RECIPE STEP SUBHEADS — bolder, scannable ── */
.method-steps .recipe-h3,
.recipe-section .recipe-h3 {
  font-weight: 700 !important;
  font-size: 1.25rem;
  color: var(--dark);
  letter-spacing: -0.005em;
}
.method-steps .recipe-h3 { margin-top: 0; }
/* Inline keyword bolding inside method body for scannability */
.method-steps .step-detail strong,
.recipe-section strong { color: var(--dark); font-weight: 700; }

/* ── 3. RECIPE HERO — much darker, ensure title clears nav ── */
.recipe-hero {
  padding-top: 84px !important;  /* push content below sticky nav */
  background: var(--dark);
  position: relative;
}
.recipe-hero-img {
  width: 100%;
  height: clamp(380px, 60vh, 600px);
  object-fit: cover;
  display: block;
}
.recipe-hero-overlay {
  /* Heavy darkening — title must read against ANY food image (brioche, naan, white cheese, etc.) */
  background: linear-gradient(
    180deg,
    rgba(44,24,16,0.96) 0%,
    rgba(44,24,16,0.88) 40%,
    rgba(44,24,16,0.90) 70%,
    rgba(44,24,16,0.97) 100%
  ) !important;
  /* Top padding clears the 64px sticky nav + breathing room — overlay is absolutely positioned, so .recipe-hero padding-top has no effect on content here */
  padding: calc(var(--space-3xl) + 80px) 0 var(--space-2xl) !important;
}
/* Heavier title weight + sharper shadow — display fonts at weight 300 ghost on bright bg */
.recipe-hero-overlay h1,
.recipe-hero-overlay .display-lg {
  font-weight: 500 !important;
  letter-spacing: -0.01em;
}
.recipe-hero-overlay h1,
.recipe-hero-overlay .display-lg { color: var(--cream); text-shadow: 0 2px 16px rgba(0,0,0,0.85), 0 0 4px rgba(0,0,0,0.6); }
.recipe-hero-overlay .body-lg,
.recipe-hero-overlay p,
.recipe-hero-overlay .label { text-shadow: 0 1px 8px rgba(0,0,0,0.7); }
.recipe-hero-overlay .recipe-meta-item { text-shadow: 0 1px 6px rgba(0,0,0,0.6); }

/* Make sure the nav stays clearly above the hero */
.nav { z-index: 100 !important; }
.nav.scrolled { background: rgba(44,24,16,0.98) !important; backdrop-filter: blur(8px); }

/* SCROLLED nav is DARK now — flip foreground colors so text/wordmark stays readable */
.nav.scrolled .nav-logo-text { color: var(--cream) !important; }
.nav.scrolled .nav-links a { color: rgba(250, 246, 239, 0.85) !important; }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--amber) !important; }
.nav.scrolled .nav-cta { background: var(--amber) !important; color: var(--dark) !important; }
.nav.scrolled .nav-toggle span { background: var(--cream) !important; }

/* ── 4. ANIMATED AMBER RULE — slow continuous loop ── */
.animated-rule {
  position: relative;
  width: clamp(120px, 18vw, 240px);
  height: 1.5px;
  margin: var(--space-md) auto 0;
  background: rgba(212, 137, 26, 0.18);
  overflow: hidden;
  border-radius: 1px;
}
.animated-rule::before {
  content: "";
  position: absolute;
  top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 137, 26, 0.95) 50%,
    transparent 100%
  );
  animation: ruleSweep 4s linear infinite;
}
@keyframes ruleSweep {
  0%   { left: -40%; }
  100% { left: 140%; }
}
/* Light variant for dark sections */
.dark-section .animated-rule,
.values-section .animated-rule {
  background: rgba(244, 185, 66, 0.22);
}
.dark-section .animated-rule::before,
.values-section .animated-rule::before {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(244, 185, 66, 0.95) 50%,
    transparent 100%
  );
}

/* ── 5. PILLAR ICONS (values-section) — idle bob + hover lift ── */
/* values-section is DARK by design — DO NOT change its background */
.value-card .value-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(244, 185, 66, 0.12);
  color: var(--amber);
  margin-bottom: var(--space-md);
  transition: transform 0.5s var(--ease), color 0.4s var(--ease), background 0.4s var(--ease);
  animation: iconIdle 6s ease-in-out infinite;
  animation-delay: var(--icon-delay, 0s);
}
.value-card:nth-child(2) .value-icon { --icon-delay: -1.5s; }
.value-card:nth-child(3) .value-icon { --icon-delay: -3s; }
.value-card:nth-child(4) .value-icon { --icon-delay: -4.5s; }
.value-card:hover .value-icon {
  transform: translateY(-5px) scale(1.1);
  color: var(--amber-mid);
  background: rgba(244, 185, 66, 0.22);
}
@keyframes iconIdle {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* ── 6. WHOLESALE ICP ICONS — same pattern, different rhythm ── */
.wholesale-icp-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--amber-lt);
  color: var(--amber-dk);
  margin-bottom: var(--space-md);
  transition: transform 0.5s var(--ease), color 0.4s var(--ease), background 0.4s var(--ease);
  animation: iconIdle 7s ease-in-out infinite;
  animation-delay: var(--icp-delay, 0s);
}
.wholesale-icp-card:nth-child(2) .wholesale-icp-icon { --icp-delay: -1.75s; }
.wholesale-icp-card:nth-child(3) .wholesale-icp-icon { --icp-delay: -3.5s; }
.wholesale-icp-card:nth-child(4) .wholesale-icp-icon { --icp-delay: -5.25s; }
.wholesale-icp-card:hover .wholesale-icp-icon {
  transform: translateY(-5px) scale(1.1);
  color: var(--amber-dk);
  background: rgba(212, 137, 26, 0.22);
}
.wholesale-icp-card {
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
  border-radius: 6px;
  padding: var(--space-xl) var(--space-lg);
}
.wholesale-icp-card:hover {
  transform: translateY(-3px);
  background: rgba(212, 137, 26, 0.06);
}

/* ── 7. PRODUCT CARDS (homepage preview) — alignment, hover legibility ── */
.products-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}
@media (max-width: 980px) { .products-grid { grid-template-columns: 1fr; } }
.product-card {
  display: flex !important;
  flex-direction: column;
  background: #fffaf0 !important;
}
.product-card-body {
  display: flex; flex-direction: column; flex-grow: 1;
}
.product-card-meta {
  margin-top: auto !important;
  padding-top: var(--space-md);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md);
}
.product-card-meta .btn-outline.btn-sm,
.product-card-meta .btn-outline,
.product-card-meta a.btn-outline {
  border: 1.5px solid var(--amber-dk) !important;
  color: var(--amber-dk) !important;
  background: transparent !important;
  font-weight: 500;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  border-radius: 3px;
  display: inline-block;
}
.product-card-meta .btn-outline:hover,
.product-card-meta .btn-outline.btn-sm:hover {
  background: var(--amber-dk) !important;
  color: var(--cream) !important;
  border-color: var(--amber-dk) !important;
  transform: translateX(2px);
}
.product-card-price--tbd {
  color: var(--mid);
  font-style: italic;
  font-size: 1rem;
}
.product-card-badge--coming {
  background: var(--charcoal) !important;
  color: var(--amber-mid) !important;
  letter-spacing: 0.12em;
}

/* ── 8. ALL "PRIMARY" CTAs — universal styling so View All Products,
        Learn About Wholesale, Request a Custom Quote, Talk to Us all
        render consistently in both light and dark contexts ── */
.btn-primary,
a.btn-primary,
button.btn-primary {
  display: inline-block !important;
  padding: 0.95rem 2.2rem !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  font-family: var(--font-body);
  letter-spacing: 0.05em !important;
  border-radius: 3px !important;
  background: var(--amber-dk) !important;
  color: var(--cream) !important;
  border: 1.5px solid var(--amber-dk) !important;
  text-decoration: none !important;
  transition: all 0.25s var(--ease) !important;
  cursor: pointer;
  text-align: center;
  line-height: 1.3 !important;
}
.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
  background: var(--charcoal) !important;
  border-color: var(--charcoal) !important;
  color: var(--cream) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(212,137,26,0.25) !important;
}
.btn-primary.btn-sm {
  padding: 0.6rem 1.4rem !important;
  font-size: 0.85rem !important;
}
/* Primary button on dark backgrounds (wholesale CTA, hero CTAs) — amber gold pop */
.dark-section .btn-primary,
[style*="background:var(--dark)"] .btn-primary,
.editorial-section .btn-primary,
.hero .btn-primary,
.values-section .btn-primary {
  background: var(--amber) !important;
  border-color: var(--amber) !important;
  color: var(--dark) !important;
  font-weight: 600 !important;
}
.dark-section .btn-primary:hover,
[style*="background:var(--dark)"] .btn-primary:hover,
.editorial-section .btn-primary:hover,
.hero .btn-primary:hover,
.values-section .btn-primary:hover {
  background: var(--amber-mid) !important;
  border-color: var(--amber-mid) !important;
  color: var(--dark) !important;
}

/* ── 9. HARSH WHITE → WARM LINEN — ONLY where appropriate ── */
/* Email-capture section was harsh; the values-section was already dark (KEEP IT DARK) */
.email-capture-section { background: var(--oat) !important; }
.testimonial-card,
.contact-form-wrap,
.share-card { background: #fdfaf2 !important; }

/* ── 10. WHY AGNI editorial frame — warm-glow ambient ── */
.editorial-img-frame {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: 4px;
}
.editorial-img-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(244,185,66,0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: warmGlow 8s ease-in-out infinite;
}
@keyframes warmGlow {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* ── 11. LANGUAGE TOGGLE — top-right nav chip ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(250, 246, 239, 0.35);
  border-radius: 100px;
  padding: 3px;
  margin-right: var(--space-md);
  font-family: var(--font-body);
}
.lang-toggle a {
  padding: 4px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(250, 246, 239, 0.65);
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
  font-weight: 500;
}
.lang-toggle a.active {
  background: var(--amber);
  color: var(--dark);
  font-weight: 600;
}
.lang-toggle a:hover:not(.active) {
  color: var(--cream);
}
.nav.scrolled .lang-toggle { border-color: rgba(44, 24, 16, 0.25); }
.nav.scrolled .lang-toggle a { color: rgba(44, 24, 16, 0.6); }
.nav.scrolled .lang-toggle a.active { background: var(--amber); color: var(--cream); }
@media (max-width: 720px) {
  .lang-toggle { margin-right: var(--space-sm); }
  .lang-toggle a { padding: 3px 8px; font-size: 0.65rem; }
}

/* ── 12. ACCESSIBILITY — respect prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  .animated-rule::before,
  .value-card .value-icon,
  .wholesale-icp-icon,
  .editorial-img-frame::after,
  .nav-logo:hover svg {
    animation: none !important;
    transition: none !important;
  }
}

/* ── end v3.6.1 ── */

/* ═══════════════════════════════════════════════════════════════════════
   v3.7 — DARK THEME APPLIED (2026-05-08)
   Reduces eye strain in low-light, gels with brand's warm-dark heritage.
   Hero gradients + already-dark sections preserved unchanged.
   Amber accent #D4891A is the ONE constant that works on dark.
═══════════════════════════════════════════════════════════════════════ */

:root {
  /* New dark-theme tokens — used only inside the dark-theme block below.
     Existing --cream / --oat / --dark variables stay unchanged so legacy
     rules (text colors on already-dark sections) keep working. */
  --bg-base:    #1A1108;  /* page bg — deep warm near-black */
  --bg-raised:  #241510;  /* alt section bg — slightly lighter */
  --bg-card:    #2A1A11;  /* card surface — barely raised from base */
  --txt-fg:     #FAF6EF;  /* primary text — same cream */
  --txt-soft:   rgba(250, 246, 239, 0.72);
  --txt-mid:    rgba(250, 246, 239, 0.55);
  --txt-dim:    rgba(250, 246, 239, 0.40);
  --border-warm: rgba(212, 137, 26, 0.18);
}

/* 1. PAGE BASE — body + default text */
body {
  background: var(--bg-base) !important;
  color: var(--txt-fg) !important;
}

/* 2. HEADINGS — keep cream on every page */
h1, h2, h3, h4, h5, h6,
.display-xl, .display-lg, .display-md, .display-sm {
  color: var(--txt-fg);
}

/* 3. BODY TEXT — softer cream */
.body-lg, .body-md, .body-sm, p { color: var(--txt-soft); }
strong, b { color: var(--txt-fg); }

/* 4. SECTION HEADER ::after — REMOVE when animated-rule sibling exists,
      so "Materials Matter" doesn't double up. */
.section-header:has(.animated-rule) h2::after { display: none !important; }
/* Belt-and-braces fallback for older browsers without :has() */
.values-section .section-header h2::after { display: none !important; }

/* 5. EDITORIAL TEXT (Why Agni)  — bg flip */
.editorial-text {
  background: var(--bg-raised) !important;
  color: var(--txt-fg) !important;
}
.editorial-quote { color: var(--txt-fg) !important; }
.editorial-cite { color: var(--txt-mid) !important; }

/* 6. TESTIMONIALS — bg flip */
.testimonials-section { background: var(--bg-raised) !important; }
.testimonial-card {
  background: var(--bg-card) !important;
  color: var(--txt-fg) !important;
  border: 1px solid var(--border-warm) !important;
}

/* 7. EMAIL CAPTURE — bg flip */
.email-capture-section { background: var(--bg-raised) !important; }
.email-capture-section h2 { color: var(--txt-fg) !important; }

/* 8. PRODUCT CARDS — flip light bg to dark card with subtle warm border */
.product-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-warm) !important;
}
.product-card-body { background: var(--bg-card) !important; }
.product-card-meta { background: transparent !important; }
.product-card-img-wrap { background: var(--bg-raised) !important; }
.product-card h3, .product-card-title, .product-card .recipe-h3,
.product-card-name { color: var(--txt-fg) !important; }
.product-card p, .product-card .body-sm,
.product-card-desc, .product-card-pack { color: var(--txt-soft) !important; }
.product-card-price--tbd { color: var(--txt-mid) !important; }
.product-card-label { color: var(--amber) !important; }
.product-card:hover { box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important; }

/* 9. RECIPE CONTENT — body of recipes (below hero) */
.recipe { background: var(--bg-base) !important; }
.recipe-section { background: var(--bg-base) !important; }
.recipe-section p, .recipe-section li { color: var(--txt-soft) !important; }
.recipe-section h2, .recipe-section h3, .recipe-section h4 { color: var(--txt-fg) !important; }
.recipe-section strong { color: var(--txt-fg) !important; }
.recipe-lede { color: var(--txt-fg) !important; font-size: 1.2rem; }
.recipe-meta-item { color: var(--txt-soft) !important; }
.method-steps li::before { color: var(--amber) !important; }
.recipe-h2, .recipe-h3 { color: var(--txt-fg) !important; }

/* 10. JOURNAL / EDITORIAL ARTICLE PAGES */
article, .journal-article, .article-section { background: var(--bg-base); color: var(--txt-fg); }
article p, .journal-article p { color: var(--txt-soft); }
article blockquote, .journal-article blockquote {
  background: var(--bg-raised);
  border-left: 3px solid var(--amber);
  color: var(--txt-fg);
}

/* 11. ABOUT PAGE — story sections */
.about-section { background: var(--bg-base); color: var(--txt-fg); }
.about-section p { color: var(--txt-soft); }

/* 12. WHOLESALE — ICP cards + how-it-works steps */
.wholesale-icp,
.icp-card,
.process-step {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-warm) !important;
  color: var(--txt-fg) !important;
}
.wholesale-icp h3, .icp-card h3, .process-step h3 { color: var(--txt-fg) !important; }
.wholesale-icp p, .icp-card p, .process-step p { color: var(--txt-soft) !important; }
.wholesale-icp-icon, .icp-icon, .process-step-icon {
  background: rgba(212, 137, 26, 0.12) !important;
  color: var(--amber) !important;
}

/* 13. MOQ table */
.moq-row { color: var(--txt-fg); border-bottom-color: var(--border-warm); }
.moq-row--sample {
  background: var(--bg-raised) !important;
  color: var(--txt-soft) !important;
}

/* 14. SHARE / SURVEY / CONTACT FORMS */
.share-card,
.contact-form-wrap,
.survey-form-wrap,
form .form-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-warm) !important;
  color: var(--txt-fg) !important;
}
.share-card h3,
.share-card h2,
.contact-form-wrap h3,
.survey-form-wrap h3 { color: var(--txt-fg) !important; }
.share-card p,
.contact-form-wrap p,
.survey-form-wrap p { color: var(--txt-soft) !important; }

/* 15. FORM INPUTS */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select {
  background: var(--bg-base) !important;
  color: var(--txt-fg) !important;
  border: 1px solid var(--border-warm) !important;
}
input::placeholder, textarea::placeholder { color: var(--txt-mid) !important; }
label { color: var(--txt-soft) !important; }

/* 16. COMING-SOON DIVIDER + 2027 LINE */
.coming-soon-divider { background: var(--bg-base) !important; }
.coming-soon-divider p { color: var(--txt-soft); }
.coming-2027-line { background: var(--border-warm) !important; }

/* 17. PRODUCT DETAIL PAGE alts */
.product-detail-section--alt { background: var(--bg-raised) !important; }
.product-detail-img-frame--oat { background: var(--bg-raised) !important; }
.product-detail-section { background: var(--bg-base); color: var(--txt-fg); }
.product-detail-section p { color: var(--txt-soft); }
.editorial-img-frame--oat { background: var(--bg-raised) !important; }

/* 18. NAV — top of page (unscrolled) — was transparent on light bg.
       Now bg is dark, so nav text needs to be cream/amber by default. */
.nav .nav-logo-text { color: var(--txt-fg); }
.nav .nav-links a { color: var(--txt-soft); }
.nav .nav-links a:hover, .nav .nav-links a.active { color: var(--amber); }
.nav .lang-toggle { border-color: var(--border-warm); }
.nav .lang-toggle a { color: var(--txt-mid); }
.nav .lang-toggle a.active { background: var(--amber); color: var(--bg-base); }

/* 19. FOOTER — already cream on dark, stays */
.footer { background: #0F0905 !important; }

/* 20. UTILITIES — anything that explicitly uses var(--cream) as background
       (testimonial-card already overridden above; recipe used as bg too) */
.recipe { background: var(--bg-base) !important; }

/* 21. DIVIDERS / RULES — soften to amber-warm */
hr, .divider, .rule { border-color: var(--border-warm); background: var(--border-warm); }
.value-item { border-top-color: var(--border-warm); }

/* 22. PRESERVE — sections that should stay dark/already-dark
   These are intentionally left alone:
   - .nav.scrolled (already dark via earlier rule)
   - .values-section (already dark — DO NOT override)
   - .recipe-hero / .recipe-hero-overlay (intentionally dark)
   - .editorial-section .editorial-visual (amber-mid bg — accent)
*/

/* 23. DARK-THEME button outline visibility */
.btn-outline {
  border-color: var(--amber) !important;
  color: var(--amber) !important;
  background: transparent;
}
.btn-outline:hover {
  background: var(--amber) !important;
  color: var(--bg-base) !important;
}

/* 24. JOURNAL/RECIPE LINKS — amber on dark */
.recipe-section a, article a { color: var(--amber); }
.recipe-section a:hover, article a:hover { color: var(--amber-mid); text-decoration: underline; }

/* ── end v3.7 dark theme ── */

/* v3.7.2 — DARK THEME FOLLOWUP — products page features + care box */
.product-features li { color: var(--txt-soft) !important; }
.product-features li strong { color: var(--txt-fg) !important; }
.product-detail-care {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-warm) !important;
  border-radius: 4px;
}
.product-detail-care .label { color: var(--amber) !important; }
.product-detail-care p { color: var(--txt-fg) !important; }
.product-detail-content p,
.product-detail-content .body-md,
.product-detail-content .body-lg { color: var(--txt-soft) !important; }
.product-detail-content h2,
.product-detail-content h3,
.product-detail-content .display-md,
.product-detail-content .display-sm { color: var(--txt-fg) !important; }
.product-detail-content .label { color: var(--amber) !important; }
.product-detail-section { border-bottom-color: var(--border-warm) !important; }
.product-detail-pack { color: var(--txt-soft) !important; }
.product-detail-price { color: var(--amber) !important; }
.product-detail-price-note,
.product-detail-discount { color: var(--txt-soft) !important; }

/* Coming-soon divider — flip cream to base */
.coming-soon-divider { background: var(--bg-base) !important; }
.coming-soon-divider p { color: var(--txt-soft) !important; }
.coming-soon-line { background: var(--border-warm) !important; }

/* Product detail badge — early-access pill */
.early-access-pill,
[class*="early-access"] { background: rgba(212, 137, 26, 0.18) !important; color: var(--amber) !important; }

/* v3.7.3 — DARK THEME — catch inline styles + ICP cards */

/* Override inline section backgrounds (29 spots in HTML use style="background:var(--oat)" etc.) */
section[style*="background:var(--oat)"],
section[style*="background: var(--oat)"],
section[style*="background:var(--cream)"],
section[style*="background: var(--cream)"] {
  background: var(--bg-raised) !important;
}
div[style*="background:var(--cream)"],
div[style*="background: var(--cream)"] {
  background: var(--bg-card) !important;
  color: var(--txt-fg) !important;
}

/* Wholesale ICP cards — explicit class, was background:#fff */
.wholesale-icp-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-warm) !important;
}
.wholesale-icp-card h3 { color: var(--txt-fg) !important; }
.wholesale-icp-card p { color: var(--txt-soft) !important; }
.wholesale-icp-icon { background: rgba(212, 137, 26, 0.12) !important; color: var(--amber) !important; }

/* Inline-styled email capture inputs (recipes/index, about, fr/recipes/index) */
input.email-capture-input,
input[style*="background:var(--cream)"],
input[style*="background: var(--cream)"] {
  background: var(--bg-base) !important;
  color: var(--txt-fg) !important;
  border-color: var(--border-warm) !important;
}

/* Survey/share inline-styled callout boxes */
div[style*="border-left:3px solid var(--sage)"],
div[style*="border-left: 3px solid var(--sage)"] {
  background: var(--bg-card) !important;
  border-left-color: var(--amber) !important;
  color: var(--txt-fg) !important;
}

/* About page pronunciation card — inline styled */
div[style*="border-left:3px solid var(--amber)"] {
  background: var(--bg-card) !important;
  color: var(--txt-fg) !important;
}

/* MOQ table sample row */
.moq-row--sample {
  background: var(--bg-raised) !important;
  color: var(--txt-soft) !important;
}

/* v3.7.4 — DARK THEME — final sweep, catch every remaining white-bg class */

/* All the *-card classes with explicit background:#fff in CSS */
.testimonial-card,
.wholesale-card,
.wholesale-icp-card,
.wholesale-step,
.recipe-callout,
.recipe-faq details,
.recipe-card,
.contact-form-wrap,
form .form-input,
input[type="submit"],
input[type="button"] {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-warm) !important;
  color: var(--txt-fg) !important;
}

/* Wholesale step cards (4-step process) */
.wholesale-step h3 { color: var(--txt-fg) !important; }
.wholesale-step p { color: var(--txt-soft) !important; }
.wholesale-step-num { color: var(--amber) !important; }

/* Testimonial card */
.testimonial-card .testimonial-name,
.testimonial-card .testimonial-role { color: var(--txt-fg) !important; }
.testimonial-card .testimonial-quote { color: var(--txt-soft) !important; }
.testimonial-card p { color: var(--txt-fg) !important; }

/* Wholesale generic card */
.wholesale-card h3 { color: var(--txt-fg) !important; }
.wholesale-card p { color: var(--txt-soft) !important; }

/* Recipe library callouts and FAQ */
.recipe-callout p, .recipe-callout li { color: var(--txt-soft) !important; }
.recipe-callout h3, .recipe-callout strong { color: var(--txt-fg) !important; }
.recipe-faq summary { color: var(--txt-fg) !important; }
.recipe-faq details > div, .recipe-faq details p { color: var(--txt-soft) !important; }

/* Recipe cards (recipe library index page) */
.recipe-card-content { background: var(--bg-card) !important; }
.recipe-card h3, .recipe-card-title { color: var(--txt-fg) !important; }
.recipe-card p, .recipe-card-meta, .recipe-card-desc { color: var(--txt-soft) !important; }
.recipe-card .label { color: var(--amber) !important; }

/* Contact form */
.contact-form .form-label { color: var(--txt-soft) !important; }
.contact-form .form-input {
  color: var(--txt-fg) !important;
  background: var(--bg-base) !important;
  border-color: var(--border-warm) !important;
}
.contact-faq-list a { color: var(--txt-fg) !important; }
.contact-faq-list .body-xs { color: var(--txt-mid) !important; }
.contact-faq-list a:hover { color: var(--amber) !important; }
.contact-b2b-callout {
  background: var(--bg-card) !important;
  border: none !important;
  border-left: 3px solid var(--amber) !important;
  padding: var(--space-2xl) !important;
  border-radius: 4px !important;
  color: var(--txt-fg) !important;
}
.contact-b2b-callout h2,
.contact-b2b-callout .display-sm { color: var(--txt-fg) !important; margin-bottom: 0; }
.contact-b2b-callout p { color: var(--txt-soft) !important; }
.contact-b2b-callout .label { color: var(--amber) !important; }

/* Form input fallback */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
input.form-input,
textarea,
select {
  background: var(--bg-base) !important;
  color: var(--txt-fg) !important;
  border-color: var(--border-warm) !important;
}

/* Variations list (recipe pages) */
.variations-list strong { color: var(--txt-fg) !important; }
.ing-alt { color: var(--txt-mid) !important; }

/* Method steps (recipe pages) */
.method-steps .step-detail strong { color: var(--txt-fg) !important; }
.method-steps li { color: var(--txt-soft); }
.method-steps li::before, .method-steps li::marker { color: var(--amber) !important; }

/* v3.7.5 — DARK THEME — recipe ingredients box + any remaining amber-lt content boxes */

/* RECIPE INGREDIENTS — was background:var(--amber-lt) cream-ish, text invisible */
.recipe-ingredients {
  background: var(--bg-card) !important;
  border-left: 3px solid var(--amber) !important;
}
.recipe-ingredients .recipe-h3 { color: var(--amber) !important; }
.ingredient-list li {
  color: var(--txt-soft) !important;
  border-bottom-color: var(--border-warm) !important;
}
.ingredient-list strong { color: var(--txt-fg) !important; }
.ingredient-list .ing-alt { color: var(--txt-mid) !important; }

/* RECIPE METHOD STEPS — number markers, content */
.method-steps li::marker,
.method-steps li::before { color: var(--amber) !important; }
.method-steps li {
  color: var(--txt-soft) !important;
  border-color: var(--border-warm) !important;
}
.method-steps li strong, .method-steps .step-detail strong { color: var(--txt-fg) !important; }
.method-steps li p, .method-steps li > div p { color: var(--txt-soft) !important; }

/* VARIATIONS / SUBSTITUTIONS list */
.variations-list, .recipe-variations {
  background: var(--bg-card) !important;
  border-left-color: var(--amber) !important;
}
.variations-list li, .recipe-variations li { color: var(--txt-soft) !important; }
.variations-list strong, .recipe-variations strong { color: var(--txt-fg) !important; }
.variations-list h3, .recipe-variations h3 { color: var(--txt-fg) !important; }

/* CLIMATE NOTES / TIPS callout — usually light bg */
.climate-notes, .recipe-tips, .tip-box {
  background: var(--bg-card) !important;
  color: var(--txt-fg) !important;
  border-left: 3px solid var(--amber) !important;
}
.climate-notes p, .recipe-tips p, .tip-box p { color: var(--txt-soft) !important; }

/* RECIPE NUTRITION / INFO TABLE */
.recipe-info, .recipe-stats {
  background: var(--bg-raised) !important;
  color: var(--txt-fg) !important;
}
.recipe-info td, .recipe-stats td { color: var(--txt-soft) !important; border-color: var(--border-warm) !important; }
.recipe-info th, .recipe-stats th { color: var(--txt-fg) !important; }

/* Recipe page: any class with "ingredients" or "method" containing a light bg */
[class*="ingredients"][class*="card"], [class*="ingredients"][class*="box"],
[class*="method"][class*="card"], [class*="method"][class*="box"] {
  background: var(--bg-card) !important;
  color: var(--txt-fg) !important;
}

/* Recipe library — last fallback for any remaining cream/oat box on recipe pages */
.recipe-section [style*="background:var(--amber-lt)"],
.recipe-section [style*="background: var(--amber-lt)"] {
  background: var(--bg-card) !important;
  color: var(--txt-fg) !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   v3.7.7 — TEXT CONTRAST SWEEP (Aman audit feedback)
   - Inline color:var(--dark/charcoal/mid/muted) survived dark theme; flip them
   - Catch class-based dim text on dark sections
═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. INLINE STYLE OVERRIDES — attribute selectors with !important
        beat element style="..." in cascade ────────────────────────────── */
[style*="color:var(--dark)"],
[style*="color: var(--dark)"] {
  color: var(--txt-fg) !important;
}
[style*="color:var(--charcoal)"],
[style*="color: var(--charcoal)"] {
  color: var(--txt-fg) !important;
}
[style*="color:var(--mid)"],
[style*="color: var(--mid)"] {
  color: var(--txt-soft) !important;
}
[style*="color:var(--muted)"],
[style*="color: var(--muted)"] {
  color: var(--txt-mid) !important;
}
[style*="color:var(--taupe)"],
[style*="color: var(--taupe)"] {
  color: var(--amber) !important;
}

/* ── 2. RECIPES INDEX CALENDAR (upcoming-list) — was charcoal+amber-dk ── */
.upcoming-list li {
  color: var(--txt-soft) !important;
  border-bottom-color: var(--border-warm) !important;
}
.upcoming-list strong { color: var(--amber) !important; }
.upcoming-list em { color: var(--txt-mid) !important; }

/* ── 3. SECTION HEADER + INTRO — make sure h2/p inherit cream on dark ── */
.section-header h2,
.section-header .display-md,
.section-header .display-lg { color: var(--txt-fg) !important; }
.section-intro { color: var(--txt-soft) !important; }
.section-header p { color: var(--txt-soft); }

/* ── 4. PAGE HEADERS (about, products, wholesale, contact intros) ────── */
.page-header h1, .page-header h2, .page-header .display-lg,
.page-header-title { color: var(--txt-fg) !important; }
.page-header-sub, .page-header p { color: var(--txt-soft) !important; }
.page-header-label, .page-header .label { color: var(--amber) !important; }

/* ── 5. ABOUT PAGE specific — narrative paragraphs ──────────────────── */
.about-section p, .story-body p, .about-body p { color: var(--txt-soft); }
.about-section h2, .about-section h3,
.story-body h2, .story-body h3 { color: var(--txt-fg) !important; }

/* ── 6. RECIPE CARD on grid — title was display-sm with var(--dark) ── */
.recipe-card-title, .recipe-card h3, .recipe-card .display-sm {
  color: var(--txt-fg) !important;
}
.recipe-card-meta, .recipe-card-time { color: var(--txt-mid) !important; }
.recipe-card-cat { color: var(--amber) !important; }

/* ── 7. EMAIL CAPTURE / NEWSLETTER widgets ──────────────────────────── */
.email-capture-text h2,
.footer-signup p, .footer-signup h2,
.footer-nav-title { color: var(--txt-fg) !important; }
.footer-signup .body-sm { color: var(--txt-soft) !important; }

/* ── 8. CONTACT FAQ: Common questions ───────────────────────────────── */
.contact-faq-list a strong { color: var(--txt-fg) !important; }

/* ── 9. PRIVACY / TERMS legal body ──────────────────────────────────── */
.legal-body { color: var(--txt-soft) !important; }
.legal-body h2, .legal-body h3, .legal-body strong { color: var(--txt-fg) !important; }
.legal-body p, .legal-body li { color: var(--txt-soft) !important; }

/* ── 10. JOURNAL article body ───────────────────────────────────────── */
.journal-body p, article.journal p, .article-content p { color: var(--txt-soft) !important; }
.journal-body h2, .journal-body h3, article.journal h2, article.journal h3 { color: var(--txt-fg) !important; }
.journal-body strong { color: var(--txt-fg) !important; }

/* ── 11. RECIPE BODY: notes, intro paragraphs ───────────────────────── */
.recipe-section .recipe-h2 { color: var(--txt-fg) !important; }
.recipe-section .recipe-h3 { color: var(--txt-fg) !important; }
.recipe-section em { color: var(--txt-fg); }

/* ── 12. WHOLESALE custom quotes — animated rule under heading ──────── */
.wholesale-section .animated-rule,
section[id="how-it-works"] .animated-rule,
section .animated-rule {
  background: rgba(212, 137, 26, 0.18);
}

/* ── 13. SHARE PAGE cards (lottery / coffee / drink section) ─────────── */
.share-card h3, .share-card-eyebrow { color: var(--txt-fg) !important; }
.share-card p, .share-card-body { color: var(--txt-soft) !important; }
.share-card-eyebrow.amber, .share-card .label { color: var(--amber) !important; }

/* ── 14. SAFETY: hover states on links/buttons stay readable ─────────── */
a:not(.btn):not(.nav-logo):hover { color: var(--amber); }
.recipe-section a, .journal-body a, .legal-body a { color: var(--amber); }
.recipe-section a:hover, .journal-body a:hover, .legal-body a:hover { color: var(--amber-mid); }

/* ── 15. ABOUT page pronunciation card — keep amber accent visible ──── */
[style*="border-left:3px solid var(--amber)"] strong { color: var(--txt-fg) !important; }
[style*="border-left:3px solid var(--amber)"] em { color: var(--amber) !important; }

/* ═══════════════════════════════════════════════════════════════════════
   v3.7.9 — FIRE-GRADIENT TYPOGRAPHY + flame consolidation
   Per Ghazal interview: emphasis words in flame palette across headings.
═══════════════════════════════════════════════════════════════════════ */

/* Reusable utility — apply to any inline span inside a heading
   to make a focal noun glow in fire amber. */
.flame-grad {
  background: linear-gradient(
    135deg,
    #F4B942 0%,
    #D4891A 45%,
    #A06210 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Keep the focal noun slightly heavier than surrounding text */
  font-weight: 500;
  /* Tiny tracking adjustment for serif emphasis */
  letter-spacing: 0.005em;
}

/* When applied inside a display heading on dark sections, brighten the gradient */
.values-section .flame-grad,
[style*="background: var(--dark)"] .flame-grad,
[style*="background:var(--dark)"] .flame-grad {
  background: linear-gradient(
    135deg,
    #F8D278 0%,
    #F4B942 40%,
    #D4891A 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
}

/* A subtle ambient pulse — very gentle, only on prefers-motion-ok */
@media (prefers-reduced-motion: no-preference) {
  .flame-grad {
    animation: flameShimmer 6s ease-in-out infinite;
    background-size: 200% 100%;
  }
  @keyframes flameShimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
  }
}

/* Browsers that don't support background-clip fall back to amber solid */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .flame-grad {
    color: #D4891A !important;
    -webkit-text-fill-color: #D4891A !important;
  }
}


/* ═══════════════════════════════════════════════════════
   v3.8.3 — Phase 4 accessibility polish
   ═══════════════════════════════════════════════════════ */

/* Keyboard focus rings — visible only for keyboard users, not mouse clicks */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-outline-dark:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(212, 137, 26, 0.18);
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 0;
  border-color: var(--amber) !important;
  box-shadow: 0 0 0 3px rgba(212, 137, 26, 0.14);
}

/* Smoother product-card thumbnail hover (already animated, this just tweaks easing) */
.product-card-img { transition: transform 0.55s cubic-bezier(.2,.7,.2,1); }

/* Subtle pulse on the canonical flame in nav when active */
@media (prefers-reduced-motion: no-preference) {
  .nav.scrolled .nav-logo svg path { transition: filter 0.4s ease; }
  .nav.scrolled:hover .nav-logo svg path { filter: drop-shadow(0 0 6px rgba(244, 185, 66, 0.45)); }
}
