/* ============================================================
   mavrik. — luxury hospitality website stylesheet
   Build: 2026-06-17 · v4 (luxury rebuild)
   Palette: cool only. No yellow, no cream, no warm tones.
   ============================================================ */

/* ----- Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@400;600&display=swap');

/* ============================================================
   Tokens
   ============================================================ */
:root {
  /* Brand palette — official, cool only */
  --deep-slate:      #062732;
  --signature-teal:  #0B3849;
  --brilliant-aqua:  #30D5C8;
  --aqua-deep:       #1FB8AB;
  --aqua-soft:       #D8F6F2;
  --crystal-mist:    #EBFFFD;
  --crystal-mist-2:  #F4FFFE;
  --spotless-white:  #FFFFFF;
  --slate-60:        rgba(6, 39, 50, 0.62);
  --slate-40:        rgba(6, 39, 50, 0.40);
  --slate-12:        rgba(6, 39, 50, 0.12);
  --slate-06:        rgba(6, 39, 50, 0.06);
  --white-72:        rgba(255, 255, 255, 0.72);
  --white-30:        rgba(255, 255, 255, 0.30);

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-script:  'Caveat', cursive;

  /* Spacing scale (8-pt rhythm) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-7: 32px;
  --s-8: 40px;
  --s-9: 56px;
  --s-10: 72px;
  --s-11: 96px;
  --s-12: 128px;

  /* Radii */
  --r-pill: 999px;
  --r-lg:   24px;
  --r-md:   16px;
  --r-sm:   10px;

  /* Shadows */
  --sh-card:   0 1px 2px rgba(6,39,50,0.04), 0 24px 60px -24px rgba(6,39,50,0.18);
  --sh-float:  0 1px 2px rgba(6,39,50,0.04), 0 40px 80px -32px rgba(6,39,50,0.30);
  --sh-glass:  0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 40px -12px rgba(6,39,50,0.20);

  /* Layout */
  --wrap:    1280px;
  --wrap-lg: 1440px;
  --nav-h:   72px;
}

/* ============================================================
   Reset + base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  color: var(--deep-slate);
  background: var(--spotless-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; color: var(--deep-slate); margin: 0; }
p { margin: 0; }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--s-6); }
.container--wide { max-width: var(--wrap-lg); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  height: 52px;
  padding: 0 var(--s-7);
  border-radius: var(--r-pill);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--brilliant-aqua); color: var(--deep-slate); border-color: var(--brilliant-aqua); }
.btn--primary:hover { background: var(--aqua-deep); border-color: var(--aqua-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--deep-slate); border-color: var(--deep-slate); }
.btn--ghost:hover { background: var(--deep-slate); color: var(--spotless-white); }
.btn--ghost-light { background: transparent; color: var(--spotless-white); border-color: var(--white-30); }
.btn--ghost-light:hover { background: var(--white-30); }
.btn--block { width: 100%; }
.btn--sm { height: 40px; padding: 0 var(--s-5); font-size: 14px; }
.btn-arrow { transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(2px); }

/* ============================================================
   Sticky nav with frosted glass
   ============================================================ */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  padding: 0 var(--s-6);
  background: rgba(255,255,255,0.62);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-nav.is-scrolled {
  background: rgba(255,255,255,0.88);
  border-bottom-color: var(--slate-06);
  box-shadow: 0 10px 30px -20px rgba(6,39,50,0.12);
}
.nav-inner { width: 100%; max-width: var(--wrap-lg); margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: var(--s-6); }

.nav-mark { font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: -0.02em; color: var(--deep-slate); display: inline-flex; align-items: center; gap: 4px; }
.nav-mark .sparkle { width: 10px; height: 10px; color: var(--brilliant-aqua); }

.nav-pill { display: inline-flex; gap: 4px; background: var(--crystal-mist); border-radius: var(--r-pill); padding: 6px; border: 1px solid var(--slate-06); }
.nav-pill a { font-family: var(--font-ui); font-weight: 500; font-size: 14px; color: var(--deep-slate); padding: 8px 16px; border-radius: var(--r-pill); letter-spacing: -0.005em; transition: background .15s ease, color .15s ease; }
.nav-pill a:hover { background: var(--spotless-white); }
.nav-pill a.is-active { background: var(--deep-slate); color: var(--crystal-mist); }

