/* ═════════════════════════════════════════════════════════════
   NAIA — shared design tokens + sections (everything below hero)
   ═════════════════════════════════════════════════════════════ */

:root {
  --cream:        #F5F3F1;
  --cream-soft:   #ECEAE7;
  --dark:         #191919;
  --dark-deep:    #12110D;
  --charcoal:    #191919;
  --white:        #FFFFFF;
  --mid-gray:     #888888;
  --light-gray:   #ECEAE7;
  --border:       #D9D4CB;
  --border-soft:  #E5E0D7;
  --tag-bg:       #ECEAE7;
  --orange:       #E06A2C;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --max-w: 1440px;
  --nav-h: 72px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
a { text-decoration: none; color: inherit; }
input, textarea { font-family: inherit; outline: none; border: none; background: none; }

.serif        { font-family: var(--serif); font-weight: 400; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
}

/* ═════ NAV ═════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(245, 243, 241, 0.85);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border-soft);
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--charcoal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-logo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.34em;
  color: var(--charcoal);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-logo img {
  height: 22px;
  width: auto;
  display: block;
}
.nav-right { display: flex; justify-content: flex-end; align-items: center; }

.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px; font-weight: 400;
  transition: all 0.22s ease;
  cursor: pointer; white-space: nowrap;
  border: 1px solid transparent;
}
.btn-pill-dark { background: var(--dark); color: var(--white); }
.btn-pill-dark:hover { background: #000; transform: translateY(-1px); }
.btn-pill-light { background: var(--white); color: var(--charcoal); border-color: var(--border); }
.btn-pill-light:hover { background: #fff; border-color: var(--charcoal); }
.btn-pill-ghost { background: transparent; color: var(--charcoal); }
.btn-pill-ghost:hover { background: rgba(0,0,0,0.04); }

/* ─── shared search-box parts (used by variants) ────────── */
.search-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px 16px;
  transition: border-color 0.22s, box-shadow 0.22s;
  position: relative;
}
.search-box:focus-within {
  border-color: var(--charcoal);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}
.search-thumbnail {
  position: absolute; top: 14px; right: 14px;
  width: 56px; height: 72px;
  border-radius: 6px; overflow: hidden;
  background: var(--cream);
}
.search-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.thumb-remove {
  position: absolute; top: 4px; right: 4px;
  width: 18px; height: 18px;
  background: rgba(0,0,0,0.75);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.search-box.has-image .search-textarea { padding-right: 80px; }
.search-box.dragover { border-color: var(--charcoal); background: var(--cream-soft); }

.search-textarea {
  width: 100%;
  min-height: 56px;
  font-size: 15px;
  color: var(--charcoal);
  resize: none;
  line-height: 1.5;
  text-align: left;
}
.search-textarea::placeholder {
  color: #b1aca0;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
}

.search-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.upload-trigger {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--cream);
  font-size: 13px; color: var(--charcoal);
  transition: background 0.18s;
}
.upload-trigger:hover { background: var(--cream-soft); }
.upload-trigger svg { width: 13px; height: 13px; }

.search-actions-right { display: flex; gap: 6px; align-items: center; }
.filter-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--charcoal);
  background: transparent;
  border-radius: 100px;
}
.filter-btn:hover { background: rgba(0,0,0,0.04); }
.find-look {
  background: #c2bdb1;
  color: var(--white);
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 100px;
  display: inline-flex; align-items: center; gap: 7px;
  transition: background 0.2s, transform .18s;
}
.find-look.is-active { background: var(--dark); }
.find-look.is-active:hover { transform: translateY(-1px); }

