/* =====================================================================
   PANGEA — Méridien · Bright Mediterranean Airy-Modern
   ===================================================================== */

:root {
  --sand: #FAF7F2;
  --sand-2: #F2ECE2;
  --cream: #FFFDF9;
  --ink: #2B2F33;
  --ink-soft: #5A6065;
  --turq: #2CA6A4;
  --turq-light: #7FD3CE;
  --turq-text: #1F7A78;   /* AA on white */
  --turq-deep: #186260;
  --teak: #B98A5E;
  --teak-soft: #D8B894;
  --line: rgba(43, 47, 51, 0.10);

  --r-lg: 24px;
  --r-md: 18px;
  --r-sm: 12px;
  --shadow-soft: 0 24px 60px -28px rgba(31, 122, 120, 0.30), 0 8px 24px -16px rgba(43, 47, 51, 0.18);
  --shadow-lift: 0 36px 80px -32px rgba(31, 122, 120, 0.38), 0 10px 30px -14px rgba(43, 47, 51, 0.22);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1320px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
html.js.lenis-active { scroll-behavior: auto; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

::selection { background: var(--turq-light); color: var(--ink); }

/* ---- focus ---- */
:focus-visible {
  outline: 2.5px solid var(--turq-text);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--turq-text); color: #fff; padding: .65rem 1.1rem;
  border-radius: var(--r-sm); font-weight: 600; font-size: .9rem;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* =====================================================================
   TYPE
   ===================================================================== */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  font-size: clamp(2.2rem, 5.2vw, 4.1rem);
}
.kicker {
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turq-text);
  margin: 0 0 1.1rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.kicker::before {
  content: ""; width: 26px; height: 1.5px; background: var(--turq); display: inline-block;
}
.lede {
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}
.body { color: var(--ink-soft); }

/* =====================================================================
   LAYOUT
   ===================================================================== */
.section {
  position: relative;
  padding: clamp(4.5rem, 11vw, 9rem) var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  cursor: pointer; border: none; transition: all .35s var(--ease);
  min-height: 48px;
}
.btn--pill {
  background: var(--turq-text); color: #fff;
  padding: .85rem 1.7rem; border-radius: 999px;
  box-shadow: 0 10px 28px -12px rgba(31,122,120,.55);
}
.btn--pill:hover {
  background: var(--turq-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px -14px rgba(31,122,120,.6);
}
.btn--solid { padding: 1rem 2.2rem; font-size: 1rem; }
.btn--hero {
  background: rgba(255,255,255,.92); color: var(--turq-deep);
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 44px -18px rgba(0,0,0,.45);
}
.btn--hero:hover { background: #fff; color: var(--turq-deep); }

/* =====================================================================
   LOADER
   ===================================================================== */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--sand);
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { display: grid; place-items: center; gap: 1.1rem; }
.loader__horizon {
  width: 0; height: 1.5px; background: var(--turq);
  animation: drawHorizon .7s var(--ease) forwards;
}
.loader__word {
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 5vw, 2.4rem);
  letter-spacing: .28em; color: var(--ink); opacity: 0; padding-left: .28em;
  animation: fadeWord .6s var(--ease) .35s forwards;
}
@keyframes drawHorizon { to { width: clamp(120px, 22vw, 240px); } }
@keyframes fadeWord { to { opacity: 1; } }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250,247,242,.82);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: .75rem; padding-bottom: .75rem;
}
.nav__brand { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-mark { font-family: var(--serif); font-weight: 600; font-size: 1.35rem; letter-spacing: .14em; color: #fff; transition: color .4s var(--ease); }
.nav__brand-sub { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: .25rem; transition: color .4s var(--ease); }
.nav.is-scrolled .nav__brand-mark { color: var(--ink); }
.nav.is-scrolled .nav__brand-sub { color: var(--turq-text); }

.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: #fff; position: relative; padding: .3rem 0;
  transition: color .4s var(--ease);
}
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--turq); transition: width .3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 1rem; }