.nav-right { justify-self: end; display: flex; gap: var(--s-3); align-items: center; }
.nav-phone { display: inline-flex; align-items: center; gap: var(--s-2); height: 40px; padding: 0 var(--s-5); background: var(--aqua-soft); color: var(--deep-slate); border-radius: var(--r-pill); font-weight: 600; font-size: 14px; letter-spacing: -0.005em; border: 1px solid var(--brilliant-aqua); }
.nav-phone svg { width: 14px; height: 14px; color: var(--brilliant-aqua); }

.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; color: var(--deep-slate); }
.nav-toggle svg { width: 24px; height: 24px; }

main { padding-top: var(--nav-h); }

/* ============================================================
   HERO — immersive: full-fold image background, copy + booking overlay
   ============================================================ */
.hero { position: relative; padding: var(--s-9) 0 var(--s-9); overflow: hidden; background: var(--deep-slate); }
.hero--immersive { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; padding: var(--s-10) 0; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-bg-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(105deg, rgba(6,39,50,0.78) 0%, rgba(6,39,50,0.55) 38%, rgba(6,39,50,0.25) 60%, rgba(6,39,50,0.55) 100%),
  linear-gradient(180deg, rgba(6,39,50,0.20) 0%, rgba(6,39,50,0.55) 100%);
  pointer-events: none; }
.hero-stage { position: relative; z-index: 2; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 460px; gap: var(--s-10); align-items: center; }
.hero-copy { max-width: 620px; }
.hero-copy--onimage { color: var(--spotless-white); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: var(--s-2); font-size: 13px; font-weight: 500; color: var(--aqua-deep); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--s-5); }
.hero-eyebrow--light { color: var(--brilliant-aqua); }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brilliant-aqua); }
.hero-headline { font-size: clamp(56px, 7.6vw, 116px); line-height: 0.92; font-weight: 500; letter-spacing: -0.04em; color: var(--deep-slate); margin: 0 0 var(--s-3); text-shadow: 0 2px 24px rgba(6,39,50,0.4); }
.hero-headline--light { color: var(--spotless-white); }
.hero-headline .line { display: block; }
.hero-headline .sparkle { display: inline-block; width: 0.55em; height: 0.55em; vertical-align: 0.05em; margin-left: 0.05em; color: var(--brilliant-aqua); }
.hero-accent { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--brilliant-aqua); font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -0.01em; display: block; margin: var(--s-4) 0 var(--s-6); }
.hero-sub { font-size: 18px; line-height: 1.55; color: var(--signature-teal); max-width: 540px; margin-bottom: var(--s-7); }
.hero-sub--light { color: rgba(255,255,255,0.88); text-shadow: 0 1px 12px rgba(6,39,50,0.5); }
.hero-ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* In-hero booking widget */
.hero-booking { width: 100%; max-width: 460px; background: var(--spotless-white); backdrop-filter: blur(20px); box-shadow: 0 30px 80px -20px rgba(6,39,50,0.45), 0 8px 24px -8px rgba(6,39,50,0.3); }

/* ============================================================
   Trust strip (5 tiles in Crystal Mist pill)
   ============================================================ */
.trust-strip { padding: var(--s-7) 0 var(--s-10); background: linear-gradient(180deg, var(--crystal-mist) 0%, var(--spotless-white) 100%); }
.trust-pill { background: var(--crystal-mist); border-radius: 32px; padding: var(--s-5) var(--s-6); border: 1px solid var(--slate-06); box-shadow: 0 24px 60px -36px rgba(6,39,50,0.15); display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-4); }
.trust-tile { display: flex; align-items: center; gap: var(--s-3); padding: var(--s-3); border-radius: var(--r-md); }
.trust-tile + .trust-tile { border-left: 1px solid var(--slate-06); padding-left: var(--s-5); }
.trust-tile-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--spotless-white); display: grid; place-items: center; flex-shrink: 0; border: 1px solid var(--slate-06); }
.trust-tile-icon svg { width: 18px; height: 18px; color: var(--brilliant-aqua); }
.trust-tile-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--deep-slate); letter-spacing: -0.01em; line-height: 1.1; }
.trust-tile-sub { font-size: 12px; color: var(--slate-60); margin-top: 2px; letter-spacing: -0.005em; }

/* ============================================================
   Section base
   ============================================================ */
