/* ============================================================
   Resorvia clone — hero header + primary menu (Framer-free)
   Mobile-first. Breakpoints: 810px (tablet), 1200px (desktop).
   Desktop values measured 1:1 from the live reference.
   ============================================================ */

:root {
  /* Palette (from reference) */
  --c-ink: #313131;
  --c-ink-soft: #4e4e4e;
  --c-cream: #f5f0ea;
  --c-cream-2: #faf6f1;
  --c-navy: #173a63;        /* secondary / accent — company dark blue */
  --c-navy-deep: #0c2038;   /* header (scrolled) + footer */
  --c-grey-3: #9e9e9e;
  --c-white: #ffffff;
  --c-black: #000000;

  /* Fonts */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --pad-x: 24px;          /* side padding below desktop max-width */
}

*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-y: scroll; }

/* Lenis smooth-scroll (official recommended setup) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }            /* reserve scrollbar like the reference */
body {
  font-family: var(--font-sans);
  color: var(--c-ink);
  background: var(--c-navy-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }

/* ============================================================
   TOP BAR  (overlaid on hero)
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  color: var(--c-white);
  transition: background-color .35s ease, box-shadow .35s ease;
}
/* Transparent over the hero; solid dark blue once the page is scrolled */
.site-header.is-solid {
  background: var(--c-navy-deep);
  box-shadow: 0 6px 28px rgba(0,0,0,.28);
}
.bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Menu trigger (left) */
.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-white);
}
.menu-icon { display: inline-flex; flex-direction: column; gap: 6px; width: 22px; }
.menu-icon span { display: block; height: 1.5px; width: 22px; background: currentColor; transition: transform .35s ease, opacity .25s ease; }
.menu-label { font-family: var(--font-sans); font-size: 13px; font-weight: 400; line-height: 1.5; }

/* Brand logo (center) */
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 150px; height: 50px; object-fit: contain; object-position: left center; }

/* Book now (right) — transparent rounded hover area, no border (matches reference) */
.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 70px;
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  transition: background-color .3s ease, color .3s ease;
}
.btn-book:hover { background: var(--c-white); color: var(--c-ink); }

/* Language switcher (left of the bar, replaces the old menu trigger) */
.lang-switch { display: inline-flex; align-items: center; gap: 10px; }
.lang-flag {
  display: inline-flex;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  opacity: .5;
  box-shadow: 0 0 0 1px rgba(128,128,128,.45);
  transition: opacity .25s ease, box-shadow .25s ease, transform .2s ease;
}
.lang-flag .flag { height: 18px; width: auto; display: block; }
.lang-flag:hover { opacity: .85; }
.lang-flag.is-active { opacity: 1; box-shadow: 0 0 0 1.5px currentColor; }
.lang-flag:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.45); }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 100svh;
  padding: 116px var(--pad-x) 28px;   /* tablet/phone defaults; desktop overrides below */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-title {
  margin: 0;
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(2.4rem, 15.9vw, 62px);   /* phone: 62px @390 (reference) */
}

.hero-sub {
  margin: 0;
  align-self: flex-start;
  max-width: 500px;
  color: var(--c-white);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;          /* phone (reference) */
  line-height: 1.6;
  text-align: left;
}

/* ============================================================
   OVERLAY MENU  (best-effort; reference open-state pending capture)
   ============================================================ */
.nav-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: #1c1a18; color: var(--c-cream);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

.nav-overlay__bar {
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: 20px var(--pad-x) 0;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--c-cream);
}
.nav-overlay__bar .menu-trigger,
.nav-overlay__bar .btn-book { color: var(--c-cream); }
.nav-overlay__bar .btn-book:hover { background: var(--c-cream); color: var(--c-ink); }

.menu-icon--close { position: relative; height: 16px; justify-content: center; }
.menu-icon--close span { position: absolute; top: 50%; left: 0; }
.menu-icon--close span:first-child { transform: translateY(-50%) rotate(45deg); }
.menu-icon--close span:last-child { transform: translateY(-50%) rotate(-45deg); }

