/* iDO — production styles
   Extracted from iDO-draft-2.html and hardened for accessibility,
   reduced motion, focus visibility, and a strict CSP (no inline styles).
*/

/* ============================================================
   FONTS — self-hosted (no third-party DNS/TLS in critical path).
   Three woff2 files cover every weight/style used on the site:
     • Playfair Display 400 normal       → display headings
     • Fraunces italic 300/400/500       → italic body / taglines
     • DM Sans 300/400/500 normal        → body, nav, UI
   font-display: swap — render fallback immediately, swap when ready.
   ============================================================ */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/fonts/playfair-display-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url('/fonts/fraunces-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('/fonts/dm-sans.woff2') format('woff2');
}

:root {
  /* Background stays white */
  --ivory: #ffffff;
  /* Cathedral Light palette */
  --pearl: #f3eee5;
  --bg-2: #f3eee5;
  --paper: #ffffff;
  --champagne: #c9a96e;
  --champagne-soft: #e0cba0;
  --champagne-light: #f0e2bd;
  --rose-gold: #d4a799;
  --line: rgba(42, 38, 32, 0.08);
  /* Mapped tokens */
  --blush: #f0e2bd;
  --blush-2: #e0cba0;
  --rose: #c9a96e;
  --rose-deep: #a88a4f;
  --burgundy: #6b5424;
  --sage: #b6c0a8;
  --ink: #2a2620;
  --ink-mute: #756c5e;
  --ink-soft: #a89e8e;
  --ink-dim: #c9bfae;
  --gold: #c9a96e;
  --gold-deep: #a88a4f;
  --gold-soft: #e0cba0;
  --serif-display: 'Playfair Display', Georgia, serif;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--blush); color: var(--ink); }

/* ============================================================
   ACCESSIBILITY UTILITIES
   ============================================================ */

/* Visually hidden but readable by screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link — invisible until focused */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--ivory);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}

/* Hidden SVG defs container (replaces inline style attribute) */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Visible keyboard focus on every interactive element */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
.progress:focus-visible,
.track-art:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Logo links shouldn't show a fat outline — keep it tight */
.nav-logo:focus-visible,
.footer-logo:focus-visible {
  outline-offset: 6px;
}

/* ============================================================
   LOGO STYLES
   ============================================================ */
.logo-svg { color: var(--ink); }
.logo-svg .fill { fill: var(--ink); }
.logo-svg .ring,
.logo-svg line { stroke: var(--ink); }

/* ============================================================
   FLOATING PETALS (decorative, behind content)
   ============================================================ */
.petals {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.petal {
  position: absolute;
  top: -80px;
  width: 14px; height: 14px;
  background: var(--blush);
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: petal-fall linear infinite;
}
.petal.rose { background: var(--champagne); opacity: 0.4; }
.petal.gold { background: var(--gold); opacity: 0.5; }
@keyframes petal-fall {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0; }
  8%   { opacity: 0.55; }
  92%  { opacity: 0.4; }
  100% { transform: translateY(calc(100vh + 160px)) translateX(120px) rotate(420deg); opacity: 0; }
}

/* All main content sits above petals */
nav, section, footer, .wa-float, main { position: relative; z-index: 2; }
nav { position: fixed; }
.wa-float { position: fixed; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  padding: 16px 56px;
  background: rgba(254, 252, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(58, 47, 41, 0.04);
}
.nav-logo {
  width: 80px; height: auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
nav.scrolled .nav-logo {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  color: var(--ink-mute);
  text-decoration: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--rose); }
.wa-btn {
  padding: 12px 24px;
  background: var(--ink);
  color: var(--ivory);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.wa-btn:hover { background: var(--rose); transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 30%; left: 10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: 0.5;
  border-radius: 50%;
  filter: blur(40px);
  animation: float 12s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 20%; right: 5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
  filter: blur(50px);
  animation: float 14s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.1); }
}

.hero-content { max-width: 1100px; position: relative; z-index: 2; }
.hero-logo {
  display: block;
  width: 460px;
  max-width: 90%;
  margin: 0 auto 64px;
  opacity: 0;
  animation: fadeIn 1.6s ease 0.2s forwards;
  filter: drop-shadow(0 8px 32px rgba(178, 94, 77, 0.18));
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--rose);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1.4s ease 0.5s forwards;
}
.eyebrow .ornament { width: 40px; height: 1px; background: var(--rose); opacity: 0.5; }