/* ─── retailer credibility strip (shared, used in A & C) ─── */
.retailer-strip {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border-soft);
  display: flex; align-items: center;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
}
.retailer-strip .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.retailer-strip ul {
  display: flex; gap: 28px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.retailer-strip li {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.retailer-strip li + li {
  position: relative;
  padding-left: 28px;
}
.retailer-strip li + li::before {
  content: '·';
  position: absolute;
  left: -2px;
  color: var(--mid-gray);
  font-size: 18px;
}

/* ═════ HOW IT WORKS — STEPS ═════ */
#how {
  isolation: isolate;
}
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  height: 850px;
}
@media (min-width: 901px) {
  .step {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    /* Each successive step rests on top of the previous one */
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    box-shadow: 0 -22px 50px -28px rgba(0, 0, 0, 0.38);
  }
  /* The first one doesn't need the rounded "resting" look (nothing below to peek out) */
  .step:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: none;
  }
  /* Step content fades up gently as the step enters the viewport */
  .step .step-text,
  .step .step-image {
    animation: stepContentIn ease-out both;
    animation-timeline: view();
    animation-range: cover 0% cover 30%;
  }
}
@keyframes stepContentIn {
  from { opacity: 0.35; transform: translateY(36px); }
  to   { opacity: 1;    transform: translateY(0); }
}
.step-text {
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 96px;
  position: relative;
}
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.step-num::after {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}
.step-text h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.18;
  letter-spacing: -0.005em;
  max-width: 460px;
}
.step-text h3 em { font-style: italic; font-weight: 400; }
.step-cta { margin-top: 36px; }
.step-image {
  position: relative;
  background: #ddd;
  overflow: hidden;
}
.step-image img { width: 100%; height: 100%; object-fit: cover; }

