/* ============================================================
   KAVAMAZING™ — style.css
   Palette: Option B — Warm Ocean
   Deep ocean blue primary, warm anchors preserved (gold, amber,
   burnt orange, cream, navy). Logo aqueous story honored.
   Updated: June 2026
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Barlow+Condensed:wght@500;700&display=swap');

/* ══════════════════════════════════════════════════
   CSS VARIABLES — Option B Warm Ocean Palette
   ══════════════════════════════════════════════════ */
:root {
  /* Core brand — warm anchors unchanged */
  --gold:        #F5C20A;   /* Vanuatu sunset gold — primary CTA, accents */
  --gold-light:  #FAD94E;   /* Hover / highlight */
  --amber:       #E8A020;   /* Secondary warm accent */
  --amber-light: #F0B840;
  --orange:      #E84D1C;   /* Burnt orange — energy, urgency */
  --orange-dark: #C03A10;
  --orange-light:#F07040;

  /* NEW primary — deep ocean blue replacing teal/cyan */
  --ocean:       #1B6B8C;   /* Deep ocean — aqueous mark color */
  --ocean-dark:  #0F4A63;
  --ocean-light: #5AABCC;

  /* Navy family — unchanged */
  --navy-deep:   #0D1220;   /* Near-black depth */
  --navy-dark:   #1B3A8C;   /* Vanuatu navy — hero backgrounds */
  --navy:        #2A52B8;   /* Mid navy */

  /* Neutrals */
  --white:       #FFFFFF;
  --cream:       #FDF8F0;   /* Warm cream — light section bg */
  --warm-gray:   #F2EDE4;   /* Slightly warmer than cream */
  --warm-line:   #E0D4C0;   /* Borders on light backgrounds */

  /* Typography */
  --font-display: 'Oswald', 'Arial Black', sans-serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;
  --font-ui:      'Barlow Condensed', 'Arial Narrow', sans-serif;

  /* Layout */
  --section-pad:  80px 40px;
  --max-w:        1200px;
  --nav-h:        80px;
}

/* ══════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy-deep);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ══════════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p { margin-bottom: 18px; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; }
strong { font-weight: 700; }

.label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 12px;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #2A3A5A;
  margin-bottom: 24px;
}

.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ══════════════════════════════════════════════════
   LAYOUT CONTAINERS
   ══════════════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }

/* ══════════════════════════════════════════════════
   GOLD DIVIDER LINE
   ══════════════════════════════════════════════════ */
.gold-line {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 28px;
}
.gold-line.centered { margin: 20px auto 28px; }

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(13, 18, 32, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}
.nav-logo-img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  padding: 11px 26px !important;
  border-radius: 3px;
  font-weight: 700 !important;
  font-size: 1rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════════════════
   HERO — HOME
   ══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* Option B: deep ocean → Vanuatu navy gradient */
  background: linear-gradient(160deg,
    var(--navy-deep) 0%,
    var(--ocean-dark) 35%,
    var(--navy-dark) 70%,
    #3A1A05 100%);
  padding: var(--nav-h) 40px 80px;
}

/* Ghost wide logo bg */
.hero-ghost-bg {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  opacity: 0.07;
  mix-blend-mode: screen;
  filter: blur(1px);
  pointer-events: none;
}

