/* ============================================================
   APLAKESIDE SERVICES — 3D immersive redesign
   Palette: Deep Navy #0D1B2A · Navy #14263D · Gold #B79B61
            Gold Light #D4B97E · Ivory #F8F6F1 · Slate #667085
   Type: EB Garamond (display) · Montserrat (UI/body)
   ============================================================ */
:root {
  --ink:        #0D1B2A;
  --navy:       #14263D;
  --navy-mid:   #1a2e49;
  --gold:       #B79B61;
  --gold-light: #D4B97E;
  --gold-soft:  #cdb88a;
  --ivory:      #F8F6F1;
  --slate:      #667085;
  --serif:      'EB Garamond', Georgia, serif;
  --sans:       'Montserrat', -apple-system, sans-serif;
  --ease-out:   cubic-bezier(.22, .7, .3, 1);
  --ease-expo:  cubic-bezier(.19, 1, .22, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  hyphens: none;
  -webkit-hyphens: none;
}
::selection { background: var(--gold); color: var(--ink); }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 900; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}


/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 48px;
  opacity: 0; transform: translateY(-16px);
  transition: opacity .9s ease, transform .9s ease, background .5s ease, padding .4s ease;
}
nav.visible { opacity: 1; transform: none; }
nav.scrolled {
  background: rgba(13,27,42,.88);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(183,155,97,.12);
  padding: 16px 48px;
}
.nav-mark {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.nav-emblem {
  width: 44px; height: 44px; object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 5px 18px rgba(183,155,97,.32));
  transition: transform .35s var(--ease-out), filter .35s ease;
}
.nav-mark:hover .nav-emblem {
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 8px 24px rgba(183,155,97,.5));
}
.nav-mark span {
  font-family: var(--serif); font-size: 16px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ivory); font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  color: rgba(248,246,241,.75); text-decoration: none;
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; font-weight: 400;
  transition: color .3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-enquire {
  border: 1px solid rgba(183,155,97,.5) !important;
  color: var(--gold-soft) !important;
  padding: 13px 26px; min-height: 44px;
  display: inline-flex; align-items: center;
  transition: all .3s !important;
}
.nav-enquire:hover {
  background: var(--gold); color: var(--ink) !important;
  border-color: var(--gold) !important;
}

/* ============================================================
   SCENE 1 — ARRIVAL
   ============================================================ */
