:root {
  --bg-sky-top: #C8A8B8;
  --bg-sky-mid: #E8B8A8;
  --bg-sand: #D4B89C;
  --orb-glow: #FFB8D8;
  --ink: #FFFFFF;
  --ink-soft: rgba(255, 255, 255, 0.62);
  --ink-faint: rgba(255, 255, 255, 0.42);
  --card-fill: rgba(255, 255, 255, 0.16);
  --card-stroke: rgba(255, 255, 255, 0.32);
  --cta-bg: #2C2C2E;
  --cta-bg-hover: #1C1C1E;
  --rock: #8A6F60;
  --font-display: "Inter", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg-sky-mid);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.section {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(64px, 8vw, 120px) clamp(20px, 4vw, 56px);
  position: relative;
}

.kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* ─── Ghost-pill nav ─────────────────────────────── */
.ghost-pill {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 14px 9px 18px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.gp-link { opacity: 0.78; transition: opacity .2s ease; }
.gp-link:hover { opacity: 1; }
.gp-link:first-child { opacity: 1; font-weight: 500; }
.gp-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.22); }
.gp-share {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  cursor: pointer;
  transition: background .2s ease;
}
.gp-share:hover { background: rgba(255,255,255,0.18); }
.gp-gear {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink);
  transition: background .2s ease, transform .4s ease;
}
.gp-gear:hover { background: rgba(255,255,255,0.18); transform: rotate(45deg); }

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(120% 80% at 80% 110%, var(--bg-sand) 0%, transparent 60%),
    radial-gradient(120% 90% at 20% 0%, var(--bg-sky-top) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-sky-top) 0%, var(--bg-sky-mid) 50%, var(--bg-sand) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(2px 2px at 18% 22%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 72% 38%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 88% 18%, rgba(255,255,255,0.5), transparent 60%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  right: 12vw; bottom: 18vh;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--orb-glow), #C878A8 60%, transparent 75%);
  filter: blur(2px);
  opacity: 0.85;
  box-shadow:
    0 0 60px 20px rgba(255, 184, 216, 0.35),
    0 0 140px 50px rgba(255, 184, 216, 0.20);
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}

.hero-sparkles { position: absolute; inset: 0; pointer-events: none; }
.spk {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 8px 2px rgba(255,255,255,0.6);
  animation: twinkle 3s ease-in-out infinite;
}
.spk.s1 { top: 18%; left: 14%; animation-delay: 0s; }
.spk.s2 { top: 32%; left: 78%; animation-delay: .6s; }
.spk.s3 { top: 68%; left: 22%; animation-delay: 1.2s; }
.spk.s4 { top: 14%; left: 62%; animation-delay: 1.8s; }
.spk.s5 { top: 80%; left: 70%; animation-delay: 2.4s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* ─── Destination card ────────────────────────────── */
.card {
  position: relative;
  z-index: 2;
  width: clamp(280px, 36vw, 420px);
  padding: 64px 36px 36px;
  background: var(--card-fill);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid var(--card-stroke);
  border-radius: 999px 999px 28px 28px / 540px 540px 28px 28px;
  text-align: center;
  box-shadow:
    0 30px 80px -20px rgba(74, 50, 60, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.4);
  animation: cardFloat 7s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.card-window {
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  width: calc(100% + 2px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--card-stroke);
  background: #2a2030;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.3);
}
.card-window img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.05) saturate(1.1);
}

.card-label {
  margin-top: calc(50% - 32px);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.card-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 6px 0 22px;
  text-shadow: 0 2px 14px rgba(80, 50, 70, 0.25);
}
.card-meta {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 13px;
}
.card-meta li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.card-meta li:first-child { border-top: 0; }
.m-key {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 300;
}
.m-val { font-weight: 400; font-variant-numeric: tabular-nums; }

.card-cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 18px;
  background: var(--cta-bg);
  color: white;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background .2s ease, transform .2s ease;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.35);
}
.card-cta:hover { background: var(--cta-bg-hover); transform: translateY(-1px); }
.cta-mark { transform: translateY(-1px); }

