/* ============================================================
   LAVENTA — Cinematic Journey Visual System
   ============================================================ */

:root {
  --deep-teal: #00403E;
  --ocean-teal: #008081;
  --laventa-gold: #D9A94A;
  --sun-gold: #FFD801;
  --warm-sand: #F3E8D2;
  --shell-white: #FAF8F2;
  --white: #FFFFFF;
  --deep-charcoal: #172321;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --text-hero: clamp(2.75rem, 8.5vw, 7.75rem);
  --text-display: clamp(2.5rem, 7vw, 6.5rem);
  --text-giant: clamp(5rem, 22vw, 18rem);
  --text-xl: clamp(2rem, 5vw, 4.5rem);
  --text-lg: clamp(1.5rem, 3vw, 2.5rem);
  --text-md: clamp(1.125rem, 2vw, 1.35rem);
  --text-sm: clamp(0.75rem, 1.2vw, 0.875rem);
  --text-xs: 0.6875rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;

  --nav-h: 5rem;
  --content-max: 1400px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-luxury: cubic-bezier(0.65, 0, 0.35, 1);
  --header-pad: clamp(1.25rem, 4vw, 3rem);
  --reveal-duration: 1.1s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--deep-charcoal);
  background: var(--shell-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button,
body.has-cursor [data-cursor] {
  cursor: none;
}

@media (hover: none), (pointer: coarse) {
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor [data-cursor] {
    cursor: auto;
  }
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input { font: inherit; border: none; background: none; color: inherit; }
button { cursor: pointer; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100%; left: var(--space-sm); z-index: 10000;
  padding: 0.75rem 1.25rem; background: var(--laventa-gold); color: var(--deep-teal);
  font-size: var(--text-sm); font-weight: 500; letter-spacing: 0.04em;
}
.skip-link:focus { top: 1rem; }

.chapter-label {
  font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ocean-teal); margin-bottom: var(--space-md);
}
.chapter-label--light { color: rgba(250, 248, 242, 0.55); }
.chapter-label--gold { color: var(--laventa-gold); }

/* Giant chapter numbers */
.giant-num {
  position: absolute;
  top: 8%;
  right: var(--header-pad);
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 300;
  line-height: 0.85;
  color: rgba(0, 128, 129, 0.08);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.giant-num--light { color: rgba(250, 248, 242, 0.12); position: relative; top: auto; right: auto; display: block; margin-bottom: 0.5rem; }
.giant-num--gold { color: rgba(217, 169, 74, 0.12); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  min-height: 3.25rem; padding: 0.9rem 2.25rem;
  font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid transparent; position: relative; overflow: hidden;
  transition: color 0.5s var(--ease-luxury), border-color 0.5s var(--ease-luxury);
}
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--laventa-gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.55s var(--ease-luxury); z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:focus-visible { outline: 2px solid var(--laventa-gold); outline-offset: 3px; }

.btn--gold {
  background: transparent; color: var(--shell-white); border-color: var(--laventa-gold);
}
.btn--gold:hover::before,
.btn--gold:focus-visible::before { transform: scaleX(1); }
.btn--gold:hover,
.btn--gold:focus-visible { color: var(--deep-teal); }

.btn--ghost {
  background: transparent; color: var(--shell-white); border-color: rgba(250, 248, 242, 0.4);
}
.btn--ghost::before { background: rgba(250, 248, 242, 0.1); }
.btn--ghost:hover::before { transform: scaleX(1); }
.btn--ghost:hover { border-color: var(--shell-white); }

.btn--compact {
  min-height: 2.75rem; padding: 0.7rem 1.5rem; color: var(--deep-teal);
  border-color: var(--laventa-gold); background: var(--laventa-gold);
}
.btn--compact::before { background: transparent; }
.btn--compact:hover { background: transparent; color: var(--laventa-gold); }

.btn-arrow {
  display: inline-block;
  transition: transform 0.45s var(--ease-out);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Gold line ---------- */
.gold-line {
  width: 0; height: 1px; background: var(--laventa-gold);
  margin: var(--space-md) 0; transition: width 1.2s var(--ease-out);
}
.gold-line.is-visible { width: min(8rem, 40vw); }
.gold-line--short.is-visible { width: 4rem; }
.gold-line--center { margin-left: auto; margin-right: auto; }
.gold-line--center.is-visible { width: min(5rem, 30vw); }

/* ---------- Reveals ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(2rem);
  transition: opacity var(--reveal-duration) var(--ease-out), transform var(--reveal-duration) var(--ease-out);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.15s; }
[data-reveal][data-delay="2"] { transition-delay: 0.3s; }
[data-reveal][data-delay="3"] { transition-delay: 0.45s; }

.reveal-mask .mask-line { display: block; overflow: hidden; }
.reveal-mask .mask-inner {
  display: block; transform: translateY(110%);
  transition: transform 1.15s var(--ease-out);
}
.reveal-mask.is-visible .mask-inner { transform: translateY(0); }
.reveal-mask.is-visible .mask-line:nth-child(1) .mask-inner { transition-delay: 0.05s; }
.reveal-mask.is-visible .mask-line:nth-child(2) .mask-inner { transition-delay: 0.18s; }
.reveal-mask.is-visible .mask-line:nth-child(3) .mask-inner { transition-delay: 0.32s; }

/* Image reveal systems */
.img-reveal {
  overflow: hidden;
  position: relative;
}
.img-reveal img {
  width: 100%;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-out), clip-path 1.2s var(--ease-out);
}
.img-reveal--curtain-v img {
  clip-path: inset(100% 0 0 0);
}
.img-reveal--curtain-v.is-visible img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}
.img-reveal--curtain-h img {
  clip-path: inset(0 100% 0 0);
}
.img-reveal--curtain-h.is-visible img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}
.img-reveal--circle img {
  clip-path: circle(0% at 50% 50%);
}
.img-reveal--circle.is-visible img {
  clip-path: circle(80% at 50% 50%);
  transform: scale(1);
}
.img-reveal--split img {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.img-reveal--split.is-visible img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: scale(1);
}