.scene-arrival {
  position: relative; height: 100vh; height: 100dvh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.arrival-photo {
  position: absolute; inset: -6%;
  background-image: url('lake-tour-boats.webp');
  background-size: cover; background-position: center 57%;
  background-repeat: no-repeat;
  will-change: transform;
  transform-origin: center center;
  animation: photoDrift 18s ease-in-out infinite;
}
@keyframes photoDrift {
  0%   { transform: scale(1.06) translateY(0px); }
  50%  { transform: scale(1.10) translateY(-12px); }
  100% { transform: scale(1.06) translateY(0px); }
}
@media (prefers-reduced-motion: reduce) { .arrival-photo { animation: none; } }
/* Depth mist layer — floats slightly faster than photo */
.arrival-mist {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse 110% 60% at 50% 80%, rgba(13,27,42,.55) 0%, transparent 70%);
  will-change: transform;
}
.arrival-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,.75) 0%,
    rgba(13,27,42,.45) 40%,
    rgba(13,27,42,.7) 80%,
    rgba(13,27,42,.95) 100%
  );
}
.arrival-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, rgba(13,27,42,.6) 100%);
}
.arrival-text {
  position: relative; z-index: 5; text-align: center;
  max-width: 920px; padding: 0 32px;
  will-change: transform;
}
.arrival-emblem {
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 1.4s var(--ease-out) .4s forwards;
  position: relative; display: inline-block;
}
.arrival-emblem::before {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,155,97,.28) 0%, rgba(183,155,97,.08) 42%, transparent 72%);
  animation: emblemPulse 4s ease-in-out infinite;
}
@keyframes emblemPulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.15); opacity: 1; }
}
.arrival-emblem img {
  width: clamp(118px, 10vw, 148px); height: auto; aspect-ratio: 1;
  object-fit: contain; border-radius: 50%;
  filter: drop-shadow(0 14px 42px rgba(183,155,97,.42));
  transition: transform .35s var(--ease-out), filter .35s ease;
}
.arrival-emblem img:hover {
  transform: translateY(-3px) scale(1.025);
  filter: drop-shadow(0 18px 54px rgba(183,155,97,.6));
}
.nav-emblem { display: block; }
.f-emblem   { opacity: .85; transition: opacity .3s; }
.f-left .mark:hover .f-emblem { opacity: 1; }
.arrival-kicker {
  font-size: 10.5px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 36px;
  opacity: 0; animation: fadeUp 2.2s ease .8s forwards;
}
.arrival-line {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5.4vw, 70px); line-height: 1.18;
  color: var(--ivory);
}
.arrival-line .w {
  display: inline-block; opacity: 0; transform: translateY(28px);
  animation: fadeUp 1.6s cubic-bezier(.22,.7,.3,1) forwards;
}
.arrival-line em { font-style: italic; color: var(--gold-light); }
.arrival-sub {
  margin-top: 40px; font-family: var(--serif); font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px); color: rgba(248,246,241,.55);
  opacity: 0; animation: fadeUp 2s ease 3.4s forwards;
}
.arrival-cta {
  display: inline-block; margin-top: 52px; text-decoration: none;
  font-size: 10.5px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 18px 52px;
  opacity: 0; animation: fadeUp 2s ease 3.8s forwards;
  transition: background .3s, letter-spacing .3s;
}
.arrival-cta:hover { background: var(--gold-light); letter-spacing: .42em; }
.scroll-cue {
  position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center; z-index: 5;
  opacity: 0; animation: fadeUp 2s ease 4.4s forwards, cueBob 2.2s ease-in-out 4.4s infinite;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes cueBob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============================================================
   VALUE STRIP
   ============================================================ */
.value-strip {
  display: flex; justify-content: center; gap: 0;
  background: var(--navy); border-top: 1px solid rgba(183,155,97,.15);
  border-bottom: 1px solid rgba(183,155,97,.15);
}
.vs-item {
  flex: 1; max-width: 360px;
  padding: 44px 48px; text-align: center;
  border-right: 1px solid rgba(183,155,97,.12);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.vs-item:last-child { border-right: none; }
.vs-item span {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 500; margin-top: 4px;
}
.vs-item p {
  font-size: 13px; line-height: 1.8; color: rgba(248,246,241,.5); max-width: 24ch;
}

/* ============================================================
   SCENE 2 — THE PLACE
   ============================================================ */
.scene-place {
  position: relative; padding: 24vh 0 22vh; overflow: hidden;
  background: linear-gradient(to bottom, #14263D 0%, #1a2e49 55%, #21395a 100%);
}
.place-photo-wrap {
  position: absolute; right: 0; top: 0; bottom: 0; width: 42%;
  overflow: hidden;
}
.place-photo {
  position: absolute; inset: 0; background-size: cover; background-position: center 54%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.scene-place:hover .place-photo { transform: scale(1); }
.place-photo-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #1a2e49 0%, rgba(26,46,73,.4) 100%);
}
.place-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 2; }
.place-coord {
  font-size: 10px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 30px;
}
.place-float {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: rgba(248,246,241,.38); line-height: 2; margin-bottom: 48px;
}
.place-line {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 4.4vw, 58px); line-height: 1.22; max-width: 14em;
}
.place-line em { font-style: italic; color: var(--gold-soft); }
.place-body {
  margin-top: 44px; max-width: 430px; font-size: 15px; line-height: 2;
  color: rgba(248,246,241,.62);
}

/* ============================================================
   SCENE 3 — THE REALITY
   ============================================================ */
.scene-reality {
  position: relative; background: var(--ivory); color: var(--ink);
  padding: 20vh 0 18vh; overflow: hidden;
}
.reality-inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; position: relative; }
.reality-num {
  position: absolute; top: -9vh; right: 24px;
  font-family: var(--serif); font-size: clamp(140px,22vw,300px);
  color: rgba(20,38,61,.05); line-height: 1; user-select: none;
}
.reality-kicker {
  font-size: 10px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 34px;
}
.reality-line {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px,4.8vw,62px); line-height: 1.16; max-width: 11.5em; color: var(--navy);
}
.reality-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-top: 9vh; align-items: start;
}
.reality-cols .lead {
  font-family: var(--serif); font-size: clamp(19px,2vw,24px);
  line-height: 1.7; color: var(--navy); font-style: italic;
  border-left: 1px solid var(--gold); padding-left: 32px;
}
.reality-cols .copy { font-size: 15px; line-height: 2.1; color: var(--slate); max-width: 46ch; }
.reality-cols .copy p + p { margin-top: 1.6em; }

