/* ==========================================================================
   Studio MadGrace — site styles
   Built on assets/colors_and_type.css tokens (DS: Studio MadGrace).
   Luxe & chic interpretation: editorial type, full-bleed imagery,
   transparent→solid nav, hairline detailing, soft reveals.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* tame tap flashes on touch devices; keep focus-visible outlines intact */
a, button, .btn, .btn-label, .nav__link, .nav__cta, .hs__dot, .acc__trig { -webkit-tap-highlight-color: transparent; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--text-regular);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--text-h1); line-height: var(--leading-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }
h5 { font-size: var(--text-h5); }
h6 { font-size: var(--text-h6); }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--color-elephant); color: #fff; }

.ms {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1em; height: 1em; line-height: 1; flex: none;
  font-size: 24px; /* default glyph size, overridden per context */
  vertical-align: middle; user-select: none;
}
.ms-svg { width: 1em; height: 1em; display: block; }

/* ---- Layout primitives -------------------------------------------------- */
.section { padding: var(--space-section-y) var(--space-edge); position: relative; }
.section--sm { padding: var(--space-section-y-sm) var(--space-edge); }
.section--flush-top { padding-top: 0; }
.container { max-width: var(--container-max); margin-inline: auto; }
.container--narrow { max-width: 52rem; }
.scheme-1 { background: var(--color-white); }
.scheme-2 { background: var(--color-elephant-lightest); }
.scheme-3 { background: var(--color-neutral-lightest); }
.scheme-ink { background: var(--color-neutral-darkest); color: var(--color-white); }
.scheme-green { background: var(--color-elephant); color: var(--color-white); }

/* ---- Eyebrow / kicker --------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-small);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}
.eyebrow.is-centered { justify-content: center; }
.scheme-ink .eyebrow, .scheme-green .eyebrow { color: var(--color-bali-hai-light); }

.lede {
  font-size: var(--text-large);
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 400;
}
.scheme-ink .lede, .scheme-green .lede { color: rgba(255,255,255,0.78); }
.body-muted { color: var(--fg-muted); }

.center-intro { max-width: 50rem; margin: 0 auto 4.5rem; text-align: center; }
.center-intro h2 { margin-bottom: 1.5rem; }
.center-intro .lede { margin-inline: auto; }

/* ---- Buttons (pill, flat green, sliding arrow) -------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body); font-weight: 500; font-size: var(--text-small);
  letter-spacing: 0.02em;
  padding: 0.95rem 1.6rem; border: 1px solid transparent; cursor: pointer;
  white-space: nowrap; transition: background var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
  text-decoration: none;
}
.btn .ms { font-size: 1.15em; }
.btn--primary { background: var(--color-elephant); color: var(--on-accent); }
.btn--primary:hover { background: var(--color-elephant-dark); }
.btn--secondary { background: transparent; border-color: var(--border); color: var(--fg); }
.btn--secondary:hover { background: var(--color-ink-5); border-color: var(--color-ink-20); }
.btn--ghost-light { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.55); color: #fff; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.20); }
.btn--link { background: none; border: none; padding: 0.35rem 0; border-radius: 0; color: var(--fg); gap: 0.45rem; }
.btn--link:hover { color: var(--accent); gap: 0.7rem; }
.btn--lg { padding: 1.1rem 2rem; font-size: var(--text-medium); }

/* sliding arrow on the main CTA buttons */
.btn--primary::after, .btn--secondary::after, .btn--ghost-light::after {
  content: ""; width: 1.05em; height: 1.05em; flex: none; margin-right: -0.15em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h13M12 6l6 6-6 6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h13M12 6l6 6-6 6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--dur-med) var(--ease-standard);
}
.btn--primary:hover::after, .btn--secondary:hover::after, .btn--ghost-light:hover::after { transform: translateX(5px); }
.btn--bare::after { content: none; display: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-row.is-centered { justify-content: center; }

/* ---- Inputs ------------------------------------------------------------- */
.input {
  font-family: var(--font-body); font-size: 1rem; color: var(--fg);
  padding: 0.85rem 1.1rem; border: 1px solid var(--border); border-radius: var(--radius-button);
  background: #fff; outline: none; width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.input::placeholder { color: var(--fg-subtle); }
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--color-elephant-lightest); }
textarea.input { resize: vertical; min-height: 130px; }
.field-label { display: block; font-size: var(--text-small); font-weight: 600; margin-bottom: 0.5rem; }
.inline-form { display: grid; grid-template-columns: 1fr max-content; gap: 0.75rem; max-width: 26rem; }
.fineprint { font-size: var(--text-tiny); color: var(--fg-subtle); line-height: 1.5; }

