:root {
  /* ── Core browns anchored to logo #6A3300 ── */
  --dark-choc:    #3D1A00;   /* near-black brown — deepest shadow, hero bg   */
  --rich-brown:   #6A3300;   /* logo brown — primary brand colour             */
  --warm-cacao:   #7B4A2D;   /* mid-warm brown — body text, subheads          */
  --toffee:       #8B5E3C;   /* amber toffee — accents, stat numbers          */
  --dusty-rose:   #C9826B;   /* warm amber-orange — tags, highlights          */
  --terracotta:   #6A3300;   /* deeper terracotta — makers panel bg           */

  /* ── Creams — all tinted toward #6A3300 hue ── */
  --golden-cream: #F5E6C8;   /* warm parchment — main background              */
  --maple-cream:  #FAF0DC;   /* lightest cream — cards, panels                */
  --off-white:    #FAF0DC;   /* near white — page base                        */
  --pale-rose:    #F5E6C8;   /* blush — makers section bg                     */

  /* ── Greens — kept for climate/sustainability contrast ── */
  --forest:       #3A5438;   /* deep forest green — climate section           */
  --sage:         #7A8C6E;   /* mid sage — tags, secondary accents             */
  --soft-sage:    #E4EBE0;   /* pale sage — climate section bg                */

  /* ── Text ── */
  --text-dark:    #200E00;   /* deepest brown-black for body copy             */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: clip;
}

body::before {
  content: '';
  position: fixed;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid rgba(106, 51, 0, 0.1);
  transition: box-shadow 0.4s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #6a3300;
  letter-spacing: 0.02em;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a3300;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1c0d00; }

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: #6a3300;
  border: none;
  padding: 11px 26px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border-radius: 2px;
}
.nav-cta:hover { background: #1c0d00; transform: translateY(-1px); }
.nav-cta-chevron {
  display: inline-block;
  margin-left: 7px;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

/* ─── NAV DROPDOWN ─── */
.nav-cta-wrap {
  position: relative;
}
.nav-cta-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 260px;
  background: var(--dark-choc);
  border: 1px solid rgba(245,230,200,0.1);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.nav-cta-wrap.open .nav-cta-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-cta-wrap.open .nav-cta-chevron { transform: rotate(180deg); }
.nav-cta-wrap.open .nav-cta { background: #1c0d00; }

.nav-cta-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--golden-cream);
  transition: background 0.15s;
  border-bottom: 1px solid rgba(245,230,200,0.07);
}
.nav-cta-option:last-child { border-bottom: none; }
.nav-cta-option:hover { background: rgba(245,230,200,0.07); }

.nav-cta-option-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  opacity: 0.7;
}
.nav-cta-option strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.nav-cta-option em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(245,230,200,0.5);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c0d00;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-video.ready {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,13,0,0.52);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  padding: 76px 48px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(239,225,210,0.6);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: #efe1d2;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em { font-style: italic; color: #d4a575; }

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(239,225,210,0.68);
  max-width: 560px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1c0d00;
  background: #efe1d2;
  border: none;
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
}
.btn-primary:hover { background: #ffffff; transform: translateY(-2px); }

.btn-outline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #efe1d2;
  background: transparent;
  border: 1px solid rgba(239,225,210,0.45);
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
}
.btn-outline:hover { border-color: #efe1d2; background: rgba(239,225,210,0.1); }

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  color: rgba(239,225,210,0.45);
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'DM Mono', monospace;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 1s 1.2s forwards;
}
.scroll-line { width: 32px; height: 1px; background: rgba(239,225,210,0.25); }


.hero-form-inner {
  padding: 100px 44px 72px;
  width: 100%;
  box-sizing: border-box;
}

.hero-form-eyebrow { color: var(--dusty-rose); }

.hero-form-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--golden-cream);
  margin-bottom: 22px;
}

.survey-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin: 20px 0 10px;
  opacity: 0.85;
}

.survey-cards-inline {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 0;
}
/* each card must not push the grid wider than the container */
.survey-cards-inline .survey-card { min-width: 0; }