/* ============================================================
   SCENE 4 — THE EXPERIENCE
   ============================================================ */
.scene-day {
  position: relative;
  background: linear-gradient(to bottom, var(--ivory) 0%, #ece8df 100%);
  color: var(--ink); padding: 6vh 0 11vh; overflow: hidden;
}
.day-head { max-width: 1280px; margin: 0 auto 8vh; padding: 0 48px; }
.day-head .k { font-size: 10px; letter-spacing: .5em; text-transform: uppercase; color: var(--gold); margin-bottom: 30px; }
.day-head h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px,4.2vw,56px); line-height: 1.2; color: var(--navy); max-width: 13em;
}

/* Visual timeline */
.day-timeline {
  max-width: 800px; margin: 0 auto 10vh; padding: 0 48px; position: relative;
}
.tl-track {
  position: relative; height: 2px; background: rgba(20,38,61,.12); margin: 0 60px;
}
.tl-line {
  position: absolute; left: 0; top: 0; height: 100%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  width: 0%; transition: width 1.2s var(--ease-expo);
}
.tl-nodes {
  display: flex; justify-content: space-between; margin-top: -14px;
}
.tl-node {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  cursor: pointer; user-select: none;
  transition: opacity .3s;
}
.tl-node:not(.active) { opacity: .55; }
.tl-node:not(.active):hover { opacity: .85; }
.tl-track { cursor: grab; }
.tl-track:active { cursor: grabbing; }
.tl-dot {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid rgba(20,38,61,.2); background: var(--ivory);
  transition: border-color .4s, background .4s, transform .4s var(--ease-expo);
  position: relative; z-index: 2;
}
.tl-node.active .tl-dot {
  border-color: var(--gold); background: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(183,155,97,.15);
}
.tl-time {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-top: 8px;
}
.tl-label {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--slate);
}

/* Movement slideshow */
.movement-slides {
  display: grid;
  margin-bottom: 9vh;
}
.movement-slides .movement {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity .65s var(--ease-out);
  visibility: hidden;
}
.movement-slides .movement.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* Movements */
.movement {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 0 24px;
  align-items: center; position: relative;
}
.movement:last-child { margin-bottom: 0; }
.m-photo {
  position: relative; height: clamp(420px,58vh,600px); overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(13,27,42,.5);
  transform-style: preserve-3d;
}
.m-photo .ph {
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  transition: transform 1.4s var(--ease-expo);
}
.movement:hover .ph { transform: scale(1.05); }
.m-photo .veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.4), transparent 50%);
}
.m-text { position: relative; z-index: 3; }
.m-time {
  font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold);
  margin-bottom: 22px; display: flex; align-items: center; gap: 16px;
}
.m-time::before { content: ''; width: 44px; height: 1px; background: var(--gold); }
.m-text h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px,3vw,40px); line-height: 1.25; color: var(--navy); margin-bottom: 24px;
}
.m-text p { font-size: 14.5px; line-height: 2; color: var(--slate); max-width: 40ch; }
.movement.m1 .m-photo { grid-column: 1/8; grid-row: 1; }
.movement.m1 .m-text { grid-column: 8/13; grid-row: 1; margin-left: -60px; background: var(--ivory); padding: 52px 48px; box-shadow: 0 30px 60px -30px rgba(13,27,42,.25); }
.movement.m2 .m-photo { grid-column: 6/13; grid-row: 1; }
.movement.m2 .m-text { grid-column: 1/6; grid-row: 1; margin-right: -60px; z-index: 3; background: var(--navy); color: var(--ivory); padding: 52px 48px; box-shadow: 0 30px 60px -30px rgba(13,27,42,.5); }
.movement.m2 .m-text h3 { color: var(--ivory); }
.movement.m2 .m-text p { color: rgba(248,246,241,.68); }
.movement.m3 .m-photo { grid-column: 1/8; grid-row: 1; }
.movement.m3 .m-text { grid-column: 8/13; grid-row: 1; margin-left: -60px; background: var(--ivory); padding: 52px 48px; box-shadow: 0 30px 60px -30px rgba(13,27,42,.25); }