/* ======================================================================== */
/*  NAVBAR — floating-pill (The Stay style)                                  */
/* ======================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; justify-content: center;
  padding: 0; pointer-events: none;
}
/* DEFAULT = floating pill (inset, rounded, frosted) */
.nav__bar {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
  width: 100%; max-width: var(--container-max);
  margin: 0.85rem auto 0; padding: 0.7rem 0.7rem 0.7rem 1.6rem;
  color: #fff;
  background: rgba(18,11,9,0.42);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-full);
  box-shadow: 0 14px 44px rgba(0,0,0,0.22);
  transition: max-width var(--dur-slow) var(--ease-standard),
              margin var(--dur-slow) var(--ease-standard),
              padding var(--dur-slow) var(--ease-standard),
              background var(--dur-med) var(--ease-standard),
              border-color var(--dur-med) var(--ease-standard),
              border-radius var(--dur-slow) var(--ease-standard),
              box-shadow var(--dur-med) var(--ease-standard);
}
/* SCROLLED = full-width bar (flat, pinned, stays after) */
.nav.is-scrolled .nav__bar {
  max-width: 100% !important;
  margin-top: 0 !important;
  padding: 0.95rem var(--space-edge);
  background: rgba(13,8,7,0.72);
  border-color: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-radius: 0 !important;
  box-shadow: 0 10px 34px rgba(0,0,0,0.18);
}
.nav__brand {
  font-family: var(--font-heading); font-weight: 600; font-size: 1.02rem;
  letter-spacing: 0.22em; text-transform: uppercase; white-space: nowrap; color: #fff;
  display: inline-flex; align-items: center; transition: letter-spacing var(--dur-slow) var(--ease-standard);
}
.nav__links { display: flex; align-items: center; gap: 0.15rem; }
.nav__link {
  padding: 0.45rem 0.75rem; font-size: var(--text-small); border-radius: var(--radius-full);
  cursor: pointer; color: #fff; opacity: 0.82; white-space: nowrap;
  transition: opacity var(--dur-fast), background var(--dur-fast);
}
.nav__link:hover { opacity: 1; }
.nav__link.is-active { opacity: 1; font-weight: 600; }
.nav__actions { display: flex; gap: 0.7rem; align-items: center; }
.nav__cta {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
  padding: 0.85rem 1.5rem; border-radius: var(--radius-full); cursor: pointer;
  color: #fff; background: var(--color-elephant); border: 1px solid var(--color-elephant);
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.nav__cta:hover { background: var(--color-elephant-dark); border-color: var(--color-elephant-dark); }
.nav__burger { display: none; background: none; border: none; cursor: pointer; color: #fff; padding: 6px; margin: -6px; }
.nav__burger .ms { font-size: 30px; }

@media (max-width: 991px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__bar { padding: 0.85rem 0.9rem 0.85rem 1.4rem; max-width: calc(100% - 1.5rem); }
  .nav.is-scrolled .nav__bar, .nav--open .nav__bar {
    margin-top: 0; max-width: 100%;
    padding: 0.85rem var(--space-edge);
    background: rgba(13,8,7,0.82); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border-color: transparent; border-bottom: 1px solid rgba(255,255,255,0.12); border-radius: 0;
  }
  .nav--open .nav__bar { flex-wrap: wrap; }
  .nav--open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.1rem;
    order: 3; width: 100%; padding-top: 0.6rem; margin-top: 0.4rem;
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .nav--open .nav__link { padding: 0.7rem 0.2rem; font-size: var(--text-medium); width: 100%; }
  .nav--open .nav__actions { display: flex; order: 4; width: 100%; padding-top: 0.6rem; }
  .nav--open .nav__cta { width: 100%; padding-top: 1rem; padding-bottom: 1rem; }
  .nav--open .nav__links { max-height: calc(100dvh - 180px); overflow-y: auto; }
  .nav--open .nav__mobile-cta { display: flex; }
  .nav__burger { order: 2; }
}

/* ======================================================================== */
/*  HERO — sticky, centered, serif display (The Stay style)                 */
/* ======================================================================== */
.hero-wrap { position: relative; z-index: 0; height: 100svh; }
.hero {
  position: sticky; top: 0; height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 6rem var(--space-edge) 5rem; color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; will-change: transform; transform-origin: center; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 38%, rgba(6,2,3,0.20) 0%, rgba(6,2,3,0.42) 55%, rgba(6,2,3,0.66) 100%);
}
.hero__inner {
  position: relative; z-index: 1; width: 100%; max-width: 60rem; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; will-change: transform, opacity;
}
.hero__rating {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 1.1rem 0.4rem 0.45rem; margin-bottom: 2rem;
  border-radius: var(--radius-full); background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.26);
  font-size: var(--text-small); color: #fff;
}
.hero__rating .avatar-img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex: none; border: 1px solid rgba(255,255,255,0.4); }
.hero__rating .stars { color: #e3b986; letter-spacing: 2px; font-size: 0.92em; }
.hero__rating b { font-weight: 700; }
.hero__rating .muted { color: rgba(255,255,255,0.72); }
.hero-display {
  font-family: var(--font-display);
  font-weight: 500; font-size: clamp(2.7rem, 6.2vw, 5.5rem); line-height: 1.06;
  letter-spacing: -0.01em; width: 100%; max-width: none; text-shadow: 0 2px 40px rgba(0,0,0,0.32);
}
.hero-display em { font-style: italic; font-weight: 500; color: var(--color-careys-pink-light); }
.hero__sub {
  width: 100%; max-width: 46ch; margin-top: 1.8rem; font-size: var(--text-large);
  color: rgba(255,255,255,0.86); line-height: 1.5;
}
.hero__cta { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; align-items: center; justify-content: center; }

/* uppercase "label" CTAs used in the hero */
.btn-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap;
  cursor: pointer; border: none; background: none; text-decoration: none;
}
.btn-label--fill {
  color: #fff; background: var(--color-elephant); border-radius: var(--radius-full);
  padding: 1.15rem 2.2rem; transition: background var(--dur-fast) var(--ease-standard);
}
.btn-label--fill:hover { background: var(--color-elephant-dark); }
.btn-label--link { color: #fff; padding: 0.4rem 0; position: relative; }
.btn-label--link span.txt { position: relative; }
.btn-label--link span.txt::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 1px;
  background: rgba(255,255,255,0.55); transform-origin: left; transition: transform var(--dur-med) var(--ease-standard);
}
.btn-label--link .arr { transition: transform var(--dur-med) var(--ease-standard); }
.btn-label--link:hover .arr { transform: translateX(5px); }

