/* ============================================================
   NECTAR SOUNDS — "Essence Clean"
   The old carrd.co cleanliness, elevated. Off-white, charcoal,
   orchid purple, warm gold. Every colour lives in the variables
   below; never hardcode a colour in a component rule.
   ============================================================ */

@font-face {
  font-family: "Fredoka";
  src: url("../fonts/fredoka.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  /* palette (from the original carrd site) */
  --paper: #faf8f4;
  --white: #ffffff;
  --charcoal: #2c2c2c;
  --ink-soft: #5e5e5e;
  --orchid: #9b75a5;
  --plum: #6b3f6b;
  --lavender: #c8b8d8;
  --lavender-wash: #f5eff8;
  --lavender-band: #eee6f5;
  --gold: #c9a96e;
  --gold-soft: #d4b896;
  --peach: #d69356;
  --mint: #a8c4b8;
  --mint-deep: #5a9e8a;

  /* roles */
  --text: var(--charcoal);
  --text-soft: var(--ink-soft);
  --text-on-accent: #ffffff;
  --accent-on-dark: var(--lavender);
  --hover-wash: rgba(155, 117, 165, 0.09);
  --card-border: rgba(44, 44, 44, 0.08);
  --shadow-card: 0 18px 44px -22px rgba(44, 44, 44, 0.22);
  --shadow-pop: 0 24px 54px -20px rgba(107, 63, 107, 0.3);

  /* emblem line colours (the SVG symbols read these) */
  --emblem-ring: var(--gold);
  --emblem-a: var(--gold);
  --emblem-b: var(--mint);
  --emblem-c: var(--orchid);
  --emblem-fill: var(--gold-soft);

  /* type + rhythm: Quicksand carries the page; Fredoka is reserved
     for the banner wordmark (matches the original's balance) */
  --font-head: "Quicksand", "Avenir Next", "Trebuchet MS", sans-serif;
  --font-body: "Quicksand", "Avenir Next", "Segoe UI", sans-serif;
  --radius-card: 22px;
  --radius-pill: 999px;
  --section-pad: clamp(2.4rem, 5vw, 4.2rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--text);
  line-height: 1.15;
}
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }

a { color: inherit; }

.noscript-note {
  position: relative; z-index: 50;
  padding: 2rem; text-align: center;
  font-family: var(--font-head); font-size: 1.2rem;
}

/* ---------- ambient layer: faint white motes over the banner ---------- */

#ambient {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
body.no-webgl #ambient { display: none; }

/* ---------- navigation ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.4rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(250, 248, 244, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
}

.nav__brand {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  white-space: nowrap;
  color: var(--plum);
}

.nav__links { display: flex; gap: clamp(0.4rem, 1.5vw, 1.5rem); margin-left: auto; min-width: 0; }
.nav__links a {
  text-decoration: none; font-size: 0.95rem; font-weight: 600;
  white-space: nowrap;
  color: var(--text-soft);
  padding: 0.35rem 0.75rem; border-radius: var(--radius-pill);
  transition: color 0.25s, background 0.25s;
}
.nav__links a:hover { color: var(--plum); background: var(--hover-wash); }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav .btn { margin-left: auto; }
}
.nav .btn { flex-shrink: 0; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  padding: 0.9rem 2.1rem;
  border-radius: var(--radius-pill);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
              background 0.3s ease, color 0.3s ease;
}
.btn--primary {
  background: var(--orchid); color: var(--text-on-accent);
  box-shadow: var(--shadow-pop);
}
.btn--primary:hover {
  background: var(--plum);
  transform: translateY(-2px);
}
.btn--ghost {
  color: var(--plum);
  border: 1.5px solid var(--lavender);
  background: var(--white);
}
.btn--ghost:hover { background: var(--lavender-wash); }
.btn--small { padding: 0.4rem 1.1rem; font-size: 0.86rem; }
.btn--large { padding: 1.05rem 2.6rem; font-size: 1.08rem; }

/* ---------- shared bones ---------- */

main { position: relative; z-index: 10; }

.section {
  position: relative;
  padding: var(--section-pad) clamp(1.4rem, 6vw, 6rem);
}

.kicker {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--orchid); margin-bottom: 1rem;
}

.section__head {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
}
.section__subline { color: var(--text-soft); margin-top: 0.8rem; font-size: 1.06rem; }

.prose { max-width: 44rem; margin: 0 auto 1.8rem; }
.prose p { color: var(--text-soft); margin-bottom: 1.1rem; font-size: 1.05rem; }