.nav-overlay__body {
  flex: 1;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 24px var(--pad-x) 32px;
}
.nav-links { display: flex; flex-direction: column; gap: 2px; margin-top: 16px; }
.nav-links a {
  display: flex; align-items: baseline; gap: 16px; padding: 8px 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.4rem, 11vw, 5rem); line-height: 1.08; color: var(--c-cream);
  transition: color .3s ease;
}
.nav-links a:hover { color: var(--c-navy); }
.nav-links__index { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.1em; color: var(--c-grey-3); }

.nav-meta { display: flex; flex-direction: column; gap: 22px; padding-top: 28px; border-top: 1px solid rgba(245,240,234,0.16); }
.nav-meta__col { display: flex; flex-direction: column; gap: 6px; }
.nav-meta__label { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-grey-3); }
.nav-meta__value { font-family: var(--font-display); font-size: 20px; line-height: 1.4; color: var(--c-cream); }
a.nav-meta__value:hover { color: var(--c-navy); }
.reserve-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 28px; border-radius: 70px;
  background: var(--c-cream); color: var(--c-ink);
  font-family: var(--font-sans); font-size: 16px;
  transition: background-color .3s ease;
}
.reserve-btn:hover { background: var(--c-white); }

body.menu-open { overflow: hidden; }

/* ============================================================
   TABLET  (>= 810px)
   ============================================================ */
@media (min-width: 810px) {
  :root { --pad-x: 40px; }
  .hero-title { font-size: 82px; }                         /* tablet: 82px (reference) */
  .menu-label, .btn-book { font-size: 16px; }
  .btn-book { padding: 10px 22px; }
  .hero-sub { font-size: 15px; align-self: flex-end; }     /* bottom-right block (desktop structure) */
  .hero-inner { padding: 130px var(--pad-x) 30px; }

  .nav-overlay__body { flex-direction: row; align-items: flex-end; padding: 40px var(--pad-x) 48px; }
  .nav-links { margin-top: 0; }
  .nav-meta { flex-direction: row; gap: 56px; border-top: 0; padding-top: 0; align-items: flex-end; }
}

/* ============================================================
   DESKTOP  (>= 1200px)  — exact reference values
   ============================================================ */
@media (min-width: 1200px) {
  :root { --pad-x: 0px; }

  .bar { padding: 16px 0; }
  .menu-label, .btn-book { font-size: 20px; }   /* reference nav text = 20px / lh 30px */
  .btn-book { padding: 11px 26px; }

  .hero-inner { padding: 150px 0 30px; }
  .hero-title { font-size: 122px; letter-spacing: -0.02em; line-height: 1.1; }     /* 122px / lh 134.2 / ls -2.44 */
  .hero-sub { align-self: flex-end; max-width: 500px; font-size: 16px; line-height: 1.6; }

  .nav-links a { font-size: clamp(3.5rem, 5vw, 5rem); }
  .nav-overlay__body { padding: 56px 0; }
}

/* ============================================================
   SECTION 2 — ABOUT US  (cream editorial)
   ============================================================ */
.about {
  position: relative;
  background: var(--c-cream-2);          /* #faf6f1 */
  color: var(--c-ink);
  overflow: hidden;
}
.about-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px var(--pad-x) 40px;
}

.about-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-navy);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;                /* 2.24px @14 */
  text-transform: uppercase;
  line-height: 1;
}
.about-label .ast { font-size: 12px; line-height: 1; }