.hero h1 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 152px);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 32px;
  color: var(--ink);
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}
.hero h1 .word:nth-child(1) { animation-delay: 0.7s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.9s; }
.hero h1 .word:nth-child(3) { animation-delay: 1.1s; }
.hero h1 .word:nth-child(4) { animation-delay: 1.3s; }
.hero h1 .word:nth-child(5) { animation-delay: 1.5s; }

.ornament-divider {
  display: flex; justify-content: center; align-items: center; gap: 16px;
  margin: 32px 0;
  opacity: 0;
  animation: fadeIn 2s ease 1.6s forwards;
}
.ornament-divider .line { width: 60px; height: 1px; background: var(--ink-soft); }
.ornament-divider .symbol { color: var(--rose); font-size: 12px; letter-spacing: 0.5em; }

.hero p.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink-mute);
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 1.6s ease 1.8s forwards;
}
.hero-cta {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.6s ease 2s forwards;
}
.btn-primary {
  padding: 18px 36px;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--rose); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200, 154, 140, 0.4); }
.btn-primary svg { width: 18px; height: 18px; fill: currentColor; }
.btn-ghost {
  padding: 18px 36px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 140px 56px; position: relative; }
.container { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--rose);
  margin-bottom: 16px;
}
.section-eyebrow .line { width: 30px; height: 1px; background: var(--rose); opacity: 0.5; }
.section-title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: var(--ink);
}
.section-title em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--rose); }
.section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-mute);
  max-width: 600px;
  margin: 0 auto;
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: #f5f1e8; position: relative; padding: 100px 56px; }
.process .section-header { margin-bottom: 56px; }
.process .section-title { font-size: clamp(36px, 5vw, 64px); }
@keyframes rotate { to { transform: rotate(360deg); } }

.diagram-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 32px;
  box-shadow: 0 20px 60px rgba(42, 38, 32, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.18);
}
.diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.diagram-stage {
  text-align: center;
  padding: 24px 12px;
  border-radius: 16px;
  background: var(--ivory);
  transition: transform 0.4s ease;
}
.diagram-stage:hover { transform: translateY(-4px); }
.stage-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--blush);
  border: 1.5px solid var(--rose);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all 0.5s ease;
}
.diagram-stage:hover .stage-icon { background: var(--rose); border-color: var(--rose-deep); }
.diagram-stage:hover .stage-icon svg { stroke: var(--ivory); }
.stage-icon::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px dashed var(--rose);
  opacity: 0.55;
  animation: orbit 30s linear infinite;
}
@keyframes orbit { to { transform: rotate(360deg); } }
.stage-icon svg {
  width: 32px; height: 32px;
  stroke: var(--rose-deep);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.4s ease;
}
.stage-icon.middle { background: var(--blush-2); }
.stage-icon.last { background: var(--gold-soft); border-color: var(--gold); }
.stage-icon.last svg { stroke: var(--gold-deep); }
.stage-icon.last::before { border-color: var(--gold); }
.diagram-stage:hover .stage-icon.last { background: var(--gold); border-color: var(--gold-deep); }

.diagram-arrow {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blush-2) 20%, var(--blush-2) 80%, transparent);
  width: 100%; min-width: 40px;
}
.diagram-arrow::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 8px; height: 8px;
  background: var(--rose);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 12px var(--rose);
  animation: dotFlow 3s ease-in-out infinite;
}
@keyframes dotFlow {
  0%   { left: 0; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.stage-num {
  font-family: var(--serif-display);
  font-size: 22px;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 6px;
}
.stage-title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 6px;
}
.stage-desc {
  color: var(--ink-mute);
  font-size: 13px;
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .diagram { grid-template-columns: 1fr; gap: 8px; }
  .diagram-arrow { width: 2px; height: 40px; background: linear-gradient(180deg, transparent, var(--blush-2) 20%, var(--blush-2) 80%, transparent); margin: 0 auto; }
  .diagram-arrow::after { top: 0; left: 50%; animation: dotFlowVertical 3s ease-in-out infinite; }
  @keyframes dotFlowVertical {
    0%   { top: 0; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
  }
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-inner { max-width: 1100px; margin: 0 auto; }
.tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.track-card {
  background: var(--pearl);
  padding: 32px;
  border-radius: 20px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
}
.track-card.has-audio { cursor: pointer; }
.track-card:hover { transform: translateY(-4px); border-color: var(--champagne-soft); background: var(--ivory); box-shadow: 0 20px 40px rgba(42, 38, 32, 0.06); }
.track-card.coming-soon { opacity: 0.55; cursor: default; }
.track-card.coming-soon:hover { transform: none; border-color: transparent; background: var(--pearl); box-shadow: none; }
.track-card .track-row {
  display: flex; align-items: center; gap: 24px; width: 100%;
}
.track-card .ribbon {
  position: absolute;
  top: 14px; right: 14px;
  padding: 4px 12px;
  background: var(--champagne);
  color: var(--ivory);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 100px;
}
.track-card.coming-soon .ribbon { background: transparent; color: var(--ink-soft); border: 1px solid var(--ink-soft); }

/* Custom audio player */
.audio-player {
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(42, 38, 32, 0.08);
}
.track-card.playing .audio-player { display: flex; }
.audio-player .progress {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(42, 38, 32, 0.1);
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
}
.audio-player .progress-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--champagne) 0%, var(--gold-deep) 100%);
  border-radius: 100px;
  transition: width 0.1s linear;
}
.audio-player .time-row {
  display: flex; justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}