/* Continuity shapes — clipped inside parent, no bleed */
/* (base rules live with chapter stacking) */

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 12px; height: 12px; pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), background 0.4s ease;
  border-radius: 50%;
  background: rgba(250, 248, 242, 0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
}
.cursor.is-on { opacity: 1; }
.cursor-label {
  font-size: 0.5625rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--deep-teal); opacity: 0; white-space: nowrap;
  font-weight: 500; transition: opacity 0.3s ease;
}
.cursor.is-explore,
.cursor.is-view,
.cursor.is-book {
  width: 72px; height: 72px;
  background: rgba(250, 248, 242, 0.92);
  mix-blend-mode: normal;
}
.cursor.is-explore .cursor-label,
.cursor.is-view .cursor-label,
.cursor.is-book .cursor-label { opacity: 1; }
.cursor.is-book { background: var(--laventa-gold); }
.cursor.is-hidden { opacity: 0; }

@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
}

/* ============================================================
   PROGRESS INDICATOR
   ============================================================ */
.progress {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.progress-line {
  position: absolute;
  left: 50%;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: rgba(217, 169, 74, 0.2);
  transform: translateX(-50%);
  z-index: 0;
}
.progress-fill {
  display: block;
  width: 100%;
  height: 0%;
  background: var(--laventa-gold);
  transition: height 0.25s linear;
}
.progress-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.progress-list a {
  font-size: 0.5625rem;
  letter-spacing: 0.12em;
  color: rgba(250, 248, 242, 0.28);
  transition: color 0.4s ease;
  writing-mode: horizontal-tb;
}
.progress-list a.is-active { color: var(--laventa-gold); }
.progress-list a:hover { color: var(--shell-white); }

@media (min-width: 1100px) {
  .progress { display: flex; }
}

/* Dark chapters need light progress — handled via body class */
body.progress-on-light .progress-list a { color: rgba(0, 64, 62, 0.25); }
body.progress-on-light .progress-list a.is-active { color: var(--laventa-gold); }
body.progress-on-light .progress-line { background: rgba(0, 64, 62, 0.12); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem var(--header-pad);
  transition: background-color 0.5s var(--ease-luxury), padding 0.5s var(--ease-luxury);
}
.site-header.is-scrolled {
  padding: 0.65rem var(--header-pad);
  background: rgba(0, 64, 62, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--content-max); margin: 0 auto; gap: var(--space-md);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: clamp(4.5rem, 9vw, 6.25rem);
  width: auto;
  max-width: min(48vw, 12rem);
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.35s ease, height 0.5s var(--ease-luxury), max-width 0.5s var(--ease-luxury);
}

.site-header.is-scrolled .nav-logo-img {
  height: clamp(3.5rem, 7vw, 4.75rem);
  max-width: min(40vw, 10rem);
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.92;
}

.mobile-menu-logo-link {
  display: block;
  margin-bottom: 1.25rem;
}
.mobile-menu-logo {
  width: clamp(7rem, 28vw, 9rem);
  height: auto;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.mobile-menu.is-open .mobile-menu-logo-link .mobile-menu-logo,
.mobile-menu.is-open .mobile-menu-logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.footer-logo-img {
  width: clamp(9rem, 22vw, 12rem);
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.nav-links {
  display: none; align-items: center; gap: clamp(1.5rem, 3vw, 2.75rem);
}
.nav-links a {
  font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(250, 248, 242, 0.78);
  position: relative; transition: color 0.3s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -0.35rem;
  width: 0; height: 1px; background: var(--laventa-gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--shell-white); }
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

.nav-cta {
  display: none; font-size: var(--text-xs); font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--deep-teal); background: var(--laventa-gold);
  padding: 0.65rem 1.35rem; position: relative; overflow: hidden;
  transition: color 0.4s ease;
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta::before {
  content: ""; position: absolute; inset: 0; background: var(--sun-gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease-luxury); z-index: 0;
}
.nav-cta:hover::before { transform: scaleX(1); }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 0.4rem;
  width: 2.5rem; height: 2.5rem; z-index: 1002;
}
.nav-toggle-line {
  display: block; width: 1.5rem; height: 1px; background: var(--shell-white);
  margin-left: auto; transition: transform 0.4s var(--ease-luxury), opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child { transform: translateY(0.22rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child { transform: translateY(-0.22rem) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-links, .nav-cta { display: flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 1001; background: var(--deep-teal);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.5s var(--ease-luxury), visibility 0.5s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(1.25rem, 4vh, 2rem); text-align: center; padding: var(--space-lg);
}
.mobile-link {
  font-family: var(--font-display); font-size: clamp(2rem, 8vw, 3.5rem); font-weight: 300;
  letter-spacing: 0.06em; color: var(--shell-white); opacity: 0; transform: translateY(1.5rem);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s ease;
}
.mobile-menu.is-open .mobile-link { opacity: 1; transform: translateY(0); }
.mobile-menu.is-open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-link:nth-child(3) { transition-delay: 0.16s; }
.mobile-menu.is-open .mobile-link:nth-child(4) { transition-delay: 0.22s; }
.mobile-menu.is-open .mobile-link:nth-child(5) { transition-delay: 0.28s; }
.mobile-menu.is-open .mobile-link:nth-child(6) { transition-delay: 0.34s; }
.mobile-menu.is-open .mobile-link:nth-child(7) { transition-delay: 0.4s; }
.mobile-link:hover, .mobile-link:focus-visible { color: var(--laventa-gold); }
.mobile-link--cta { color: var(--laventa-gold); margin-top: var(--space-sm); }
.mobile-social {
  margin-top: var(--space-md); font-size: var(--text-xs); letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(250, 248, 242, 0.5); opacity: 0;
  transition: opacity 0.5s ease 0.5s, color 0.3s ease;
}
.mobile-menu.is-open .mobile-social { opacity: 1; }
.mobile-social:hover { color: var(--sun-gold); }
body.menu-open { overflow: hidden; }

/* ============================================================
   CHAPTER STACKING — prevent section bleed / overlap
   ============================================================ */
.chapter {
  position: relative;
  isolation: isolate;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  background-color: var(--shell-white);
}

/* Sticky pin chapters must NOT use overflow:hidden (breaks position:sticky) */
.chapter-reveal,
.chapter-rooms,
.chapter-hours {
  overflow: visible;
  overflow-x: clip;
}

.chapter-arrive,
.chapter-discover,
.chapter-sea,
.chapter-water,
.chapter-rooms,
.chapter-hours,
.chapter-moments,
.chapter-journey,
.chapter-social,
.chapter-escape {
  background-color: var(--deep-charcoal);
}

.chapter-discover,
.chapter-water,
.chapter-journey {
  background-color: var(--deep-teal);
}

.chapter-table {
  background-color: var(--warm-sand);
}

.chapter-breath,
.chapter-slow,
.chapter-reveal,
.chapter-stay,
.chapter-chirala {
  background-color: var(--shell-white);
}

/* Sticky chapters sit under the following opaque sections */
.chapter-reveal,
.chapter-rooms,
.chapter-hours {
  z-index: 1;
}

.chapter-stay,
.chapter-water,
.chapter-table,
.chapter-moments,
.chapter-chirala,
.chapter-journey,
.chapter-social,
.chapter-escape,
.site-footer {
  position: relative;
  z-index: 2;
}

@media (min-width: 1100px) {
  .chapter {
    padding-right: 2.75rem;
  }
  .chapter-arrive,
  .chapter-hours,
  .chapter-escape,
  .chapter-moments,
  .chapter-sea {
    padding-right: 2.75rem;
  }
}

/* Continuity shapes — clipped inside parent, no bleed */
.continuity {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.continuity svg {
  width: 100%;
  height: clamp(48px, 8vw, 100px);
  display: block;
  vertical-align: bottom;
}
.continuity--wave-to-gold path { fill: var(--deep-teal); }
.continuity--wave .wave-path { fill: var(--shell-white); }
.continuity--gold-horizon {
  position: relative;
  bottom: auto;
  padding: 0 var(--header-pad) var(--space-lg);
  overflow: visible;
}
.horizon-line {
  display: block;
  height: 1px;
  width: 0;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--laventa-gold), transparent);
  transition: width 1.4s var(--ease-out);
}
.chapter-slow.is-inview .horizon-line,
.horizon-line.is-drawn { width: min(40rem, 80vw); }

/* ============================================================
   01 — HERO (film opening)
   ============================================================ */
.chapter-arrive {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--shell-white);
  background-color: var(--deep-charcoal);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
  animation: hero-settle 4.5s var(--ease-out) forwards;
}
@keyframes hero-settle {
  to { transform: scale(1.02); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23,35,33,0.45) 0%, rgba(0,64,62,0.18) 40%, rgba(23,35,33,0.58) 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  /* Clear fixed header + large logo so nothing overlaps */
  padding:
    clamp(8.5rem, 18vh, 11.5rem)
    var(--header-pad)
    clamp(5rem, 10vh, 7rem);
  max-width: 52rem;
  width: 100%;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.7);
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hero-brand.is-shown { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 6.25rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: clamp(1.5rem, 3vh, 2.25rem);
}
.hero-line {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(1.1em);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.hero-line.is-shown { opacity: 1; transform: translateY(0); }

.hero-meta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.hero-meta.is-shown { opacity: 1; transform: translateY(0); }
.hero-meta p {
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 248, 242, 0.65);
  margin-bottom: 0.5rem;
}
.hero-opening { color: var(--laventa-gold) !important; letter-spacing: 0.35em !important; }

.easter-sun {
  position: absolute;
  top: clamp(6.5rem, 14vh, 8rem);
  right: clamp(3rem, 6vw, 4.5rem);
  z-index: 3;
  color: rgba(255, 216, 1, 0.45);
  opacity: 0.55;
  transition: color 0.6s ease, opacity 0.4s ease, transform 0.6s var(--ease-out);
}
.easter-sun:hover,
.easter-sun:focus-visible { color: var(--sun-gold); opacity: 1; transform: scale(1.08); }
.chapter-arrive.is-dusk .easter-sun { color: #E8A04A; }
.chapter-arrive.is-dusk .hero-overlay {
  background: linear-gradient(180deg, rgba(80,40,20,0.35) 0%, rgba(120,55,25,0.25) 40%, rgba(23,35,33,0.6) 100%);
}
.chapter-arrive.is-dusk .hero-img { filter: sepia(0.25) saturate(1.15) brightness(0.92); }

.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(250, 248, 242, 0.55);
  opacity: 0;
  transition: opacity 1s ease 0.3s;
}
.scroll-cue.is-shown { opacity: 1; }
.scroll-cue-label { font-size: 0.625rem; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-cue-line {
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, var(--laventa-gold), transparent);
  transform-origin: top;
  animation: scroll-line 2.2s var(--ease-luxury) infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0.3); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ============================================================
   BREATH
   ============================================================ */
.chapter-breath {
  position: relative;
  min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--shell-white);
  padding: var(--space-xl) var(--header-pad);
}
.breath-inner { text-align: center; }
.breath-title {
  font-family: var(--font-display); font-size: var(--text-display); font-weight: 300;
  line-height: 1.05; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--deep-teal);
}

/* ============================================================
   DISCOVER
   ============================================================ */
.chapter-discover {
  position: relative;
  background: var(--deep-teal); color: var(--shell-white);
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: var(--space-xl) var(--header-pad);
}
.discover-inner { max-width: var(--content-max); margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.discover-title {
  font-family: var(--font-display); font-size: var(--text-display); font-weight: 300;
  line-height: 1.05; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--shell-white); max-width: 14ch;
}
.discover-copy {
  max-width: 32rem; font-weight: 300; font-size: var(--text-md); line-height: 1.8;
  color: rgba(250, 248, 242, 0.7); margin-top: var(--space-md);
}

/* ============================================================
   THE SEA
   ============================================================ */
.chapter-sea {
  position: relative; min-height: 140vh;
  display: flex; align-items: center; overflow: hidden; color: var(--shell-white);
}
.sea-media { position: absolute; inset: 0; overflow: hidden; }
.sea-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.1); will-change: transform;
}
.sea-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,64,62,0.75) 0%, rgba(0,64,62,0.35) 50%, rgba(23,35,33,0.2) 100%);
}
.sea-shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  background-size: 200% 200%;
  animation: shimmer 12s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes shimmer {
  0%, 100% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
}
.sea-giant {
  position: absolute; left: -4vw; top: 8%; z-index: 1;
  font-family: var(--font-display); font-weight: 300; line-height: 0.85;
  font-size: var(--text-giant); letter-spacing: 0.02em; text-transform: uppercase;
  color: rgba(250, 248, 242, 0.07); pointer-events: none; user-select: none;
  display: flex; flex-direction: column;
}
.sea-content {
  position: relative; z-index: 2; padding: var(--space-xl) var(--header-pad);
  max-width: var(--content-max); width: 100%; margin: 0 auto;
}
.sea-title {
  font-family: var(--font-display); font-size: var(--text-display); font-weight: 300;
  line-height: 1.05; letter-spacing: 0.03em; text-transform: uppercase;
  margin-bottom: var(--space-lg); will-change: transform;
}
.sea-line-fixed,
.sea-line-swap {
  display: block;
}
.sea-line-swap {
  min-height: 1.1em;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.sea-phrases { display: flex; flex-direction: column; gap: 1rem; }
.sea-phrases li {
  font-size: var(--text-sm); letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(250, 248, 242, 0.75);
}

/* ============================================================
   SLOW DOWN
   ============================================================ */
.chapter-slow {
  position: relative;
  min-height: 70vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--shell-white);
  overflow: hidden;
  padding: var(--space-xl) var(--header-pad);
}
.slow-title {
  font-family: var(--font-display); font-weight: 300; line-height: 0.9;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--deep-teal);
  text-align: center;
}
.slow-word {
  display: block;
  font-size: var(--text-giant);
  transform: translateX(0);
}
.slow-word:first-child { margin-left: -8vw; }
.slow-word:last-child { margin-right: -8vw; text-align: right; }