.about-head {
  margin: 18px 0 0;
  color: var(--c-black);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.about-head .l1 { display: block; font-style: italic; font-size: 36px; }
.about-head .l2 { display: block; font-style: normal; font-size: 36px; margin-top: 6px; }

.about-copy {
  margin: 32px 0 0;
  max-width: 500px;
}
.about-copy p {
  margin: 0 0 16px;
  color: var(--c-ink-soft);              /* #4e4e4e */
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
.about-copy p:last-child { margin-bottom: 0; }

/* logo marquee (full-bleed) */
.about-logos { margin-top: 56px; padding-bottom: 64px; }
.marquee { display: flex; width: 100%; overflow: hidden; gap: 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__row {
  display: flex; align-items: center; flex: 0 0 auto;
  gap: clamp(40px, 7vw, 96px); padding-right: clamp(40px, 7vw, 96px);
  animation: marquee 38s linear infinite;
}
.marquee__row img { height: 30px; width: auto; opacity: .85; filter: grayscale(1); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ---- ABOUT: tablet (>=810) ---- */
@media (min-width: 810px) {
  .about-inner { padding: 120px var(--pad-x) 48px; }
  .about-head .l1 { font-size: 46px; }
  .about-head .l2 { font-size: 37px; margin-left: 120px; }
  .about-copy { margin-left: auto; }     /* push copy toward the right */
  .about-logos { margin-top: 72px; }
}

/* ---- ABOUT: desktop (>=1200) — exact editorial canvas ---- */
@media (min-width: 1200px) {
  .about { min-height: 740px; }
  .about-inner { padding: 0; min-height: 740px; }
  .about-label { position: absolute; left: 32px; top: 195px; }
  .about-head { position: absolute; left: 222px; top: 220px; margin: 0; }
  .about-head .l1 { font-size: 60px; }
  .about-head .l2 { font-size: 50px; margin-top: 12px; margin-left: 273px; }
  .about-copy { position: absolute; left: 690px; top: 384px; width: 500px; margin: 0; max-width: none; }
}

/* ============================================================
   SECTION 3 — THE RESORVIA EXPERIENCE  (sticky scroll slider)
   ============================================================ */
.experience { position: relative; min-height: 100svh; background: #000; overflow: hidden; display: flex; }
.exp-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.28) 26%, rgba(0,0,0,.34) 60%, rgba(0,0,0,.62) 100%);
}

.exp-content {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 44px; padding: 130px var(--pad-x) 80px;
}
.exp-head {
  margin: 0; text-align: center; color: var(--c-white);
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  text-transform: uppercase; letter-spacing: -0.01em; line-height: 1;
  font-size: clamp(2rem, 7vw, 60px);
}

/* 3-card row: center emphasized, sides flanking */
.exp-row { display: flex; flex-direction: column; align-items: center; gap: 36px; width: 100%; max-width: var(--maxw); margin: 0 auto; }
.exp-col { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 360px; transition: transform .4s ease, opacity .4s ease; }

.exp-card {
  width: 100%; background: var(--c-white); border-radius: 8px; padding: 16px 16px 24px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.exp-photo { width: 100%; aspect-ratio: 337 / 301; border-radius: 12px; overflow: hidden; }
.exp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-icon { width: 36px; height: 36px; margin: 18px 0 8px; }
.exp-title { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--c-ink); text-align: center; }
.exp-card-desc { margin: 22px 0 0; max-width: 320px; text-align: center; color: #fff; font-family: var(--font-sans); font-size: 16px; line-height: 1.5; text-shadow: 0 2px 18px rgba(0,0,0,.75), 0 1px 4px rgba(0,0,0,.6); }

@media (min-width: 810px) {
  .exp-content { gap: 56px; padding: 150px var(--pad-x) 90px; }
  .exp-row { flex-direction: row; align-items: center; justify-content: center; gap: clamp(16px, 2.4vw, 36px); }
  .exp-col { flex: 1 1 0; max-width: 360px; }
  .exp-col--side { transform: scale(.92); opacity: .82; }
  .exp-col--center { transform: scale(1); opacity: 1; z-index: 1; }
}
@media (min-width: 1200px) {
  .exp-content { padding: 160px var(--pad-x) 100px; }
}
@media (prefers-reduced-motion: reduce) {
  .exp-col { transition: none; }
}

/* ============================================================
   Shared eyebrow label (gold)
   ============================================================ */
.eyebrow {
  margin: 0; display: inline-flex; align-items: center; gap: 10px;
  color: var(--c-navy); font-family: var(--font-sans);
  font-size: 14px; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; line-height: 1;
}
.eyebrow .ast { font-size: 12px; line-height: 1; }

/* ============================================================
   SECTION 4 — SIGNATURE SUITE
   ============================================================ */
.suite { background: var(--c-cream-2); color: var(--c-ink); overflow: hidden; }
.suite-inner { max-width: var(--maxw); margin: 0 auto; padding: 100px var(--pad-x) 8px; text-align: center; }
.suite-head {
  margin: 18px 0 0; color: var(--c-black);
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  text-transform: uppercase; line-height: 1; letter-spacing: -0.01em;
  font-size: clamp(2.25rem, 9vw, 60px);
}
.suite-feats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 44px 16px; margin: 48px auto 0; max-width: 520px;
}
.suite-feats li { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.suite-feats img { width: 90px; height: 90px; }
.suite-feats .feat-ico { width: 64px; height: 64px; color: var(--c-navy); }
.suite-feats span { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--c-ink); }

.suite-gallery { margin-top: 56px; }
.marquee__row--gallery { gap: 0; padding-right: 0; animation-duration: 50s; }
.marquee__row--gallery li { flex: 0 0 auto; }
.marquee__row--gallery img {
  height: clamp(160px, 22vw, 230px); width: auto; display: block;
  filter: none; opacity: 1;
}

/* ============================================================
   SECTION 5 — A STAY MADE FOR STILLNESS
   ============================================================ */
.stay { background: var(--c-cream-2); color: var(--c-ink); }
.stay-inner { max-width: var(--maxw); margin: 0 auto; padding: 90px var(--pad-x) 80px; }
.stay-top { display: flex; flex-direction: column; gap: 32px; }
.stay-head {
  margin: 16px 0 0; color: var(--c-black);
  font-family: var(--font-display); font-weight: 400;
  text-transform: uppercase; line-height: 1; letter-spacing: -0.01em;
}
.stay-head .l1 { display: block; font-style: italic; font-size: 36px; }
.stay-head .l2 { display: block; font-style: normal; font-size: 36px; margin-top: 6px; }
.stay-aside { max-width: 420px; }
.stay-copy { margin: 0; color: var(--c-ink-soft); font-family: var(--font-sans); font-size: 16px; line-height: 1.6; }
.stay-cta {
  display: inline-block; margin-top: 22px;
  font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-ink); border-bottom: 1px solid currentColor; padding-bottom: 4px;
  transition: color .3s ease, border-color .3s ease;
}
.stay-cta:hover { color: var(--c-navy); border-color: var(--c-navy); }
.stay-img { margin-top: 44px; border-radius: 12px; overflow: hidden; }
.stay-img img { width: 100%; height: auto; display: block; }

/* ---- tablet (>=810) ---- */
@media (min-width: 810px) {
  .suite-inner { padding: 120px var(--pad-x) 8px; }
  .suite-feats { grid-template-columns: repeat(4, 1fr); max-width: none; gap: 16px; }
  .suite-feats img { width: 100px; height: 100px; }
  .suite-feats .feat-ico { width: 72px; height: 72px; }
  .suite-feats span { font-size: 24px; }

  .stay-inner { padding: 110px var(--pad-x) 96px; }
  .stay-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .stay-head .l1 { font-size: 46px; }
  .stay-head .l2 { font-size: 37px; margin-left: 120px; }
  .stay-aside { max-width: 400px; padding-top: 8px; }
}

/* ---- desktop (>=1200) ---- */
@media (min-width: 1200px) {
  .suite-head { font-size: 60px; }
  .stay-head .l1 { font-size: 60px; }
  .stay-head .l2 { font-size: 50px; margin-top: 12px; margin-left: 170px; }
  .stay-aside { max-width: 395px; }
}

/* ============================================================
   SECTION 6 — COMFORT & EXPERIENCES (3 cards)
   ============================================================ */
.comfort { background: var(--c-cream-2); color: var(--c-ink); }
.comfort-inner { max-width: var(--maxw); margin: 0 auto; padding: 100px var(--pad-x) 90px; text-align: center; }
.comfort-head {
  margin: 18px 0 0; color: var(--c-black);
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  text-transform: uppercase; line-height: 1; letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 8.5vw, 60px);
}
.comfort-sub { margin: 18px auto 0; max-width: 480px; color: var(--c-ink-soft); font-family: var(--font-sans); font-size: 16px; line-height: 1.5; }