/* Dark context — survey cards inside hero form panel */
.hero-form-inner .survey-card {
  background: rgba(245,230,200,0.05);
  border: 2px solid rgba(245,230,200,0.1);
  padding: 22px 18px;   /* tighter than the global 32px 26px */
}
.hero-form-inner .survey-card:hover {
  border-color: rgba(245,230,200,0.28);
  background: rgba(245,230,200,0.09);
}
.hero-form-inner .survey-card.selected {
  border-color: var(--dusty-rose);
  background: rgba(201,130,107,0.12);
}
.hero-form-inner .survey-check { background: var(--dusty-rose); }
.hero-form-inner .survey-card-title { color: var(--golden-cream); }
.hero-form-inner .survey-card-body { color: rgba(245,230,200,0.55); }

/* Dark context — "anything else" label + textarea */
.hero-form-inner .survey-open-q { margin-top: 20px; }
.hero-form-inner .survey-label { color: rgba(245,230,200,0.5); }
.hero-form-inner .survey-textarea {
  color: var(--golden-cream);
  background: rgba(245,230,200,0.06);
  border-color: rgba(245,230,200,0.14);
  min-height: 88px;
}
.hero-form-inner .survey-textarea::placeholder { color: rgba(245,230,200,0.28); }
.hero-form-inner .survey-textarea:focus { border-color: rgba(245,230,200,0.4); }

.hero-form-submit { background: var(--golden-cream); color: var(--dark-choc); }
.hero-form-submit:hover { background: var(--maple-cream); transform: translateY(-2px); }

/* ─── STATS BAR ─── */
.stats-bar {
  background: #7b8d6e;
  padding: 26px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
  border-right: 1px solid rgba(239,225,210,0.2);
  opacity: 0;
  animation: fadeUp 0.7s forwards;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-item:nth-child(1) { animation-delay: 0.9s; }
.stat-item:nth-child(2) { animation-delay: 1.05s; }
.stat-item:nth-child(3) { animation-delay: 1.2s; }
.stat-item:nth-child(4) { animation-delay: 1.35s; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #efe1d2;
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(239,225,210,0.72);
  text-transform: uppercase;
}

/* ─── COMMON ─── */
section { position: relative; }

.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 18px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark-choc);
  margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--warm-cacao); }

.section-lead {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--warm-cacao);
  max-width: 580px;
}

/* ─── MANIFESTO ─── */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.manifesto-left {
  background: #ffffff;
  padding: 72px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifesto-left .section-tag { color: #c9826c; }

.manifesto-left .section-title {
  color: #1c0d00;
  margin-bottom: 36px;
}
.manifesto-left .section-title em { color: #6a3300; }

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: #1c0d00;
  padding-left: 24px;
  border-left: 3px solid #c9826c;
}
.manifesto-quote cite {
  font-style: normal;
  font-weight: 400;
  font-size: 0.78em;
  display: block;
  margin-top: 10px;
  opacity: 0.65;
  letter-spacing: 0.04em;
}

.manifesto-right {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.manifesto-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.manifesto-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 52px;
  gap: 18px;
  overflow-y: auto;
}

.manifesto-para {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.88;
  color: #ffffff;
}
.manifesto-para strong { font-weight: 500; color: #ffffff; }

/* ─── CLIMATE SECTION ─── */
.climate-section {
  background: #e4ebe1;
  padding: 110px 80px;
}

.climate-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left column sticks while cards animate in */
.climate-inner > div:first-child {
  position: sticky;
  top: 96px;
}

.climate-section .section-tag { color: #3a5438; opacity: 0.6; }
.climate-section .section-title { color: #3a5438; }
.climate-section .section-title em { color: #7b8d6e; font-style: italic; }
.climate-section .section-lead { color: rgba(58,84,56,0.72); margin-top: 20px; }

.climate-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  position: relative;
  /* Extra bottom padding so last card has scroll room to fully stick */
  padding-bottom: 120px;
}

/* ── Sticky stacking card effect ── */
.stack-card {
  position: sticky;
  /* JS sets --card-top dynamically; fallback for first card */
  top: var(--card-top, 100px);
  z-index: var(--card-z, 1);
  will-change: transform, box-shadow, filter;
  /* Initial hidden state — slides up + fades in */
  opacity: 0;
  transform: translateY(80px) scale(0.96);
  transition:
    opacity    0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform  0.7s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    filter     0.4s ease;
}

/* Card revealed (scrolled into view) */
.stack-card.stack-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* When a card is stuck (stacked behind newer cards) → depth effect */
.stack-card.stack-stuck {
  box-shadow: 0 4px 20px rgba(58,84,56,0.12), 0 1px 3px rgba(58,84,56,0.08);
  transform: scale(0.98);
  filter: brightness(0.96);
}

.climate-card {
  background: #ffffff;
  border: 1px solid rgba(123,141,110,0.5);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: sticky; /* reinforced for specificity */
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(58,84,56,0.06);
  transition:
    box-shadow 0.35s ease,
    transform  0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity    0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter     0.4s ease;
}

.climate-card:hover {
  box-shadow: 0 16px 48px rgba(58,84,56,0.2) !important;
  z-index: 20 !important;
  transform: scale(1) !important;
  filter: brightness(1) !important;
}

.climate-icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 28px;
  height: 28px;
}

.climate-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3a5438;
  margin-bottom: 8px;
}

.climate-card-body {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: #3a5438;
  opacity: 0.75;
}

/* ─── QUOTE BANNER SECTION ─── */
.quote-banner {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.quote-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28,36,22,0.72) 0%,
    rgba(28,36,22,0.68) 100%
  );
}

.quote-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 80px 48px;
}