/* titles breathe in and out of view (reversible, very subtle) */
.title-anim {
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.title-anim.in { opacity: 1; transform: none; }

/* drift-in reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- gradient header banner (like the original) ---------- */

.banner {
  position: relative;
  overflow: hidden;
  margin-top: 44px; /* clear the fixed nav */
  padding: 0.9rem 1.5rem 1rem;
  text-align: center;
  background: linear-gradient(100deg, #cf9161 0%, #b07a92 48%, #9b75a5 100%);
}
.banner > :not(#ambient) { position: relative; z-index: 1; }

/* emblem: logo inside a soft breathing ring (4s in, 6s out) */
.banner__emblem {
  position: relative;
  width: clamp(96px, 10vw, 118px);
  aspect-ratio: 1;
  margin: 0 auto 0.4rem;
  display: grid;
  place-items: center;
}
.banner__ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.16),
              inset 0 0 28px rgba(255, 255, 255, 0.12);
  animation: ring-breathe 10s ease-in-out infinite;
}
@keyframes ring-breathe {
  0%   { transform: scale(0.85); opacity: 0.5; }
  40%  { transform: scale(1.0);  opacity: 1; }   /* 4s inhale */
  100% { transform: scale(0.85); opacity: 0.5; } /* 6s exhale */
}
.banner__logo {
  display: block;
  width: clamp(70px, 7.4vw, 84px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(107, 63, 107, 0.35));
  animation: logo-float 10s ease-in-out infinite;
}
@keyframes logo-float {
  0%   { transform: scale(0.965); }
  40%  { transform: scale(1.0); }
  100% { transform: scale(0.965); }
}
.banner__name {
  font-family: "Fredoka", "Avenir Next", sans-serif;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 0.05rem;
}
.banner__tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.85rem, 1.2vw, 0.98rem);
  font-weight: 500;
}

/* ---------- opening block ---------- */

.section--opening {
  text-align: center;
  padding-top: clamp(1.4rem, 2.8vw, 2.2rem);
  padding-bottom: clamp(1rem, 2vw, 1.6rem);
}

.pill-badge {
  display: inline-block;
  font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--plum);
  border: 1px solid rgba(155, 117, 165, 0.45);
  background: var(--white);
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.3rem;
}

.opening__headline {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  color: #555555;
  max-width: 52rem;
  margin: 0 auto 0.4rem;
}
.opening__headline .accent { color: var(--orchid); }

.opening__subline {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--text-soft);
  max-width: 38rem;
  margin: 0 auto 1.5rem;
}

/* subline + CTAs sit just below the video, like the original */
.post-video {
  text-align: center;
  margin-bottom: 2.2rem;
}

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ---------- practice lead-in ---------- */

.section--practice { padding-top: 0.4rem; }
.section--practice .section__head { margin-bottom: 1.4rem; }

.lead-caps {
  font-weight: 600;
  font-size: 0.92rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orchid);
  margin-bottom: 1rem;
}
.down-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  margin-top: 0.7rem;
  animation: hint-drift 3.5s ease-in-out infinite;
}
@keyframes hint-drift {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%      { transform: translateY(8px); opacity: 1; }
}

/* ---------- video ---------- */

.video-frame {
  width: 100%;
  max-width: 52rem;
  margin: 0 auto 2rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  padding: 10px;
}
.video-frame__inner {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius-card) - 10px);
  overflow: hidden;
}
.video-frame__inner iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- pillars ---------- */

.pillars {
  display: flex; gap: 1.3rem; flex-wrap: wrap;
  justify-content: center; align-items: stretch;
  max-width: 60rem; margin: 0 auto;
}
.pillar {
  flex: 1 1 200px; max-width: 270px;
  padding: 1.6rem 1.7rem;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--orchid);
  box-shadow: var(--shadow-card);
}
.pillar:nth-child(2) { border-top-color: var(--gold); }
.pillar:nth-child(3) { border-top-color: var(--mint-deep); }
.pillar h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--plum); }
.pillar p { font-size: 0.95rem; color: var(--text-soft); }

/* ---------- proof points: calm colour blocks ---------- */

.section--proof { padding-top: 0.6rem; }

.proof-intro {
  display: flex; gap: 1.4rem; align-items: flex-start;
  max-width: 56rem;
  margin: 0 auto 1.6rem;
  background: var(--lavender-wash);
  border-radius: var(--radius-card);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.proof-intro__icon {
  width: 74px; height: 74px; border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--lavender), var(--orchid));
  display: grid; place-items: center;
}
.proof-intro__icon svg { width: 46px; height: 46px; }
.proof-intro h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.proof-intro p { color: var(--text-soft); font-size: 0.98rem; }