.comfort-cards { display: grid; grid-template-columns: 1fr; gap: 24px; margin: 48px 0 0; text-align: left; }
.comfort-card { display: block; background: var(--c-cream); border-radius: 8px; padding: 16px; color: inherit; transition: transform .3s ease; }
.comfort-card:hover { transform: translateY(-4px); }
.comfort-card__img { border-radius: 6px; overflow: hidden; aspect-ratio: 351 / 400; }
.comfort-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.comfort-card__cat { display: block; margin: 18px 0 0; color: var(--c-navy); font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; }
.comfort-card__title { margin: 8px 0 0; font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--c-black); }
.comfort-card__desc { margin: 10px 0 0; color: var(--c-ink-soft); font-family: var(--font-sans); font-size: 16px; line-height: 1.5; }

/* ============================================================
   SECTION 7 — THE ESSENTIALS, CONSIDERED (amenities)
   ============================================================ */
.essentials { background: var(--c-cream); color: var(--c-ink); }
.essentials-inner { max-width: var(--maxw); margin: 0 auto; padding: 100px var(--pad-x) 100px; text-align: center; }
.essentials-head {
  margin: 18px 0 0; color: var(--c-black);
  font-family: var(--font-display); font-weight: 400;
  text-transform: uppercase; line-height: 1.06; letter-spacing: -0.01em;
}
.essentials-head .l1 { display: block; font-style: italic; font-size: clamp(2.1rem, 8.5vw, 60px); }
.essentials-head .l2 { display: block; font-style: normal; font-size: clamp(1.7rem, 7vw, 50px); }
.essentials-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 16px; margin: 56px auto 0; max-width: 420px; }
.essentials-list li { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.essentials-list img { width: 48px; height: 48px; }
.essentials-list .ess-ico { width: 46px; height: 46px; color: var(--c-navy); }
.essentials-list span { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--c-ink); }