.quote-banner-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: #efe1d2;
  margin: 0;
  padding: 0;
  border: none;
}

.quote-banner-attribution {
  display: block;
  margin-top: 28px;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(239,225,210,0.5);
}

/* ── Mobile sticky stack ── */
@media (max-width: 960px) {
  .climate-cards {
    padding-bottom: 30vh;
    gap: 0;
  }

  .stack-card {
    position: sticky !important;
    top: var(--card-top, 72px) !important;
  }

  .quote-banner {
    min-height: 320px;
  }
  .quote-banner-content {
    padding: 56px 24px;
  }
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding: 110px 80px;
  background: #e4ebe1;
}
.how-header { text-align: center; margin-bottom: 72px; }
.how-header .section-lead { margin: 0 auto; }
.how-header .section-tag { color: #7b8d6e; }
.how-header .section-title { color: #1c0d00; }
.how-header .section-title em { color: #6a3300; }
.how-header .section-lead { color: #1c0d00; opacity: 0.7; }

.journey-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 52px;
  border-bottom: 1px solid rgba(28,13,0,0.12);
}

.journey-tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28,13,0,0.45);
  background: none;
  border: none;
  padding: 15px 44px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.journey-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: #1c0d00;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.journey-tab.active { color: #1c0d00; }
.journey-tab.active::after { transform: scaleX(1); }

.journey-panel { display: none; }
.journey-panel.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

.step-card {
  background: #7b8d6e;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.step-card:hover { transform: translateY(-4px); }
.step-card::before {
  content: attr(data-step);
  position: absolute;
  top: -20px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 6.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}
.step-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; flex-shrink: 0;
  border-radius: 2px;
}
.step-icon svg { stroke: #ffffff; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}
.step-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.82;
  color: rgba(255,255,255,0.78);
}

/* ─── WHY SECTION ─── */
.why-section {
  background: #ffffff;
  padding: 110px 80px;
}
.why-section .section-title { color: #6a3300; }
.why-section .section-title em { color: #6a3300; }
.why-section .section-tag { color: #c9826c; }
.why-section .section-lead { color: rgba(106,51,0,0.68); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2px;
  margin-top: 56px;
}
.why-card {
  padding: 44px;
  background: #6a3300;
  transition: background 0.3s;
}
.why-card:hover { background: #7a3d00; }
.why-card-accent { width: 3px; height: 36px; margin-bottom: 24px; }
.why-card-accent.rose  { background: #efe1d2; }
.why-card-accent.sage  { background: #efe1d2; }
.why-card-accent.toffee { background: #efe1d2; }
.why-card-accent.cacao { background: #efe1d2; }
.why-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: #efe1d2;
  margin-bottom: 14px;
}
.why-card-body {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.88;
  color: rgba(239,225,210,0.72);
}

/* ─── PHOTO STRIP ─── */
.photo-strip {
  display: flex;
  overflow: hidden;
  background: var(--dark-choc);
  height: 320px;
}
.strip-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.85);
  transition: transform 0.55s ease, filter 0.4s ease;
}
.strip-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.88) saturate(1.05);
}
.strip-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  font-family: 'DM Mono', monospace;
  font-size: 0.59rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,230,200,0.65);
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
  transition: color 0.3s;
}
.strip-item:hover figcaption { color: rgba(245,230,200,0.9); }

/* ─── MAKERS SPOTLIGHT ─── */
.makers-section {
  position: relative;
  overflow: hidden;
}

.makers-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.makers-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,13,0,0.62);
}

.makers-inner {
  position: relative;
  z-index: 2;
  padding: 110px 80px;
}

.makers-section .section-tag { color: rgba(239,225,210,0.6); }
.makers-section .section-title { color: #efe1d2; }
.makers-section .section-title em { font-style: italic; color: #d4a575; }
.makers-section .section-lead { color: rgba(239,225,210,0.68); }
.makers-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}
.makers-scroll {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.maker-card {
  background: #efe1d2;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border-radius: 3px;
}
.maker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(28,13,0,0.28);
}

.maker-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Tinted placeholder shown if image is missing */
.maker-photo-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maker-card-body { padding: 26px 26px 30px; }

.maker-region {
  font-family: 'DM Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6a3300;
  opacity: 0.65;
  margin-bottom: 8px;
}
.maker-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #6a3300;
  margin-bottom: 10px;
}
.maker-desc {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.78;
  color: #6a3300;
  opacity: 0.8;
}
.maker-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: #6a3300;
  color: #efe1d2;
  border-radius: 2px;
}