/* Photo break */
.scene-photo-break {
  position: relative; height: 72vh; min-height: 520px; max-height: 760px; overflow: hidden;
}
.pb-photo {
  position: absolute; inset: 0; background-size: cover; background-position: center 62%;
  background-repeat: no-repeat;
  transform: scale(1.04); transition: transform 12s ease;
}
.scene-photo-break:hover .pb-photo { transform: scale(1); }
.pb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,.3), rgba(13,27,42,.6));
}
.pb-caption {
  position: absolute; bottom: 36px; right: 48px;
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: rgba(248,246,241,.5); letter-spacing: .06em;
}

/* ============================================================
   SCENE 5 — THE SESSION
   ============================================================ */
.scene-session {
  position: relative; background: var(--ink); padding: 12vh 0; overflow: hidden;
}
.scene-session::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 10%, rgba(183,155,97,.07), transparent 60%);
}
.session-inner { max-width: 1080px; margin: 0 auto; padding: 0 48px; position: relative; }
.session-k {
  font-size: 10px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 34px;
}
.session-line {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px,4vw,52px); line-height: 1.28; max-width: 17em;
}
.session-line em { font-style: italic; color: var(--gold-soft); }
.session-sub {
  margin-top: 28px; font-size: clamp(14px,1.3vw,17px); line-height: 1.85;
  color: rgba(248,246,241,.55); max-width: 58ch;
}
.session-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(183,155,97,.15); margin-top: 10vh;
}
.session-cell { background: var(--ink); padding: 44px 36px 48px; }
.session-cell .n {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.session-cell h4 {
  font-family: var(--serif); font-weight: 500; font-size: 21px;
  line-height: 1.4; margin-bottom: 16px; color: var(--ivory);
}
.session-cell p { font-size: 13.5px; line-height: 1.95; color: rgba(248,246,241,.58); }
.session-doc {
  margin-top: 10vh; display: flex; gap: 56px; align-items: flex-start;
  border-top: 1px solid rgba(183,155,97,.18); padding-top: 7vh;
}
.session-doc .l { flex: 0 0 38%; }
.session-doc .l h4 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(22px,2.4vw,30px); line-height: 1.35; color: var(--ivory);
}
.session-doc .r {
  font-size: 14px; line-height: 2.05; color: rgba(248,246,241,.6); max-width: 52ch;
}
.session-doc .r p + p { margin-top: 1.4em; }
.doc-list { list-style: none; margin-top: 1.6em; }
.doc-list li {
  display: flex; gap: 18px; padding: 13px 0; align-items: baseline;
  border-bottom: 1px solid rgba(248,246,241,.07);
  font-size: 13.5px; color: rgba(248,246,241,.74);
}
.doc-list li span {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  font-size: 13px; min-width: 24px;
}

/* ============================================================
   SCENE 6 — EXPERIENCES · 3D PACKAGE CARDS
   ============================================================ */