/* ---- Page flow: rounded "curtain" that slides up over the sticky hero --- */
.page-flow {
  position: relative; z-index: 2; background: var(--bg);
  border-radius: 2rem 2rem 0 0; margin-top: -2rem;
  box-shadow: 0 -28px 60px rgba(6,2,3,0.22);
  overflow: hidden;
}
.page-flow > .section:first-child { padding-top: calc(var(--space-section-y) + 1rem); }

:root { --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif; --dur-slow: 480ms; }

/* wordmark (used in footer) */
.wordmark {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.18rem;
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; color: inherit;
  display: inline-flex; align-items: baseline; gap: 0.4em;
}
.wordmark .light { font-weight: 400; letter-spacing: 0.18em; opacity: 0.85; font-size: 0.82em; }

/* compact page hero (interior pages) */
.pagehero {
  position: relative; min-height: 64svh; display: flex; align-items: flex-end;
  padding: 6.5rem var(--space-edge) clamp(2.5rem, 6vh, 4.5rem); color: #fff; overflow: hidden;
}
.pagehero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: no-preference) {
  .pagehero__media img {
    transform-origin: 50% 38%;
    animation: ph-kenburns 9s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}
@keyframes ph-kenburns { from { transform: scale(1.14); } to { transform: scale(1); } }
.pagehero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,2,3,0.78), rgba(6,2,3,0.18) 60%, rgba(6,2,3,0.34)); }
.pagehero__inner { position: relative; z-index: 1; width: 100%; max-width: var(--container-max); margin-inline: auto; }
.pagehero h1 { font-size: clamp(2.4rem, 5.5vw, 4.25rem); line-height: 1.05; max-width: 18ch; }
.pagehero__sub { max-width: 46ch; margin-top: 1.2rem; font-size: var(--text-medium); color: rgba(255,255,255,0.85); }
.breadcrumb { display: flex; gap: 0.5rem; font-size: var(--text-small); color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; }
.breadcrumb a { position: relative; }
.breadcrumb a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%;
  background: #fff; transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-med) var(--ease-standard);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb a:hover::after { transform: scaleX(1); }

/* ======================================================================== */
/*  SPLIT / EDITORIAL BLOCKS                                                 */
/* ======================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; border-radius: var(--radius-image); aspect-ratio: 4/5; object-fit: cover; }
.split__media.is-wide img { aspect-ratio: 4/3; }
.split__body h2 { margin-bottom: 1.4rem; }
.split__body .lede { margin-bottom: 1.6rem; }
.split__list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1rem; }
.split__list li { display: grid; grid-template-columns: max-content 1fr; gap: 0.9rem; align-items: start; font-size: var(--text-regular); }
.split__list .ms { font-size: 24px; color: var(--accent); margin-top: 2px; }

/* figure with caption */
.figure { position: relative; border-radius: var(--radius-image); overflow: hidden; }
.figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-standard); }
.figure:hover img { transform: scale(1.05); }

/* ======================================================================== */
/*  FEATURE GRID                                                            */
/* ======================================================================== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
.feat { display: flex; flex-direction: column; gap: 1rem; }
.feat.is-centered { align-items: center; text-align: center; }
.feat__icon {
  width: 60px; height: 60px; border-radius: var(--radius-card);
  display: grid; place-items: center; background: var(--color-elephant-lightest); color: var(--accent);
  margin-bottom: 0.4rem;
}
.feat__icon .ms { font-size: 30px; }
.scheme-ink .feat__icon, .scheme-green .feat__icon { background: rgba(255,255,255,0.1); color: var(--color-bali-hai-light); }
.feat h3 { font-size: var(--text-h5); }
.feat p { color: var(--fg-muted); font-size: var(--text-regular); }
.scheme-ink .feat p, .scheme-green .feat p { color: rgba(255,255,255,0.72); }

/* stat / number rows */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { border-top: 1px solid var(--border); padding-top: 1.4rem; }
.scheme-ink .stat, .scheme-green .stat { border-top-color: rgba(255,255,255,0.2); }
.stat__num { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-h3); color: var(--accent); line-height: 1; }
.scheme-ink .stat__num, .scheme-green .stat__num { color: var(--color-bali-hai-light); }
.stat__label { margin-top: 0.6rem; font-size: var(--text-small); color: var(--fg-muted); }
.scheme-ink .stat__label { color: rgba(255,255,255,0.7); }