/* ─── ORIGIN / MAP SECTION ─── */
.origin-section {
  padding: 110px 80px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.origin-section .section-tag { color: #1c0d00; opacity: 0.55; }
.origin-section .section-title { color: #1c0d00; }
.origin-section .section-title em { color: #6a3300; }
.origin-section .section-lead { color: rgba(28,13,0,0.65); }

.origin-list {
  display: flex;
  flex-direction: column;
  margin-top: 44px;
}
.origin-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(123,74,45,0.1);
}
.origin-item:last-child { border-bottom: none; }
.origin-dot {
  width: 9px; height: 9px;
  background: var(--dusty-rose);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.origin-region {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1c0d00;
  margin-bottom: 5px;
}
.origin-detail {
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(28,13,0,0.65);
}

/* ─── MAP SVG ─── */
/* ─── FARM IMAGE (Origins section) ─── */
.farm-image-wrap {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}

.farm-photo {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.farm-placeholder {
  display: none;
  width: 100%;
  height: 540px;
  background: linear-gradient(160deg, rgba(201,130,107,0.18) 0%, rgba(123,74,45,0.1) 100%);
  border: 1px dashed rgba(123,74,45,0.25);
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.farm-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.farm-placeholder-inner span {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(123,74,45,0.5);
}

.farm-caption {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 22px 24px 36px;
  background: linear-gradient(to bottom, rgba(28,13,0,0.65) 0%, transparent 100%);
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.5;
}

/* ─── DUAL SIGNUP ─── */
.signup-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.signup-panel { padding: 96px 72px; position: relative; }
.signup-panel.buyers { background: #ffffff; border-right: 1px solid rgba(0,0,0,0.04); }
.signup-panel.makers { background: #ffffff; }

/* Buyers Theme (Collective Brown) */
.signup-panel.buyers .signup-eyebrow { color: var(--dusty-rose); }
.signup-panel.buyers .signup-title { color: var(--rich-brown); }
.signup-panel.buyers .signup-desc { color: rgba(106,51,0,0.65); }
.signup-panel.buyers .signup-perks li { color: rgba(106,51,0,0.75); }
.signup-panel.buyers .perk-check circle { stroke: rgba(106,51,0,0.15) !important; }
.signup-panel.buyers .perk-check path { stroke: var(--rich-brown) !important; }

/* Makers Theme (Cardamom Sage) */
.signup-panel.makers .signup-eyebrow { color: var(--sage); }
.signup-panel.makers .signup-title { color: var(--forest); }
.signup-panel.makers .signup-desc { color: rgba(58,84,56,0.65); }
.signup-panel.makers .signup-perks li { color: rgba(58,84,56,0.75); }
.signup-panel.makers .perk-check circle { stroke: rgba(58,84,56,0.15) !important; }
.signup-panel.makers .perk-check path { stroke: var(--forest) !important; }

.signup-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

.signup-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 18px;
}

.signup-desc {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.82;
  margin-bottom: 36px;
  max-width: 380px;
}

.signup-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 44px;
}

.signup-perks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.5;
}

.perk-check { width: 17px; height: 17px; flex-shrink: 0; margin-top: 1px; }

.signup-form { display: flex; flex-direction: column; gap: 11px; width: 100%; }
.form-row { display: flex; gap: 11px; }

/* Inputs Base */
.form-input, .form-select, .form-textarea {
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
  box-sizing: border-box;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

.form-select {
  cursor: pointer;
  appearance: none;
}

/* Buyers Inputs (Cocoa Butter transparent) */
.signup-panel.buyers .form-input,
.signup-panel.buyers .form-select {
  color: var(--rich-brown);
  background: rgba(245,230,200,0.45);
  border: 1px solid rgba(245,230,200,0.8);
}
.signup-panel.buyers .form-input::placeholder { color: rgba(106,51,0,0.35); }
.signup-panel.buyers .form-input:focus,
.signup-panel.buyers .form-select:focus { border-color: var(--rich-brown); }
.signup-panel.buyers .form-select option { background: #ffffff; color: var(--rich-brown); }

/* Makers Inputs (Sage Mist transparent) */
.signup-panel.makers .form-input,
.signup-panel.makers .form-select {
  color: var(--forest);
  background: rgba(228,235,224,0.6);
  border: 1px solid rgba(228,235,224,0.9);
}
.signup-panel.makers .form-input::placeholder { color: rgba(58,84,56,0.35); }
.signup-panel.makers .form-input:focus,
.signup-panel.makers .form-select:focus { border-color: var(--forest); }
.signup-panel.makers .form-select option { background: #ffffff; color: var(--forest); }


.form-submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}
.signup-panel.buyers .form-submit { background: var(--rich-brown); color: #ffffff; }
.signup-panel.buyers .form-submit:hover { background: var(--dark-choc); transform: translateY(-2px); }
.signup-panel.makers .form-submit { background: var(--forest); color: #ffffff; }
.signup-panel.makers .form-submit:hover { background: #2f452e; transform: translateY(-2px); }

.form-privacy {
  font-size: 0.7rem;
  line-height: 1.6;
  margin-top: 2px;
}
.signup-panel.buyers .form-privacy { color: rgba(106,51,0,0.5); }
.signup-panel.makers .form-privacy { color: rgba(58,84,56,0.5); }

/* Theme support for "Thank You" states */
.signup-panel.buyers .thank-you-title { color: var(--rich-brown); }
.signup-panel.buyers .thank-you-sub { color: rgba(106,51,0,0.7); }
.signup-panel.buyers .thank-you-icon svg rect,
.signup-panel.buyers .thank-you-icon svg line,
.signup-panel.buyers .thank-you-icon svg path { stroke: var(--rich-brown) !important; }
.signup-panel.buyers .thank-you-icon svg [fill="#8B5E3C"] { fill: rgba(106,51,0,0.15) !important; }

.signup-panel.makers .thank-you-title { color: var(--forest); }
.signup-panel.makers .thank-you-sub { color: rgba(58,84,56,0.7); }
.signup-panel.makers .thank-you-icon svg rect,
.signup-panel.makers .thank-you-icon svg line,
.signup-panel.makers .thank-you-icon svg path { stroke: var(--forest) !important; }
.signup-panel.makers .thank-you-icon svg [fill="rgba(139,94,60,0.12)"] { fill: rgba(58,84,56,0.15) !important; }

/* ─── RECAPTCHA ─── */
.g-recaptcha {
  margin-bottom: 4px;
  display: flex;
  justify-content: center;
}
/* Scale down reCAPTCHA on narrow containers */
@media (max-width: 360px) {
  .g-recaptcha { transform: scale(0.85); }
}
/* reCAPTCHA in the newsletter flex row needs its own row */
.newsletter-recaptcha {
  width: 100%;
  margin-bottom: 8px;
}
/* reCAPTCHA error notice */
.recaptcha-error-bar {
  background: rgba(224,92,58,0.15);
  border: 1px solid rgba(224,92,58,0.35);
  color: #f4a68a;
  font-size: 0.78rem;
  padding: 10px 16px;
  border-radius: 3px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.maker-extra-fields { display: none; flex-direction: column; gap: 11px; }

/* ─── MATTERS TO YOU ─── */
.matters-section {
  background: var(--golden-cream);
  padding: 24px;
  border-radius: 2px;
  margin-top: 10px;
  margin-bottom: 8px;
}
.matters-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rich-brown);
  margin-bottom: 20px;
  text-align: center;
  display: block;
  font-weight: 600;
}
.matters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.matter-checkbox {
  cursor: pointer;
  display: block;
}
.matter-checkbox input {
  display: none;
}
.matter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dusty-rose);
  color: var(--golden-cream);
  padding: 12px 6px;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  transition: all 0.2s;
  height: 100%;
  border: 1px solid transparent;
  box-sizing: border-box;
}
.matter-checkbox input:checked + .matter-box {
  background: var(--rich-brown);
  color: var(--golden-cream);
}
.matter-checkbox:hover .matter-box {
  filter: brightness(0.92);
}
.matter-checkbox.full-width {
  grid-column: 1 / -1;
}

@media (max-width: 600px) {
  .matters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .matters-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── SURVEY ─── */
.survey-section { padding: 110px 80px; background: var(--maple-cream); }
.survey-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.survey-inner .section-lead { margin: 22px auto 44px; }

.survey-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  text-align: left;
  margin-bottom: 48px;
}
.survey-card {
  background: var(--golden-cream);
  padding: 32px 26px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  border-radius: 2px;
}
.survey-card:hover, .survey-card.selected { border-color: var(--dark-choc); }
.survey-card.selected .survey-check { opacity: 1; }

.survey-check {
  width: 19px; height: 19px;
  background: var(--dark-choc);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 2px;
}
.survey-check svg { width: 9px; height: 9px; }

.survey-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--dark-choc);
  margin-bottom: 7px;
}
.survey-card-body {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--rich-brown);
}
.survey-open-q { text-align: left; margin-top: 28px; }
.survey-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-cacao);
  display: block;
  margin-bottom: 10px;
}
.survey-textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1px solid rgba(123,74,45,0.18);
  padding: 18px;
  resize: vertical;
  min-height: 110px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
}
.survey-textarea:focus { border-color: var(--warm-cacao); }
.survey-submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--dark-choc);
  border: none;
  padding: 17px 44px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 22px;
  border-radius: 2px;
}
.survey-submit:hover { background: var(--rich-brown); transform: translateY(-2px); }

