*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --olive: #3d4538;
  --olive-light: #5c6654;
  --olive-pale: #e4e8dc;
  --beige: #f0ebe3;
  --beige-dark: #ddd4c4;
  --navy: #0D1B2E;
  --navy-light: #1a2d47;
  --cream: #f9f7f2;
  --off-white: #F7F4EE;
  --text-dark: #14140f;
  --text-mid: #3a3a32;
  --text-muted: #6b6b5c;
  --gold: #BF8E3A;
  --gold-rgb: 191, 142, 58;
  --border-subtle: rgba(61, 69, 56, 0.1);
  --shadow-sm: 0 1px 2px rgba(13, 27, 46, 0.05);
  --shadow-md: 0 12px 40px rgba(13, 27, 46, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --container: min(1180px, 100% - 3rem);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-optical-sizing: auto;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; left: 1rem; top: 1rem; z-index: 200;
  width: auto; height: auto; padding: 0.75rem 1rem;
  background: var(--navy); color: var(--off-white); text-decoration: none;
  font-size: 0.85rem; border-radius: var(--radius);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Scroll-triggered reveal */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* NAV */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}
.site-nav.is-scrolled {
  box-shadow: 0 4px 24px rgba(13, 27, 46, 0.06);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  transition: padding 0.25s ease;
}
.site-nav.is-scrolled .nav-inner {
  padding: 0.6rem 1.5rem;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  max-width: min(100%, 16rem);
}
.nav-logo-mark {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.72rem, 1.5vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.25;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--olive); }
.nav-cta {
  background: var(--olive); color: var(--cream);
  border: none; padding: 0.65rem 1.35rem; border-radius: var(--radius);
  font-family: inherit; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--navy); }
.nav-cta:active { transform: scale(0.98); }
.nav-cta-mobile-item { display: none; list-style: none; }
.nav-cta--full { width: calc(100% - 3rem); margin: 0.75rem 1.5rem 0; }
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 2.5rem; height: 2.5rem; padding: 0; border: none;
  background: transparent; cursor: pointer; border-radius: var(--radius);
}
.nav-toggle span {
  display: block; width: 1.35rem; height: 2px;
  background: var(--olive); margin-inline: auto;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 6.5rem 0 4rem;
  border-bottom: 1px solid var(--border-subtle);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(var(--gold-rgb), 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(61, 69, 56, 0.05), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 2rem 1.5rem 0;
  position: relative;
  z-index: 1;
}
.hero-bg-text {
  position: absolute; bottom: -4rem; right: -2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10rem, 22vw, 18rem); font-weight: 300; line-height: 1;
  color: rgba(61, 69, 56, 0.035); pointer-events: none;
  letter-spacing: -0.02em; user-select: none;
}
.hero-left { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line {
  width: 2.5rem; height: 1px; background: var(--gold);
}
.hero-eyebrow span {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 300; line-height: 1.08;
  color: var(--text-dark); margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic; color: var(--olive);
}
.hero-product-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-product-line strong {
  font-weight: 500;
  color: var(--olive);
}
.hero-tagline {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 400;
}
.hero-desc {
  font-size: 1.05rem; line-height: 1.75; color: var(--text-mid);
  max-width: 28rem; margin-bottom: 2rem;
}
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--olive); color: var(--cream);
  padding: 0.95rem 1.85rem; border: none; border-radius: var(--radius);
  font-family: inherit; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s; font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent; color: var(--olive);
  padding: 0.95rem 1.85rem; border: 1px solid var(--border-subtle);
  border-radius: var(--radius); font-family: inherit;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: border-color 0.2s, background 0.2s; font-weight: 600;
}
.btn-ghost:hover {
  background: rgba(61, 69, 56, 0.06);
  border-color: rgba(61, 69, 56, 0.25);
}
a.btn-ghost { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }

.hero-right {
  display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 2;
}
.product-visual {
  position: relative; width: 320px; height: 420px;
}
.product-bottle {
  width: 200px; height: 360px;
  background: linear-gradient(165deg, var(--olive) 0%, var(--navy) 100%);
  border-radius: 18px 18px 22px 22px;
  margin: 0 auto;
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md), 0 28px 72px rgba(13, 27, 46, 0.18);
}
.bottle-cap {
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  width: 76px; height: 26px;
  background: linear-gradient(180deg, var(--olive-light) 0%, #3d4a38 100%);
  border-radius: 10px 10px 4px 4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.bottle-label-area {
  width: 82%;
  text-align: center;
  padding: 1.1rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  background: rgba(0,0,0,0.08);
}
.bottle-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.52rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(247,244,238,0.58); margin-bottom: 0.65rem;
  line-height: 1.3;
}
.bottle-monogram {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.5rem;
}
.bottle-monogram-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.bottle-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--cream);
  line-height: 1; margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.bottle-divider {
  width: 40px; height: 1px; background: var(--gold);
  margin: 0.6rem auto;
}
.bottle-sub {
  font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(247,244,238,0.75); font-weight: 400;
}
.bottle-base-line {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  opacity: 0.85;
}
.pill-badge {
  position: absolute; right: -10px; top: 60px;
  background: var(--off-white); border: 1px solid var(--beige-dark);
  border-radius: 4px; padding: 0.6rem 0.9rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.pill-badge-label {
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); display: block;
}
.pill-badge-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500; color: var(--olive);
}
.mission-badge {
  position: absolute; left: -20px; bottom: 80px;
  background: var(--navy); color: var(--cream);
  border-radius: 4px; padding: 0.7rem 1rem;
  max-width: 168px;
}
.mission-badge-title {
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.25rem;
}
.mission-badge-text {
  font-size: 0.72rem; line-height: 1.45; color: rgba(247,244,238,0.88);
}

/* STATS BAR */
.stats-bar {
  background: linear-gradient(180deg, var(--olive) 0%, #2d3329 100%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.stats-bar-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 2.25rem 1.5rem;
}
.stat-item {
  text-align: center; padding: 0.65rem 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 400; color: var(--off-white);
  line-height: 1; letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247, 244, 238, 0.72); margin-top: 0.45rem; font-weight: 500;
}

/* SECTION STYLES */
section { padding: 5.5rem 1.5rem; }
.shell { max-width: 1180px; margin-left: auto; margin-right: auto; }

.section-eyebrow {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.section-eyebrow-line { width: 2rem; height: 1px; background: var(--gold); }
.section-eyebrow span {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.1; color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--olive); }
.section-desc {
  font-size: 0.95rem; line-height: 1.8; color: var(--text-mid);
  max-width: 520px;
}

/* ABOUT / MISSION */
.mission-section {
  background: var(--navy);
}
.mission-shell {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
}
.mission-left .section-eyebrow span { color: var(--gold); }
.mission-left .section-eyebrow-line { background: var(--gold); }
.mission-left .section-title { color: var(--off-white); }
.mission-left .section-title em { color: var(--gold); }
.mission-left .section-desc { color: rgba(247,244,238,0.72); }
.mission-right { position: relative; }
.mission-cards { display: flex; flex-direction: column; gap: 1rem; }
.mission-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.mission-card-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.12); border: 1px solid rgba(var(--gold-rgb), 0.28);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mission-card-icon svg { width: 16px; height: 16px; }
.mission-card-title {
  font-size: 0.82rem; font-weight: 500; color: var(--off-white);
  letter-spacing: 0.04em; margin-bottom: 0.25rem;
}
.mission-card-text {
  font-size: 0.8rem; color: rgba(247,244,238,0.55); line-height: 1.6;
}
.tithe-highlight {
  margin-top: 1.5rem;
  background: rgba(var(--gold-rgb), 0.1);
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  border-radius: 6px; padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: center;
}
.tithe-pct {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: var(--gold);
  line-height: 1; flex-shrink: 0;
}
.tithe-text { font-size: 0.8rem; color: rgba(247,244,238,0.65); line-height: 1.6; }
.tithe-text strong { color: var(--gold); font-weight: 500; }