.audio-player audio { display: none; }
.track-art {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.4s ease;
  border: none;
  padding: 0;
  cursor: pointer;
}
.track-card:hover .track-art { transform: scale(1.05); }
.track-art::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px dashed var(--blush-2);
  opacity: 0.5;
  animation: rotate 20s linear infinite;
}
.track-art svg { width: 22px; height: 22px; fill: var(--ivory); margin-left: 3px; z-index: 2; position: relative; }
.track-art .pause-icon { margin-left: 0; display: none; }
.track-card.has-audio .track-art { background: linear-gradient(135deg, var(--champagne-soft), var(--champagne)); cursor: pointer; }
.track-card.coming-soon .track-art { background: linear-gradient(135deg, #d8d2c5, #aaa294); cursor: default; }
.track-card.coming-soon .track-art::before { animation: none; opacity: 0.3; }
.track-card.playing .track-art .play-icon { display: none; }
.track-card.playing .track-art .pause-icon { display: block; }
.track-info { flex: 1; min-width: 0; }
.track-title { font-family: var(--serif-display); font-size: 24px; font-weight: 400; margin-bottom: 4px; color: var(--ink); }
.track-couple { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink-soft); }
.track-duration { font-size: 13px; color: var(--ink-soft); font-variant-numeric: tabular-nums; letter-spacing: 0.1em; }

/* ============================================================
   TEAM — "Meet Us" section
   ============================================================ */
.team { background: var(--ivory); }
.team-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.team-portrait {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 20px;
  background: var(--pearl);
  margin-bottom: 28px;
  box-shadow: 0 20px 40px -20px rgba(42, 38, 32, 0.25);
}
.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}
.team-card:hover .team-portrait img { transform: scale(1.03); }
.team-role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.team-name {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}
.team-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--pearl); }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.tier {
  background: var(--ivory);
  padding: 56px 36px;
  border-radius: 24px;
  border: 1px solid transparent;
  transition: all 0.5s ease;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.tier:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(58, 47, 41, 0.06); }
.tier.featured {
  background: linear-gradient(180deg, #fff7eb 0%, var(--ivory) 100%);
  border-color: var(--gold-soft);
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(184, 147, 90, 0.12);
}
.tier.featured:hover { transform: scale(1.02) translateY(-8px); }
.tier-badge {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  background: var(--gold);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  border-radius: 100px;
  text-transform: uppercase;
}
.tier-ornament { color: var(--rose); font-size: 12px; margin-bottom: 16px; letter-spacing: 0.4em; }
.tier-name {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--ink);
}
.tier-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.tier-price {
  font-family: var(--serif-display);
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1;
}
.tier-price.tier-price-text {
  font-size: 38px;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ink);
}
.tier-price-zar {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.tier-price-note { font-size: 12px; color: var(--ink-soft); margin-bottom: 32px; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 8px; }
.tier-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--blush);
  line-height: 1.6;
}
.tier-features { list-style: none; margin-bottom: 36px; text-align: left; flex: 1; }
.tier-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-mute);
  display: flex; gap: 12px;
  align-items: flex-start;
}
.tier-features li::before {
  content: '✦';
  color: var(--rose);
  font-size: 9px;
  margin-top: 6px;
}
.tier-cta {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--ink);
  color: var(--ivory);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s ease;
  font-weight: 500;
  margin-top: auto;
}
.tier-cta:hover { background: var(--rose); }
.tier.featured .tier-cta { background: var(--gold); }
.tier.featured .tier-cta:hover { background: var(--ink); }

