/* ══════════════════════════════════════════════════════════════
   COSMETOGENESIS.COM — Design System v3
   Deep teal ground · coral accent · terracotta depth
   Cormorant Garamond (display) · Manrope (text)
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* ground */
  --teal:        #02434F;
  --teal-alt:    #023A45;
  --teal-deep:   #012B34;
  --teal-line:   #0B5765;

  /* accents */
  --coral:       #F2A28C;
  --coral-soft:  #F7C0B0;
  --coral-wash:  rgba(242,162,140,0.10);
  --terracotta:  #7A2E1C;
  --terracotta-l:#94402A;

  /* neutrals */
  --paper:       #D3D3D4;
  --paper-dim:   rgba(211,211,212,0.72);
  --paper-faint: rgba(211,211,212,0.66);
  --gray:        #837E7C;
  --rule:        rgba(211,211,212,0.16);
  --rule-strong: rgba(211,211,212,0.28);

  --nav-h:       76px;
  --serif:       'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:        'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap:        1200px;
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--teal);
  color: var(--paper);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--coral); color: var(--teal-deep); }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
   ───────────────────────────────────────────── */

h1, h2, h3, h4, h5,
.display, .h2, .h3, .h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: #EDEDEC;
}

.display, h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  margin-bottom: 1.4rem;
}
.h2, h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
.h3, h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 400; }
.h4, h4 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); font-weight: 400; }

em {
  font-style: italic;
  color: var(--coral);
  font-weight: 300;
}

strong { font-weight: 600; color: #EDEDEC; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--paper-dim);
  font-weight: 300;
  margin-bottom: 1.1rem;
}
.lead:last-child { margin-bottom: 0; }

.small { font-size: 0.85rem; line-height: 1.7; }
.muted { color: var(--paper-faint); }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.eyebrow--coral { color: var(--coral-soft); }