/* ============================================================
   REVEAL
   ============================================================ */
.chapter-reveal {
  background: var(--shell-white); height: 220vh; position: relative;
}
.reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--shell-white);
}
.reveal-frame {
  position: absolute; inset: 12% 18%; overflow: hidden;
  clip-path: inset(18% 22% 18% 22%);
  will-change: clip-path;
}
.reveal-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.15); will-change: transform;
}
.reveal-copy {
  position: relative; z-index: 2; text-align: center; padding: var(--header-pad);
  color: var(--white); mix-blend-mode: difference;
  opacity: 0; transform: translateY(1.5rem);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
}
.reveal-copy.is-shown { opacity: 1; transform: translateY(0); }
.reveal-title {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 300;
  line-height: 1.1; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ============================================================
   STAY + STRUCTURE (floor plan)
   ============================================================ */
.chapter-stay {
  background: var(--shell-white);
  padding: var(--space-xl) 0;
}

.stay-intro {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--header-pad) var(--space-lg);
}

.stay-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--deep-teal);
  margin-bottom: var(--space-md);
}

.stay-quote {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--deep-charcoal);
  opacity: 0.85;
  max-width: 28rem;
}

.structure-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--header-pad);
}

.structure-copy {
  order: 2;
}

.structure-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--deep-teal);
  margin-bottom: var(--space-md);
}