/* Foundation-pricing note — small, italic, centred, sits under the tier grid */
.pricing-note {
  text-align: center;
  margin-top: 48px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-note span {
  color: var(--rose);
  margin-right: 10px;
  letter-spacing: 0.4em;
  font-size: 11px;
  vertical-align: middle;
}

/* Risk-reversal block — soft card, no border, lots of breathing room */
.pricing-reassure {
  margin: 64px auto 0;
  max-width: 720px;
  text-align: center;
  padding: 36px 32px;
  background: var(--ivory);
  border-radius: 20px;
  border: 1px solid var(--blush);
}
.pricing-reassure p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  text-align: center;
  padding: 180px 56px;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--blush) 200%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--blush);
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(244, 228, 220, 0.6) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--ink);
  position: relative;
}
.final-cta h2 em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--rose); }
.final-cta p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 20px;
  max-width: 540px;
  margin: 0 auto 48px;
  position: relative;
}
.final-cta .btn-primary { position: relative; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 56px;
  border-top: 1px solid var(--blush);
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px;
  background: var(--ivory);
}
footer .footer-logo { width: 72px; }
footer .footer-brand { display: flex; flex-direction: column; gap: 12px; }
footer .footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}
footer .footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
}

/* Legal disclosure block (SA ECT Act §43) */
footer .legal {
  font-size: 12px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-style: normal;
  line-height: 1.6;
  max-width: 420px;
  text-align: right;
}
footer .legal strong {
  color: var(--ink-mute);
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}
footer .legal a {
  color: var(--ink-mute);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-dim);
  transition: color 0.2s ease, border-color 0.2s ease;
}
footer .legal a:hover { color: var(--rose); border-color: var(--rose); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}
.page-404 .hero-logo { margin-bottom: 48px; }
.page-404 h1 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
}
.page-404 h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
}
.page-404 p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-mute);
  max-width: 480px;
  margin: 0 auto 48px;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  section { padding: 100px 24px; }
  .process-grid, .tiers, .tracks, .team-cards { grid-template-columns: 1fr; }
  .team-cards { gap: 60px; max-width: 400px; }
  .tier.featured { transform: none; }
  .tier.featured:hover { transform: translateY(-8px); }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; text-align: left; }
  footer .legal { text-align: left; max-width: 100%; }
  .final-cta { padding: 120px 24px; }
  .wa-float { bottom: 16px; right: 16px; width: 56px; height: 56px; }
}

/* ============================================================
   REDUCED MOTION — respect user preference
   Disables falling petals, all infinite animations, and reveal motion.
   Hero word-stagger and fadeIn become instant.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Decorative brand-identity animations exempted from the universal
     reset above. These are slow, low-amplitude, low-opacity gestures —
     not the parallax / fast-sweep / vestibular-trigger motion that
     prefers-reduced-motion is meant to suppress. */
  .petal {
    animation-duration: var(--petal-duration, 14s) !important;
    animation-iteration-count: infinite !important;
  }
  .stage-icon::before {
    animation: orbit 30s linear infinite !important;
    opacity: 0.55 !important;
  }
  .stage-icon.last::before { animation: orbit 30s linear infinite !important; }
  .diagram-arrow::after {
    animation: dotFlow 3s ease-in-out infinite !important;
    opacity: 1 !important;
  }
  .track-art::before { animation: none !important; opacity: 0 !important; }
  .hero-logo, .hero h1 .word, .ornament-divider, .hero p.lead, .hero-cta {
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero::before, .hero::after { animation: none !important; }
  .nav-logo { opacity: 1 !important; transform: none !important; pointer-events: auto !important; }
}

/* On narrow screens the connector flips vertical and uses a different
   keyframe — re-honour it under reduced-motion too. */
@media (prefers-reduced-motion: reduce) and (max-width: 700px) {
  .diagram-arrow::after {
    animation: dotFlowVertical 3s ease-in-out infinite !important;
  }
}

/* ============================================================
   PRINT — minimal sensible defaults
   ============================================================ */
@media print {
  .petals, .wa-float, nav, .hero::before, .hero::after { display: none !important; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
  section { padding: 32px 0; page-break-inside: avoid; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