.nav__burger { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; flex-direction: column; gap: 6px; align-items: center; justify-content: center; }
.nav__burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s var(--ease); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--sand);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem; transform: translateY(-100%); transition: transform .5s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); }
.mobile-menu .btn { font-family: var(--sans); font-size: 1rem; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) clamp(3.5rem, 8vw, 6.5rem);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: -6% 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(13,40,42,.62) 0%, rgba(13,40,42,.18) 38%, rgba(13,40,42,.05) 60%, rgba(13,40,42,.22) 100%);
}
.hero__inner { max-width: 760px; }
.hero__kicker {
  font-size: .82rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--turq-light); margin: 0 0 1rem;
}
.hero__title {
  font-family: var(--serif); font-weight: 500; color: #fff;
  font-size: clamp(3.6rem, 13vw, 9rem); line-height: .92; letter-spacing: -.02em; margin: 0;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero__sub {
  color: rgba(255,255,255,.94); font-size: clamp(1.05rem, 2vw, 1.4rem);
  max-width: 38ch; margin: 1.4rem 0 0; line-height: 1.5;
  text-shadow: 0 1px 14px rgba(0,0,0,.35);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  margin: 1.5rem 0 0; padding: .5rem 1rem;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25); border-radius: 999px;
  color: #fff; font-size: .82rem; font-weight: 500; letter-spacing: .02em;
}
.hero__badge .dot, .enquire__response .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--turq-light);
  box-shadow: 0 0 0 0 rgba(127,211,206,.6); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(127,211,206,.55); }
  70% { box-shadow: 0 0 0 10px rgba(127,211,206,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,211,206,0); }
}
.hero .btn--hero { margin-top: 2rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2; }
.hero__scroll-line {
  display: block; width: 1.5px; height: 56px; background: linear-gradient(rgba(255,255,255,.0), rgba(255,255,255,.9));
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: #fff; animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

/* =====================================================================
   EXPERIENCE — asymmetric editorial grid
   ===================================================================== */
.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(1.5rem, 3vw, 3rem) clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.experience__lead { grid-column: 1; grid-row: 1 / span 2; max-width: 30rem; }
.experience__lead .display { margin: 0 0 1.6rem; }
.experience__lead .lede { margin: 0 0 1.2rem; }
.experience__hero {
  grid-column: 2; grid-row: 1 / span 2; margin: 0;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.experience__hero img { width: 100%; height: 100%; object-fit: cover; }
.experience__detail {
  grid-column: 1; grid-row: 2; justify-self: end; align-self: end;
  width: clamp(140px, 17vw, 230px); margin: 0;
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lift);
  border: 5px solid var(--cream);
  transform: translateY(2.5rem) translateX(2rem);
  aspect-ratio: 3 / 4;
}
.experience__detail img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   SPECS strip
   ===================================================================== */
.specs { padding-top: clamp(2rem, 5vw, 4rem); }
.specs .kicker { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.specs__strip {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 1rem; text-align: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 2.4rem 0;
}
.spec { display: flex; flex-direction: column; align-items: center; position: relative; }
.spec:not(:last-child)::after {
  content: ""; position: absolute; right: -.5rem; top: 14%; bottom: 14%; width: 1px; background: var(--line);
}
.spec__value { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4vw, 3.1rem); color: var(--turq-text); line-height: 1; }
.spec__unit { font-family: var(--serif); font-size: 1rem; color: var(--teak); margin-top: .15rem; }
.spec__label { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-top: .6rem; }

/* =====================================================================
   WHY
   ===================================================================== */
.why { background: linear-gradient(180deg, var(--sand) 0%, var(--sand-2) 100%); max-width: none; }
.why > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.why__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.why__head .kicker { justify-content: center; }
.why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.why-card {
  background: var(--cream); border-radius: var(--r-lg); padding: 2.2rem 2rem;
  border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--turq), var(--turq-light)); transition: width .5s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.why-card:hover::before { width: 100%; }
.why-card:nth-child(4) { grid-column: span 1; }
.why-card__no { font-family: var(--serif); font-size: 1.05rem; color: var(--teak); letter-spacing: .1em; }
.why-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin: .8rem 0 .6rem; letter-spacing: -.01em; }
.why-card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* =====================================================================
   SPACES + DECK MAP
   ===================================================================== */