/* ======================================================================== */
/*  CARDS                                                                   */
/* ======================================================================== */
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--dur-med) var(--ease-standard), transform var(--dur-med) var(--ease-standard);
}
.card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.card__media { overflow: hidden; aspect-ratio: 3/2; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-standard); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.8rem; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.card__kicker { font-size: var(--text-tiny); letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.card__body h3 { font-size: var(--text-h5); }
.card__body p { color: var(--fg-muted); font-size: var(--text-small); flex: 1; }
.card__foot { margin-top: 0.4rem; }

/* business cards (rich) */
.biz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.biz {
  display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-card); overflow: hidden; min-height: 320px;
  transition: box-shadow var(--dur-med) var(--ease-standard);
}
.biz:hover { box-shadow: var(--shadow-card); }
.biz__media { overflow: hidden; }
.biz__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-standard); }
.biz:hover .biz__media img { transform: scale(1.05); }
.biz__body { padding: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.biz__tag { font-size: var(--text-tiny); letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.biz__body h3 { font-size: var(--text-h4); }
.biz__body p { color: var(--fg-muted); font-size: var(--text-small); }
.biz__list { list-style: none; padding: 0; margin: 0.4rem 0 0; display: grid; gap: 0.45rem; }
.biz__list li { display: flex; gap: 0.55rem; align-items: center; font-size: var(--text-small); color: var(--fg-muted); }
.biz__list .ms { font-size: 18px; color: var(--accent); }
.biz__foot { margin-top: auto; padding-top: 0.6rem; }

/* ======================================================================== */
/*  GALLERY + LIGHTBOX                                                       */
/* ======================================================================== */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 13rem; gap: 1rem;
}
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius-image); cursor: pointer; background: var(--bg-tint); }
.gallery__item::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(6,2,3,0.34), transparent 55%); opacity: 0; transition: opacity var(--dur-med) var(--ease-standard); }
.gallery__item:hover::before { opacity: 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-standard); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: "+"; font-family: var(--font-heading); font-weight: 400; font-size: 26px; line-height: 1; z-index: 2;
  position: absolute; top: 0.9rem; right: 0.9rem; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--fg); display: grid; place-items: center;
  opacity: 0; transform: scale(0.7); transition: all var(--dur-fast) var(--ease-standard);
}
.gallery__item:hover::after { opacity: 1; transform: scale(1); }
/* spans */
.g-c2 { grid-column: span 2; } .g-c3 { grid-column: span 3; } .g-c4 { grid-column: span 4; }
.g-c5 { grid-column: span 5; } .g-c6 { grid-column: span 6; } .g-c7 { grid-column: span 7; } .g-c8 { grid-column: span 8; }
.g-r2 { grid-row: span 2; }

.lightbox {
  position: fixed; inset: 0; z-index: 3000; background: rgba(6,2,3,0.92);
  display: none; align-items: center; justify-content: center; padding: 4vh 4vw;
  opacity: 0; transition: opacity var(--dur-med) var(--ease-standard);
}
.lightbox.is-open { display: flex; opacity: 1; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-image); box-shadow: 0 20px 80px rgba(0,0,0,0.5); transition: opacity 0.35s var(--ease-standard); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background var(--dur-fast);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__close { top: 4vh; right: 4vw; }
.lightbox__close .ms { font-size: 26px; }
.lightbox__nav .ms { font-size: 30px; }
.lightbox__nav.prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 4vh; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.75); font-size: var(--text-small); letter-spacing: 0.1em; }

/* ======================================================================== */
/*  WELLNESS feature band                                                    */
/* ======================================================================== */
.wellness-band { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.wellness-band__media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; aspect-ratio: 1/1; }
.wellness-band__media .figure:first-child { grid-row: span 2; }

/* ======================================================================== */
/*  TESTIMONIALS — marquee                                                   */
/* ======================================================================== */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 1.5rem; width: max-content; animation: scroll-x 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.tcard {
  width: 26rem; flex: none; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 2rem; display: flex; flex-direction: column; gap: 1.1rem;
  transition: box-shadow var(--dur-med) var(--ease-standard), transform var(--dur-med) var(--ease-standard);
}
.tcard:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.tcard .stars { color: var(--color-fuzzy-wuzzy-brown); letter-spacing: 3px; font-size: 0.95rem; }
.tcard .quote { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-h6); line-height: 1.35; }
.tcard .who { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--color-elephant); color: #fff; display: grid; place-items: center; font-family: var(--font-heading); font-weight: 700; font-size: 16px; flex: none; }
.tcard .who b { display: block; font-weight: 600; font-size: var(--text-small); }
.tcard .who span { font-size: var(--text-tiny); color: var(--fg-subtle); }

/* ======================================================================== */
/*  BOOKING embed placeholder                                                */
/* ======================================================================== */
.embed-slot {
  width: 100%; min-height: 700px; border: 1px dashed var(--border); border-radius: var(--radius-card);
  background: var(--bg-tint);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  color: var(--fg-subtle); text-align: center; padding: 2.5rem;
}
.embed-slot .ms { font-size: 46px; color: var(--accent); }
.embed-slot b { color: var(--fg); font-family: var(--font-heading); font-size: var(--text-h5); }
.embed-slot span { font-size: var(--text-small); max-width: 38ch; }
.embed-slot code { font-family: ui-monospace, monospace; font-size: var(--text-tiny); color: var(--fg-subtle); background: #fff; border: 1px solid var(--border); padding: 0.2rem 0.5rem; border-radius: 6px; }
.embed-slot--map { min-height: 440px; }
.map-frame { width: 100%; height: 460px; border: 0; display: block; }
.map-wrap { border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border); }