@media (min-width: 810px) {
  .comfort-cards { grid-template-columns: repeat(3, 1fr); }
  .essentials-list { grid-template-columns: repeat(5, 1fr); max-width: none; gap: 24px; }
  .essentials-list span { font-size: 24px; }
}

/* ============================================================
   SECTION 8 — A GLIMPSE OF PARADISE (gallery)
   ============================================================ */
.paradise { background: var(--c-cream-2); color: var(--c-ink); overflow: hidden; }
.paradise-inner { max-width: var(--maxw); margin: 0 auto; padding: 90px var(--pad-x) 90px; }
.paradise-head {
  margin: 18px 0 36px; text-align: left; color: var(--c-black);
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  text-transform: uppercase; line-height: 1; letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 8.5vw, 60px);
}
.paradise-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.paradise-grid figure { margin: 0; border-radius: 6px; overflow: hidden; }
.paradise-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-big img { aspect-ratio: 582 / 545; }
.p-wide img { aspect-ratio: 582 / 265; }
.p-smalls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.p-smalls img { aspect-ratio: 183 / 265; }

@media (min-width: 810px) {
  .paradise-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
  .p-big { grid-column: 1; grid-row: 1 / 3; }
  .p-big img { aspect-ratio: auto; height: 100%; }
  .p-wide { grid-column: 2; grid-row: 1; }
  .p-smalls { grid-column: 2; grid-row: 2; gap: 16px; }
}

/* ============================================================
   SECTION 9 — EXCLUSIVE OFFERS
   ============================================================ */