.kicker {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.num {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 1rem;
}

.quote {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.quote p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 300;
  line-height: 1.4;
  color: #EDEDEC;
  font-style: italic;
}

/* ─────────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────────── */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section--tight { padding: 2.75rem 0; }
.section--white  { background: var(--teal); }
.section--pearl  { background: var(--teal-alt); }
.section--steel  { background: var(--teal-deep); }

.measure { max-width: 620px; }
.measure-wide { max-width: 820px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.center.btn-row { justify-content: center; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split--top { align-items: start; }

.mb-s { margin-bottom: 0.75rem; }
.mb-m { margin-bottom: 1.5rem; }
.mb-l { margin-bottom: 3rem; }
.mt-m { margin-top: 1.5rem; }
.mt-l { margin-top: 3rem; }

/* ─────────────────────────────────────────────
   HEADER / NAV
   ───────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(2, 67, 79, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #EDEDEC;
  white-space: nowrap;
}
.brand .wordmark { font-size: 1.08rem; letter-spacing: 0.2em; }

.mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 32% 30%, var(--coral-soft) 0%, var(--coral) 42%, var(--terracotta) 100%);
  box-shadow: 0 0 0 1px rgba(242,162,140,0.35), 0 0 18px rgba(242,162,140,0.28);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links > a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-dim);
  padding: 0.5rem 0.9rem;
  border-radius: 2px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links > a:hover { color: var(--coral); background: var(--coral-wash); }
.nav-links > a.active { color: var(--coral); }
.nav-links > a.active::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--coral);
  margin-top: 4px;
}
.nav-cta.active::after { display: none; }
.nav-cta { margin-left: 0.75rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: none;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--paper);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  transition: background 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.7rem 1.4rem; font-size: 0.7rem; }

.btn-primary {
  background: var(--coral);
  color: var(--teal-deep);
  border-color: var(--coral);
}
.btn-primary:hover { background: var(--coral-soft); border-color: var(--coral-soft); }

.btn-secondary {
  background: var(--terracotta);
  color: #F2E7E2;
  border-color: var(--terracotta);
}
.btn-secondary:hover { background: var(--terracotta-l); border-color: var(--terracotta-l); }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--rule-strong);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }

.btn-light {
  background: var(--paper);
  color: var(--teal-deep);
  border-color: var(--paper);
}
.btn-light:hover { background: #E6E6E6; border-color: #E6E6E6; }

.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(211,211,212,0.5);
}
.btn-outline-light:hover { background: var(--paper); color: var(--teal-deep); border-color: var(--paper); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--coral);
}
.link-arrow span { transition: transform 0.22s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* ─────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero::before {
  content: '';
  position: absolute;
  top: -220px; right: -180px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(242,162,140,0.13) 0%, rgba(242,162,140,0) 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(122,46,28,0.28) 0%, rgba(122,46,28,0) 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.orb {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 34% 28%, rgba(242,162,140,0.9) 0%, rgba(242,162,140,0.35) 26%, rgba(122,46,28,0.55) 62%, rgba(1,43,52,0.9) 100%);
  box-shadow:
    inset 0 0 70px rgba(1,43,52,0.55),
    0 0 90px rgba(242,162,140,0.16);
  animation: orbFloat 9s ease-in-out infinite;
}
.orb::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(242,162,140,0.22);
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) }
  50%      { transform: translateY(-14px) }
}

.orb-label {
  position: relative;
  text-align: center;
  padding: 1rem;
}
.orb-label b {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF6F2;
  letter-spacing: 0.02em;
}
.orb-label small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,246,242,0.82);
}

/* ─────────────────────────────────────────────
   CARDS
   ───────────────────────────────────────────── */

.card {
  background: rgba(211,211,212,0.045);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 2.25rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.card p { color: var(--paper-dim); font-size: 0.93rem; font-weight: 300; }
.card h3, .card h4, .card .h3, .card .h4 { margin-bottom: 0.75rem; }

.card--feature { padding: 2.5rem; }
.card--feature:hover { border-color: rgba(242,162,140,0.45); background: rgba(242,162,140,0.05); }

.card--accent {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.card--accent p { color: rgba(242,231,226,0.85); }
.card--accent .eyebrow { color: var(--coral-soft); }

.card--outline { background: transparent; border-color: var(--rule-strong); }

.card-link { display: block; }
.card-link:hover { transform: translateY(-3px); }

.wing {
  background: rgba(211,211,212,0.045);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 2.5rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.wing:hover { border-color: rgba(242,162,140,0.45); background: rgba(242,162,140,0.05); transform: translateY(-3px); }
.wing h3 { margin-bottom: 0.75rem; }
.wing p { margin-bottom: 1.5rem; font-size: 0.92rem; }

.icon-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--coral);
  background: var(--coral-wash);
  border: 1px solid rgba(242,162,140,0.28);
  margin-bottom: 1.25rem;
}

/* ─────────────────────────────────────────────
   LISTS / CHIPS / BADGES
   ───────────────────────────────────────────── */

.tick { list-style: none; display: grid; gap: 0.5rem; }
.tick li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--paper-dim);
  line-height: 1.6;
}
.tick li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 700;
}

.steps { list-style: none; counter-reset: step; display: grid; gap: 0.9rem; }
.steps li {
  counter-increment: step;
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--paper-dim);
  line-height: 1.65;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--coral);
  min-width: 1.6rem;
}

.deflist { display: grid; gap: 1.1rem; }
.deflist > div { display: grid; gap: 0.2rem; }
.deflist dt {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}
.deflist dd {
  font-size: 0.94rem;
  font-weight: 300;
  color: var(--paper-dim);
  line-height: 1.7;
}
.deflist dd a { color: var(--paper); border-bottom: 1px solid rgba(242,162,140,0.5); }
.deflist dd a:hover { color: var(--coral); }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.42rem 0.9rem;
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
  color: var(--paper-dim);
}

.badge {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  background: var(--coral);
  color: var(--teal-deep);
  margin-bottom: 1rem;
}
.badge--steel { background: var(--rule-strong); color: var(--paper); }

/* ─────────────────────────────────────────────
   STATS
   ───────────────────────────────────────────── */

.stat {
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
}
.stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1;
  color: var(--coral);
  margin-bottom: 0.6rem;
}
.stat span {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--paper-dim);
}

/* ─────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────── */

.price-card {
  background: rgba(211,211,212,0.045);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.price-card:hover { border-color: rgba(242,162,140,0.45); transform: translateY(-3px); }
.price-card h3 { margin-bottom: 0.6rem; }
.price-card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--paper-dim);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.price-card .btn { margin-top: auto; }

