/* ============================================================
   Christy | Open Sky Horizon
   ============================================================ */

:root {
  --cobalt-deep: #14246f;
  --cobalt: #2443bd;
  --cobalt-soft: #8fa8ed;
  --pink: #c42f7d;
  --pink-soft: #e982b5;
  --sky-deep: var(--cobalt-deep);
  --sky-mid: #6788c3;
  --sky-pale: #dce7f5;
  --cloud-white: #fdfbf7;
  --ink: #2c3644;
  --ink-soft: #55606d;
  --line: rgba(44, 54, 68, 0.12);

  --display: 'Bodoni Moda', 'Didot', 'Bodoni 72', serif;
  --body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius: 16px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cloud-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  color: #fff;
  background: var(--pink);
}

:focus-visible {
  outline: 3px solid var(--pink-soft);
  outline-offset: 4px;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   Parallax media — the sky is a living thing, not a photo.
   Outer layer (.section-media / .hero-bg) is scroll-parallaxed by
   JS (translateY). Inner layer (.section-media-img / .hero-bg-img)
   runs a slow, continuous Ken Burns drift of its own via CSS,
   independent of scroll — so the sky keeps breathing even while
   you sit still, and scrolling pushes real depth on top of that.
   ============================================================ */

.section-media {
  position: absolute;
  inset: -18% 0;
  overflow: hidden;
  will-change: transform;
}
.section-media-img {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  animation: skyDrift 42s ease-in-out infinite alternate;
}
.section-wash {
  position: absolute;
  inset: 0;
}
.offers-bg > .section-pad,
.vsl > .container,
.book-call > .container,
.podcast > .container {
  position: relative;
  z-index: 1;
}

@keyframes skyDrift {
  0%   { transform: scale(1)     translate(0, 0); }
  50%  { transform: scale(1.09)  translate(-1.5%, -1%); }
  100% { transform: scale(1.16)  translate(1.5%, 1.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .section-media-img, .hero-bg-img { animation: none; }
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  color: var(--ink);
}

p { line-height: 1.65; color: var(--ink-soft); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #b92370, var(--pink));
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(196, 47, 125, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(196, 47, 125, 0.82); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }
.btn.is-disabled {
  cursor: default;
  opacity: 0.62;
  pointer-events: none;
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(253, 251, 247, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--display);
  font-size: 1.28rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.site-header.scrolled .logo { color: var(--ink); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.3s ease, opacity 0.2s ease;
}
.nav-links a:hover { opacity: 0.7; }
.site-header.scrolled .nav-links a { color: var(--ink-soft); }
.site-header.scrolled .nav-links a:hover { color: var(--pink); opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  transition: background 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }

/* ============================================================
   Sky ground — the page's constant backdrop
   ============================================================ */

.sky-ground {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, var(--cobalt-deep) 0%, var(--sky-mid) 48%, #b55299 100%);
}

.sky-ground::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.35));
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: max(860px, 100svh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 430px 32px 155px;
  isolation: isolate;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  will-change: transform;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../img/nebula-background.webp');
  background-size: cover;
  background-position: center top;
  background-color: #444a6e;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(29, 29, 65, 0.38), transparent 22%, rgba(35, 35, 69, 0.2) 43%, rgba(35, 35, 69, 0.74) 75%, rgba(35, 35, 69, 0.58));
}

.hero-horizon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(196, 47, 125, 0.35));
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 780px;
  color: #fff;
}

.hero-role {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  margin-bottom: 26px;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn {
  min-width: 180px;
  justify-content: center;
  padding: 17px 38px;
  font-size: 1.05rem;
}

/* Hero entrance — the arrival moment. Each line rises out of soft focus
   in sequence (--in-delay), so the sky is already breathing by the time
   the CTA lands. */
.hero-in {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--in-delay, 0s);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-in { animation: none; opacity: 1; transform: none; filter: none; }
}

/* Pinpoints glow quietly around the connected worlds. */
.constellation { position: absolute; inset: 0; pointer-events: none; }
.constellation i {
  position: absolute; width: 3px; height: 3px; border-radius: 50%;
  background: #fff2de; box-shadow: 0 0 12px 3px #ffe1c299;
  animation: starlight 5s ease-in-out infinite alternate;
}
.constellation i:nth-child(1) { left: 16%; top: 26%; }
.constellation i:nth-child(2) { left: 42%; top: 17%; animation-delay: -2s; }
.constellation i:nth-child(3) { left: 73%; top: 24%; animation-delay: -4s; }
.constellation i:nth-child(4) { left: 83%; top: 43%; animation-delay: -1s; }
.constellation i:nth-child(5) { left: 56%; top: 40%; animation-delay: -3s; }
.constellation i:nth-child(6) { left: 25%; top: 48%; animation-delay: -2.5s; }
@keyframes starlight {
  from { opacity: .25; transform: scale(.7); }
  to { opacity: 1; transform: scale(1.3); }
}

/* Shooting star — an infrequent, quiet flourish, streaking shallow and
   near-horizontal across the sky, right to left. */
.shooting-star {
  position: absolute;
  top: 14%;
  left: 78%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.9), 0 0 26px 8px rgba(255, 246, 214, 0.5);
  animation: shoot-a 8s cubic-bezier(0.3, 0, 0.65, 1) infinite;
  animation-delay: 3.5s;
}
.shooting-star::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35) 40%, rgba(255, 255, 255, 0.95));
  transform: translateY(-50%) rotate(173deg);
  transform-origin: right center;
}
/* Nearly horizontal streak — a real shooting star crosses the sky, it
   doesn't fall down it. */
