/* ============================================================
   THE RIF AT MANGROVE BEACH — site styles
   Built on the Corendon design tokens (tokens.css).
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-700);
  background: var(--white);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(1200px, 100% - 48px); margin-inline: auto; }
.wrap-narrow { width: min(820px, 100% - 48px); margin-inline: auto; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font: 800 var(--fs-xs)/1 var(--font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cor-red);
}
.eyebrow.on-dark { color: var(--cor-sun); }
.display {
  font: 900 clamp(2.4rem, 5.2vw, 4.4rem)/1.02 var(--font-display);
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.h2 { font: 900 clamp(1.7rem, 3.2vw, 2.6rem)/1.1 var(--font-display); letter-spacing: -0.02em; color: var(--ink-900); }
.h3 { font: 800 var(--fs-h3)/1.2 var(--font-display); letter-spacing: -0.01em; color: var(--ink-900); }
.lead { font: 400 clamp(1.05rem,1.5vw,1.3rem)/1.55 var(--font-sans); color: var(--ink-700); }
.muted { color: var(--ink-500); }
.section { padding: clamp(56px, 9vw, 112px) 0; }
.section-tight { padding: clamp(40px, 6vw, 72px) 0; }
.center { text-align: center; }
.sec-head { max-width: 680px; }
.sec-head.center { margin-inline: auto; }
.sec-head .eyebrow { margin-bottom: 14px; display: block; }
.sec-head .h2 + .lead { margin-top: 18px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 18px clamp(20px, 4vw, 48px);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  box-shadow: var(--sh-sm);
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand-name {
  font: 900 1.5rem/0.9 var(--font-display);
  letter-spacing: -0.02em; color: var(--white);
  display: flex; align-items: center; gap: 9px;
}
.brand-name .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cor-red); flex: none; box-shadow: 0 0 0 4px rgba(220,36,44,0.18); }
.brand-sub {
  font: 800 0.6rem/1 var(--font-sans);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); padding-left: 18px;
}
.scrolled .brand-name { color: var(--ink-900); }
.scrolled .brand-sub { color: var(--ink-500); }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav a {
  font: 700 0.95rem/1 var(--font-sans);
  color: rgba(255,255,255,0.92); letter-spacing: -0.01em;
  padding: 8px 0; position: relative; white-space: nowrap;
  transition: color .15s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--cor-red); transition: right .2s ease;
}
.nav a:hover::after, .nav a.active::after { right: 0; }
.scrolled .nav a { color: var(--ink-700); }
.scrolled .nav a:hover, .scrolled .nav a.active { color: var(--ink-900); }
.nav a.active { color: var(--white); }
.scrolled .nav a.active { color: var(--cor-red); }
.scrolled .nav a.active::after { background: var(--cor-red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 800 0.95rem/1 var(--font-sans); letter-spacing: -0.01em;
  border: none; cursor: pointer; border-radius: var(--r-pill);
  padding: 14px 26px; transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--cor-red); color: #fff; box-shadow: var(--sh-red); }
.btn-primary:hover { background: var(--cor-red-600); transform: translateY(-2px); }
.btn-primary:active { background: var(--cor-red-700); transform: translateY(0) scale(.99); }
.btn-lg { padding: 17px 32px; font-size: 1.05rem; }
.btn-light { background: #fff; color: var(--cor-red); box-shadow: var(--sh-md); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-outline-light { background: rgba(255,255,255,0.08); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.55); }
.btn-outline-light:hover { background: rgba(255,255,255,0.16); }
.btn-ghost { background: transparent; color: var(--ink-900); box-shadow: inset 0 0 0 1.5px var(--ink-300); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink-900); transform: translateY(-2px); }
.header-cta { padding: 12px 22px; }

/* ---------- Mobile menu button ---------- */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: #fff; }
.scrolled .menu-toggle { color: var(--ink-900); }
.menu-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,42,71,0.62) 0%, rgba(14,42,71,0.10) 22%, rgba(14,42,71,0.20) 48%, rgba(14,42,71,0.78) 78%, rgba(14,42,71,0.92) 100%),
    linear-gradient(75deg, rgba(14,42,71,0.66) 0%, rgba(14,42,71,0.30) 38%, rgba(14,42,71,0) 68%);
}
.hero-inner { position: relative; z-index: 1; padding-bottom: clamp(48px, 8vw, 96px); padding-top: 140px; width: 100%; }
.hero .eyebrow { color: var(--cor-sun); margin-bottom: 18px; display: block; }
.hero h1 {
  font: 900 clamp(2.8rem, 7vw, 6rem)/0.98 var(--font-display);
  letter-spacing: -0.03em; color: #fff; max-width: 14ch;
  text-shadow: 0 4px 30px rgba(14,42,71,0.4);
}
.hero-sub { font: 400 clamp(1.1rem,1.7vw,1.45rem)/1.5 var(--font-sans); color: rgba(255,255,255,0.94); max-width: 52ch; margin-top: 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.22); }
.hero-meta .item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .item b { font: 900 1.6rem/1 var(--font-display); color: #fff; }
.hero-meta .item span { font: 600 0.82rem/1.2 var(--font-sans); letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.78); }