/* PRODUCT SECTION */
.product-section { background: var(--beige); }
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: start; margin-top: 2.5rem;
}
.product-cred {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 36rem;
  margin-top: 0.5rem;
}
.product-card-large {
  background: var(--cream);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 2.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center; position: relative; overflow: hidden;
}
.product-card-large::before {
  content: 'KAINOS DEEP';
  position: absolute; bottom: -1.5rem; left: 50%; transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300; color: rgba(74,82,64,0.04);
  white-space: nowrap; pointer-events: none; letter-spacing: 0.05em;
}
.mini-bottle {
  width: 90px; height: 150px;
  background: linear-gradient(165deg, var(--olive) 0%, var(--navy) 100%);
  border-radius: 10px 10px 13px 13px;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mini-bottle-cap {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 15px;
  background: linear-gradient(180deg, var(--olive-light) 0%, #3d4a38 100%);
  border-radius: 8px 8px 3px 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.mini-bottle-monogram {
  width: 38px;
  height: 38px;
}
.mini-bottle-monogram-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--text-dark); margin-bottom: 0.5rem;
}
.product-tagline {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.5rem;
}
.ingredient-list {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 0.5rem; justify-content: center; margin-bottom: 2rem;
}
.ingredient-list li {
  background: var(--olive-pale); color: var(--olive);
  font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 2px; font-weight: 500;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: var(--olive);
}
.product-details { display: flex; flex-direction: column; gap: 1.5rem; }
.detail-item { border-bottom: 1px solid var(--beige-dark); padding-bottom: 1.25rem; }
.detail-item:last-child { border-bottom: none; }
.detail-label {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.5rem;
}
.detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.25rem;
}
.detail-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

/* AI SECTION */
.ai-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.ai-section::before {
  content: 'Roadmap';
  position: absolute; right: -1rem; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: min(18vw, 12rem); font-weight: 300; color: rgba(255,255,255,0.02);
  pointer-events: none; line-height: 1;
}
.ai-section .section-title { color: var(--off-white); }
.ai-section .section-title em { color: var(--gold); }
.ai-section .section-eyebrow span { color: var(--gold); }
.ai-section .section-eyebrow-line { background: var(--gold); }
.ai-section .section-desc { color: rgba(247,244,238,0.65); margin-bottom: 2rem; }
.ai-section .ai-lede { max-width: 38rem; }
.ai-roadmap-note {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.4);
  font-weight: 500;
}
.ai-disclaimer {
  display: block; margin-top: 0.75rem; font-size: 0.82rem;
  font-style: italic; opacity: 0.85; color: rgba(247,244,238,0.5);
}
.ai-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2rem;
}
.ai-feature {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px; padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.ai-feature:hover {
  border-color: rgba(var(--gold-rgb), 0.25);
  background: rgba(var(--gold-rgb), 0.05);
}
.ai-feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: rgba(var(--gold-rgb), 0.28);
  line-height: 1; margin-bottom: 0.65rem;
}
.ai-feature-title {
  font-size: 0.85rem; font-weight: 500; color: var(--off-white);
  margin-bottom: 0.45rem; letter-spacing: 0.02em;
}
.ai-feature-text { font-size: 0.78rem; color: rgba(247,244,238,0.48); line-height: 1.65; }
.qr-loyalty {
  margin-top: 2rem;
  background: rgba(var(--gold-rgb), 0.06);
  border: 1px solid rgba(var(--gold-rgb), 0.14);
  border-radius: 6px; padding: 1.75rem 2rem;
  display: flex; gap: 2rem; align-items: center;
}
.qr-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(var(--gold-rgb), 0.1); border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.qr-loyalty-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--off-white); margin-bottom: 0.35rem;
}
.qr-loyalty-text { font-size: 0.8rem; color: rgba(247,244,238,0.5); line-height: 1.6; }
.qr-loyalty-text strong { color: var(--gold); font-weight: 500; }