.structure-body {
  font-weight: 300;
  line-height: 1.8;
  color: rgba(23, 35, 33, 0.78);
  max-width: 32rem;
  margin-bottom: var(--space-md);
}

.structure-specs {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0, 64, 62, 0.12);
}

.structure-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.structure-specs span {
  color: rgba(23, 35, 33, 0.45);
}

.structure-specs strong {
  font-weight: 500;
  color: var(--deep-teal);
  letter-spacing: 0.08em;
}

.structure-types {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.structure-types li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.2rem 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 64, 62, 0.08);
}

.type-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--deep-teal);
}

.type-dim {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  color: var(--laventa-gold);
  align-self: center;
  white-space: nowrap;
}

.type-note {
  grid-column: 1 / -1;
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 35, 33, 0.4);
}

.structure-plan {
  order: 1;
  margin: 0;
  background: #f7f4ec;
  border: 1px solid rgba(0, 64, 62, 0.08);
  padding: clamp(0.75rem, 2vw, 1.25rem);
}

.structure-plan-img {
  width: 100%;
  height: auto;
  max-height: min(82vh, 920px);
  object-fit: contain;
  object-position: center top;
  background: #fff;
}

.structure-plan.img-reveal img {
  transform: none;
  clip-path: inset(0 100% 0 0);
}