.spaces__head { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.spaces__editorial {
  display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center;
  margin-bottom: clamp(4rem, 9vw, 7rem);
}
.spaces__big { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); position: relative; }
.spaces__big img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.spaces__big figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.6rem 1.6rem 1.4rem;
  background: linear-gradient(to top, rgba(13,40,42,.82), transparent);
  color: #fff; font-size: .95rem;
}
.spaces__big figcaption strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin-bottom: .3rem; }
.spaces__list { display: flex; flex-direction: column; }
.space-row { padding: 1.5rem 0; border-bottom: 1px solid var(--line); transition: padding-left .35s var(--ease); }
.space-row:first-child { padding-top: 0; }
.space-row:hover { padding-left: .9rem; }
.space-row h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin: 0 0 .35rem; letter-spacing: -.01em; }
.space-row p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* deck map */
.deckmap {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.8rem, 4vw, 3.2rem); box-shadow: var(--shadow-soft);
}
.deckmap__head { text-align: center; margin-bottom: 2rem; }
.deckmap__head .kicker { justify-content: center; }
.deckmap__title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.deckmap__hint { color: var(--ink-soft); font-size: .9rem; margin-top: .6rem; }
.deckmap__stage { display: grid; grid-template-columns: 1.7fr 1fr; gap: 2rem; align-items: center; }
.deckmap__imgwrap { position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--sand-2); }
.deckmap__imgwrap > img { width: 100%; object-fit: contain; }

.hotspot {
  position: absolute; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: none; border: none; cursor: pointer; padding: 0;
  display: grid; place-items: center;
}
.hotspot__ring {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--turq); border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(31,122,120,.5), 0 0 0 0 rgba(44,166,164,.5);
  transition: transform .3s var(--ease);
  animation: hotPulse 2.6s ease-out infinite;
}
@keyframes hotPulse {
  0% { box-shadow: 0 4px 12px rgba(31,122,120,.5), 0 0 0 0 rgba(44,166,164,.45); }
  70% { box-shadow: 0 4px 12px rgba(31,122,120,.5), 0 0 0 14px rgba(44,166,164,0); }
  100% { box-shadow: 0 4px 12px rgba(31,122,120,.5), 0 0 0 0 rgba(44,166,164,0); }
}
.hotspot:hover .hotspot__ring, .hotspot:focus-visible .hotspot__ring, .hotspot.is-active .hotspot__ring { transform: scale(1.35); background: var(--turq-deep); }

.deckmap__panel figure { margin: 0; }
.deckmap__panel img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow-soft); transition: opacity .35s var(--ease); }
.deckmap__panel figcaption { margin-top: 1rem; }
.deckmap__panel strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.35rem; color: var(--ink); margin-bottom: .35rem; }
.deckmap__panel span { color: var(--ink-soft); font-size: .96rem; }

.deckmap__fallback { display: none; list-style: none; padding: 0; margin: 1.5rem 0 0; gap: 1rem; }
.deckmap__fallback li { display: flex; gap: 1rem; align-items: center; background: var(--sand); border-radius: var(--r-md); overflow: hidden; padding: .6rem; }
.deckmap__fallback img { width: 100px; height: 72px; object-fit: cover; border-radius: var(--r-sm); flex: none; }
.deckmap__fallback strong { display: block; font-family: var(--serif); font-size: 1.1rem; }
.deckmap__fallback span { font-size: .88rem; color: var(--ink-soft); }

/* =====================================================================
   TOYS
   ===================================================================== */
.toys {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
  background: linear-gradient(135deg, var(--turq-text), var(--turq-deep)); color: #fff; max-width: none;
}
.toys > * { } /* full bleed band */
.toys .kicker { color: var(--turq-light); }
.toys .display { color: #fff; }
.toys__media { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0,0,0,.5); }
.toys__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.toys__list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 1.5rem; }
.toys__list li { position: relative; padding-left: 1.5rem; font-size: 1.02rem; color: rgba(255,255,255,.95); }
.toys__list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--turq-light); }

/* =====================================================================
   INTERIOR
   ===================================================================== */
.interior__head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.interior__head .lede { margin-top: 1.2rem; }
.interior__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
}
.ic { margin: 0; border-radius: var(--r-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-soft); }
.ic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.ic:hover img { transform: scale(1.04); }
.ic figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.8rem 1.6rem 1.4rem;
  background: linear-gradient(to top, rgba(13,40,42,.82), transparent); color: #fff; font-size: .92rem;
}
.ic figcaption strong { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin-bottom: .3rem; }
.ic--salon { grid-column: 1; aspect-ratio: 4/5; }
.ic--master { grid-column: 2; aspect-ratio: 4/5; }
.ic--vip, .ic--galley { aspect-ratio: 16/10; }

/* =====================================================================
   ITINERARY
   ===================================================================== */