/* ---------- Rating chip ---------- */
.rating-chip { display: inline-flex; align-items: center; gap: 11px; }
.rating-chip .score { background: var(--cor-navy); color: #fff; border-radius: var(--r-sm); padding: 8px 12px; font: 900 1.15rem/1 var(--font-display); }
.rating-chip .meta { display: flex; flex-direction: column; gap: 2px; }
.rating-chip .meta b { font: 800 0.95rem/1 var(--font-sans); color: #fff; }
.rating-chip .meta span { font: 600 0.8rem/1 var(--font-sans); color: rgba(255,255,255,0.8); }
.rating-chip.dark .meta b { color: var(--ink-900); }
.rating-chip.dark .meta span { color: var(--ink-500); }

/* ============================================================
   SUB-HERO (interior page headers)
   ============================================================ */
.page-hero { position: relative; color: #fff; overflow: hidden; min-height: 56vh; display: flex; align-items: flex-end; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,42,71,0.5) 0%, rgba(14,42,71,0.05) 40%, rgba(14,42,71,0.78) 100%); }
.page-hero-inner { position: relative; z-index: 1; padding: 150px 0 clamp(40px,6vw,72px); width: 100%; }
.page-hero h1 { font: 900 clamp(2.2rem,5vw,4rem)/1 var(--font-display); letter-spacing: -0.025em; color: #fff; max-width: 18ch; }
.page-hero .eyebrow { color: var(--cor-sun); display: block; margin-bottom: 14px; }
.page-hero p { font: 400 clamp(1.05rem,1.4vw,1.25rem)/1.5 var(--font-sans); color: rgba(255,255,255,0.92); max-width: 56ch; margin-top: 18px; }

/* ---------- Breadcrumb ---------- */
.crumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font: 600 0.82rem/1 var(--font-sans); color: rgba(255,255,255,0.8); margin-bottom: 22px; }
.crumb a:hover { color: #fff; text-decoration: underline; }
.crumb .sep { opacity: 0.5; }

/* ============================================================
   USP STRIP
   ============================================================ */
.usp-strip { background: var(--cor-sand); }
.usp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.usp { display: flex; flex-direction: column; gap: 12px; }
.usp .ico { width: 46px; height: 46px; border-radius: var(--r-pill); background: var(--white); display: grid; place-items: center; color: var(--cor-red); box-shadow: var(--sh-xs); }
.usp .ico svg { width: 23px; height: 23px; }
.usp b { font: 800 1rem/1.25 var(--font-sans); color: var(--ink-900); }
.usp p { font: 500 0.92rem/1.45 var(--font-sans); color: var(--ink-500); }

/* ============================================================
   FEATURE SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.split-media .stamp {
  position: absolute; bottom: -22px; left: -22px; background: var(--cor-red); color: #fff;
  border-radius: var(--r-lg); padding: 18px 22px; box-shadow: var(--sh-red); max-width: 220px;
}
.split-media .stamp b { font: 900 2rem/1 var(--font-display); display: block; }
.split-media .stamp span { font: 700 0.85rem/1.3 var(--font-sans); }
.split-body .eyebrow { display: block; margin-bottom: 14px; }
.split-body .h2 + p { margin-top: 18px; }
.split-body p + p { margin-top: 14px; }
.split-body .btn { margin-top: 28px; }
.split-body p { color: var(--ink-700); }

/* tick list */
.ticks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; margin-top: 26px; }
.ticks.one-col { grid-template-columns: 1fr; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font: 500 1rem/1.4 var(--font-sans); color: var(--ink-700); }
.ticks li svg { width: 20px; height: 20px; color: var(--cor-red); flex: none; margin-top: 1px; }

/* ============================================================
   CARD GRID (rooms / restaurants / facilities)
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-sm); border: 1px solid var(--ink-100);
  display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.card-media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-tag {
  position: absolute; top: 14px; left: 14px; background: rgba(14,42,71,0.78); color: #fff;
  font: 800 0.72rem/1 var(--font-sans); letter-spacing: 0.04em; text-transform: uppercase;
  padding: 7px 11px; border-radius: var(--r-pill); backdrop-filter: blur(4px);
}
.card-tag.sun { background: var(--cor-sun); color: var(--cor-navy); }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font: 800 var(--fs-h3)/1.2 var(--font-display); color: var(--ink-900); letter-spacing: -0.01em; }
.card-body .sz { font: 700 0.85rem/1 var(--font-sans); color: var(--cor-red); letter-spacing: 0.02em; }
.card-body p { font: 500 0.95rem/1.5 var(--font-sans); color: var(--ink-500); }
.card-feats { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; background: var(--ink-50);
  border: 1px solid var(--ink-200); border-radius: var(--r-pill);
  padding: 6px 12px; font: 700 0.8rem/1 var(--font-sans); color: var(--ink-700);
}
.chip svg { width: 14px; height: 14px; color: var(--cor-red); }

/* restaurant card variant */
.rcard .card-body { gap: 8px; }
.rcard .kind { font: 800 0.75rem/1 var(--font-sans); letter-spacing: 0.08em; text-transform: uppercase; color: var(--cor-red); }
.rcard .note { font: 600 0.82rem/1.4 var(--font-sans); color: var(--ink-400); margin-top: 6px; display: flex; gap: 7px; align-items: flex-start; }
.rcard .note svg { width: 15px; height: 15px; flex: none; margin-top: 1px; color: var(--ink-400); }

/* ============================================================
   FACILITY / amenity list blocks
   ============================================================ */
.amenity-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.amenity {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-lg);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 14px;
}
.amenity .ico { width: 50px; height: 50px; border-radius: var(--r-md); background: var(--cor-red-tint); color: var(--cor-red); display: grid; place-items: center; }
.amenity .ico svg { width: 25px; height: 25px; }
.amenity h3 { font: 800 var(--fs-h4)/1.2 var(--font-sans); color: var(--ink-900); }
.amenity ul { display: flex; flex-direction: column; gap: 9px; }
.amenity li { display: flex; gap: 10px; align-items: flex-start; font: 500 0.95rem/1.4 var(--font-sans); color: var(--ink-700); }
.amenity li svg { width: 17px; height: 17px; color: var(--cor-sun-600); flex: none; margin-top: 2px; }

/* ============================================================
   STAT BAND (navy)
   ============================================================ */
.band-navy { background: var(--cor-navy); color: #fff; }
.band-navy .eyebrow { color: var(--cor-sun); }
.band-navy .h2 { color: #fff; }
.band-navy .lead { color: rgba(255,255,255,0.85); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; text-align: center; }
.stat b { font: 900 clamp(2.4rem,4vw,3.4rem)/1 var(--font-display); color: var(--cor-sun); display: block; }
.stat span { font: 600 0.92rem/1.3 var(--font-sans); color: rgba(255,255,255,0.82); margin-top: 8px; display: block; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; justify-content: space-between; margin-bottom: 44px; }
.bigscore { display: flex; align-items: center; gap: 18px; }
.bigscore .num { background: var(--cor-navy); color: #fff; border-radius: var(--r-lg); width: 84px; height: 84px; display: grid; place-items: center; font: 900 2.4rem/1 var(--font-display); }
.bigscore .lbl b { font: 900 1.4rem/1 var(--font-display); color: var(--ink-900); display: block; }
.bigscore .lbl span { font: 600 0.95rem/1.3 var(--font-sans); color: var(--ink-500); }
.score-bars { display: grid; grid-template-columns: repeat(2, minmax(180px,1fr)); gap: 12px 32px; flex: 1; min-width: 280px; max-width: 540px; }
.score-bars .row { display: grid; grid-template-columns: 110px 1fr 30px; align-items: center; gap: 10px; }
.score-bars .row span { font: 600 0.85rem/1 var(--font-sans); color: var(--ink-700); }
.score-bars .row .track { height: 7px; background: var(--ink-100); border-radius: var(--r-pill); overflow: hidden; }
.score-bars .row .track i { display: block; height: 100%; background: var(--cor-sun); border-radius: var(--r-pill); }
.score-bars .row b { font: 800 0.85rem/1 var(--font-sans); color: var(--ink-900); text-align: right; }

.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review {
  background: #fff; border: 1px solid var(--ink-200); border-radius: var(--r-lg);
  padding: 26px; display: flex; flex-direction: column; gap: 14px;
}
.review .top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review .rscore { background: var(--cor-sun); color: var(--cor-navy); border-radius: var(--r-sm); padding: 5px 10px; font: 900 1rem/1 var(--font-display); }
.review .who { font: 800 0.92rem/1.2 var(--font-sans); color: var(--ink-900); }
.review .who span { display: block; font: 600 0.78rem/1.3 var(--font-sans); color: var(--ink-400); margin-top: 3px; }
.review .quote { font: 500 1rem/1.55 var(--font-sans); color: var(--ink-700); }
.review .quote::before { content: "“"; }
.review .quote::after { content: "”"; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { columns: 4; column-gap: 14px; }
.gallery .gitem { break-inside: avoid; margin-bottom: 14px; border-radius: var(--r-md); overflow: hidden; cursor: pointer; position: relative; display: block; width: 100%; padding: 0; border: none; background: var(--ink-100); }
.gallery .gitem img { width: 100%; height: auto; display: block; transition: transform .35s ease; }
.gallery .gitem:hover img { transform: scale(1.05); }
.gallery .gitem::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(14,42,71,0.25)); opacity: 0; transition: opacity .2s; }
.gallery .gitem:hover::after { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(8,20,35,0.94); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--r-md); box-shadow: var(--sh-lg); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,0.12); border: none; color: #fff; cursor: pointer; border-radius: var(--r-pill); display: grid; place-items: center; transition: background .15s; }
.lightbox .lb-close { top: 24px; right: 24px; width: 48px; height: 48px; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; }
.lightbox .lb-prev { left: 24px; }
.lightbox .lb-next { right: 24px; }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox svg { width: 26px; height: 26px; }
.lb-count { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.8); font: 700 0.9rem/1 var(--font-sans); }

/* gallery category filters */
.gal-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.gal-filter button {
  border: 1px solid var(--ink-200); background: #fff; cursor: pointer;
  border-radius: var(--r-pill); padding: 10px 18px; font: 700 0.88rem/1 var(--font-sans); color: var(--ink-700);
  transition: all .15s;
}
.gal-filter button:hover { border-color: var(--ink-400); }
.gal-filter button.active { background: var(--cor-red); border-color: var(--cor-red); color: #fff; }

/* ============================================================
   BLOG (Ligging / inspiratie)
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post { display: flex; flex-direction: column; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--ink-100); transition: transform .18s, box-shadow .18s; }
.post:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.post .pmedia { aspect-ratio: 3/2; overflow: hidden; }
.post .pmedia img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post:hover .pmedia img { transform: scale(1.05); }
.post .pbody { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post .pcat { font: 800 0.72rem/1 var(--font-sans); letter-spacing: 0.1em; text-transform: uppercase; color: var(--cor-red); }
.post .pbody h3 { font: 800 var(--fs-h3)/1.2 var(--font-display); color: var(--ink-900); letter-spacing: -0.01em; }
.post .pbody p { font: 500 0.95rem/1.5 var(--font-sans); color: var(--ink-500); }
.post .pread { margin-top: auto; padding-top: 8px; font: 800 0.88rem/1 var(--font-sans); color: var(--cor-red); display: inline-flex; align-items: center; gap: 6px; }
.post .pread svg { width: 16px; height: 16px; transition: transform .15s; }
.post:hover .pread svg { transform: translateX(3px); }

/* feature blog article block */
.article { max-width: 760px; margin-inline: auto; }
.article h2 { font: 900 clamp(1.6rem,3vw,2.3rem)/1.15 var(--font-display); letter-spacing: -0.02em; color: var(--ink-900); margin-top: 48px; }
.article h2:first-child { margin-top: 0; }
.article p { font: 400 1.15rem/1.7 var(--font-sans); color: var(--ink-700); margin-top: 18px; }
.article img { width: 100%; border-radius: var(--r-lg); margin-top: 32px; box-shadow: var(--sh-md); }
.article .cap { font: 600 0.85rem/1.4 var(--font-sans); color: var(--ink-400); margin-top: 10px; text-align: center; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--cor-red); color: #fff; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); text-align: center; }
.cta-band .deco { position: absolute; font: 900 26rem/1 var(--font-display); color: rgba(255,255,255,0.06); top: -8rem; right: -2rem; pointer-events: none; user-select: none; }
.cta-band h2 { position: relative; font: 900 clamp(1.8rem,3.4vw,2.8rem)/1.1 var(--font-display); letter-spacing: -0.02em; color: #fff; }
.cta-band p { position: relative; font: 400 1.15rem/1.5 var(--font-sans); color: rgba(255,255,255,0.92); margin: 16px auto 0; max-width: 52ch; }
.cta-band .btn { position: relative; margin-top: 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--cor-navy); color: rgba(255,255,255,0.7); padding: clamp(56px,7vw,80px) 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-name { color: #fff; font-size: 1.7rem; }
.footer-brand .brand-sub { color: rgba(255,255,255,0.6); }
.footer-brand p { font: 500 0.95rem/1.6 var(--font-sans); color: rgba(255,255,255,0.6); margin-top: 18px; max-width: 34ch; }
.footer-col h4 { font: 800 0.82rem/1 var(--font-sans); letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font: 500 0.95rem/1.4 var(--font-sans); color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: #fff; }
.footer-col .addr { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .addr svg { width: 17px; height: 17px; color: var(--cor-sun); flex: none; margin-top: 2px; }
.footer-bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer-bottom p { font: 500 0.82rem/1.5 var(--font-sans); color: rgba(255,255,255,0.5); max-width: 70ch; }
.footer-bottom .links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom .links a { font: 600 0.82rem/1 var(--font-sans); color: rgba(255,255,255,0.6); }
.footer-bottom .links a:hover { color: #fff; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-wrap { max-width: 840px; margin-inline: auto; }
.faq-cat { margin-top: 48px; margin-bottom: 4px; }
.faq-cat:first-child { margin-top: 0; }
.faq-cat .eyebrow { display: block; }
.faq-item { border-bottom: 1px solid var(--ink-200); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 26px 52px 26px 0;
  font: 800 1.2rem/1.4 var(--font-display); letter-spacing: -0.01em; color: var(--ink-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--cor-red); }
.faq-item summary::after {
  content: ""; position: absolute; right: 10px; top: 32px;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--cor-red); border-bottom: 2.5px solid var(--cor-red);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq-item[open] summary::after { transform: rotate(225deg); top: 36px; }
.faq-answer { padding: 0 52px 26px 0; }
.faq-answer p { font: 400 1.05rem/1.65 var(--font-sans); color: var(--ink-700); }
.faq-answer p + p { margin-top: 12px; }
.faq-answer a { color: var(--cor-red); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* compact FAQ on home */
.faq-home { max-width: 820px; margin-inline: auto; }
.faq-home .faq-item summary { font-size: 1.1rem; padding: 22px 52px 22px 0; }
.faq-home .faq-item summary::after { top: 28px; }
.faq-home .faq-item[open] summary::after { top: 32px; }

/* ============================================================
   MOBILE
   ============================================================ */
.mobile-nav { display: none; }
@media (max-width: 1100px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav {
    position: fixed; inset: 0; z-index: 200; background: var(--cor-navy);
    flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    display: none;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { font: 800 1.5rem/1 var(--font-display); color: #fff; padding: 12px; }
  .mobile-nav a.active { color: var(--cor-sun); }
  .mobile-nav .btn { margin-top: 20px; }
  .mobile-nav .mclose { position: absolute; top: 22px; right: 22px; background: rgba(255,255,255,0.12); border: none; color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
  .mobile-nav .mclose svg { width: 26px; height: 26px; }
  .usp-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .amenity-grid { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: repeat(2,1fr); gap: 36px 20px; }
  .gallery { columns: 3; }
  .review-grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .stamp { left: 16px; bottom: 16px; }
  .grid-2, .grid-3, .grid-4, .review-grid, .blog-grid, .amenity-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .ticks { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .hero-meta { gap: 18px; }
  .hero-meta .item b { font-size: 1.3rem; }
  .score-bars { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
}