/* ─── EDUCATION ─── */
.education-section { padding: 110px 80px; background: #ffffff; color: var(--rich-brown); }
.edu-header { max-width: 580px; margin-bottom: 64px; }
.edu-header .section-tag { color: var(--rich-brown); opacity: 0.7; }
.edu-header .section-title { color: var(--rich-brown); }
.edu-header .section-lead { color: var(--rich-brown); }

.edu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.edu-card {
  background: var(--golden-cream);
  color: var(--rich-brown);
  overflow: hidden;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.edu-card:hover { background: #efe1d2; /* Slightly darker cream */ }
.edu-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.edu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) brightness(0.88);
  transition: transform 0.5s ease;
}
.edu-card:hover .edu-card-img img { transform: scale(1.05); }
.edu-card-body { padding: 32px 28px; }
.edu-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--rich-brown);
  margin-bottom: 14px;
  line-height: 1;
}
.edu-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--rich-brown);
  margin-bottom: 10px;
}
.edu-body {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.82;
  color: var(--rich-brown);
}

/* ─── NEWSLETTER ─── */
.newsletter-banner {
  background: var(--forest);
  padding: 68px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--golden-cream);
  margin-bottom: 10px;
}
.newsletter-sub {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--golden-cream);
  opacity: 0.85;
}
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-input-row { display: flex; }
.newsletter-input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--dark-choc);
  background: var(--off-white);
  border: none;
  padding: 17px 22px;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(61,26,0,0.38); }