.section { padding: var(--s-12) 0; }
.section--tight { padding: var(--s-10) 0; }
.section--mist { background: var(--crystal-mist-2); }
.section--slate { background: var(--deep-slate); color: var(--crystal-mist); }
.section--slate h2, .section--slate h3 { color: var(--crystal-mist); }
.section-eyebrow { display: inline-flex; align-items: center; gap: var(--s-2); font-family: var(--font-ui); font-weight: 500; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--aqua-deep); margin-bottom: var(--s-4); }
.section-eyebrow .bar { width: 24px; height: 1px; background: var(--brilliant-aqua); }
.section--slate .section-eyebrow { color: var(--brilliant-aqua); }
.section-headline { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 5.2vw, 72px); line-height: 1.0; letter-spacing: -0.03em; color: var(--deep-slate); margin: 0 0 var(--s-4); max-width: 18ch; }
.section--slate .section-headline { color: var(--crystal-mist); }
.section-sub { font-size: 18px; color: var(--signature-teal); line-height: 1.5; max-width: 56ch; margin: 0 0 var(--s-8); }
.section--slate .section-sub { color: rgba(235,255,253,0.78); }
.section-header { margin-bottom: var(--s-9); }

/* ============================================================
   Services photo rail
   ============================================================ */
.service-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.service-tile { display: flex; flex-direction: column; background: var(--spotless-white); border-radius: var(--r-lg); border: 1px solid var(--slate-06); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; position: relative; }
.service-tile:hover { transform: translateY(-4px); box-shadow: var(--sh-float); border-color: var(--brilliant-aqua); }
.service-tile-photo { position: relative; aspect-ratio: 4 / 3; background: var(--slate-12); overflow: hidden; }
.service-tile-photo img { width: 100%; height: 100%; object-fit: cover; }
.service-tile-body { padding: var(--s-6); display: flex; flex-direction: column; flex: 1; }
.service-tile-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aqua-deep); margin-bottom: var(--s-2); }
.service-tile h3 { font-family: var(--font-display); font-size: 26px; font-weight: 500; letter-spacing: -0.015em; color: var(--deep-slate); margin-bottom: var(--s-2); }
.service-tile-price { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--deep-slate); margin-bottom: var(--s-3); }
.service-tile-price em { font-style: normal; color: var(--slate-60); font-size: 13px; font-weight: 400; }
.service-tile-meta { font-size: 13px; color: var(--slate-60); margin-bottom: var(--s-4); }
.service-tile-list { list-style: none; padding: 0; margin: 0 0 var(--s-5); display: flex; flex-direction: column; gap: 6px; }
.service-tile-list li { display: flex; gap: var(--s-2); font-size: 13.5px; color: var(--deep-slate); }
.service-tile-list li::before { content: "✦"; color: var(--brilliant-aqua); flex-shrink: 0; }
.service-tile .btn { margin-top: auto; }
.service-tile-badge { position: absolute; top: var(--s-4); right: var(--s-4); padding: 6px 12px; background: var(--brilliant-aqua); color: var(--deep-slate); border-radius: var(--r-pill); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; z-index: 1; }

/* ============================================================
   Touch-point tabbed rooms section
   ============================================================ */
.rooms-section { padding: var(--s-12) 0; background: var(--spotless-white); }
.rooms-tabs { display: inline-flex; gap: 4px; background: var(--crystal-mist); padding: 6px; border-radius: var(--r-pill); margin-bottom: var(--s-8); border: 1px solid var(--slate-06); }
.rooms-tab { background: transparent; border: 0; padding: 10px 22px; font-family: var(--font-ui); font-weight: 500; font-size: 14px; color: var(--deep-slate); border-radius: var(--r-pill); letter-spacing: -0.005em; transition: background .2s ease, color .2s ease; }
.rooms-tab:hover { background: var(--spotless-white); }
.rooms-tab.is-active { background: var(--deep-slate); color: var(--crystal-mist); }

.room-stage { position: relative; aspect-ratio: 16 / 9; border-radius: var(--r-lg); overflow: hidden; background: var(--slate-12); box-shadow: var(--sh-card); }
.room-photo { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .5s ease; }
.room-photo.is-active { opacity: 1; z-index: 1; }
.room-overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; transition: opacity .5s ease; }
.room-overlay.is-active { opacity: 1; pointer-events: auto; }