/* ======================================================================== */
/*  BOOKING modal (overlay with Booka iframe)                                */
/* ======================================================================== */
.bookmodal {
  position: fixed; inset: 0; z-index: 3500; display: none;
  align-items: center; justify-content: center; padding: clamp(0.75rem, 2.5vh, 1.75rem) clamp(0.75rem, 2.5vw, 1.75rem);
  background: rgba(6,2,3,0.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity var(--dur-med) var(--ease-standard);
}
.bookmodal.is-open { display: flex; opacity: 1; }
.bookmodal__dialog {
  position: relative; width: 100%; max-width: 1100px; height: 96vh; max-height: 96vh;
  background: var(--color-white); border-radius: var(--radius-card); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
  transform: translateY(18px) scale(0.985); transition: transform var(--dur-med) var(--ease-standard);
}
.bookmodal.is-open .bookmodal__dialog { transform: none; }
.bookmodal__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.25rem 1.15rem 1.6rem; border-bottom: 1px solid var(--border); flex: none;
}
.bookmodal__title { display: flex; flex-direction: column; gap: 0.15rem; }
.bookmodal__title .eyebrow { margin: 0 0 0.1rem; font-size: var(--text-tiny); }
.bookmodal__title b { font-family: var(--font-heading); font-weight: 700; font-size: var(--text-h6); color: var(--fg); letter-spacing: 0.01em; }
.bookmodal__close {
  width: 44px; height: 44px; flex: none; border-radius: 50%; cursor: pointer;
  background: var(--color-ink-5); border: 1px solid var(--border); color: var(--fg);
  display: grid; place-items: center; transition: background var(--dur-fast);
}
.bookmodal__close:hover { background: var(--color-ink-10); }
.bookmodal__close .ms { font-size: 22px; }
.bookmodal__body { position: relative; flex: 1; min-height: 0; background: var(--bg-tint); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.bookmodal__body iframe { display: block; width: 100%; min-height: 600px; border: none; }
.bookmodal__loading {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.9rem;
  color: var(--fg-subtle); pointer-events: none; transition: opacity var(--dur-med);
}
.bookmodal__loading.is-hidden { opacity: 0; }
.bookmodal__spinner { width: 34px; height: 34px; border-radius: 50%; border: 3px solid var(--color-ink-10); border-top-color: var(--accent); animation: bm-spin 0.8s linear infinite; }
@keyframes bm-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .bookmodal__spinner { animation-duration: 2s; } }

/* compact "open overlay" booking band that replaces the inline embed */
.bookcta { display: grid; place-items: center; text-align: center; gap: 1.4rem;
  border: 1px solid var(--border); border-radius: var(--radius-card); background: var(--color-white);
  padding: clamp(2.5rem, 5vw, 4rem); }
.bookcta__row { display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; justify-content: center; }
.bookcta__fact { display: flex; align-items: center; gap: 0.6rem; font-size: var(--text-small); color: var(--fg-muted); }
.bookcta__fact .ms { font-size: 20px; color: var(--accent); }

/* ======================================================================== */
/*  FAQ accordion                                                            */
/* ======================================================================== */
.faq__grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: clamp(2.5rem,5vw,5rem); }
.acc__item { border-bottom: 1px solid var(--border); }
.acc__item:first-child { border-top: 1px solid var(--border); }
.acc__trig {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: none; cursor: pointer; padding: 1.4rem 0;
  font-family: var(--font-heading); font-size: var(--text-h6); font-weight: 700; color: var(--fg);
  text-align: left; gap: 1rem; letter-spacing: 0.01em;
}
.acc__trig .ms { transition: transform var(--dur-fast) var(--ease-standard); flex: none; color: var(--accent); }
.acc__item--open .acc__trig .ms { transform: rotate(180deg); }
.acc__body { overflow: hidden; max-height: 0; transition: max-height var(--dur-med) var(--ease-standard); }
.acc__item--open .acc__body { max-height: 320px; }
.acc__body p { color: var(--fg-muted); font-size: var(--text-regular); padding-bottom: 1.5rem; max-width: 60ch; }

/* ======================================================================== */
/*  NEWSLETTER                                                               */
/* ======================================================================== */
.news { text-align: center; }
.news h2 { font-size: clamp(2.6rem, 6vw, var(--text-h1)); line-height: var(--leading-h1); }
.news .inline-form { margin: 2rem auto 1rem; }

/* ======================================================================== */
/*  CTA band                                                                 */
/* ======================================================================== */
.cta-band { position: relative; border-radius: var(--radius-card); overflow: hidden; padding: clamp(3rem,6vw,5.5rem); color: #fff; }
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(15,67,61,0.92) 0%, rgba(6,26,24,0.78) 60%, rgba(6,2,3,0.55) 100%); }
.cta-band__inner { position: relative; z-index: 1; max-width: 46rem; }
.cta-band h2 { margin-bottom: 1.2rem; }
.cta-band .lede { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }

/* ======================================================================== */
/*  FOOTER                                                                   */
/* ======================================================================== */
.footer { background: var(--color-neutral-darkest); color: rgba(255,255,255,0.8); padding: clamp(4rem,7vw,6rem) var(--space-edge) 2.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3.5rem; }
.footer__brand .footer__logo { display: inline-flex; margin-bottom: 1rem; }
.footer__brand .footer__logo img { width: 56px; height: 56px; display: block; }
.footer__brand .wordmark { color: #fff; font-size: 1.3rem; margin-bottom: 1.2rem; }
.footer__brand .wordmark .light { color: rgba(255,255,255,0.7); }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: var(--text-small); max-width: 30ch; }
.footer__col h4 { font-family: var(--font-body); font-weight: 600; font-size: var(--text-small); letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-bali-hai-light); margin-bottom: 1.2rem; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.footer__col a, .footer__col li { color: rgba(255,255,255,0.7); font-size: var(--text-small); }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: grid; place-items: center; color: rgba(255,255,255,0.8); }
.footer__social a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.footer__social .ms { font-size: 20px; }
.footer__rule { height: 1px; background: rgba(255,255,255,0.14); }
.footer__bottom { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding-top: 1.6rem; font-size: var(--text-tiny); color: rgba(255,255,255,0.55); }
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer__bottom a:hover { color: #fff; }

/* ======================================================================== */
/*  Reveal-on-scroll                                                         */
/* ======================================================================== */
.reveal { opacity: 0; transform: translateY(30px); filter: blur(6px); transition: opacity 0.9s var(--ease-standard), transform 0.9s var(--ease-standard), filter 0.9s var(--ease-standard); }
.reveal.is-in { opacity: 1; transform: none; filter: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
/* slow sequential reveals (one-by-one, e.g. wellness heat sources) */
.reveal-s1 { transition-delay: 0.3s; }
.reveal-s2 { transition-delay: 0.6s; }

/* staggered gallery fade-in: items cascade once the grid enters view */
.gallery.reveal { opacity: 1; transform: none; filter: none; }
.gallery.reveal .gallery__item { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-standard), transform 0.7s var(--ease-standard); }
.gallery.reveal.is-in .gallery__item { opacity: 1; transform: none; }
.gallery.reveal .gallery__item:nth-child(2) { transition-delay: 0.07s; }
.gallery.reveal .gallery__item:nth-child(3) { transition-delay: 0.14s; }
.gallery.reveal .gallery__item:nth-child(4) { transition-delay: 0.21s; }
.gallery.reveal .gallery__item:nth-child(5) { transition-delay: 0.28s; }
.gallery.reveal .gallery__item:nth-child(6) { transition-delay: 0.35s; }
.gallery.reveal .gallery__item:nth-child(7) { transition-delay: 0.42s; }
.gallery.reveal .gallery__item:nth-child(8) { transition-delay: 0.49s; }
.gallery.reveal .gallery__item:nth-child(9) { transition-delay: 0.56s; }
.gallery.reveal .gallery__item:nth-child(10) { transition-delay: 0.63s; }
.gallery.reveal .gallery__item:nth-child(11) { transition-delay: 0.7s; }
.gallery.reveal .gallery__item:nth-child(12) { transition-delay: 0.77s; }

/* warm glow on the wellness heat sources */
.heat { position: relative; border-radius: var(--radius-card); padding: 1.6rem 1.2rem; margin: -1.6rem -1.2rem; }
.heat::after {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: var(--radius-card);
  background: rgba(227,185,134,0.06); opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease-standard);
}
.heat:hover::after { opacity: 1; }
.heat .feat__icon { transition: background 0.5s var(--ease-standard), color 0.5s var(--ease-standard), box-shadow 0.5s var(--ease-standard); }
.heat:hover .feat__icon { background: rgba(227,185,134,0.16); color: #e3b986; box-shadow: 0 0 44px rgba(227,185,134,0.28); }

/* sliding arrow on footer links */
.footer__col ul a { display: inline-flex; align-items: center; transition: color var(--dur-fast); }
.footer__col ul a::after {
  content: "\2192"; display: inline-block; font-size: 0.85em;
  opacity: 0; margin-left: 0; transform: translateX(-6px);
  transition: opacity var(--dur-med) var(--ease-standard), transform var(--dur-med) var(--ease-standard), margin-left var(--dur-med) var(--ease-standard);
}
.footer__col ul a:hover::after { opacity: 1; margin-left: 0.45em; transform: translateX(0); }

/* ======================================================================== */
/*  STICKY ROOM TOUR (Het verblijf)                                          */
/* ======================================================================== */
.tour { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 5.5rem); align-items: start; }
.tour__media {
  position: sticky; top: 6.5rem; height: calc(100vh - 9rem); min-height: 30rem;
  border-radius: var(--radius-image); overflow: hidden; background: var(--bg-tint);
}
.tour__photo { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.045); transition: opacity 0.9s var(--ease-standard), transform 1.4s var(--ease-standard); }
.tour__photo img { width: 100%; height: 100%; object-fit: cover; }
.tour__photo.is-active { opacity: 1; transform: scale(1); }
.tour__count {
  position: absolute; left: 1.4rem; bottom: 1.25rem; z-index: 2;
  display: inline-flex; align-items: baseline; gap: 0.35rem; white-space: nowrap;
  padding: 0.5rem 1.05rem; border-radius: var(--radius-full);
  background: rgba(6,2,3,0.45); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: #fff; font-size: var(--text-small); letter-spacing: 0.08em;
}
.tour__count b { font-family: var(--font-heading); font-weight: 700; }
.tour__count span { opacity: 0.65; }
.tour__steps { display: flex; flex-direction: column; }
.tour__step { min-height: 78vh; display: flex; flex-direction: column; justify-content: center; }
.tour__step .eyebrow { margin-bottom: 1.1rem; }
.tour__step h3 { font-size: var(--text-h3); margin: 0 0 1.1rem; }
.tour__step .lede { max-width: 38ch; }