.newsletter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  background: var(--dark-choc);
  border: none;
  padding: 17px 30px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--rich-brown); }

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark);
  padding: 68px 80px 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,230,200,0.07);
}
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.9;
}
.footer-brand p {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,230,200,0.55);
  margin-top: 18px;
  max-width: 270px;
}
.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(245,230,200,0.58);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--golden-cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.76rem; color: rgba(245,230,200,0.35); }
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 0.86rem;
  font-style: italic;
  color: rgba(245,230,200,0.42);
}

/* ─── THANK YOU ─── */
.thank-you { display: none; text-align: center; padding: 36px 0; }
.thank-you-icon { font-size: 2.2rem; margin-bottom: 14px; }
.thank-you-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--golden-cream);
  margin-bottom: 8px;
}
.thank-you-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(245,230,200,0.52);
}

/* ─── COOKIE NOTICE ─── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 0 24px 24px;
  pointer-events: none;

  /* Hidden by default — JS adds .cookie-bar--visible */
  transform: translateY(120%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-bar.cookie-bar--visible {
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-bar.cookie-bar--hiding {
  transform: translateY(120%);
}

.cookie-bar-inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--dark-choc);
  border: 1px solid rgba(245,230,200,0.1);
  border-radius: 12px;
  padding: 16px 18px 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow:
    0 -2px 12px rgba(0,0,0,0.08),
    0 8px 32px rgba(0,0,0,0.22);
}