.touch-dot { position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--brilliant-aqua); border: 2px solid var(--spotless-white); cursor: pointer; transform: translate(-50%, -50%); box-shadow: 0 0 0 0 rgba(48, 213, 200, 0.55); animation: dotPulse 2.4s infinite cubic-bezier(.66, 0, 0, 1); transition: transform .2s ease; z-index: 3; padding: 0; }
/* Invisible 44x44 hit target around the visual dot for thumbs */
.touch-dot::before { content: ""; position: absolute; inset: -14px; border-radius: 50%; }
.touch-dot:hover { transform: translate(-50%, -50%) scale(1.4); }
.touch-dot:focus-visible { outline: 3px solid var(--spotless-white); outline-offset: 4px; }
@keyframes dotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(48, 213, 200, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(48, 213, 200, 0); }
  100% { box-shadow: 0 0 0 0 rgba(48, 213, 200, 0); }
}
.touch-label { position: absolute; padding: 8px 14px; background: var(--spotless-white); border: 1px solid var(--slate-06); border-radius: var(--r-pill); font-size: 12px; font-weight: 500; color: var(--deep-slate); letter-spacing: -0.005em; white-space: nowrap; transform: translate(-50%, -50%); z-index: 4; box-shadow: 0 6px 14px -6px rgba(6, 39, 50, 0.2); transition: transform .2s ease; }
.touch-label:hover { transform: translate(-50%, -50%) translateY(-2px); }
.rooms-helper { margin-top: var(--s-5); text-align: center; color: var(--slate-60); font-size: 13px; }

/* ============================================================
   Before / After slider
   ============================================================ */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.ba-card { background: var(--spotless-white); border-radius: var(--r-lg); border: 1px solid var(--slate-06); overflow: hidden; box-shadow: 0 12px 40px -24px rgba(6, 39, 50, 0.16); }
.ba-frame { position: relative; aspect-ratio: 1 / 1; user-select: none; touch-action: none; overflow: hidden; background: var(--slate-12); cursor: ew-resize; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.ba-img--after { clip-path: inset(0 0 0 50%); transition: clip-path .12s linear; }
.ba-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--spotless-white); box-shadow: 0 0 0 1px rgba(6,39,50,0.18); transform: translateX(-1px); pointer-events: none; transition: left .12s linear; }
.ba-handle { position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; background: var(--spotless-white); border: 2px solid var(--brilliant-aqua); border-radius: 50%; transform: translate(-50%, -50%); display: grid; place-items: center; pointer-events: none; box-shadow: 0 8px 20px -6px rgba(6, 39, 50, 0.3); transition: left .12s linear; }
.ba-handle svg { width: 18px; height: 18px; color: var(--deep-slate); }
.ba-tag { position: absolute; top: var(--s-3); padding: 4px 10px; background: rgba(6, 39, 50, 0.7); color: var(--spotless-white); border-radius: var(--r-pill); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; z-index: 5; }
.ba-tag--before { left: var(--s-3); }
.ba-tag--after  { right: var(--s-3); background: rgba(48, 213, 200, 0.95); color: var(--deep-slate); }
.ba-caption { padding: var(--s-4) var(--s-5); }
.ba-caption-title { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--deep-slate); }
.ba-caption-sub { font-size: 13px; color: var(--slate-60); margin-top: 2px; }

/* ============================================================
   "The mavrik moment" section (3 imagery columns)
   ============================================================ */
.moment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.moment-card { border-radius: var(--r-lg); overflow: hidden; background: var(--spotless-white); border: 1px solid var(--slate-06); }
.moment-photo { aspect-ratio: 4 / 3; background-size: cover; background-position: center; }
.moment-card-body { padding: var(--s-6); }
.moment-card-icon { color: var(--brilliant-aqua); margin-bottom: var(--s-3); }
.moment-card-icon svg { width: 22px; height: 22px; }
.moment-card-title { font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: -0.01em; color: var(--deep-slate); margin-bottom: var(--s-2); }
.moment-card-body p { color: var(--signature-teal); font-size: 14.5px; line-height: 1.55; }
.moment-band { margin-top: var(--s-9); padding: var(--s-7) var(--s-8); background: var(--deep-slate); color: var(--crystal-mist); border-radius: var(--r-lg); display: flex; justify-content: space-between; align-items: center; gap: var(--s-7); }
.moment-band-text { font-family: var(--font-display); font-style: italic; font-size: 22px; max-width: 56ch; line-height: 1.35; }
.moment-band-text em { color: var(--brilliant-aqua); font-style: italic; }