.scene-tiers {
  background: linear-gradient(to bottom, #0f1e30 0%, var(--ink) 100%);
  color: var(--ivory); padding: 20vh 0; position: relative; overflow: hidden;
}
.scene-tiers::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(183,155,97,.06), transparent 60%);
}
.tiers-inner { max-width: 1240px; margin: 0 auto; padding: 0 48px; position: relative; }
.tiers-k {
  font-size: 10px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 34px;
}
.tiers-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px,4.2vw,54px); line-height: 1.22; color: var(--ivory);
  max-width: 18em; margin-bottom: 11vh;
}
.tiers-h em { font-style: italic; color: var(--gold-soft); }

/* 3D card grid */
.pkg-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  perspective: 1200px;
}
.pkg-card {
  position: relative; border-radius: 2px; overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid rgba(183,155,97,.14);
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-expo), box-shadow .5s ease, border-color .4s;
  will-change: transform;
}
.pkg-card:hover {
  transform: translateY(-12px) translateZ(20px) rotateX(2deg);
  box-shadow: 0 40px 80px -20px rgba(13,27,42,.7), 0 0 0 1px rgba(183,155,97,.3);
  border-color: rgba(183,155,97,.35);
}
.pkg-card.featured {
  border-color: rgba(183,155,97,.35);
  box-shadow: 0 20px 60px -20px rgba(183,155,97,.2);
}
.pkg-card.featured:hover {
  box-shadow: 0 50px 100px -20px rgba(183,155,97,.3), 0 0 0 1px rgba(183,155,97,.5);
}
.pkg-card.featured.stable-featured-card,
.pkg-card.featured.stable-featured-card:hover {
  transform: none !important;
  will-change: auto;
  transition: box-shadow .35s ease, border-color .35s ease;
}
.pkg-card-badge {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  text-align: center; padding: 8px;
  font-size: 9px; letter-spacing: .4em; text-transform: uppercase;
  background: var(--gold); color: var(--ink); font-weight: 500;
}
.pkg-card-photo {
  position: relative; height: clamp(290px,25vw,360px);
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.pkg-card[data-tier="foundation"] .pkg-card-photo { background-position: center 57%; }
.pkg-card[data-tier="elevate"] .pkg-card-photo { background-position: center 62%; }
.pkg-card[data-tier="transform"] .pkg-card-photo { background-position: center 65%; }
.pkg-card-photo::after {
  content: ''; position: absolute; inset: 0;
  transition: transform 1.2s var(--ease-expo);
  background-size: cover; background-position: center;
}
.pkg-card:hover .pkg-card-photo { }
.pkg-card-photo-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,.1) 0%, rgba(13,27,42,.5) 100%);
}
.pkg-card-body { padding: 36px 32px 40px; }
.pkg-card-idx {
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: var(--gold); margin-bottom: 14px;
}
.pkg-card-name {
  font-family: var(--serif); font-weight: 500;
  font-size: 28px; color: var(--ivory); margin-bottom: 6px;
}
.pkg-card-sub {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 20px;
}
.pkg-card-desc {
  font-size: 13.5px; line-height: 1.9; color: rgba(248,246,241,.58);
  margin-bottom: 28px;
}
.pkg-card-price {
  display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px;
  padding-top: 24px; border-top: 1px solid rgba(183,155,97,.15);
}
.pkg-card-price .from {
  font-size: 9px; letter-spacing: .35em; text-transform: uppercase; color: var(--slate);
}
.pkg-card-price .amt {
  font-family: var(--serif); font-size: 32px; color: var(--gold-light);
}
.pkg-card-cta {
  display: inline-block; text-decoration: none;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(183,155,97,.4);
  padding-bottom: 4px; transition: color .3s, border-color .3s;
}
.pkg-card-cta:hover { color: var(--gold-light); border-color: var(--gold-light); }
.tiers-note {
  margin-top: 8vh; font-family: var(--serif); font-style: italic;
  font-size: 16px; color: rgba(248,246,241,.42); max-width: 52ch; line-height: 1.9;
}

/* ============================================================
   SCENE 7 — CLOSE
   ============================================================ */