.offers { background: var(--c-cream-2); color: var(--c-ink); }
.offers-inner { max-width: var(--maxw); margin: 0 auto; padding: 90px var(--pad-x) 90px; text-align: center; }
.offers-head {
  margin: 18px 0 0; color: var(--c-black);
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  text-transform: uppercase; line-height: 1; letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 8.5vw, 60px);
}
.offers-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin: 48px 0 0; text-align: left; }
.offer-card { background: var(--c-cream); border-radius: 8px; padding: 16px; display: flex; flex-direction: column; }
.offer-img { border-radius: 6px; overflow: hidden; aspect-ratio: 351 / 385; }
.offer-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer-dur { display: block; margin: 18px 0 0; color: var(--c-navy); font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; }
.offer-title { margin: 8px 0 0; font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--c-black); }
.offer-desc { margin: 10px 0 0; color: var(--c-ink-soft); font-family: var(--font-sans); font-size: 16px; line-height: 1.5; flex: 1; }
.offer-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.offer-price { font-family: var(--font-sans); font-size: 16px; color: var(--c-black); }
.offer-btn { font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.04em; color: var(--c-navy); border: 1px solid rgba(23,58,99,.4); border-radius: 999px; padding: 8px 18px; transition: background-color .3s ease, color .3s ease, border-color .3s ease; }
.offer-btn:hover { background: var(--c-navy); color: var(--c-white); border-color: var(--c-navy); }
@media (min-width: 810px) { .offers-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   SECTION 10 — WHAT OUR GUESTS REMEMBER (testimonials)
   ============================================================ */
.voices { background: var(--c-cream-2); color: var(--c-ink); }
.voices-inner { max-width: 900px; margin: 0 auto; padding: 100px var(--pad-x) 100px; text-align: center; }
.voices-head {
  margin: 18px 0 0; color: var(--c-black);
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  text-transform: uppercase; line-height: 1; letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 8.5vw, 60px);
}
.voices-slider { position: relative; max-width: 760px; margin: 44px auto 0; min-height: 180px; }
.voice { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transition: opacity .6s ease, visibility .6s ease; }
.voice.is-active { opacity: 1; visibility: visible; }
.voice-quote { margin: 0; font-family: var(--font-display); font-weight: 400; line-height: 1.4; color: var(--c-ink); font-size: clamp(1.4rem, 3.6vw, 32px); }
.voice-author { display: block; margin-top: 24px; font-family: var(--font-sans); font-style: normal; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-navy); }
.voices-dots { display: flex; justify-content: center; gap: 12px; margin-top: 36px; }
.voices-dot { width: 10px; height: 10px; padding: 0; border-radius: 50%; border: 1.5px solid rgba(49,49,49,.35); background: transparent; transition: all .3s ease; }
.voices-dot.is-active { background: var(--c-navy); border-color: var(--c-navy); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--c-navy-deep); color: var(--c-cream); }
.eyebrow--light { color: var(--c-cream); }
.footer-cta { position: relative; background-size: cover; background-position: center; }
.footer-cta__overlay { position: absolute; inset: 0; background: rgba(18,16,14,0.62); }
.footer-cta__content {
  position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto;
  padding: 110px var(--pad-x); display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center;
}
.footer-cta__head {
  margin: 0; color: var(--c-white);
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  line-height: 1.05; letter-spacing: -0.01em; font-size: clamp(2rem, 6.5vw, 50px);
}
.footer-reserve {
  display: inline-flex; align-items: center; justify-content: center;
  height: 52px; padding: 0 30px; border-radius: 999px;
  background: var(--c-navy); color: var(--c-white);
  font-family: var(--font-sans); font-size: 16px; transition: background-color .3s ease, transform .2s ease;
}
.footer-reserve:hover { background: #1f4c81; }

.footer-main {
  max-width: var(--maxw); margin: 0 auto; padding: 64px var(--pad-x);
  display: grid; grid-template-columns: 1fr; gap: 40px;
  border-top: 1px solid rgba(245,240,234,.12);
}
.footer-logo { width: 180px; height: auto; }
.footer-brand p { margin: 16px 0 0; max-width: 280px; color: rgba(245,240,234,.7); font-family: var(--font-sans); font-size: 15px; line-height: 1.6; }
.footer-col__title { margin: 0 0 16px; font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--c-cream); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col span { color: rgba(245,240,234,.7); font-family: var(--font-sans); font-size: 15px; line-height: 1.5; }
.footer-col a { transition: color .3s ease; }
.footer-col a:hover { color: var(--c-cream); }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 24px var(--pad-x) 40px;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(245,240,234,.12);
  color: rgba(245,240,234,.6); font-family: var(--font-sans); font-size: 13px;
}
.footer-bottom a { color: rgba(245,240,234,.6); transition: color .3s ease; }
.footer-bottom a:hover { color: var(--c-cream); }