/* ============================================================
   Team grid
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.team-card { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--slate-12); aspect-ratio: 1 / 1; }
.team-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.team-card:hover img { transform: scale(1.04); }
.team-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,39,50,0) 50%, rgba(6,39,50,0.75) 100%); pointer-events: none; }
.team-meta { position: absolute; bottom: var(--s-5); left: var(--s-5); right: var(--s-5); color: var(--spotless-white); z-index: 1; }
.team-name { font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: -0.01em; }
.team-role { font-size: 13px; opacity: 0.85; margin-top: 2px; }
.team-chips { margin-top: var(--s-8); display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }
.team-chip { display: inline-flex; align-items: center; gap: var(--s-2); padding: 10px 18px; background: var(--crystal-mist); border: 1px solid var(--slate-06); border-radius: var(--r-pill); font-size: 13px; font-weight: 500; color: var(--deep-slate); }
.team-chip svg { width: 14px; height: 14px; color: var(--brilliant-aqua); }

/* ============================================================
   Why mavrik (lifestyle imagery + copy)
   ============================================================ */
.lifestyle { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-10); align-items: center; }
.lifestyle-photo { aspect-ratio: 5 / 6; border-radius: var(--r-lg); overflow: hidden; background-size: cover; background-position: center; box-shadow: var(--sh-float); }
.lifestyle-list { list-style: none; padding: 0; margin: var(--s-6) 0 0; display: flex; flex-direction: column; gap: var(--s-4); }
.lifestyle-list li { display: flex; gap: var(--s-4); align-items: flex-start; }
.lifestyle-list li .ic { width: 32px; height: 32px; border-radius: 50%; background: var(--aqua-soft); display: grid; place-items: center; flex-shrink: 0; }
.lifestyle-list li .ic svg { width: 16px; height: 16px; color: var(--aqua-deep); }
.lifestyle-list li strong { display: block; font-family: var(--font-display); font-weight: 500; color: var(--deep-slate); font-size: 18px; letter-spacing: -0.01em; }
.lifestyle-list li span { color: var(--signature-teal); font-size: 14.5px; line-height: 1.5; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--s-3); max-width: 880px; margin: 0 auto; }
.faq-item { background: var(--spotless-white); border: 1px solid var(--slate-06); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: var(--brilliant-aqua); box-shadow: 0 12px 30px -16px rgba(48,213,200,0.25); }
.faq-summary { cursor: pointer; list-style: none; padding: var(--s-5) var(--s-6); font-family: var(--font-display); font-weight: 500; font-size: 18px; letter-spacing: -0.01em; color: var(--deep-slate); display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); }
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after { content: "+"; font-family: var(--font-ui); font-weight: 300; font-size: 26px; line-height: 1; color: var(--brilliant-aqua); transition: transform .2s ease; }
.faq-item[open] .faq-summary::after { content: "−"; }
.faq-item p { padding: 0 var(--s-6) var(--s-5); color: var(--signature-teal); font-size: 15px; line-height: 1.6; }

/* ============================================================
   Final CTA band (Deep Slate)
   ============================================================ */
.final-cta { position: relative; padding: var(--s-12) 0; background: var(--deep-slate); color: var(--crystal-mist); overflow: hidden; isolation: isolate; }
.final-cta-photo { position: absolute; inset: 0; z-index: -1; background-size: cover; background-position: center; opacity: 0.30; }
.final-cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,39,50,0.85) 0%, rgba(6,39,50,0.96) 100%); z-index: -1; }
.final-cta-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.final-cta h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 5vw, 68px); line-height: 1.0; letter-spacing: -0.03em; color: var(--crystal-mist); }
.final-cta p { font-size: 18px; color: rgba(235,255,253,0.78); margin: var(--s-5) 0 var(--s-7); }
.final-cta-ctas { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }
.final-cta-fineprint { margin-top: var(--s-6); font-size: 12.5px; color: rgba(235,255,253,0.6); letter-spacing: 0.03em; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--deep-slate); color: var(--crystal-mist); padding: var(--s-10) 0 var(--s-7); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-7); }
.footer-brand .nav-mark { color: var(--crystal-mist); font-size: 26px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--brilliant-aqua); font-size: 16px; margin: var(--s-3) 0 var(--s-5); }
.footer-contact { display: flex; flex-direction: column; gap: var(--s-2); color: rgba(235,255,253,0.78); font-size: 14px; }
.footer-col h4 { font-family: var(--font-ui); font-weight: 600; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brilliant-aqua); margin-bottom: var(--s-4); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col ul a { color: rgba(235,255,253,0.78); font-size: 14px; transition: color .15s ease; }
.footer-col ul a:hover { color: var(--brilliant-aqua); }
.footer-legal { margin-top: var(--s-9); padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-4); font-size: 12.5px; color: rgba(235,255,253,0.55); }
.footer-legal ul { display: flex; gap: var(--s-5); list-style: none; padding: 0; margin: 0; }
.footer-legal ul a:hover { color: var(--brilliant-aqua); }