/* CTA / WAITLIST */
.cta-section {
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 100%);
  text-align: center; padding: 5.5rem 1.5rem;
  border-top: 1px solid var(--border-subtle);
}
.cta-section .section-eyebrow { justify-content: center; }
.cta-section .section-title { margin: 0 auto 1rem; max-width: 38rem; text-align: center; }
.cta-section .section-desc { margin: 0 auto 1.5rem; text-align: center; max-width: 34rem; }
.cta-benefits {
  list-style: none;
  max-width: 22rem;
  margin: 0 auto 2rem;
  text-align: left;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.cta-benefits li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}
.cta-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}
.cta-footnote {
  font-size: 0.72rem; color: var(--text-muted); margin-top: 1.25rem;
  letter-spacing: 0.04em; text-align: center;
}
.cta-footnote.is-hidden { display: none; }
.waitlist-form-wrap.is-hidden { display: none; }
.waitlist-success {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--olive);
  max-width: 28rem;
  margin: 1.5rem auto 0;
  line-height: 1.45;
}
.waitlist-success[hidden] { display: none !important; }
.waitlist-error {
  font-size: 0.85rem;
  color: #8b3a3a;
  max-width: 28rem;
  margin: 1rem auto 0;
  line-height: 1.45;
}
.waitlist-error[hidden] { display: none !important; }
.email-form {
  display: flex; gap: 0; max-width: 440px; width: 100%;
  margin-inline: auto;
  border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.email-input {
  flex: 1; min-width: 0; padding: 0.85rem 1.2rem; border: none; outline: none;
  background: var(--cream); color: var(--text-dark);
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
}
.email-input::placeholder { color: var(--text-muted); }
.email-submit {
  background: var(--olive); color: var(--cream); border: none;
  padding: 0.85rem 1.35rem; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  transition: background 0.2s; white-space: nowrap;
}
.email-submit:hover:not(:disabled) { background: var(--navy); }
.email-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* FOOTER */
footer {
  background: var(--navy); padding: 3rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: start;
}
.footer-brand-block {
  grid-column: 1;
}
.footer-logo-lockup {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.65rem;
}
.footer-logo-mark {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
  padding-top: 0.15rem;
}
.footer-logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--off-white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}
.footer-tagline-italic {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(247,244,238,0.85);
  letter-spacing: 0.02em;
}
.footer-meaning {
  font-size: 0.72rem; letter-spacing: 0.06em;
  color: rgba(247,244,238,0.38);
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: start;
}
.footer-links a {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(247,244,238,0.45); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 2rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.68rem; color: rgba(247,244,238,0.28); letter-spacing: 0.04em;
}

/* Hero entrance */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-left > * {
    animation: fadeUp 0.65s ease both;
  }
  .hero-eyebrow { animation-delay: 0.08s; }
  .hero-title { animation-delay: 0.14s; }
  .hero-product-line { animation-delay: 0.18s; }
  .hero-tagline { animation-delay: 0.22s; }
  .hero-desc { animation-delay: 0.28s; }
  .hero-actions { animation-delay: 0.34s; }
  .hero-right { animation: fadeUp 0.75s 0.2s ease both; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; padding-top: 1rem; }
  .hero-right { order: -1; margin-bottom: 0.5rem; }
  .product-visual { margin: 0 auto; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 4.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0; top: 3.5rem;
    flex-direction: column; justify-content: flex-start;
    gap: 0; padding: 1rem 0;
    background: rgba(247, 244, 238, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-120%); opacity: 0; visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav-links.is-open {
    transform: translateY(0); opacity: 1; visibility: visible;
  }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border-subtle); }
  .nav-links a { display: block; padding: 1rem 1.5rem; font-size: 0.8rem; }
  .nav-inner > .nav-cta { display: none; }
  .nav-cta-mobile-item { display: list-item; border-bottom: none; padding-top: 0.25rem; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); padding: 1.75rem 1rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  section { padding: 3.75rem 1.25rem; }
  .mission-shell, .product-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .ai-features { grid-template-columns: 1fr; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo-lockup { justify-content: center; }
  .footer-logo-text-wrap { text-align: center; align-items: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .qr-loyalty { flex-direction: column; text-align: center; }
  .email-form { flex-direction: column; border-radius: var(--radius); }
  .email-submit { padding: 0.9rem 1rem; }
}