.structure-plan.img-reveal.is-visible img {
  clip-path: inset(0 0 0 0);
  transform: none;
}

.structure-plan-caption {
  margin-top: 0.85rem;
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(23, 35, 33, 0.4);
  text-align: center;
}

@media (min-width: 900px) {
  .structure-block {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
  }

  .structure-copy {
    order: 1;
  }

  .structure-plan {
    order: 2;
  }
}

/* ============================================================
   ROOMS HORIZONTAL
   ============================================================ */
.chapter-rooms { background: var(--deep-charcoal); position: relative; }
.rooms-pin {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--deep-charcoal);
  position: sticky;
  top: 0;
}
.rooms-eyebrow {
  padding: 0 var(--header-pad) 1rem;
  font-size: var(--text-xs); letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--laventa-gold);
}
.rooms-track {
  display: flex; align-items: flex-end; gap: clamp(1rem, 2vw, 2rem);
  padding: 0 var(--header-pad); height: min(72vh, 700px); will-change: transform;
}
.room-panel {
  position: relative; flex: 0 0 clamp(280px, 62vw, 780px);
  height: 100%; overflow: hidden;
}
.room-panel--tall { flex-basis: clamp(260px, 48vw, 560px); height: 92%; }
.room-panel--wide { flex-basis: clamp(300px, 70vw, 900px); height: 100%; }
.room-panel img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.room-panel:hover img { transform: scale(1.04); }
.room-label {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: baseline;
  color: var(--shell-white);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
  max-width: calc(100% - 3rem);
}
.room-label span:first-child { color: var(--laventa-gold); font-weight: 500; }
.room-dim {
  flex-basis: 100%;
  letter-spacing: 0.16em;
  color: rgba(250, 248, 242, 0.65);
  font-size: 0.625rem;
}
.room-panel--end {
  flex: 0 0 clamp(280px, 55vw, 640px); height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-md); background: var(--deep-teal);
}
.rooms-end-title {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 300;
  line-height: 1.1; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--shell-white); margin-bottom: var(--space-md);
}
.rooms-end-note { font-size: var(--text-sm); color: rgba(250,248,242,0.55); max-width: 22rem; line-height: 1.7; }

@media (max-width: 767px) {
  .chapter-rooms { height: auto !important; }
  .rooms-pin {
    position: relative;
    height: auto;
    overflow: visible;
    padding: var(--space-lg) 0;
  }
  .rooms-track {
    flex-direction: column; height: auto; gap: var(--space-sm);
    padding: 0 var(--header-pad); transform: none !important; align-items: stretch;
  }
  .room-panel, .room-panel--tall, .room-panel--wide {
    flex: none; width: 100%; height: 58vw; min-height: 240px;
  }
  .room-panel--end { height: auto; min-height: 240px; padding: var(--space-lg) var(--space-md); }
}