/* Sun glow — kept as warm amber instead of cyan */
.hero-sun-glow {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 280px;
  background: radial-gradient(ellipse, rgba(232,160,32,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Wave wash */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(13,18,32,0.6), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-logo-wrap { margin-bottom: 32px; }
.hero-logo-img {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* Trust pills */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.hero-trust span {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-light);
  background: rgba(27, 107, 140, 0.18);
  border: 1px solid rgba(90, 171, 204, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Stat strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(245,194,10,0.2);
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
}
.hero-stat-cite {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--ocean-light);
  letter-spacing: 0.06em;
  margin-top: 6px;
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════════ */
.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 40px 72px;
  background: linear-gradient(160deg,
    var(--navy-deep) 0%,
    var(--ocean-dark) 40%,
    var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-ghost {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  opacity: 0.05;
  
  pointer-events: none;
}
.page-hero .container-narrow { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.page-hero .lead { color: rgba(255,255,255,0.88); }
.page-hero .label { color: var(--ocean-light); }

/* ══════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--ocean);
  color: var(--white);
}
.btn-primary:hover { background: var(--ocean-dark); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-amber {
  background: var(--amber);
  color: var(--navy-deep);
}
.btn-amber:hover { background: var(--amber-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
}
.btn-ghost:hover {
  background: var(--ocean);
  color: var(--white);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════
   SECTION BACKGROUNDS
   ══════════════════════════════════════════════════ */
.section-dark {
  background: linear-gradient(160deg,
    var(--navy-deep) 0%,
    var(--ocean-dark) 40%,
    var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.section-dark-ghost {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  opacity: 0.05;
  mix-blend-mode: screen;
  pointer-events: none;
}
.section-dark .label { color: var(--ocean-light); }
.section-dark h2 { color: var(--white); }

.section-cream { background: var(--cream); padding: var(--section-pad); }
.section-gray  { background: var(--warm-gray); padding: var(--section-pad); }

/* ══════════════════════════════════════════════════
   CALLOUT BOXES
   ══════════════════════════════════════════════════ */
.callout {
  border-left: 4px solid var(--ocean);
  background: rgba(27, 107, 140, 0.07);
  padding: 28px 32px;
  border-radius: 0 6px 6px 0;
  margin: 36px 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy-deep);
}
.callout-source {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--ocean);
  margin-top: 12px;
  opacity: 0.85;
}

/* ══════════════════════════════════════════════════
   FEATURE GRID
   ══════════════════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--warm-line);
  border-top: 3px solid var(--ocean);
  border-radius: 6px;
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(27, 107, 140, 0.12);
  transform: translateY(-3px);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.feature-card h3 { color: var(--navy-dark); }
.feature-card p  { color: #3A4A6A; font-size: 0.95rem; }

/* ══════════════════════════════════════════════════
   STORY SPLIT (two-column)
   ══════════════════════════════════════════════════ */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

/* ══════════════════════════════════════════════════
   BRAND GRID (two brand cards)
   ══════════════════════════════════════════════════ */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.brand-card {
  border-radius: 10px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.brand-card-kavamazing {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--ocean-dark) 60%, var(--navy-dark) 100%);
  border: 1px solid rgba(245,194,10,0.22);
}
.brand-card-sacred {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-dark) 60%, #3A1A05 100%);
  border: 1px solid rgba(232,160,32,0.28);
}
.brand-card h3 { color: var(--white); margin-bottom: 12px; }
.brand-card p  { color: rgba(255,255,255,0.88); font-size: 0.95rem; margin-bottom: 28px; }
.brand-card-sub {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════
   STAT ROW (dark sections)
   ══════════════════════════════════════════════════ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════
   ACCORDION (science page)
   ══════════════════════════════════════════════════ */
.accordion { border: 1px solid var(--warm-line); border-radius: 8px; overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--warm-line); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.accordion-header:hover { background: rgba(27, 107, 140, 0.05); }
.accordion-item.open .accordion-header { background: rgba(27, 107, 140, 0.07); }
.accordion-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 0.02em;
}
.accordion-arrow {
  font-size: 0.75rem;
  color: var(--ocean);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-item.open .accordion-arrow { transform: rotate(180deg); }
.accordion-body { display: none; }
.accordion-item.open .accordion-body { display: block; }
.accordion-content {
  padding: 0 28px 28px;
  font-size: 0.97rem;
  line-height: 1.75;
  color: #2A3A5A;
}
.accordion-cite {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--ocean);
  letter-spacing: 0.08em;
  margin-top: 14px;
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════
   DATA TABLE
   ══════════════════════════════════════════════════ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 0.95rem;
}
.data-table th {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ocean-dark);
  padding: 14px 20px;
  text-align: left;
}
.data-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--warm-line);
  vertical-align: top;
  color: #2A3A5A;
  line-height: 1.65;
}
.data-table tr:nth-child(even) td { background: var(--cream); }
.data-table tr:last-child td {
  background: rgba(27, 107, 140, 0.07);
  font-weight: 700;
  color: var(--navy-dark);
}

/* ══════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { color: var(--navy-dark); margin-bottom: 8px; }
.contact-info p { color: #2A3A5A; font-size: 0.95rem; margin-bottom: 16px; }
.contact-info a { color: var(--ocean); font-weight: 700; }
.contact-info a:hover { color: var(--ocean-dark); }

/* Forms */
.form-section-title {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocean);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--warm-line);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--warm-line);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-deep);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(27, 107, 140, 0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* ══════════════════════════════════════════════════
   WAITLIST STRIP
   ══════════════════════════════════════════════════ */
.waitlist-strip {
  background: linear-gradient(135deg,
    var(--navy-deep) 0%,
    var(--ocean-dark) 50%,
    var(--navy-dark) 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.waitlist-strip h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.waitlist-strip p {
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}
.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}
.waitlist-form input {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}
.waitlist-form input:focus { box-shadow: 0 0 0 3px rgba(245,194,10,0.4); }
.waitlist-note {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-top: 16px !important;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  padding: 64px 40px 40px;
  border-top: 3px solid var(--ocean-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto 48px;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 16px;
  display: block;
}
.footer-tagline {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 3px;
  transition: all 0.2s;
}
.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer h4 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocean-light);
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  line-height: 1.5;
}
.footer-contact strong { color: rgba(255,255,255,0.88); }
.footer-contact a { color: var(--ocean-light); }
.footer-contact a:hover { color: var(--gold); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════
   FADE-UP ANIMATIONS
   ══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-pad: 60px 24px; }
  .container, .container-narrow { padding: 0 24px; }
  .nav { padding: 0 24px; }

  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13,18,32,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
  }
  .nav-cta { margin-top: 12px; text-align: center; }

  .feature-grid { grid-template-columns: 1fr 1fr; }
  .story-split { grid-template-columns: 1fr; gap: 40px; }
  .brand-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .page-hero { padding: 120px 24px 56px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { min-width: unset; width: 100%; }
}

/* ══════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; }
}