.cookie-bar-icon {
  color: var(--dusty-rose);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.9;
}

.cookie-bar-text {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245,230,200,0.72);
}
.cookie-bar-text strong {
  color: var(--golden-cream);
  font-weight: 500;
}
.cookie-bar-link {
  color: var(--dusty-rose);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 4px;
  transition: opacity 0.2s;
}
.cookie-bar-link:hover { opacity: 0.75; text-decoration: underline; }

.cookie-bar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.18s;
}

.cookie-btn-accept {
  background: var(--dusty-rose);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 9px 20px;
  border-radius: 6px;
}
.cookie-btn-accept:hover {
  background: #b8705a;
  transform: translateY(-1px);
}

.cookie-btn-dismiss {
  background: transparent;
  color: rgba(245,230,200,0.35);
  font-size: 0.88rem;
  padding: 6px 8px;
  border-radius: 6px;
  line-height: 1;
}
.cookie-btn-dismiss:hover {
  color: rgba(245,230,200,0.7);
  background: rgba(245,230,200,0.06);
}

@media (max-width: 600px) {
  .cookie-bar { padding: 0 12px 12px; }
  .cookie-bar-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 14px 12px;
  }
  .cookie-bar-icon { display: none; }
  .cookie-bar-actions { width: 100%; justify-content: flex-end; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  /* — Nav — */
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-cta { padding: 10px 18px; font-size: 0.72rem; }
  .nav-cta-dropdown { min-width: 230px; }

  /* — Hero — */
  .hero-content { padding: 72px 24px 0; }
  .stats-bar { padding: 20px 24px; grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 12px 16px; }
  .signup-section { grid-template-columns: 1fr; }

  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.14em; margin-bottom: 18px; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); margin-bottom: 18px; }
  .hero-sub { font-size: 0.92rem; max-width: 100%; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .btn-primary, .btn-outline {
    text-align: center;
    width: 100%;
    padding: 17px 24px;
    box-sizing: border-box;
  }

  /* — Other sections — */
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-left { padding: 60px 24px; }
  .manifesto-right { min-height: auto; }
  .manifesto-overlay { 
    position: relative; 
    padding: 60px 24px; 
    overflow-y: visible; 
  }
  .climate-inner, .origin-section { grid-template-columns: 1fr; gap: 44px; }
  .climate-inner > div:first-child { position: relative; top: auto; margin-bottom: 24px; }
  .climate-card { padding: 24px 20px; }
  .photo-strip { height: 200px; }
  .edu-card-img { height: 140px; }
  .signup-panel { padding: 56px 24px; }
  .how-it-works, .why-section, .education-section,
  .climate-section, .newsletter-banner, footer { padding: 60px 24px; }
  .makers-section { padding: 0; }
  .makers-inner { padding: 60px 24px; }
  .why-card { padding: 32px 24px; overflow-wrap: break-word; word-break: break-word; }
  .why-grid, .makers-scroll, .edu-grid { grid-template-columns: 1fr; }
  .journey-panel.active { grid-template-columns: 1fr; }
  .newsletter-banner { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-input-row { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .makers-header { grid-template-columns: 1fr; gap: 20px; }
}

/* — Very small phones (≤ 480px) — */
@media (max-width: 480px) {
  .nav-logo-text { display: block; font-size: 0.85rem; }
  .nav-logo img { width: 34px; height: 34px; }
  .nav-cta { padding: 9px 12px; font-size: 0.64rem; letter-spacing: 0.05em; }
  .nav-cta-chevron { display: none; }
  .nav-cta-dropdown { right: -8px; min-width: 220px; }
  .hero-content { padding: 64px 20px 0; }
  .hero-title { font-size: clamp(2rem, 11vw, 2.8rem); }
  .footer-top { grid-template-columns: 1fr; }
}