.itinerary { background: var(--sand-2); max-width: none; }
.itinerary > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.itinerary__head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.itinerary__head .lede { margin-top: 1rem; }
.itinerary__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.day {
  display: grid; grid-template-columns: 130px 1fr; gap: 1.5rem; align-items: baseline;
  padding: 1.6rem 0; border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.day:hover { background: rgba(127,211,206,.1); padding-left: 1rem; }
.day__no { font-family: var(--serif); font-style: italic; color: var(--teak); font-size: 1.1rem; }
.day__main h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 0 0 .35rem; letter-spacing: -.01em; }
.day__main h3 em { color: var(--turq-text); font-style: normal; font-size: .72em; font-family: var(--sans); font-weight: 500; letter-spacing: .02em; }
.day__main p { margin: 0; color: var(--ink-soft); max-width: 60ch; }
.season {
  margin-top: 3rem; background: var(--cream); border-radius: var(--r-lg); padding: 2.2rem 2.4rem;
  border-left: 4px solid var(--turq); box-shadow: var(--shadow-soft);
}
.season h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin: 0 0 .6rem; }
.season p { margin: 0; color: var(--ink-soft); max-width: 70ch; }

/* =====================================================================
   PRICING
   ===================================================================== */
.pricing { max-width: none; background: var(--sand); }
.pricing__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
.pricing__rate { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--ink); margin: 1.2rem 0 .3rem; }
.pricing__rate span { font-family: var(--sans); font-size: 1rem; color: var(--ink-soft); font-weight: 500; }
.pricing__note { color: var(--teak); font-size: .9rem; margin: 0 0 1.4rem; }
.pricing__sub { color: var(--ink-soft); margin: 0 0 1rem; font-size: .98rem; max-width: 46ch; }
.pricing__head .btn { margin-top: 1rem; }
.pricing__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.pricing__col { background: var(--cream); border-radius: var(--r-lg); padding: 1.8rem; border: 1px solid var(--line); }
.pricing__coltitle { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin: 0 0 1.1rem; display: flex; align-items: center; gap: .55rem; }
.pricing__coltitle::before { content: ""; width: 10px; height: 10px; border-radius: 50%; }
.pricing__coltitle--in::before { background: var(--turq); }
.pricing__coltitle--out::before { background: var(--teak); }
.pricing__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.pricing__col li { font-size: .96rem; color: var(--ink); padding-left: 1.5rem; position: relative; }
.pricing__col li::before { content: "✓"; position: absolute; left: 0; color: var(--turq-text); font-weight: 700; }
.pricing__out li::before { content: "–"; color: var(--teak); }

/* =====================================================================
   CREW
   ===================================================================== */
.crew__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.crew__head .kicker { justify-content: center; }
.crew__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; max-width: 1000px; margin: 0 auto clamp(4rem, 9vw, 7rem); }
.crew-card { margin: 0; border-radius: var(--r-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-soft); background: var(--cream); }
.crew-card__img { overflow: hidden; aspect-ratio: 4/5; }
.crew-card__img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform 1s var(--ease), filter .6s var(--ease); }
.crew-card:hover .crew-card__img img, .crew-card:focus-within .crew-card__img img { transform: scale(1.05); filter: saturate(1.08) brightness(1.04); }
.crew-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 3.5rem 1.8rem 1.6rem;
  background: linear-gradient(to top, rgba(13,40,42,.92) 30%, rgba(13,40,42,.3) 75%, transparent);
  color: #fff;
}
.crew-card__role { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--turq-light); }
.crew-card__name { font-family: var(--serif); font-weight: 500; font-size: 1.6rem; margin: .3rem 0 .6rem; }
.crew-card__bio { font-size: .96rem; color: rgba(255,255,255,.95); margin: 0 0 .8rem; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .5s var(--ease); }
.crew-card__creds { font-size: .8rem; color: rgba(255,255,255,.8); margin: 0; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease) .05s, opacity .4s var(--ease); }
.crew-card:hover .crew-card__bio, .crew-card:focus-within .crew-card__bio { max-height: 12em; opacity: 1; }
.crew-card:hover .crew-card__creds, .crew-card:focus-within .crew-card__creds { max-height: 6em; opacity: 1; }