.card-tag {
  margin-top: 18px;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.sc-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--ink-soft));
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.6); opacity: 1; }
}

/* ─── LADDER ─────────────────────────────────────── */
.ladder {
  background:
    linear-gradient(180deg, var(--bg-sand) 0%, #E8D4C0 60%, var(--bg-sky-mid) 100%);
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
}
.ladder-head { max-width: 720px; text-align: center; }
.ladder-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.ladder-lede {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.55;
}

.rail {
  list-style: none;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: end;
  gap: 0;
  width: min(1100px, 100%);
  padding: 0 12px;
}
.rail-edge {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 300;
}
.rail-edge.left { text-align: left; padding-bottom: 6px; }
.rail-edge.right { text-align: right; grid-column: 2; padding-bottom: 6px; }
.rail-track {
  grid-column: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  margin-bottom: 30px;
}
.rail-track::before {
  content: "";
  position: absolute;
  left: 60px; right: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.rail-node {
  grid-column: 2;
  display: flex;
  justify-content: space-around;
  align-items: end;
  position: relative;
  padding-top: 24px;
}
.rail-node::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.node-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
  cursor: pointer;
  position: relative;
}
.node-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18), 0 0 18px 4px rgba(255,255,255,0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.node-btn:hover .node-dot { transform: scale(1.4); box-shadow: 0 0 0 5px rgba(255,255,255,0.28), 0 0 28px 8px rgba(255,255,255,0.6); }

.node-img {
  width: clamp(70px, 9vw, 120px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 12px 28px -8px rgba(74,50,60,0.4);
  transition: transform .35s ease;
}
.node-img img { width: 100%; height: 100%; object-fit: cover; }
.node-btn:hover .node-img { transform: translateY(-6px) scale(1.04); }

.node-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.node-meta {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─── ABOUT ─────────────────────────────────────── */
.about {
  background:
    linear-gradient(180deg, var(--bg-sky-mid) 0%, #B898A8 100%);
  flex-direction: column;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.about-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: clamp(40px, 5vw, 64px);
  text-align: left;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(24px, 3vw, 48px);
}
.about-col {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 18px;
}
.about-cap {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-weight: 500;
}
.about-col p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}

/* ─── FOOTER ────────────────────────────────────── */
.foot {
  padding: 24px clamp(20px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2C2230;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ─── MODAL ─────────────────────────────────────── */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}
.modal[hidden] { display: none; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(20, 14, 24, 0.6);
  backdrop-filter: blur(10px);
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-frame {
  position: relative;
  width: min(440px, 100%);
  padding: 36px 28px 28px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 24px;
  color: white;
  text-align: center;
  animation: scaleIn .35s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  transition: background .2s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.24); }
.modal-accent {
  display: block;
  width: 36px; height: 2px;
  background: var(--orb-glow);
  margin: 0 auto 18px;
  border-radius: 2px;
}
.modal-size {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.modal-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 36px;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.modal-img {
  width: 220px; height: 220px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 1px solid rgba(255,255,255,0.32);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.5);
}
.modal-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin-bottom: 14px;
}
.modal-price {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.modal-cta {
  display: inline-flex;
  padding: 12px 24px;
  background: var(--cta-bg);
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s ease;
}
.modal-cta:hover { background: var(--cta-bg-hover); }

/* ─── small screens ────────────────────────────── */
@media (max-width: 720px) {
  .ghost-pill { gap: 8px; padding: 8px 10px 8px 14px; font-size: 11px; }
  .gp-link:nth-of-type(2) { display: none; }
  .card { width: min(88vw, 360px); }
  .rail { grid-template-columns: 1fr; }
  .rail-edge.left, .rail-edge.right { display: none; }
  .rail-track, .rail-node { grid-column: 1; }
  .rail-node { flex-wrap: wrap; gap: 24px 16px; justify-content: space-around; }
}