.proof-rows {
  max-width: 56rem;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 1.4rem;
}
.proof-row {
  display: flex; align-items: stretch;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.proof-row--flip { flex-direction: row-reverse; }

.proof-row__panel {
  flex: 0 0 36%;
  min-height: 220px;
  display: grid; place-items: center;
}
.proof-row__panel svg { width: 96px; height: 96px; opacity: 0.9; }
.proof-row__panel--gold   { background: linear-gradient(135deg, #d0ab6d, #bd9455); }
.proof-row__panel--orchid { background: linear-gradient(135deg, #b592bd, #9b75a5); }
.proof-row__panel--mint   { background: linear-gradient(135deg, #8fbcaa, #6ba892); }

.proof-row__body { flex: 1; padding: clamp(1.4rem, 3vw, 2.1rem); }
.proof-row__kicker {
  font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.proof-row h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.proof-row p { color: var(--text-soft); font-size: 0.99rem; }

/* panels use light line colours */
.proof-row__panel, .proof-intro__icon {
  --emblem-ring: rgba(255, 255, 255, 0.85);
  --emblem-a: #ffffff;
  --emblem-b: rgba(255, 255, 255, 0.75);
  --emblem-c: #ffffff;
  --emblem-fill: rgba(255, 255, 255, 0.35);
}

@media (max-width: 680px) {
  .proof-row, .proof-row--flip { flex-direction: column; }
  .proof-row__panel { min-height: 150px; }
  .proof-intro { flex-direction: column; align-items: center; text-align: center; }
}

/* ---------- testimonial pairs (original card anatomy) ---------- */

.section--quotes { padding-top: 0.4rem; padding-bottom: 0.4rem; }

.quote-band {
  max-width: 62rem;
  margin: 0 auto;
  background: var(--lavender-wash);
  border-radius: calc(var(--radius-card) + 6px);
  padding: clamp(1rem, 2.5vw, 1.6rem);
}
.quote-pair {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  align-items: stretch;
}
.quote {
  flex: 1 1 300px;
  text-align: left;
  padding: 1.9rem 1.9rem 1.6rem;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 30px -18px rgba(44, 44, 44, 0.25);
  display: flex; flex-direction: column;
}
.quote:nth-child(even) { border-left-color: var(--orchid); }

.quote__glyph {
  font-family: Georgia, serif;
  font-size: 2rem; line-height: 1;
  color: var(--lavender);
  margin-bottom: 0.5rem;
}
.quote p {
  font-size: 0.99rem; line-height: 1.65;
  color: var(--text-soft);
  margin-bottom: 1.3rem;
  flex: 1;
}
.quote cite {
  font-style: normal;
  display: flex; align-items: center; gap: 0.7rem;
}
.quote__face {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  background: var(--gold-soft);
  flex-shrink: 0;
}
.quote:nth-child(even) .quote__face { background: var(--orchid); }
.quote__who strong {
  display: block;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.92rem; color: var(--text);
}
.quote__stars { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; }

/* ---------- what's inside: dark panel ---------- */

.inside-panel {
  max-width: 66rem;
  margin: 0 auto;
  background: var(--charcoal);
  border-radius: calc(var(--radius-card) + 8px);
  padding: clamp(2rem, 5vw, 3.6rem);
  box-shadow: 0 30px 70px -30px rgba(44, 44, 44, 0.5);

  /* emblem lines brighten on dark */
  --emblem-ring: var(--gold-soft);
  --emblem-a: var(--gold-soft);
  --emblem-b: var(--mint);
  --emblem-c: var(--lavender);
  --emblem-fill: var(--gold);
}
.inside-panel .section__head { margin-bottom: 2.4rem; }
.inside-panel h2 { color: var(--paper); }
.inside-panel .kicker { color: var(--lavender); }
.inside-panel .section__subline { color: rgba(250, 248, 244, 0.66); }

/* icon-left rows in a 2x2 grid, like the original */
.igrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.1rem;
}
.irow {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  transition: background 0.4s ease;
}
.irow:hover { background: rgba(255, 255, 255, 0.08); }

.irow__emblem { width: 56px; height: 56px; flex-shrink: 0; }
.irow__emblem svg { width: 100%; height: 100%; display: block; }

.irow h3 { font-size: 1.08rem; margin-bottom: 0.35rem; color: var(--paper); }
.irow p { color: rgba(250, 248, 244, 0.68); font-size: 0.94rem; }
.irow__detail {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 0.4rem;
}

/* ---------- about ---------- */

.about-card {
  max-width: 46rem;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--orchid);
  border-radius: var(--radius-card);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow-card);
}
.about-card h2 { margin-bottom: 1.3rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.about-card .prose { margin: 0 0 0.4rem; max-width: none; }
.about-card .prose p { font-size: 1rem; }
.about__signature {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--plum);
  margin-top: 1.2rem;
}
.about__note { font-size: 0.9rem; color: var(--text-soft); font-style: italic; }

/* ---------- faq ---------- */

.faq { max-width: 46rem; margin: 0 auto; width: 100%; }

.faq details {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  box-shadow: 0 8px 24px -16px rgba(44, 44, 44, 0.18);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.4rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.02rem;
  transition: background 0.25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--hover-wash); }
.faq summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--orchid);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 1.4rem 1.15rem;
  color: var(--text-soft);
  font-size: 0.96rem;
}

/* ---------- pricing: lavender band ---------- */

.section--pricing {
  background: var(--lavender-wash);
  border-top: 3px solid var(--orchid);
}

.tiers {
  display: flex; gap: 1.6rem; flex-wrap: wrap;
  justify-content: center; align-items: stretch;
  max-width: 62rem; margin: 0 auto;
}
.tier {
  flex: 1 1 290px; max-width: 390px;
  display: flex; flex-direction: column;
  padding: 2.3rem 2.1rem;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  position: relative;
}
.tier--featured {
  border: 1.5px solid var(--orchid);
  box-shadow: var(--shadow-pop);
}
.tier__badge {
  position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--orchid); color: var(--text-on-accent);
  font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.tier h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.tier__price {
  font-family: var(--font-head); font-weight: 600;
  font-size: 2.7rem; color: var(--plum);
}
.tier__period { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 1.3rem; }
.tier ul { list-style: none; margin-bottom: 2rem; flex: 1; }
.tier li {
  padding: 0.42rem 0 0.42rem 1.6rem;
  position: relative;
  color: var(--text-soft); font-size: 0.96rem;
}
.tier li::before {
  content: "✓"; position: absolute; left: 0; top: 0.42rem;
  color: var(--mint-deep); font-weight: 700;
}
/* the direct-offer card: minimal and centred, like the original */
.tier--offer { text-align: center; }
.tier--offer .tier__label {
  font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}
.tier--offer .tier__price { font-size: 3.2rem; }
.tier--offer .tier__micro {
  font-size: 0.86rem; color: var(--text-soft);
  margin-top: 1.1rem;
}
.tier--offer .tier__spacer { flex: 1; min-height: 1.4rem; }

.guarantee-pill {
  width: fit-content;
  margin: 2rem auto 0;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.4rem;
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-soft);
  box-shadow: 0 8px 20px -14px rgba(44, 44, 44, 0.3);
}

.tier__desc { color: var(--text-soft); font-size: 0.98rem; margin-bottom: 1.3rem; }
.tier__detail {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orchid); margin-bottom: 1.8rem;
}
.tier .btn { text-align: center; }

.pricing__footnote {
  text-align: center; margin-top: 2.4rem;
  font-size: 0.9rem; color: var(--text-soft); font-style: italic;
}

/* ---------- rest: dark closing band ---------- */

.section--rest {
  background: var(--charcoal);
  border-top: 3px solid var(--gold);
  text-align: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: 2.5rem;
}
.section--rest h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 0.9rem;
}
.rest__inner { max-width: 42rem; margin: 0 auto; }
.rest__subline { color: var(--accent-on-dark); font-size: 1.12rem; margin-bottom: 2.2rem; }

.footer { margin-top: 4.5rem; font-size: 0.9rem; color: rgba(250, 248, 244, 0.6); }
.footer__links { display: flex; gap: 1.6rem; justify-content: center; margin: 1rem 0; }
.footer__links a {
  color: rgba(250, 248, 244, 0.72); text-decoration: none; font-weight: 600;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--accent-on-dark); }
.footer__note { font-size: 0.8rem; opacity: 0.55; }

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .title-anim { opacity: 1; transform: none; transition: none; }
  .banner__logo, .banner__ring, .down-arrow { animation: none; }
  .btn { transition: none; }
  #ambient { display: none; }
}