/* culinary */
.culinary { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-bottom: clamp(4rem, 9vw, 6rem); }
.culinary__media { margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.culinary__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.culinary__body .display { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.1rem; }

/* testimonials */
.testimonials { text-align: center; }
.testimonials .kicker { justify-content: center; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.quote { margin: 0; background: var(--cream); border-radius: var(--r-lg); padding: 2rem 1.8rem; text-align: left; border: 1px solid var(--line); position: relative; }
.quote::before { content: "\201C"; font-family: var(--serif); font-size: 4rem; line-height: 1; color: var(--turq-light); position: absolute; top: .4rem; left: 1rem; opacity: .55; }
.quote p { font-family: var(--serif); font-style: italic; font-size: 1.12rem; line-height: 1.5; margin: 1rem 0 1.2rem; color: var(--ink); position: relative; }
.quote cite { font-style: normal; font-size: .88rem; font-weight: 600; color: var(--ink); }
.quote cite span { color: var(--ink-soft); font-weight: 400; }

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery__head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.gallery__head .kicker { justify-content: center; }
.gallery__masonry { columns: 3; column-gap: 1.1rem; }
.gallery__item {
  break-inside: avoid; margin-bottom: 1.1rem; border-radius: var(--r-md); overflow: hidden;
  position: relative; cursor: pointer; display: block; width: 100%; border: none; padding: 0; background: var(--sand-2);
}
.gallery__item img { width: 100%; display: block; transition: transform .8s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1rem .9rem;
  background: linear-gradient(to top, rgba(31,122,120,.9), transparent);
  color: #fff; font-size: .82rem; letter-spacing: .04em; text-align: left;
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.gallery__item:hover .gallery__cap, .gallery__item:focus-visible .gallery__cap { transform: translateY(0); }
.gallery__nojs { columns: 2; column-gap: 1rem; }
.gallery__nojs img { margin-bottom: 1rem; border-radius: var(--r-md); }

/* =====================================================================
   ENQUIRE
   ===================================================================== */
.enquire { max-width: none; padding-left: 0; padding-right: 0; position: relative; overflow: hidden; }
.enquire__bg { position: absolute; inset: -6% 0; z-index: 0; }
.enquire__bg img { width: 100%; height: 100%; object-fit: cover; }
.enquire__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(250,247,242,.96) 0%, rgba(250,247,242,.85) 45%, rgba(31,122,120,.4) 100%); }
.enquire__card {
  position: relative; z-index: 1; max-width: 1080px; margin: 0 auto;
  background: var(--cream); border-radius: var(--r-lg); box-shadow: var(--shadow-lift);
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(1.8rem, 4vw, 3.2rem); overflow: hidden;
}
.enquire__intro .display { margin: .6rem 0 1.1rem; }
.enquire__intro .lede { margin: 0 0 1.4rem; }
.enquire__reassure { font-size: .9rem; color: var(--ink-soft); background: var(--sand); border-radius: var(--r-md); padding: .9rem 1.1rem; margin: 0 0 1.2rem; }
.enquire__response { display: inline-flex; align-items: center; gap: .55rem; font-size: .88rem; font-weight: 600; color: var(--turq-text); margin: 0; }
.enquire__response .dot { background: var(--turq); }

.enquire__form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; align-content: start; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .03em; color: var(--ink); }
.field .req { color: var(--turq-text); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .98rem; color: var(--ink);
  background: var(--sand); border: 1.5px solid transparent; border-radius: var(--r-sm);
  padding: .8rem 1rem; transition: border-color .3s var(--ease), background .3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--turq); background: #fff; outline: none; }