.scene-close {
  position: relative; min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.close-photo {
  position: absolute; inset: 0; background-size: cover; background-position: center 54%;
  background-repeat: no-repeat;
}
.close-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,.82) 0%,
    rgba(13,27,42,.72) 50%,
    rgba(13,27,42,.9) 100%
  );
}
.close-inner { position: relative; z-index: 4; padding: 18vh 32px; max-width: 840px; }
.close-k {
  font-size: 10px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 38px;
}
.close-line {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px,4.6vw,58px); line-height: 1.24; color: var(--ivory);
}
.close-line em { font-style: italic; color: var(--gold-soft); }
.close-sub {
  margin-top: 34px; font-size: 14px; line-height: 2;
  color: rgba(248,246,241,.52); max-width: 46ch; margin-left: auto; margin-right: auto;
}
.close-cta {
  display: inline-block; margin-top: 60px; text-decoration: none;
  font-size: 11px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 20px 56px;
  transition: all .35s ease;
}
.close-cta:hover { background: var(--gold-light); letter-spacing: .42em; }
.close-alt {
  display: block; margin-top: 28px;
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: rgba(248,246,241,.42);
}
.close-alt a {
  color: var(--gold-soft); text-decoration: none;
  border-bottom: 1px solid rgba(183,155,97,.35);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060e1a; padding: 64px 48px 48px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(183,155,97,.1);
}
.f-left .mark {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.f-emblem {
  width: 42px; height: 42px; object-fit: contain; border-radius: 50%;
  filter: drop-shadow(0 5px 16px rgba(183,155,97,.24));
}
.f-left .mark span {
  font-family: var(--serif); font-size: 14px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ivory);
}
.f-left p {
  font-size: 11.5px; line-height: 1.9;
  color: rgba(248,246,241,.5); max-width: 40ch;
}
.f-right {
  display: flex; gap: 40px; font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase;
}
.f-right a {
  color: rgba(248,246,241,.45); text-decoration: none; transition: color .3s;
}
.f-right a:hover { color: var(--gold-soft); }
.f-legal {
  width: 100%; margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(248,246,241,.06);
  font-size: 10.5px; color: rgba(248,246,241,.35);
  letter-spacing: .06em; line-height: 1.9;
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(44px);
  transition: opacity 1.2s var(--ease-expo), transform 1.2s var(--ease-expo);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .15s; }
.reveal.d2 { transition-delay: .3s; }
.reveal.d3 { transition-delay: .45s; }
.reveal-fast {
  opacity: 0; transform: translateY(16px) scale(.96);
  transition: opacity .8s ease, transform .8s var(--ease-expo);
}
.reveal-fast.in { opacity: 1; transform: none; }

/* parallax */
[data-plx] { will-change: transform; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 1px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-plx] { transform: none !important; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pkg-cards { grid-template-columns: 1fr; max-width: 480px; }
  .pkg-card-photo { height: clamp(360px, 72vw, 500px); }
  .place-photo-wrap { display: none; }
  .place-body { margin-left: 0; }
}
@media (max-width: 980px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links a:not(.nav-enquire) { display: none; }
  .place-inner, .reality-inner, .day-head, .session-inner, .tiers-inner { padding: 0 26px; }
  .reality-cols { grid-template-columns: 1fr; gap: 48px; }
  .movement-slides { margin-bottom: 8vh; }
  .movement { display: block; padding: 0 26px; }
  .m-photo { height: min(112vw, 560px); min-height: 380px; max-height: none; }
  .movement .m-text { margin: -40px 20px 0 !important; position: relative; }
  .session-grid { grid-template-columns: 1fr; }
  .session-doc { flex-direction: column; gap: 32px; }
  .value-strip { flex-direction: column; }
  .vs-item { border-right: none; border-bottom: 1px solid rgba(183,155,97,.1); }
  footer { padding: 48px 26px 40px; }
  .f-right { flex-wrap: wrap; gap: 24px; }
  .day-timeline { padding: 0 26px; }
}