@media (min-width: 768px) and (max-width: 899px) {
  .chapter-rooms { height: auto !important; }
  .rooms-pin {
    position: relative;
    height: auto;
    padding: var(--space-lg) 0;
  }
  .rooms-track {
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; transform: none !important; align-items: stretch;
  }
  .rooms-track::-webkit-scrollbar { display: none; }
  .room-panel { scroll-snap-align: center; flex: 0 0 75vw; height: 60vh; }
}

/* ============================================================
   WATER
   ============================================================ */
.chapter-water {
  position: relative;
  background: var(--deep-teal); color: var(--shell-white);
  padding: var(--space-xl) var(--header-pad); overflow: hidden;
}
.water-layout {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center;
  position: relative; z-index: 1;
}
.water-title {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 300;
  line-height: 1.1; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: var(--space-md);
}
.water-words { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; }
.water-words li {
  font-size: var(--text-xs); letter-spacing: 0.32em; text-transform: uppercase; color: var(--laventa-gold);
}
.water-media img { width: 100%; height: clamp(280px, 55vh, 640px); object-fit: cover; }
@media (min-width: 900px) {
  .water-layout { grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); }
}

/* ============================================================
   TABLE
   ============================================================ */
.chapter-table {
  background: var(--warm-sand); color: var(--deep-charcoal);
  padding: var(--space-xl) var(--header-pad);
}
.table-layout {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center;
}
.table-media img { width: 100%; height: clamp(280px, 55vh, 640px); object-fit: cover; }
.table-title {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 300;
  line-height: 1.1; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--deep-teal); margin-bottom: var(--space-md);
}
.table-moments { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: var(--space-md); }
.table-moments li {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 300;
  letter-spacing: 0.04em; color: var(--deep-teal);
  border-bottom: 1px solid rgba(0, 64, 62, 0.12); padding-bottom: 0.75rem;
}
.table-moments li span {
  display: inline-block; transition: transform 0.4s var(--ease-out), color 0.4s ease;
}
.table-moments li:hover span { transform: translateX(0.5rem); color: var(--ocean-teal); }
.table-note {
  font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(23, 35, 33, 0.5);
}
@media (min-width: 900px) {
  .table-layout { grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem); }
}

/* ============================================================
   HOURS — Day → Sunset → Blue → Night
   ============================================================ */
.chapter-hours {
  position: relative;
  height: 400vh;
  background: var(--deep-charcoal);
}
.hours-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-charcoal);
}
.hours-media { position: absolute; inset: 0; }
.hours-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.08);
  transition: opacity 0.9s var(--ease-luxury), transform 8s linear, filter 0.9s ease;
}
.hours-img.is-active {
  opacity: 1; transform: scale(1);
}
.hours-veil {
  position: absolute; inset: 0; pointer-events: none;
  background: transparent;
  transition: background 0.8s ease;
  z-index: 1;
}
.hours-content {
  position: relative; z-index: 2; text-align: center; padding: var(--header-pad);
  color: var(--shell-white);
}
.hours-phase {
  font-size: var(--text-xs); letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--laventa-gold); margin-bottom: 1.25rem;
  transition: opacity 0.4s ease;
}
.hours-title {
  font-family: var(--font-display); font-size: var(--text-display); font-weight: 300;
  line-height: 1.05; letter-spacing: 0.04em; text-transform: uppercase;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

/* ============================================================
   MOMENTS
   ============================================================ */
.chapter-moments {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
  color: var(--shell-white); background: var(--deep-charcoal);
}
.moments-bg { position: absolute; inset: 0; }
.moments-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 0.8s var(--ease-luxury), transform 6s linear;
}
.moments-bg img.is-active { opacity: 1; transform: scale(1); }
.moments-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,64,62,0.88) 0%, rgba(0,64,62,0.5) 55%, rgba(23,35,33,0.35) 100%);
}
.moments-content {
  position: relative; z-index: 2; padding: var(--space-xl) var(--header-pad);
  max-width: var(--content-max); width: 100%; margin: 0 auto;
}
.moments-list { display: flex; flex-direction: column; gap: 0.25rem; }
.moment-item {
  display: grid; grid-template-columns: 3rem 1fr; align-items: baseline; gap: 1rem;
  padding: 0.65rem 0; cursor: pointer;
  border-bottom: 1px solid rgba(250, 248, 242, 0.08);
}
.moment-item:focus-visible { outline: 2px solid var(--laventa-gold); outline-offset: 4px; }
.moment-num {
  font-size: var(--text-xs); letter-spacing: 0.2em; color: rgba(250,248,242,0.35);
  transition: color 0.4s ease;
}
.moment-text {
  font-family: var(--font-display); font-size: clamp(1.75rem, 5vw, 4rem); font-weight: 300;
  line-height: 1.15; letter-spacing: 0.02em; color: rgba(250,248,242,0.32);
  transition: color 0.45s var(--ease-luxury), transform 0.45s var(--ease-luxury), font-size 0.45s var(--ease-luxury);
}
.moment-item.is-active .moment-num,
.moment-item:hover .moment-num { color: var(--laventa-gold); }
.moment-item.is-active .moment-text,
.moment-item:hover .moment-text {
  color: var(--shell-white); transform: translateX(0.4rem);
}