.field__err { font-size: .78rem; color: #b4452f; display: none; }
.field.is-invalid input, .field.is-invalid select { border-color: #d06a52; }
.field.is-invalid .field__err { display: block; }
.enquire__actions { margin-top: .4rem; }
.enquire__success, .enquire__error { grid-column: 1 / -1; padding: 1rem 1.2rem; border-radius: var(--r-md); font-size: .95rem; margin: 0; }
.enquire__success { background: rgba(44,166,164,.14); color: var(--turq-deep); font-weight: 500; }
.enquire__error { background: rgba(208,106,82,.14); color: #9c3a24; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--ink); color: rgba(255,255,255,.8); padding: clamp(3rem, 6vw, 4.5rem) var(--gutter); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer__mark { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; letter-spacing: .16em; color: #fff; display: block; }
.footer__sub { font-size: .88rem; color: rgba(255,255,255,.65); margin-top: .5rem; display: block; max-width: 32ch; }
.footer__meta p, .footer__credits p { margin: 0 0 .5rem; font-size: .88rem; }
.footer__meta a { color: var(--turq-light); }
.footer__meta a:hover { text-decoration: underline; }
.footer__credits { font-size: .82rem; color: rgba(255,255,255,.55); }

/* =====================================================================
   LIGHTBOX
   ===================================================================== */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(13,30,31,.94); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.lightbox[hidden] { display: none; }
.lightbox__stage { margin: 0; max-width: min(1100px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; }
.lightbox__stage img { max-width: 100%; max-height: 78vh; border-radius: var(--r-md); box-shadow: 0 30px 80px rgba(0,0,0,.6); object-fit: contain; }
.lightbox__stage figcaption { color: rgba(255,255,255,.85); margin-top: 1rem; font-size: .9rem; letter-spacing: .04em; }
.lightbox__close { position: absolute; top: 1.2rem; right: 1.4rem; background: rgba(255,255,255,.12); border: none; color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 1.8rem; line-height: 1; cursor: pointer; transition: background .3s var(--ease); }
.lightbox__close:hover { background: rgba(255,255,255,.24); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: #fff; width: 54px; height: 54px; border-radius: 50%; font-size: 2rem; line-height: 1; cursor: pointer; transition: background .3s var(--ease); }
.lightbox__nav:hover { background: rgba(255,255,255,.24); }
.lightbox__prev { left: 1.2rem; }
.lightbox__next { right: 1.2rem; }

/* =====================================================================
   REVEAL (start states applied only when JS active)
   ===================================================================== */
.js .reveal, .js .reveal-img { opacity: 0; }
.js .reveal { transform: translateY(28px); }
.js .reveal-img { transform: translateY(36px); clip-path: inset(0 0 100% 0); }
.reveal.is-in, .reveal-img.is-in { opacity: 1; transform: none; clip-path: inset(0 0 0 0); transition: opacity .9s var(--ease), transform .9s var(--ease), clip-path 1.1s var(--ease); }

[data-mobile-only] { display: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:nth-child(5) { grid-column: span 2; }
  .specs__strip { grid-template-columns: repeat(3, 1fr); gap: 1.8rem 1rem; }
  .spec:nth-child(3)::after { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__burger span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav.is-open .nav__burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .experience__grid { grid-template-columns: 1fr; }
  .experience__lead { grid-column: 1; grid-row: 1; }
  .experience__hero { grid-column: 1; grid-row: 2; aspect-ratio: 3/2; }
  .experience__detail { grid-column: 1; grid-row: 3; justify-self: start; transform: none; width: clamp(150px, 40vw, 240px); margin-top: -3.5rem; margin-left: 1.5rem; }

  .spaces__editorial { grid-template-columns: 1fr; }
  .deckmap__stage { grid-template-columns: 1fr; }
  .deckmap__panel, .deckmap__hint[data-desktop-only] { display: none; }
  .deckmap__imgwrap { display: none; }   /* hide hover-only map on touch */
  .deckmap__fallback { display: grid; }

  .toys { grid-template-columns: 1fr; }
  .toys__media { order: -1; }
  .interior__grid { grid-template-columns: 1fr; }
  .ic { aspect-ratio: 3/2 !important; }
  .pricing__inner { grid-template-columns: 1fr; }
  .crew__grid { grid-template-columns: 1fr; max-width: 480px; }
  .crew-card__bio, .crew-card__creds { max-height: 12em; opacity: 1; }  /* always show on touch */
  .culinary { grid-template-columns: 1fr; }
  .culinary__media { order: -1; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .gallery__masonry { columns: 2; }
  .enquire__card { grid-template-columns: 1fr; }
  .enquire__form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .specs__strip { grid-template-columns: repeat(2, 1fr); }
  .spec::after { display: none !important; }
  .why__grid { grid-template-columns: 1fr; }
  .why-card:nth-child(n) { grid-column: auto; }
  .day { grid-template-columns: 1fr; gap: .4rem; }
  .toys__list { grid-template-columns: 1fr; }
  .enquire__form { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .gallery__masonry { columns: 1; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal, .js .reveal-img { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .loader { display: none !important; }
  .hero__scroll-line::after, .hero__badge .dot, .enquire__response .dot, .hotspot__ring { animation: none !important; }
}