/* ============================================================
   BOOKING WIDGET (existing — preserved class contracts)
   ============================================================ */
.booking-widget { background: var(--spotless-white); border: 1px solid var(--slate-06); border-top: 4px solid var(--brilliant-aqua); border-radius: var(--r-lg); padding: var(--s-7); box-shadow: var(--sh-card); width: 100%; max-width: 460px; }
.widget-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aqua-deep); margin-bottom: var(--s-2); }
.widget-headline { font-family: var(--font-display); font-weight: 500; font-size: 28px; letter-spacing: -0.02em; color: var(--deep-slate); margin: 0 0 var(--s-2); }
.widget-sub { font-size: 13.5px; color: var(--signature-teal); margin-bottom: var(--s-5); }
.widget-helper-line { font-size: 12px; color: var(--slate-60); text-align: center; margin-top: var(--s-4); }

.booking-stepper { display: flex; gap: 6px; margin-bottom: var(--s-5); }
.stepper-dot { flex: 1; height: 4px; border-radius: 2px; background: var(--slate-06); transition: background .2s ease; }
.stepper-dot.active { background: var(--brilliant-aqua); }
.stepper-dot.complete { background: var(--aqua-deep); }

.step-title { font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: -0.01em; color: var(--deep-slate); margin: 0 0 var(--s-2); }
.step-helper { font-size: 13.5px; color: var(--slate-60); margin-bottom: var(--s-5); }

.option-card { display: block; padding: var(--s-4) var(--s-5); border: 1px solid var(--slate-12); border-radius: var(--r-md); margin-bottom: var(--s-3); cursor: pointer; transition: border-color .15s ease, background .15s ease; position: relative; }
.option-card:hover { border-color: var(--brilliant-aqua); }
.option-card.selected { border-color: var(--brilliant-aqua); background: var(--crystal-mist); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-name { font-weight: 600; color: var(--deep-slate); display: flex; gap: var(--s-2); align-items: center; }
.option-meta { font-size: 13px; color: var(--slate-60); margin-top: 2px; }
.option-badge { display: inline-block; padding: 2px 8px; background: var(--brilliant-aqua); color: var(--deep-slate); border-radius: var(--r-pill); font-size: 10px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

.step-actions { display: flex; gap: var(--s-3); margin-top: var(--s-5); }
.step-actions .btn--ghost { flex: 0 0 auto; }
.step-actions .btn--primary { flex: 1; }

.field { margin-bottom: var(--s-4); }
.field-label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--slate-60); text-transform: uppercase; margin-bottom: 6px; }
.field-input { width: 100%; height: 46px; padding: 0 var(--s-4); border: 1px solid var(--slate-12); border-radius: var(--r-sm); background: var(--spotless-white); font-family: var(--font-ui); font-size: 15px; color: var(--deep-slate); transition: border-color .15s ease, box-shadow .15s ease; }
.field-input:focus { outline: none; border-color: var(--brilliant-aqua); box-shadow: 0 0 0 4px rgba(48,213,200,0.15); }
.field-help { font-size: 12.5px; color: var(--signature-teal); margin-top: 4px; padding: 10px 12px; background: var(--crystal-mist); border-radius: var(--r-sm); }