@media (min-width: 810px) {
  .footer-main { grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; padding-bottom: 32px; }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.page-hero, .contact-hero {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: clamp(420px, 64vh, 560px); overflow: hidden; text-align: center;
}
.page-hero__bg, .contact-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero__overlay, .contact-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.46); }
.page-hero__content, .contact-hero__content { position: relative; z-index: 2; padding: 80px var(--pad-x) 0; max-width: 900px; }
.page-hero__title, .contact-hero__title {
  margin: 0; color: var(--c-white);
  font-family: var(--font-serif); font-weight: 400; line-height: 1; text-transform: uppercase;
  font-size: clamp(3.2rem, 13vw, 100px);
}
.page-hero__sub, .contact-hero__sub { margin: 18px auto 0; max-width: 540px; color: #cfcfcf; font-family: var(--font-sans); font-size: clamp(16px, 2.4vw, 20px); line-height: 1.5; }

.contact-main { background: var(--c-cream-2); color: var(--c-ink); }
.contact-main__inner { max-width: var(--maxw); margin: 0 auto; padding: 90px var(--pad-x); display: grid; grid-template-columns: 1fr; gap: 40px; }

.contact-info__title { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 28px; color: var(--c-black); }
.contact-info__lead { margin: 16px 0 0; max-width: 420px; color: var(--c-ink-soft); font-family: var(--font-sans); font-size: 16px; line-height: 1.6; }
.contact-info__list { display: flex; flex-direction: column; gap: 22px; margin: 32px 0 0; }
.contact-info__label { display: block; margin-bottom: 5px; color: var(--c-navy); font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-info__list a, .contact-info__list span { color: var(--c-ink-soft); font-family: var(--font-sans); font-size: 17px; line-height: 1.5; }
.contact-info__list a { transition: color .3s ease; }
.contact-info__list a:hover { color: var(--c-navy); }

.contact-form-card { background: var(--c-navy-deep); border-radius: 20px; padding: 32px; color: var(--c-white); }
.contact-form-card__title { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--c-white); }
.contact-form-card__sub { margin: 10px 0 26px; color: rgba(255,255,255,.6); font-family: var(--font-sans); font-size: 15px; line-height: 1.5; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.contact-form input, .contact-form select, .contact-form textarea {
  background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.25);
  color: var(--c-white); font-family: var(--font-sans); font-size: 16px; padding: 9px 0; outline: none;
  text-transform: none; letter-spacing: normal; transition: border-color .3s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.4); }
.contact-form select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.5) 50%), linear-gradient(135deg, rgba(255,255,255,.5) 50%, transparent 50%);
  background-position: calc(100% - 14px) 16px, calc(100% - 9px) 16px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.contact-form select option { color: #120a0b; }
.contact-form textarea { resize: vertical; min-height: 84px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color: rgba(255,255,255,.75); }
.contact-submit {
  align-self: flex-start; margin-top: 6px; cursor: pointer;
  background: #235488; color: var(--c-white); border: 0; border-radius: 60px;
  padding: 14px 30px; font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background-color .3s ease;
}
.contact-submit:hover { background: #2c6299; }

.contact-map { background: var(--c-cream-2); }
.contact-map__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x) 90px; }
.contact-map iframe { width: 100%; height: clamp(360px, 52vh, 540px); border: 0; border-radius: 16px; display: block; }

@media (min-width: 810px) {
  .contact-main__inner { grid-template-columns: 1fr 522px; gap: 64px; align-items: start; padding: 110px var(--pad-x); }
  .contact-info__title { font-size: 34px; }
  .contact-form-card { padding: 40px; }
}

/* ============================================================
   OFFER PAGE — featured offer + cards
   ============================================================ */
.offer-detail { background: var(--c-cream-2); color: var(--c-ink); }
.offer-detail__inner { max-width: var(--maxw); margin: 0 auto; padding: 80px var(--pad-x) 90px; }

.feature-offer { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; background: #191919; }
.feature-offer__img { aspect-ratio: 16 / 11; }
.feature-offer__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-offer__panel { background: #191919; color: var(--c-white); padding: 36px 32px 40px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.feature-offer__badge { align-self: flex-start; background: var(--c-cream); color: var(--c-ink); font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 15px; border-radius: 999px; }
.feature-offer__title { margin: 4px 0 0; font-family: var(--font-display); font-weight: 400; text-transform: uppercase; line-height: 1.04; letter-spacing: -0.01em; color: var(--c-white); font-size: clamp(2rem, 5.2vw, 50px); }
.feature-offer__meta { color: var(--c-navy); font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.04em; }
.feature-offer__desc { margin: 6px 0 0; max-width: 440px; color: rgba(255,255,255,.72); font-family: var(--font-sans); font-size: 16px; line-height: 1.6; }
.feature-offer__foot { display: flex; align-items: center; gap: 28px; margin-top: 14px; flex-wrap: wrap; }
.feature-offer__price { font-family: var(--font-display); font-weight: 400; font-size: 28px; color: var(--c-white); }
.feature-offer__cta { height: 48px; }

.offer-detail .offers-grid { margin-top: 24px; }

@media (min-width: 810px) {
  .feature-offer { flex-direction: row; }
  .feature-offer__img { flex: 1; aspect-ratio: auto; }
  .feature-offer__panel { flex: 1; padding: 56px; }
}