.price-card--featured {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.price-card--featured p { color: rgba(242,231,226,0.86); }
.price-card--featured .price b { color: #FFDCCF; }
.price-card--featured .eur,
.price-card--featured .per { color: rgba(242,231,226,0.75); }

.tierlabel {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.85rem;
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.5rem 0 1.25rem;
}
.price b {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--coral);
}
.eur {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--paper-dim);
}
.per {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-faint);
}

/* ─────────────────────────────────────────────
   NOTICE / CTA
   ───────────────────────────────────────────── */

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border-radius: 3px;
  border: 1px solid var(--rule-strong);
  background: rgba(211,211,212,0.05);
}
.notice p { font-size: 0.92rem; font-weight: 300; color: var(--paper-dim); max-width: 720px; }
.notice strong { color: #EDEDEC; font-weight: 600; }

.notice--coral {
  border-color: rgba(242,162,140,0.4);
  background: var(--coral-wash);
  border-left: 3px solid var(--coral);
}
.notice--steel {
  border-color: var(--rule-strong);
  background: var(--teal-deep);
  border-left: 3px solid var(--gray);
}

.cta-band {
  padding: 4rem 3rem;
  border-radius: 3px;
  text-align: center;
  background: linear-gradient(135deg, var(--terracotta) 0%, #5E2214 100%);
  border: 1px solid rgba(242,162,140,0.28);
}
.cta-band .h2, .cta-band h2 { margin-bottom: 2rem; color: #FFF3EE; }
.cta-band em { color: var(--coral-soft); }

/* ─────────────────────────────────────────────
   FORMS
   ───────────────────────────────────────────── */

.form-card {
  background: rgba(211,211,212,0.045);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--paper);
  background: rgba(1,43,52,0.55);
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.7; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(1,43,52,0.8);
}
.field input::placeholder, .field textarea::placeholder { color: var(--paper-faint); }
.field select option,
.field select optgroup { background: var(--teal-deep); color: var(--paper); }

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */

.site-footer {
  background: var(--teal-deep);
  border-top: 1px solid var(--rule);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--rule);
}
.footer-grid p {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--paper-faint);
  line-height: 1.75;
}
.footer-grid h5 {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.1rem;
}
.footer-grid ul { list-style: none; display: grid; gap: 0.6rem; }
.footer-grid li {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--paper-faint);
  line-height: 1.7;
}
.footer-grid a { color: var(--paper-dim); transition: color 0.2s var(--ease); }
.footer-grid a:hover { color: var(--coral); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #EDEDEC;
  margin-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
}
.footer-bottom span,
.footer-bottom a {
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--paper-faint);
}
.footer-bottom a:hover { color: var(--coral); }

/* ─────────────────────────────────────────────
   LEGAL PAGES
   ───────────────────────────────────────────── */

.privacy-body { max-width: 780px; }
.privacy-body h1 { margin-bottom: 0.75rem; }
.privacy-body h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin: 2.75rem 0 0.85rem;
}
.privacy-body p,
.privacy-body li {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--paper-dim);
}
.privacy-body ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.privacy-body li { margin-bottom: 0.4rem; }
.privacy-body a { color: var(--coral); border-bottom: 1px solid rgba(242,162,140,0.4); }
.privacy-body a:hover { border-bottom-color: var(--coral); }

/* ─────────────────────────────────────────────
   SCROLL REVEAL  (site.js toggles .in)
   ───────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .orb { animation: none; }
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .orb { max-width: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    background: var(--teal-deep);
    border-bottom: 1px solid transparent;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  }
  .nav-links.open {
    max-height: 460px;
    padding: 1rem 2rem 1.5rem;
    border-bottom-color: var(--rule);
  }
  .nav-links > a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--rule);
    font-size: 0.82rem;
  }
  .nav-links > a.active::after { display: none; }
  .nav-cta {
    margin: 1rem 0 0;
    border-bottom: none !important;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .section { padding: 4rem 0; }
  .hero { padding: 3.5rem 0; }
  .wrap { padding: 0 1.25rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.25rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 2.75rem 1.5rem; }
  .card, .card--feature, .wing, .price-card, .form-card { padding: 1.75rem; }
  .notice { padding: 1.5rem; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .link-arrow { width: auto; }
}