@keyframes shoot-a {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.6); }
  1%   { opacity: 1; transform: translate(0, 0) scale(1); }
  16%  { opacity: 0; transform: translate(-480px, 60px) scale(1); }
  100% { opacity: 0; transform: translate(-480px, 60px) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .shooting-star { display: none; }
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-cue .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: driftDown 1.8s ease-in-out infinite;
}
@keyframes driftDown {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ============================================================
   Section shell
   ============================================================ */

section { position: relative; }

.section-pad { padding-block: 120px; }

.panel {
  background: var(--cloud-white);
  position: relative;
  z-index: 1;
}

.panel-curve-top {
  border-radius: 72px 72px 0 0;
  margin-top: -72px;
}

.section-head {
  max-width: 620px;
  margin: 0 0 60px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section-head p { margin-top: 18px; font-size: 1.08rem; }

/* ============================================================
   Welcome / About
   ============================================================ */

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-art {
  margin: 0;
  align-self: start;
  position: sticky;
  top: 110px;
}
.about-art > img {
  width: 100%; height: auto; aspect-ratio: 4 / 5;
  object-fit: cover; border-radius: var(--radius);
}
.about-art figcaption {
  font-family: var(--display); font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  line-height: 1.3; color: var(--cobalt-deep); margin-top: 28px; max-width: 24ch;
}
.about-copy { position: relative; isolation: isolate; }
.about-copy h2 { font-size: clamp(2rem, 3.2vw, 2.8rem); text-wrap: balance; }
.about-map {
  position: absolute; top: 12px; left: -8%; width: 108%; max-width: none;
  opacity: .085; z-index: -1; pointer-events: none;
}
.couples-abroad { background: #f5f0f5; padding: 88px 0; text-align: center; }
.couples-abroad h2 { color: var(--cobalt-deep); font-size: clamp(2.3rem, 4.5vw, 3.6rem); }

.clarity-intro {
  max-width: 560px;
  margin-top: 34px;
}
.clarity-intro h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
}
.clarity-intro p {
  margin: 10px 0 0;
}

.pillars {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.pillars li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.pillars .mark {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ad246a, var(--pink));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 0.95rem;
}
.pillars strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: 3px; }
.pillars span { color: var(--ink-soft); font-size: 0.94rem; }

/* ============================================================
   Offers
   ============================================================ */

.offers-bg {
  position: relative;
  overflow: hidden;
}
.offers-bg .section-media-img { background-image: url('../img/soft-dawn-clouds.jpg'); }
.offers-bg .section-wash {
  background: linear-gradient(180deg, rgba(253,251,247,0) 0%, rgba(253,251,247,0.72) 30%, rgba(253,251,247,0.9) 100%);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(44, 54, 68, 0.22); }

.offer-card.featured {
  background: linear-gradient(155deg, var(--cobalt-deep), var(--cobalt));
  color: #fff;
  border: none;
}
.offer-card.featured .offer-tier,
.offer-card.featured .offer-name,
.offer-card.featured p { color: #fff; }
.offer-card.featured p { color: rgba(255,255,255,0.82); }
.offer-card.featured .offer-list li { border-color: rgba(255,255,255,0.18); }
.offer-card.featured .btn-outline { border-color: rgba(255,255,255,0.5); color: #fff; }
.offer-card.featured .btn-outline:hover { background: rgba(255,255,255,0.14); }

.offer-tier {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--pink);
  margin: 0 0 12px;
}
.offer-card.featured .offer-tier { color: #f2b2d2; }

.offer-name {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.offer-price {
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.offer-card.featured .offer-price { color: rgba(255,255,255,0.75); }

.offer-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  flex: 1;
}
.offer-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.offer-card.featured .offer-list li { color: rgba(255,255,255,0.85); }
.offer-list li:last-child { border-bottom: none; }

.offer-card .btn { justify-content: center; width: 100%; }

.placeholder-note {
  text-align: center;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 34px;
  font-style: italic;
}

/* ============================================================
   VSL
   ============================================================ */

.vsl {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  color: #fff;
  text-align: center;
}
.vsl .section-media-img { background-image: url('../img/moon-ocean-dusk.jpg'); }
.vsl .section-wash {
  background: linear-gradient(180deg, rgba(20,36,111,0.48), rgba(36,67,189,0.68));
}

.vsl .section-head h2, .vsl .section-head p { color: #fff; }
.vsl .section-head p { color: rgba(255,255,255,0.82); }

.vsl-frame {
  max-width: 820px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 45px -12px rgba(0,0,0,0.5);
  cursor: pointer;
  border: 0;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.play-btn:hover { transform: scale(1.05); }
.play-btn::after {
  content: "";
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent var(--cobalt-deep);
  margin-left: 5px;
}

.vsl-caption {
  margin-top: 22px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

/* ============================================================
   Book a call
   ============================================================ */

.book-call {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 130px 0;
  text-align: center;
}
.book-call .section-media-img { background-image: url('../img/warm-sunset-clouds.jpg'); }
.book-call .section-wash {
  background: linear-gradient(145deg, rgba(196,47,125,0.78), rgba(76,57,174,0.58));
}

.book-call h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 700px;
  margin: 0 auto 22px;
}

.book-call p {
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.08rem;
}

.book-call .btn-primary {
  background: #fff;
  color: #a91f65;
  box-shadow: 0 16px 40px -12px rgba(44,30,20,0.4);
}
.book-call .btn-primary:hover { color: var(--pink); }

/* ============================================================
   Podcast
   ============================================================ */

.podcast {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.podcast .section-media-img { background-image: url('../img/calm-ocean-moon.jpg'); }
.podcast .section-wash {
  background: linear-gradient(180deg, rgba(253,251,247,0.7), rgba(253,251,247,0.55));
}

.podcast-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 60px 44px;
  backdrop-filter: blur(6px);
}

.podcast-icon {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cobalt-deep), var(--cobalt));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.podcast-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.podcast-card h2 { font-size: 1.9rem; margin-bottom: 14px; }
.podcast-card p { max-width: 440px; margin: 0 auto; }

.podcast-badge {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
  border: 1px solid rgba(196,47,125,0.38);
  padding: 8px 18px;
  border-radius: 999px;
}

/* ============================================================
   Footer
   ============================================================ */

footer {
  background: var(--cobalt-deep);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 34px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-brand .logo { display: inline-block; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.65); max-width: 320px; font-size: 0.94rem; }

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-links h4 {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.82); font-size: 0.94rem; }
.footer-links a:hover { color: #f0a4ca; }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   Reveal on scroll
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transform: none;
    transition: opacity 0.4s ease;
  }
  .section-media { transform: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 44px; }
  .offer-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 760px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open {
    background: rgba(47, 74, 104, 0.97);
    backdrop-filter: blur(14px);
    padding-bottom: 20px;
  }
  .site-header.nav-open .nav-row { flex-wrap: wrap; }
  .site-header.nav-open nav { width: 100%; order: 3; }
  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4px;
    margin-top: 20px;
  }
  .site-header.nav-open .nav-links a {
    display: block;
    padding: 12px 4px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .site-header.nav-open .nav-actions .btn { display: inline-flex; order: 2; }

  .section-pad { padding-block: 84px; }
  .hero { padding: 120px 24px 80px; }
  .offer-card.featured { order: -1; }
}

/* Galaxy refinement: responsive composition and motion access. */
.site-header:not(.scrolled) .btn-outline { color: #fff; border-color: #ffffff80; }
.hero h1 { text-wrap: balance; }
section[id] { scroll-margin-top: 86px; }
@media (max-width: 900px) {
  .about-art { position: static; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 760px) {
  .hero { min-height: 800px; padding: 370px 24px 135px; }
  .hero-bg-img { background-size: 620px auto; background-repeat: no-repeat; }
  .hero-bg::after {
    background: linear-gradient(180deg, #23234555, transparent 22%, #444a6e00 36%, #444a6e 50%, #303453 100%);
  }
  .hero-content { max-width: 440px; }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 3.8rem); }
  .hero-sub { margin-bottom: 26px; }
  .hero-role { margin-bottom: 14px; }
  .panel-curve-top { border-radius: 36px 36px 0 0; margin-top: -36px; }
  .couples-abroad { padding: 64px 0; }
  .site-header.nav-open .logo { color: #fff; }
  .site-header.nav-open .nav-toggle span { background: #fff; }
  .site-header.nav-open .btn-outline { color: #fff; border-color: #ffffff80; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .constellation i, .scroll-cue .dot { animation: none; }
  .hero-bg { transform: none !important; }
}

/* The composited galaxy moves independently of the still hero copy. */
.galaxy-motion { display: block; width: 100%; height: 100%; pointer-events: none; }
.galaxy-motion[hidden] { display: none; }
.hero.motion-paused .constellation i,
.hero.motion-paused .shooting-star,
.hero.motion-paused .scroll-cue .dot { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .galaxy-motion { display: none; }
}

/* A visible control also lets reduced-motion visitors opt in deliberately. */
.motion-toggle {
  position: absolute; right: 32px; bottom: 85px; z-index: 2;
  padding: 10px 15px; border: 1px solid #ffffff66; border-radius: 999px;
  background: #22244580; color: #fff; font: inherit; font-size: .8rem;
  cursor: pointer;
}
.motion-toggle[hidden] { display: none; }
.motion-toggle:hover { background: #222445cc; }
.hero.motion-enabled .galaxy-motion:not([hidden]) { display: block; }
/* CSS fallback animates only the nebula, never the planet layer. */
.hero.motion-enabled .hero-bg-img:not(.has-galaxy-motion) {
  animation: nebulaDrift 24s ease-in-out infinite alternate;
}
.hero.motion-paused .hero-bg-img { animation-play-state: paused; }
@keyframes nebulaDrift {
  from { transform: scale(1.04) translate(-.8%, -.5%); }
  to { transform: scale(1.1) translate(.8%, .6%); }
}
.planet-stage {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: max(100%, 150svh); aspect-ratio: 3 / 2; pointer-events: none;
}
.planet-orbit { position: absolute; inset: 0; width: 100%; height: 100%; }
.planet-anchor { position: absolute; transform: translate(-50%, -50%); }
.planet-peach { left: 33.1%; top: 27.6%; width: 28%; }
.planet-violet { left: 72.9%; top: 34.5%; width: 19%; }
.planet-float { animation: planetBob 11s ease-in-out infinite; }
.planet-spin { width: 100%; height: auto; animation: planetTurn 110s linear infinite; }
.planet-violet .planet-float { animation-duration: 13s; animation-delay: -4s; }
.planet-violet .planet-spin { animation-duration: 140s; animation-direction: reverse; }
@keyframes planetBob {
  0%, 100% { transform: translateY(4px); }
  50% { transform: translateY(-5px); }
}
@keyframes planetTurn { to { transform: rotate(360deg); } }
.hero:not(.motion-enabled) .planet-float,
.hero:not(.motion-enabled) .planet-spin,
.hero.motion-paused .planet-float,
.hero.motion-paused .planet-spin { animation-play-state: paused; }
@media (max-width: 760px) {
  .planet-stage { width: 620px; }
  @keyframes planetBob {
    0%, 100% { transform: translateY(3px); }
    50% { transform: translateY(-3px); }
  }
}
@media (max-width: 760px) {
  .motion-toggle { right: 20px; bottom: 56px; font-size: .75rem; padding: 9px 12px; }
  .scroll-cue { left: 40px; bottom: 66px; }
}