/* Step 1 description bar */
.desc-bar {
  position: absolute;
  top: 29.3%;
  left: 24.4%;
  width: 51.1%;
  background: rgba(20, 20, 20, 0.22);
  backdrop-filter: blur(10px) saturate(1.15);
  -webkit-backdrop-filter: blur(10px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.desc-bar .desc-label { font-size: 12px; color: rgba(255,255,255,0.7); flex-shrink: 0; }
.desc-bar .desc-text {
  flex: 1;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
}
.desc-bar svg { width: 14px; height: 14px; color: #fff; opacity: 0.7; flex-shrink: 0; }

/* Step 2 AI labels */
.ai-label {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transform: translateY(-50%);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.ai-label em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin-left: 4px;
}
.ai-label .marker {
  width: 12px; height: 12px;
  border: 1px solid rgba(255,255,255,0.95);
  flex-shrink: 0;
  position: relative;
}
.ai-label .marker::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: rgba(255,255,255,0.95);
}
.ai-label .line {
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.lbl-material { top: 14%; left: 33%; }
.lbl-style    { top: 24%; left: 50%; }
.lbl-detail   { top: 46%; left: 36%; }
.lbl-brand    { top: 58%; left: 48%; }

/* Step 3 retailer boxes */
.retailer-box {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  font-size: 18px;
}
.retailer-box.b1 { top: 14%; left: 24%; width: 16%; height: 13%; }
.retailer-box.b2 { top: 26%; left: 32%; width: 16%; height: 13%; }
.retailer-box.b3 { top: 12%; left: 60%; width: 16%; height: 13%; }
.retailer-box.b4 { top: 72%; left: 26%; width: 16%; height: 13%; }
.retailer-box.b5 { top: 60%; left: 56%; width: 16%; height: 13%; }

/* ═════ WHY NAIA ═════ */
.why { padding: 130px 0 130px; background: var(--cream); text-align: center; }
.why-eyebrow { margin-bottom: 24px; }
.why h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin-bottom: 72px;
}
.why h2 em { font-style: italic; font-weight: 400; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}
.feature-card {
  display: flex; flex-direction: column;
  gap: 28px;
  transition: transform .35s ease;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-mock {
  background: var(--white);
  border-radius: 6px;
  aspect-ratio: 4 / 3.5;
  position: relative;
  overflow: hidden;
  transition: box-shadow .35s ease;
}
.feature-card:hover .feature-mock {
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

/* Card 1 */
.mock1-search {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 12px 9px 18px;
  width: 64%;
  font-size: 11px;
  color: #aaa;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  z-index: 2;
}
.mock1-search .placeholder {
  flex: 1;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
}
.mock1-search .send {
  width: 22px; height: 22px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-photo {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.10);
  background: var(--light-gray);
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.float-photo img { width: 100%; height: 100%; object-fit: cover; }
.float-photo.fp1 { top: 10%;  left: 10%;  width: 90px; height: 130px; transform: rotate(-4deg); }
.float-photo.fp2 { top: 8%;   right: 10%; width: 110px; height: 130px; transform: rotate(3deg); }
.float-photo.fp3 { bottom: 10%; left: 10%; width: 110px; height: 130px; transform: rotate(2deg); }
.float-photo.fp4 { bottom: 10%; right: 12%; width: 90px;  height: 130px; transform: rotate(-2deg); }
.feature-card:hover .float-photo.fp1 { transform: rotate(-7deg) translate(-6px, -4px); }
.feature-card:hover .float-photo.fp2 { transform: rotate(6deg) translate(6px, -4px); }
.feature-card:hover .float-photo.fp3 { transform: rotate(5deg) translate(-4px, 4px); }
.feature-card:hover .float-photo.fp4 { transform: rotate(-5deg) translate(6px, 4px); }

/* Card 2 */
.mock-photo-full {
  position: absolute;
  inset: 8% 14%;
  border-radius: 4px;
  overflow: hidden;
  background: var(--light-gray);
}
.mock-photo-full img { width: 100%; height: 100%; object-fit: cover; }
.mock-styling-note {
  position: absolute;
  top: 14%; right: 22%;
  background: rgba(20,20,20,0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 10px;
  display: flex; align-items: center; gap: 5px;
}

/* Card 3 */
.mock-curated {
  position: absolute;
  inset: 12% 10%;
  background: var(--dark);
  border-radius: 6px;
  padding: 14px;
  display: flex; flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.mock-curated-head { display: flex; flex-direction: column; gap: 2px; }
.mock-curated h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--white);
  font-size: 16px;
}
.mock-curated .total { font-size: 9.5px; color: rgba(255,255,255,0.7); }
.mock-curated .total em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  margin-left: 4px;
}
.mock-curated-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  flex: 1;
  overflow: visible;
}
.mock-curated-grid div {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
}
.mock-curated-grid img { width: 100%; height: 100%; object-fit: cover; }

.feature-text h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.005em;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.feature-text p {
  font-size: 13px;
  color: var(--charcoal);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ═════ JOURNAL ═════ */
.journal {
  background: var(--dark);
  color: var(--white);
  padding: 160px 0;
}
.journal-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 580px) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.journal-grid > div:first-child {
  justify-self: end;
  max-width: 360px;
}
.journal-grid > .journal-stack { grid-column: 2; }
.journal-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.journal h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.005em;
}
.journal h2 em { font-style: italic; font-weight: 400; }

.journal-stack {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
.journal-card-orange {
  position: absolute;
  top: 4%;
  right: -3%;
  bottom: 4%;
  width: 28px;
  background: var(--orange);
  border-radius: 4px;
  z-index: 1;
}
.journal-carousel {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.journal-slide {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #2a2a2a;
  transition: transform .55s cubic-bezier(.55,.05,.2,1),
              opacity .45s ease,
              filter .55s ease,
              box-shadow .55s ease;
  will-change: transform, opacity;
  transform-origin: center center;
}
.journal-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stacked deck — front, mid (behind), back (further behind) */
.journal-slide[data-pos="0"] {
  transform: translate(0, 0) scale(1);
  z-index: 3;
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 36px 90px rgba(0,0,0,0.6);
}
.journal-slide[data-pos="1"] {
  transform: translate(0, 18px) scale(0.955);
  z-index: 2;
  opacity: 1;
  filter: brightness(0.78);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.journal-slide[data-pos="2"] {
  transform: translate(0, 36px) scale(0.91);
  z-index: 1;
  opacity: 1;
  filter: brightness(0.6);
  box-shadow: 0 18px 44px rgba(0,0,0,0.42);
}

/* Outgoing card — slides down-right, tilts and fades */
.journal-slide.is-leaving {
  transform: translate(22%, 18%) scale(0.94) rotate(-4deg);
  opacity: 0;
  z-index: 4;
  filter: brightness(1);
  box-shadow: 0 36px 90px rgba(0,0,0,0.4);
  transition: transform .55s cubic-bezier(.55,.05,.2,1),
              opacity .45s ease;
}

.journal-card-meta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 4;
  pointer-events: none;
}
.journal-card-meta .read-btn { pointer-events: auto; }
.journal-card-meta .text { font-size: 12px; color: var(--white); }
.journal-card-meta .text em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin-left: 4px;
}
.journal-card-meta .read-btn {
  background: var(--white);
  color: var(--dark);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 12px;
}

/* ═════ FAQ ═════ */
.faq { padding: 130px 0; background: var(--cream); }
.faq-inner { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.faq-eyebrow { text-align: center; margin-bottom: 24px; }
.faq h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 64px;
}
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0;
  font-size: 15px;
  color: var(--charcoal);
  text-align: left;
  transition: padding-left .25s ease;
}
.faq-q:hover { padding-left: 6px; }
.faq-q .icon { font-size: 18px; font-weight: 400; width: 18px; text-align: center; }
.faq-a {
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
  max-width: 660px;
  padding: 0 0 24px;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-item .faq-q .icon::before { content: '+'; }
.faq-item.open .faq-q .icon::before { content: '−'; }

.faq-still {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--charcoal);
}
.faq-still em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin-left: 6px;
}

/* ═════ WAITLIST ═════ */
.waitlist {
  position: relative;
  background: var(--cream);
  padding: 140px 0 160px;
  min-height: 880px;
  text-align: center;
  overflow: hidden;
}
.waitlist-grid {
  position: absolute;
  inset: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  pointer-events: none;
}
.ghost {
  filter: blur(22px) saturate(0.55) opacity(0.7);
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}
.ghost-cell {
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.ghost-cell.center { visibility: hidden; }

.waitlist-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 32px;
}
.waitlist-eyebrow {
  font-size: 13px;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.waitlist h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.waitlist h2 em { font-style: italic; font-weight: 400; }
.waitlist > .waitlist-inner > p {
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 36px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.email-form {
  position: relative;
  display: flex; gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 6px 5px 22px;
  max-width: 460px;
  margin: 0 auto;
  align-items: center;
  transition: border-color .22s, box-shadow .22s;
}
.email-form:focus-within {
  border-color: var(--charcoal);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}
.email-form input {
  flex: 1; font-size: 14px;
  color: var(--charcoal);
  background: transparent;
  border: none; padding: 8px 0;
}
.email-form input::placeholder { color: var(--mid-gray); }
.email-form .btn-pill-dark { padding: 10px 18px; font-size: 13px; }
.email-form-feedback {
  position: absolute;
  left: 0; right: 0; bottom: -30px;
  text-align: center;
  font-size: 13px;
  color: var(--charcoal);
}

/* ═════ FOOTER ═════ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.footer-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 50px;
  background: var(--white);
  color: var(--dark);
}
.footer-nav {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 70px;
}
.footer-nav a { color: var(--white); transition: opacity .22s; }
.footer-nav a:hover { opacity: 0.55; }
.footer-nav .sep {
  color: rgba(255,255,255,0.35);
  font-style: italic;
  margin: 0 18px;
  font-weight: 400;
}

.footer-meta {
  display: flex; justify-content: center;
  gap: 64px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 90px;
}
.footer-meta em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  margin-left: 6px;
}
.footer-tagline {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 160px;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.07);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  position: relative;
  z-index: 3;
}
.footer-bottom em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  margin-left: 6px;
}
.footer-bottom .links { display: flex; gap: 40px; }
.footer-bottom a:hover { color: rgba(255,255,255,0.85); }

/* ═════ MOBILE ═════ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 18px; }
  .nav-logo img { height: 18px; }

  .step { grid-template-columns: 1fr; min-height: auto; height: auto; }
  .step-text { padding: 60px 28px; }
  .step-text h3 { font-size: 26px; }
  .step-image { aspect-ratio: 4 / 5; }

  .why { padding: 80px 0; }
  .why h2 { font-size: 38px; margin-bottom: 50px; }
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }

  .journal { padding: 80px 0; }
  .journal-grid { grid-template-columns: 1fr; gap: 48px; }
  .journal h2 { font-size: 34px; }

  .faq { padding: 80px 0; }
  .faq h2 { font-size: 38px; margin-bottom: 40px; }

  .waitlist { padding: 80px 0; }
  .waitlist h2 { font-size: 36px; }
  .waitlist-grid { display: none; }

  .footer-nav { font-size: 24px; }
  .footer-nav br { display: none; }
  .footer-meta { flex-direction: column; gap: 12px; margin-bottom: 60px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .footer-tagline { font-size: 60px; bottom: 100px; }
  .retailer-strip { gap: 20px; }
  .retailer-strip ul { gap: 18px; }
}