@media (max-width: 991px) {
  .tour { grid-template-columns: 1fr; }
  .tour__media { top: 4.5rem; height: 46svh; min-height: 18rem; z-index: 1; }
  .tour__step { min-height: 52svh; }
  .tour__step:first-child { padding-top: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .tour__photo { transition: opacity 0.3s linear; transform: none !important; }
}

/* small unit inside stat numbers ("min.") */
.stat__unit { font-size: 0.45em; font-weight: 600; margin-left: 0.15em; letter-spacing: 0.02em; }

/* ======================================================================== */
/*  HOTSPOT room explorer (Het verblijf)                                     */
/* ======================================================================== */
.room-intro { max-width: 46rem; margin: 0 auto 3rem; text-align: center; }
.room-intro h2 { margin: 0 0 1rem; }
.hotspot-fig { position: relative; border-radius: var(--radius-image); overflow: visible; }
.hotspot-fig > img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-image); display: block; }
.hotspot-fig.is-landscape { aspect-ratio: 16/10; }
.hotspot-fig.is-portrait { aspect-ratio: 4/5; max-width: 44rem; margin-inline: auto; }
.hotspot-hint { text-align: center; margin-top: 1.4rem; font-size: var(--text-small); color: var(--fg-subtle); }

.hs { position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%); z-index: 2; }
.hs__dot {
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  display: grid; place-items: center; position: relative;
  background: rgba(255,255,255,0.92); color: var(--color-elephant);
  box-shadow: 0 4px 18px rgba(6,2,3,0.28);
  transition: transform var(--dur-fast) var(--ease-standard), background var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
}
.hs__dot span { font-family: var(--font-heading); font-weight: 400; font-size: 24px; line-height: 1; transition: transform var(--dur-med) var(--ease-standard); }
.hs__dot::before {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  animation: hs-pulse 2.6s var(--ease-standard) infinite;
}
@keyframes hs-pulse {
  0% { transform: scale(0.78); opacity: 0.9; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}
.hs__dot:hover { transform: scale(1.08); }
.hs.is-open .hs__dot { background: var(--color-elephant); color: #fff; }
.hs.is-open .hs__dot span { transform: rotate(45deg); }
.hs.is-open .hs__dot::before { animation: none; opacity: 0; }

.hs__card {
  position: absolute; bottom: calc(100% + 16px); left: 50%;
  width: 16.5rem; padding: 1.1rem 1.25rem; text-align: left;
  background: #fff; color: var(--fg); border-radius: 12px;
  box-shadow: 0 16px 48px rgba(6,2,3,0.22);
  font-size: var(--text-small); line-height: 1.55;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--dur-med) var(--ease-standard), transform var(--dur-med) var(--ease-standard);
  z-index: 3;
}
.hs__card b { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; }
.hs__card p { margin: 0; color: var(--fg-muted); }
.hs.is-open .hs__card { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
/* card below the dot (for dots near the top edge) */
.hs[data-pos="below"] .hs__card { bottom: auto; top: calc(100% + 16px); transform: translateX(-50%) translateY(-8px); }
.hs[data-pos="below"].is-open .hs__card { transform: translateX(-50%) translateY(0); }
/* card anchored left/right (for dots near the side edges) */
.hs[data-align="left"] .hs__card { left: -10px; transform: translateY(8px); }
.hs[data-align="left"].is-open .hs__card { transform: translateY(0); }
.hs[data-align="right"] .hs__card { left: auto; right: -10px; transform: translateY(8px); }
.hs[data-align="right"].is-open .hs__card { transform: translateY(0); }

@media (max-width: 600px) {
  .hs__dot { width: 38px; height: 38px; }
  .hs__card { width: min(15rem, 72vw); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .gallery.reveal .gallery__item { opacity: 1 !important; transform: none !important; }
  .hs__dot::before { animation: none !important; }
  .pagehero__media img { animation: none !important; }
  .marquee__track { animation: none !important; }
  .hero__scroll .ms { animation: none !important; }
  .figure img { transition: none; }
}

/* form layout helpers (contact) */
.form-stack { display: grid; gap: 1.1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

/* ======================================================================== */
/*  RESPONSIVE                                                               */
/* ======================================================================== */
@media (max-width: 991px) {
  .split, .feat-grid, .biz-grid, .faq__grid, .wellness-band, .footer__grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 4/3; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .biz { grid-template-columns: 1fr; }
  .biz__media { aspect-ratio: 3/2; }
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 10rem; }
  .g-c5, .g-c7, .g-c8 { grid-column: span 6; }
  .g-c4 { grid-column: span 3; }
  .wellness-band__media { aspect-ratio: 3/2; }
  .footer__grid { gap: 2.2rem; }
  .footer__bottom { justify-content: flex-start; }
  .inline-form { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 9rem; }
  .g-c2, .g-c3, .g-c4, .g-c5, .g-c6, .g-c7, .g-c8 { grid-column: span 2; }
  .g-r2 { grid-row: span 1; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 1.4rem; }

  /* hero */
  .hero { padding: 5rem 1.2rem 3.5rem; }
  .hero-display { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__rating { font-size: 0.7rem; padding: 0.35rem 0.8rem 0.35rem 0.45rem; flex-wrap: wrap; justify-content: center; row-gap: 0.25rem; max-width: 94%; text-align: center; }
  .hero__rating .avatar-img { width: 28px; height: 28px; }
  .hero__sub { font-size: 0.95rem; margin-top: 1.2rem; }
  .hero__cta { flex-direction: column; align-items: center; gap: 0.9rem; margin-top: 1.8rem; }
  .btn-label--fill { width: 100%; max-width: 22rem; justify-content: center; padding: 1rem 1.7rem; }
  .btn-label--link { font-size: 0.72rem; }

  /* pagehero compact */
  .pagehero { min-height: 50svh; padding-top: 5.5rem; }
  .pagehero h1 { font-size: clamp(1.8rem, 7.5vw, 2.4rem); }
  .pagehero__sub { font-size: 0.875rem; margin-top: 0.8rem; }

  /* booking overlay full-screen */
  .bookmodal { padding: 0; }
  .bookmodal__dialog { height: 100dvh; max-height: 100dvh; border-radius: 0; }
  .bookmodal__head { padding: 0.9rem 0.9rem 0.9rem 1.1rem; }

  /* lightbox */
  .lightbox { padding: 7vh 2vw; }
  .lightbox img { max-height: 76vh; }
  .lightbox__close, .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__close { top: 1.2rem; right: 1.2rem; }
  .lightbox__nav.prev { left: 2vw; }
  .lightbox__nav.next { right: 2vw; }

  /* cards & bands */
  .tcard { width: min(20rem, 82vw); padding: 1.4rem; }
  .biz__body { padding: 1.5rem; }
  .card__body { padding: 1.4rem; }
  .embed-slot { min-height: 420px; padding: 1.8rem; }
  .cta-band { padding: 2.5rem 1.4rem; }

  /* forms */
  .form-row-2 { grid-template-columns: 1fr; }
  .news .inline-form { grid-template-columns: 1fr; }

  /* tour */
  .tour__media { height: 42svh; min-height: 16rem; }
  .tour__step { min-height: 46svh; }
  .tour__count { left: 1rem; bottom: 0.9rem; padding: 0.4rem 0.85rem; }

  /* wellness band images */
  .wellness-band__media { grid-template-columns: 1fr 1fr; aspect-ratio: 3/2; }
  .wellness-band__media .figure:first-child { grid-row: span 1; }

  /* feats 1-col */
  .feat-grid { gap: 2rem; }

  /* section intro */
  .center-intro { margin-bottom: 2.8rem; }

  /* footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.8rem 1.4rem; }
  .footer__brand { grid-column: span 2; }
  .footer__col ul { gap: 0.2rem; }
  .footer__col a { display: inline-flex; align-items: center; min-height: 36px; }
  .footer__social a { width: 46px; height: 46px; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .footer { padding-bottom: calc(2.5rem + env(safe-area-inset-bottom)); }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .biz__body { padding: 1.2rem; }
  .card__body { padding: 1.2rem; }
  .split__media img { aspect-ratio: 3/2; }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .hero { padding-bottom: calc(3.5rem + env(safe-area-inset-bottom)); }
}

/* ======================================================================== */
/*  COOKIE BANNER — discrete, brand-aligned                                  */
/* ======================================================================== */
.cookiebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 2500;
  padding: 0 var(--space-edge) calc(1rem + env(safe-area-inset-bottom));
  display: flex; justify-content: center; pointer-events: none;
  transform: translateY(120%); opacity: 0;
  transition: transform 0.5s var(--ease-standard), opacity 0.5s var(--ease-standard);
}
.cookiebar.is-in { transform: none; opacity: 1; }
.cookiebar__inner {
  pointer-events: auto;
  width: 100%; max-width: 56rem;
  display: flex; align-items: center; gap: 1.5rem 2rem; flex-wrap: wrap;
  justify-content: space-between;
  background: var(--color-neutral-darkest); color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-card);
  padding: 1.1rem 1.4rem; box-shadow: 0 18px 50px rgba(6,2,3,0.32);
}
.cookiebar__text { font-size: var(--text-small); line-height: 1.5; margin: 0; flex: 1 1 18rem; }
.cookiebar__text a { color: var(--color-bali-hai-light); text-decoration: underline; text-underline-offset: 3px; }
.cookiebar__text a:hover { color: #fff; }
.cookiebar__actions { display: flex; gap: 0.7rem; flex: none; }
.cookiebar__btn {
  font-family: var(--font-body); font-weight: 500; font-size: var(--text-small);
  padding: 0.7rem 1.4rem; border-radius: var(--radius-full); cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-standard), border-color var(--dur-fast) var(--ease-standard), color var(--dur-fast) var(--ease-standard);
}
.cookiebar__btn--ghost { background: transparent; border-color: rgba(255,255,255,0.30); color: rgba(255,255,255,0.85); }
.cookiebar__btn--ghost:hover { background: rgba(255,255,255,0.10); color: #fff; }
.cookiebar__btn--solid { background: var(--color-elephant); color: #fff; }
.cookiebar__btn--solid:hover { background: var(--color-elephant-light); }

@media (max-width: 600px) {
  .cookiebar__inner { padding: 1rem 1.1rem; gap: 1rem; }
  .cookiebar__actions { width: 100%; }
  .cookiebar__btn { flex: 1; padding: 0.85rem 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .cookiebar { transition: opacity 0.3s linear; transform: none; }
}