.moments-mobile { display: none; }

@media (max-width: 767px) {
  .moments-content, .moments-bg { display: none; }
  .moments-mobile {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 1rem;
    padding: var(--space-xl) var(--header-pad); width: 100%;
    scrollbar-width: none;
  }
  .moments-mobile::-webkit-scrollbar { display: none; }
  .moment-card {
    flex: 0 0 82vw; scroll-snap-align: center; position: relative; overflow: hidden;
    min-height: 70vh;
  }
  .moment-card img { width: 100%; height: 100%; position: absolute; inset: 0; }
  .moment-card h3 {
    position: relative; z-index: 1; margin-top: auto; padding: 2rem 1.25rem;
    font-family: var(--font-display); font-size: 2rem; font-weight: 300;
    letter-spacing: 0.04em; text-transform: uppercase;
    background: linear-gradient(transparent, rgba(0,64,62,0.85));
  }
  .chapter-moments { align-items: stretch; min-height: auto; }
}

/* ============================================================
   CHIRALA
   ============================================================ */
.chapter-chirala {
  background: var(--shell-white); padding: var(--space-xl) var(--header-pad);
}
.chirala-layout {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: var(--space-lg); align-items: center;
}
.chirala-title {
  font-family: var(--font-display); font-size: var(--text-display); font-weight: 300;
  line-height: 1.05; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--deep-teal); margin-bottom: var(--space-sm);
}
.chirala-name {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--ocean-teal);
  margin-bottom: var(--space-sm);
}
.chirala-tagline {
  font-family: var(--font-display); font-size: var(--text-lg); font-style: italic;
  font-weight: 300; color: var(--deep-charcoal); margin-bottom: var(--space-md);
}
.chirala-body {
  max-width: 34rem; font-weight: 300; line-height: 1.8;
  color: rgba(23, 35, 33, 0.8); margin-bottom: var(--space-md);
}
.chirala-note {
  font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(23, 35, 33, 0.4);
}
.chirala-visual { position: relative; overflow: hidden; }
.chirala-visual img { width: 100%; height: clamp(280px, 60vh, 680px); object-fit: cover; }
.chirala-map {
  position: absolute; right: 1.25rem; bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.75rem 1.1rem; background: rgba(0, 64, 62, 0.88); color: var(--shell-white);
}
.map-pin {
  width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--sun-gold);
  box-shadow: 0 0 0 4px rgba(255, 216, 1, 0.2);
}
.map-label { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; }
@media (min-width: 900px) {
  .chirala-layout { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
}

/* ============================================================
   JOURNEY
   ============================================================ */
.chapter-journey {
  background: var(--deep-teal); color: var(--shell-white);
  padding: var(--space-xl) var(--header-pad);
}
.journey-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.journey-title {
  font-family: var(--font-display); font-size: var(--text-display); font-weight: 300;
  line-height: 1.05; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: var(--space-md);
}
.journey-copy {
  font-weight: 300; color: rgba(250,248,242,0.65); max-width: 28rem;
  margin: 0 auto var(--space-lg); line-height: 1.8;
}
.build-path {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  margin-bottom: var(--space-lg);
}
.build-step {
  font-size: var(--text-xs); letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(250, 248, 242, 0.55);
}
.build-step--gold { color: var(--laventa-gold); }
.build-arrow { color: rgba(217, 169, 74, 0.45); font-size: 0.75rem; line-height: 1; }

.journey-timeline {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.timeline-item { display: flex; flex-direction: column; gap: 0.5rem; }
.timeline-year {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 300;
  color: var(--laventa-gold); letter-spacing: 0.08em;
}
.timeline-title { font-size: var(--text-xs); letter-spacing: 0.28em; text-transform: uppercase; }
.timeline-desc { font-size: var(--text-sm); color: rgba(250,248,242,0.5); font-weight: 300; }
.timeline-connector {
  width: 1px; height: 3rem;
  background: linear-gradient(180deg, var(--laventa-gold), transparent);
}
@media (min-width: 700px) {
  .journey-timeline { flex-direction: row; justify-content: center; gap: var(--space-lg); }
  .timeline-connector {
    width: 4rem; height: 1px; margin-top: 1.5rem;
    background: linear-gradient(90deg, var(--laventa-gold), transparent);
  }
  .build-path { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.75rem 1rem; }
  .build-arrow { transform: rotate(-90deg); }
}

.construction-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  margin: 0 auto var(--space-md); max-width: 800px; text-align: left;
}
.construction-slot { overflow: hidden; background: rgba(0,0,0,0.2); }
.construction-slot img { width: 100%; height: clamp(140px, 22vw, 220px); object-fit: cover; opacity: 0.85; }
.construction-slot--plan {
  background: var(--shell-white);
  border: 1px solid rgba(217, 169, 74, 0.35);
}
.construction-slot--plan .construction-plan-img {
  object-fit: contain;
  object-position: center top;
  opacity: 1;
  background: #ffffff;
  height: clamp(180px, 28vw, 280px);
  padding: 0.5rem;
}
.construction-slot figcaption,
.slot-placeholder {
  padding: 0.75rem 0.85rem; font-size: var(--text-xs); letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(250,248,242,0.45);
}
.construction-slot--plan figcaption {
  color: var(--deep-teal);
  background: var(--warm-sand);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.construction-slot--empty {
  min-height: clamp(140px, 22vw, 220px);
  border: 1px solid rgba(217, 169, 74, 0.2);
  display: flex; align-items: flex-end;
}
.slot-placeholder {
  display: flex; flex-direction: column; gap: 0.35rem; width: 100%;
}
.slot-id { color: rgba(217, 169, 74, 0.4); font-size: 0.6rem; }

/* ============================================================
   SOCIAL EDITORIAL
   ============================================================ */
.chapter-social {
  background: var(--deep-charcoal); color: var(--shell-white);
  padding: var(--space-xl) var(--header-pad);
}
.social-inner { max-width: var(--content-max); margin: 0 auto; }
.social-title {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 300;
  line-height: 1.1; letter-spacing: 0.03em; text-transform: uppercase;
  margin-bottom: var(--space-lg); max-width: 16ch;
}
.social-editorial {
  display: grid; grid-template-columns: 1fr; gap: 0.75rem;
  margin-bottom: var(--space-lg);
}
.social-frame {
  position: relative; overflow: hidden; display: block;
  min-height: 240px;
}
.social-frame img {
  width: 100%; height: 100%; min-height: 240px; object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.social-frame:hover img { transform: scale(1.04); }
.social-caption {
  position: absolute; left: 1.25rem; bottom: 1.25rem;
  font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--shell-white); text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
  .social-editorial {
    grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr;
    gap: 1rem; min-height: 70vh;
  }
  .social-frame--lg { grid-row: 1 / span 2; min-height: 100%; }
  .social-frame, .social-frame img { min-height: 100%; height: 100%; }
}

/* ============================================================
   ESCAPE
   ============================================================ */
.chapter-escape {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: var(--shell-white);
}
.escape-media { position: absolute; inset: 0; }
.escape-media img { width: 100%; height: 100%; object-fit: cover; }
.escape-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,64,62,0.5) 0%, rgba(23,35,33,0.68) 100%);
}
.escape-content {
  position: relative; z-index: 2; text-align: center;
  padding: var(--space-lg) var(--header-pad); max-width: 48rem;
}
.escape-title {
  font-family: var(--font-display); font-size: var(--text-display); font-weight: 300;
  line-height: 1.05; letter-spacing: 0.03em; text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.escape-brand {
  font-family: var(--font-display); font-size: var(--text-lg);
  letter-spacing: 0.35em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.escape-meta {
  font-size: var(--text-xs); letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250,248,242,0.65); margin-bottom: 0.75rem; line-height: 1.8;
}
.escape-opening {
  font-size: var(--text-xs); letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--laventa-gold); margin-bottom: var(--space-lg);
}
.escape-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep-charcoal); color: var(--shell-white);
  padding: var(--space-xl) var(--header-pad) var(--space-md);
}
.footer-inner {
  max-width: var(--content-max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: var(--space-lg);
}
.footer-brand p { font-size: var(--text-sm); color: rgba(250,248,242,0.5); font-weight: 300; }
.footer-web { margin-top: 0.5rem; }
.footer-web a:hover { color: var(--laventa-gold); }
.footer-follow-label {
  font-size: var(--text-xs); letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--laventa-gold); margin-bottom: 0.75rem;
}
.footer-follow-copy {
  font-size: var(--text-sm);
  font-weight: 300;
  color: rgba(250, 248, 242, 0.5);
  max-width: 22rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.footer-ig-btn {
  margin-bottom: 0.75rem;
}
.footer-ig-name {
  margin-top: 0.35rem; font-size: var(--text-xs); color: rgba(250,248,242,0.4); letter-spacing: 0.1em;
}
.footer-bottom {
  max-width: var(--content-max); margin: var(--space-lg) auto 0;
  padding-top: var(--space-md); border-top: 1px solid rgba(250,248,242,0.08);
  display: flex; flex-direction: column; gap: 0.65rem;
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(250,248,242,0.35); letter-spacing: 0.08em; }
.footer-credit a {
  color: rgba(250, 248, 242, 0.55);
  transition: color 0.3s ease;
}
.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--laventa-gold);
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1.2fr; gap: var(--space-md); align-items: start; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal], .reveal-mask .mask-inner,
  .hero-brand, .hero-line, .hero-meta, .scroll-cue {
    opacity: 1 !important; transform: none !important;
  }
  .hero-img, .sea-img, .reveal-img, .hours-img, .moments-bg img {
    transform: none !important; filter: none !important;
  }
  .img-reveal img { clip-path: none !important; transform: none !important; }
  .scroll-cue-line { animation: none; opacity: 0.6; }
  .cursor { display: none !important; }
  body.has-cursor { cursor: auto; }
}

:focus-visible { outline: 2px solid var(--laventa-gold); outline-offset: 3px; }