.pill-row { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { padding: 8px 14px; border: 1px solid var(--slate-12); background: var(--spotless-white); border-radius: var(--r-pill); font-size: 13px; font-weight: 500; color: var(--deep-slate); transition: border-color .15s ease, background .15s ease, color .15s ease; }
.pill:hover { border-color: var(--brilliant-aqua); }
.pill.is-selected { background: var(--deep-slate); border-color: var(--deep-slate); color: var(--crystal-mist); }

.price-chip { margin-top: var(--s-4); padding: var(--s-3) var(--s-4); background: var(--deep-slate); color: var(--crystal-mist); border-radius: var(--r-md); display: flex; justify-content: space-between; align-items: center; }
.price-chip-label { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(235,255,253,0.65); }
.price-chip-amount { font-family: var(--font-display); font-weight: 500; font-size: 24px; color: var(--brilliant-aqua); letter-spacing: -0.01em; }

.addon-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-4); }
.addon-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border: 1px solid var(--slate-12); border-radius: var(--r-sm); cursor: pointer; }
.addon-row.is-selected { border-color: var(--brilliant-aqua); background: var(--crystal-mist); }
.addon-name { font-size: 14px; color: var(--deep-slate); }
.addon-price { font-weight: 600; color: var(--deep-slate); }

.summary-card { background: var(--crystal-mist); border-radius: var(--r-sm); padding: var(--s-4); font-size: 13.5px; color: var(--deep-slate); margin-bottom: var(--s-4); }
.summary-row { display: flex; justify-content: space-between; gap: var(--s-3); padding: 4px 0; }
.summary-row.total { border-top: 1px solid var(--slate-12); margin-top: var(--s-2); padding-top: var(--s-3); font-weight: 700; font-size: 16px; }

.pay-tile { width: 100%; text-align: left; background: var(--spotless-white); border: 1px solid var(--slate-12); border-radius: var(--r-md); padding: var(--s-4) var(--s-5); margin-bottom: var(--s-3); transition: border-color .15s ease, background .15s ease; }
.pay-tile.selected { border-color: var(--brilliant-aqua); background: var(--crystal-mist); }
.pay-tile-title { font-weight: 600; color: var(--deep-slate); }
.pay-tile-sub { font-size: 13px; color: var(--slate-60); margin-top: 2px; }
.fine-print { font-size: 11.5px; color: var(--slate-60); text-align: center; margin-top: var(--s-3); }

.confirm-card { text-align: center; padding: var(--s-5) 0; }
.confirm-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--brilliant-aqua); color: var(--deep-slate); display: grid; place-items: center; margin: 0 auto var(--s-5); }
.confirm-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 24px; margin-bottom: var(--s-4); }

/* ============================================================
   Mobile drawer
   ============================================================ */
.mobile-drawer { position: fixed; inset: 0; z-index: 60; background: var(--deep-slate); color: var(--crystal-mist); transform: translateY(-100%); transition: transform .3s ease; display: flex; flex-direction: column; padding: var(--nav-h) var(--s-6) var(--s-6); }
.mobile-drawer.is-open { transform: none; }
.mobile-drawer a { padding: var(--s-4) 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-family: var(--font-display); font-size: 24px; color: var(--crystal-mist); }
.mobile-drawer .btn { margin-top: var(--s-5); }
.mobile-close { position: absolute; top: 18px; right: 18px; background: transparent; border: 0; color: var(--crystal-mist); padding: 8px; }
.mobile-close svg { width: 24px; height: 24px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .nav-pill { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-toggle { display: inline-flex; }
  /* Phone CTA collapses to icon-only on mobile — tap-to-call stays visible */
  .nav-phone { padding: 0; width: 40px; height: 40px; justify-content: center; gap: 0; font-size: 0; }
  .nav-phone svg { width: 18px; height: 18px; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero--immersive { min-height: auto; padding: var(--s-9) 0; }
  .hero-booking { max-width: 100%; }
  .trust-pill { grid-template-columns: repeat(2, 1fr); }
  .trust-tile + .trust-tile { border-left: 0; padding-left: var(--s-3); }
  .service-rail { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .moment-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .moment-band { flex-direction: column; align-items: flex-start; }
  .booking-widget { max-width: 100%; }
}
@media (max-width: 720px) {
  :root { --s-12: 72px; --s-11: 56px; --s-10: 48px; --s-9: 36px; --nav-h: 64px; }
  /* Hero — tighter at small widths to stop "REIMAGINED." crowding */
  .hero { padding: var(--s-7) 0 var(--s-7); }
  .hero--immersive { padding: var(--s-8) 0; }
  .hero-headline { font-size: clamp(40px, 10.5vw, 64px); letter-spacing: -0.045em; }
  .hero-accent { font-size: 22px; margin: var(--s-3) 0 var(--s-5); }
  .hero-sub { font-size: 16px; margin-bottom: var(--s-6); }
  /* Tighter booking widget when stacked under copy on mobile */
  .hero-booking { padding: var(--s-5); }
  /* CTAs stack vertically full-width — Robert spec */
  .hero-ctas { flex-direction: column; gap: var(--s-3); }
  .hero-ctas .btn { width: 100%; }
  .final-cta-ctas { flex-direction: column; }
  .final-cta-ctas .btn { width: 100%; }
  /* Section type scales */
  .section-headline { font-size: clamp(32px, 8.5vw, 52px); line-height: 1.05; }
  .section-sub { font-size: 16px; }
  .section { padding: var(--s-10) 0; }
  .section-header { margin-bottom: var(--s-7); }
  /* Trust strip — stack to single column for legibility */
  .trust-strip { padding: var(--s-6) 0 var(--s-8); }
  .trust-pill { grid-template-columns: 1fr 1fr; padding: var(--s-4); gap: var(--s-3); border-radius: 24px; }
  .trust-tile { padding: var(--s-2); gap: var(--s-2); }
  .trust-tile + .trust-tile { padding-left: var(--s-2); }
  .trust-tile-title { font-size: 14px; }
  .trust-tile-sub { font-size: 11px; }
  .trust-tile-icon { width: 32px; height: 32px; }
  .trust-tile-icon svg { width: 15px; height: 15px; }
  /* Service rail single col */
  .service-rail { grid-template-columns: 1fr; gap: var(--s-4); }
  .service-tile h3 { font-size: 22px; }
  /* Touch-point dots — labels removed to declutter; bigger visual + 44x44 hit area */
  .room-stage { aspect-ratio: 4 / 5; border-radius: var(--r-md); }
  .touch-label { display: none; }
  .touch-dot { width: 20px; height: 20px; border-width: 3px; }
  .touch-dot::before { inset: -12px; }
  .rooms-tabs { width: 100%; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  .rooms-tab { padding: 10px 16px; font-size: 13px; flex: 0 0 auto; }
  /* Before/after slider — slightly tighter handle for thumbs */
  .ba-frame { aspect-ratio: 4 / 5; }
  .ba-handle { width: 48px; height: 48px; }
  .ba-tag { font-size: 10px; padding: 3px 8px; }
  /* Mavrik moment + lifestyle */
  .moment-band { padding: var(--s-6); gap: var(--s-5); }
  .moment-band-text { font-size: 17px; }
  .lifestyle { gap: var(--s-7); }
  .lifestyle-photo { aspect-ratio: 4 / 5; }
  /* Team grid — keep at 2 cols per Robert spec */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
  .team-name { font-size: 17px; }
  .team-role { font-size: 11.5px; }
  .team-meta { bottom: var(--s-3); left: var(--s-3); right: var(--s-3); }
  /* FAQ — tighter padding */
  .faq-summary { padding: var(--s-4) var(--s-5); font-size: 16px; }
  .faq-item p { padding: 0 var(--s-5) var(--s-4); font-size: 14px; }
  /* Booking widget — full-bleed feel */
  .booking-widget { padding: var(--s-5); border-radius: var(--r-md); }
  .widget-headline { font-size: 22px; }
  .step-title { font-size: 19px; }
  .step-actions { flex-wrap: wrap; }
  .step-actions .btn--ghost { flex: 1 0 auto; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .footer-legal { flex-direction: column; gap: var(--s-3); }
  .footer-legal ul { flex-wrap: wrap; gap: var(--s-4); }
  /* Nav */
  .nav-mark { font-size: 19px; }
  .site-nav { padding: 0 var(--s-4); }
  .nav-right { gap: var(--s-2); }
  .container { padding: 0 var(--s-4); }
  /* Mobile drawer — full-screen luxe */
  .mobile-drawer { padding: calc(var(--nav-h) + var(--s-4)) var(--s-5) var(--s-6); }
  .mobile-drawer a { font-size: 22px; padding: var(--s-3) 0; }
  /* Final CTA */
  .final-cta { padding: var(--s-10) 0; }
  .final-cta h2 { font-size: clamp(32px, 9vw, 52px); }
  .final-cta p { font-size: 16px; }
}
@media (max-width: 420px) {
  .hero-headline { font-size: clamp(36px, 10vw, 48px); letter-spacing: -0.05em; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 0.06em; }
  .trust-pill { grid-template-columns: 1fr; }
  .nav-phone { width: 36px; height: 36px; }
  .nav-phone svg { width: 16px; height: 16px; }
}
