/* =============================================================
   VCAY — site.css
   Single source of truth for all global styling.
   Do NOT redefine any of these tokens or global components inside
   a page. See CLAUDE.md → Prime Directive.
   ============================================================= */

/* -------- Tokens ------------------------------------------------ */
:root {
  /* Brand palette (extracted from the live Wix site, 2026-08-12) */
  --coffee:      #4E3C31;   /* primary dark: nav, headings, footer, CTA */
  --coffee-hi:   #5D4938;   /* hover on coffee surfaces */
  --cream:       #EDEBE6;   /* primary light page bg */
  --icy:         #CBDCE9;   /* accent: buttons, highlights, price strip */
  --icy-hi:      #B8CFE0;   /* hover on icy */
  --warm-gray:   #D2CEC5;   /* secondary section bg */
  --taupe:       #9E948A;   /* tertiary bg / imagery placeholder */

  /* Text tokens (always 100% opacity — never rgba on text) */
  --ink:         #4E3C31;   /* body on cream */
  --ink-muted:   #7C6B5C;   /* secondary text on cream */
  --ink-soft:    #A99B8C;   /* tertiary text / captions */
  --ink-light:   #EDEBE6;   /* body on coffee */
  --ink-light-2: #C9C2B7;   /* secondary text on coffee */

  /* Hairline dividers */
  --hairline:        rgba(78, 60, 49, 0.15);
  --hairline-strong: rgba(78, 60, 49, 0.30);
  --hairline-light:  rgba(237, 235, 230, 0.20);

  /* Type scale (fluid via clamp) */
  --fs-display: clamp(3.25rem, 6.5vw, 6rem);    /* hero */
  --fs-h1:      clamp(2.5rem, 5vw, 4.25rem);    /* page headlines */
  --fs-h2:      clamp(2rem, 3.5vw, 2.75rem);    /* section headlines */
  --fs-h3:      clamp(1.5rem, 2.4vw, 2rem);     /* card / block headlines */
  --fs-body:    1rem;                            /* 16px */
  --fs-body-lg: 1.0625rem;                       /* 17px reading body */
  --fs-sm:      0.8125rem;                       /* 13px */
  --fs-xs:      0.6875rem;                       /* 11px — eyebrows */
  --fs-eyebrow: 0.625rem;                        /* 10px — small eyebrows */

  /* Spacing tokens */
  --sp-section: clamp(4rem, 8vw, 7.5rem);
  --sp-lg:      clamp(2.5rem, 5vw, 4rem);
  --sp-md:      1.75rem;
  --sp-sm:      1rem;

  /* Horizontal gutter (auto scales; larger inside on desktop) */
  --gutter:     clamp(1.5rem, 5vw, 3.75rem);

  /* Component sizing */
  --nav-height:      88px;
  --btn-pad-y:       0.625rem;
  --btn-pad-x:       2.5rem;
  --tracking-eyebrow: 0.36em;
  --tracking-nav:     0.24em;
  --tracking-btn:     0.3em;
}

/* -------- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

/* -------- Typography roles ------------------------------------- */
.display,
h1, h2, h3, h4 {
  font-family: 'Fahkwang', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
.display { font-size: var(--fs-display); letter-spacing: -0.02em; line-height: 0.98; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-block;
}

.body-lead { font-size: var(--fs-body-lg); line-height: 1.85; color: var(--ink-muted); }
.body       { font-size: var(--fs-body);    line-height: 1.75; color: var(--ink-muted); }

/* Dark-section overrides (add .on-dark to any section over coffee) */
.on-dark { color: var(--ink-light); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark .display { color: var(--ink-light); }
.on-dark .eyebrow { color: var(--ink-light-2); }
.on-dark .body-lead, .on-dark .body { color: var(--ink-light-2); }
.on-dark a { color: var(--ink-light); }

/* -------- Buttons --------------------------------------------- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-btn);
  text-transform: uppercase;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  transition: background-color 160ms ease, color 160ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary,
.on-dark .btn-primary { background: var(--icy); color: var(--coffee); }
.btn-primary:hover,
.on-dark .btn-primary:hover { background: var(--icy-hi); color: var(--coffee); }

.btn-ghost {
  background: transparent; color: var(--coffee);
  border-bottom: 1px solid var(--coffee); padding: 6px 0;
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}
.btn-ghost:hover { color: var(--taupe); border-bottom-color: var(--taupe); }
.on-dark .btn-ghost { color: var(--ink-light); border-bottom-color: var(--ink-light); }
.on-dark .btn-ghost:hover { color: var(--warm-gray); border-bottom-color: var(--warm-gray); }

/* Small "Reserve" pill inside the nav */
.btn-reserve {
  background: var(--icy); color: var(--coffee);
  padding: 10px 20px;
  font-size: var(--fs-xs); font-family: 'Montserrat', sans-serif;
  font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase;
}
.btn-reserve:hover { background: var(--icy-hi); }

/* -------- Container -------------------------------------------- */
.container { padding-left: var(--gutter); padding-right: var(--gutter); }
/* Components define their own section padding. No global default so
   adjacent sections don't stack unwanted vertical space. */

/* -------- Nav ------------------------------------------------- */
.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  color: var(--ink-light);
}
.nav--solid { position: relative; background: var(--cream); color: var(--coffee); border-bottom: 0.5px solid var(--hairline); }
.nav--solid .nav__reserve { background: var(--icy); color: var(--coffee); }

.nav__brand {
  font-family: 'Fahkwang', serif; font-size: 20px; letter-spacing: 0.32em; font-weight: 500;
}
.nav__links {
  display: flex; gap: 34px; align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: var(--tracking-nav); text-transform: uppercase;
}
.nav__links a { opacity: 0.85; transition: opacity 140ms; }
.nav__links a:hover, .nav__links a.is-current { opacity: 1; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

/* Mobile drawer trigger */
.nav__toggle { display: none; width: 26px; height: 20px; position: relative; }
.nav__toggle span { position: absolute; left: 0; right: 0; height: 1px; background: currentColor; }
.nav__toggle span:nth-child(1) { top: 4px; }
.nav__toggle span:nth-child(2) { top: 14px; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; background: var(--coffee); color: var(--ink-light);
  z-index: 100;
  overflow-y: auto;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 320ms;
  display: flex; flex-direction: column;
  padding: 32px var(--gutter);
}
.drawer.is-open {
  visibility: visible; transform: translateX(0);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s;
}
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; }
.drawer__close { font-family: 'Montserrat', sans-serif; font-size: var(--fs-xs); letter-spacing: 0.24em; text-transform: uppercase; }
.drawer__links {
  display: flex; flex-direction: column; gap: 22px;
  text-align: right;
}
.drawer__links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-light);
  transition: color 160ms ease, opacity 160ms ease;
}
.drawer__links a:hover,
.drawer__links a:focus-visible {
  color: var(--warm-gray); outline: none;
}
.drawer__links a.is-current { color: var(--warm-gray); }

/* Reserve as a pill — matches the nav Book Now */
.drawer__links a.drawer__reserve {
  align-self: flex-end;
  margin-top: 22px;
  padding: 10px 24px;
  background: var(--icy);
  color: var(--coffee);
  letter-spacing: 0.26em;
}
.drawer__links a.drawer__reserve:hover { background: var(--icy-hi); color: var(--coffee); }

/* Section grouping label */
.drawer__group-label {
  display: block;
  margin: 10px 0 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-light-2);
  opacity: 0.55;
}

/* Contact block anchored at the bottom of the drawer */
.drawer__foot {
  margin-top: auto;
  padding-top: 40px;
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; line-height: 1.9;
  letter-spacing: 0.12em;
  color: var(--ink-light-2);
}
.drawer__foot a { color: var(--ink-light-2); }
.drawer__foot a:hover { color: var(--ink-light); }

.drawer__socials {
  display: flex; justify-content: flex-end; gap: 18px;
  margin-bottom: 22px;
}
.drawer__socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: var(--ink-light-2);
  transition: color 160ms ease;
}
.drawer__socials a:hover { color: var(--ink-light); }
.drawer__socials i { font-size: 20px; }

/* Site footer socials */
.footer__socials {
  display: flex; gap: 20px;
  margin-top: 20px;
}
.footer__socials a {
  color: var(--ink-muted);
  transition: color 160ms ease;
}
.footer__socials a:hover { color: var(--coffee); }
.footer__socials i { font-size: 22px; }

/* -------- Book-Direct strip (homepage only) ------------------- */
.book-direct {
  background: var(--icy); color: var(--coffee);
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: center; gap: 24px;
  font-family: 'Montserrat', sans-serif; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-align: center;
}
.book-direct__icon { font-size: 18px; }
.book-direct__sep  { opacity: 0.5; }
.book-direct__cta  { border-bottom: 0.5px solid var(--coffee); padding-bottom: 2px; white-space: nowrap; }
.book-direct__msg--short { display: none; }

/* -------- Hero ------------------------------------------------- */
.hero {
  position: relative; min-height: 560px; overflow: hidden;
  background: var(--coffee); color: var(--ink-light);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-height) + 80px) var(--gutter) 60px;
}
.hero--short { min-height: 460px; }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(78,60,49,0.4) 0%, rgba(78,60,49,0) 32%, rgba(78,60,49,0) 55%, rgba(78,60,49,0.55) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 820px; }
.hero__eyebrow { margin-bottom: 26px; color: var(--ink-light); opacity: 0.8; }
.hero__title { color: var(--ink-light); }
.hero__sub {
  margin-top: 26px; max-width: 500px;
  font-family: 'Montserrat', sans-serif; font-size: 15px; line-height: 1.7;
  color: var(--ink-light); opacity: 0.85;
}

/* Hero primary CTA (btn-ghost styled for dark hero background) */
.hero__cta {
  display: inline-block;
  margin-top: 26px;
  color: var(--ink-light);
  border-bottom-color: var(--ink-light);
}
.hero__cta:hover {
  color: var(--warm-gray);
  border-bottom-color: var(--warm-gray);
}

.hero__meta {
  position: absolute; right: var(--gutter); bottom: 60px; z-index: 2;
  color: var(--ink-light); opacity: 0.7;
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-eyebrow); letter-spacing: 0.32em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}

/* -------- Editorial two-column spread ------------------------ */
.spread { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; padding: var(--sp-section) var(--gutter); }
/* Body column starts flush with the top of the headline, not the eyebrow.
   The offset equals eyebrow line-height (~14px) + the h2 top-margin (18px). */
.spread__body { padding-top: 34px; font-size: 16px; line-height: 1.85; color: var(--ink-muted); }
.spread__body p { margin: 0 0 20px; }
.spread__body p:last-child { margin-bottom: 0; }

/* -------- Section heading (centered eyebrow + display title) -
   No vertical padding — relies on the previous section's bottom padding
   for its top spacing. */
.section-heading {
  text-align: center; padding: 0 var(--gutter);
  max-width: 760px; margin: 0 auto;
}
.section-heading__title { font-size: var(--fs-h1); margin: 20px auto 60px; }

/* -------- Stacked body (centered narrow column, editorial feel) -
   Pairs with .section-heading. Deliberately different from .spread
   (which is asymmetric 2-column) so adjacent sections don't repeat. */
.stacked-section { padding: var(--sp-section) 0; }
.stacked-body {
  max-width: 680px; margin: 0 auto; padding: 0 var(--gutter);
  font-size: 17px; line-height: 1.75; color: var(--ink-muted);
  text-align: center;
}
.stacked-body p { margin: 0 0 22px; }
.stacked-body p:last-child { margin-bottom: 0; }

/* -------- Numbered editorial list (features / points) --------- */
.index-list { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 80px; padding: 0 var(--gutter) var(--sp-section); }
.index-list__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 20px 0; border-bottom: 0.5px solid var(--hairline);
  font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--ink);
}
.index-list__row:first-child, .index-list__row:nth-child(2) { border-top: 0.5px solid var(--hairline); }
.index-list__row .num { color: var(--ink-soft); font-family: 'Montserrat', sans-serif; }

/* -------- Amenities strip ------------------------------------- */
.amenities { padding: var(--sp-section) var(--gutter); }
.amenities__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.amenities__head h2 { margin: 20px 0 0; }
.amenities__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--hairline);
}
.amenities__cell {
  padding: 26px 20px;
  border-bottom: 0.5px solid var(--hairline);
  display: flex; align-items: center; gap: 14px;
  font-family: 'Montserrat', sans-serif; font-size: 13px;
}
.amenities__cell:not(:nth-child(4n)) { border-right: 0.5px solid var(--hairline); }
.amenities__cell i { font-size: 22px; color: var(--ink-muted); }

/* -------- Stat block ------------------------------------------- */
.stats { background: var(--warm-gray); padding: var(--sp-section) var(--gutter); }
.stats__head { text-align: center; margin-bottom: 60px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stats__num {
  font-family: 'Fahkwang', serif; font-size: clamp(3rem, 5vw, 4.25rem);
  font-weight: 300; line-height: 1;
}
.stats__label { margin-top: 14px; }

/* -------- CTA band (universal) -------------------------------
   Default is the compact interior-page size. Homepage adds
   .cta-band--hero for the larger cinematic version. */
.cta-band {
  background: var(--coffee); color: var(--ink-light);
  padding: 60px var(--gutter); text-align: center;
}
.cta-band__eyebrow { opacity: 0.65; margin-bottom: 22px; color: var(--ink-light); }
.cta-band__title { max-width: 720px; margin: 0 auto 20px; color: var(--ink-light); font-size: clamp(2rem, 4vw, 2.75rem); }
.cta-band__promise { font-family: 'Montserrat', sans-serif; font-size: 14px; opacity: 0.8; margin-bottom: 32px; }
.cta-band__phone { margin-top: 22px; font-family: 'Montserrat', sans-serif; font-size: var(--fs-xs); letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.65; }

.cta-band--hero { padding: clamp(5rem, 10vw, 7.5rem) var(--gutter); }
.cta-band--hero .cta-band__eyebrow { margin-bottom: 26px; }
.cta-band--hero .cta-band__title { margin-bottom: 22px; font-size: clamp(2.5rem, 5vw, 3.75rem); }
.cta-band--hero .cta-band__promise { margin-bottom: 40px; }
.cta-band--hero .cta-band__phone { margin-top: 24px; }

/* -------- Footer ---------------------------------------------- */
.footer { background: var(--cream); color: var(--ink); padding: 60px var(--gutter) 30px; border-top: 0.5px solid var(--hairline-strong); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand { font-family: 'Fahkwang', serif; font-size: 22px; letter-spacing: 0.32em; margin-bottom: 20px; }
.footer__addr  { font-family: 'Montserrat', sans-serif; font-size: 13px; line-height: 1.8; color: var(--ink-muted); }
.footer__col h4 { font-family: 'Montserrat', sans-serif; font-size: var(--fs-eyebrow); font-weight: 500; letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--ink-muted); margin-bottom: 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; font-size: 13px; line-height: 2; }
.footer__col a:hover { color: var(--coffee); border-bottom: 0.5px solid var(--coffee); }
.footer__meta {
  margin-top: 40px; padding-top: 20px; border-top: 0.5px solid var(--hairline);
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted);
  display: flex; justify-content: space-between;
}

/* -------- Forms (shared reservations form) --------------------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 40px; }
.form-grid .form-field--full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-eyebrow);
  font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--ink-muted);
  padding: 12px 0 12px; font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--ink);
  outline: none; transition: border-color 160ms;
}
.form-input:focus, .form-textarea:focus { border-color: var(--coffee); }
.form-textarea { min-height: 90px; resize: vertical; }
.form-actions { margin-top: 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.form-note {
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-xs); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink); max-width: 340px; line-height: 1.7;
}

/* -------- Page intro (short editorial header, no photo) ------ */
.page-intro { padding: var(--sp-section) var(--gutter); max-width: 940px; }
.page-intro--split { max-width: none; }
.page-intro__title { font-size: var(--fs-h1); margin: 20px 0 24px; }
.page-intro__body { font-family: 'Montserrat', sans-serif; font-size: 16px; line-height: 1.85; color: var(--ink-muted); max-width: 620px; }
/* Two-column body variant for page-intro (used on /suites) */
.page-intro__body--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2rem, 6vw, 5rem);
  row-gap: 12px;
  margin-top: 56px;
  max-width: none;
  width: 100%;
}
.page-intro__body--cols p { margin: 0; }
@media (max-width: 768px) {
  .page-intro__body--cols { grid-template-columns: 1fr; gap: 16px; }
}

/* -------- Contact info strip (horizontal, quiet) ------------ */
.contact-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; padding: 40px var(--gutter);
  background: var(--warm-gray);
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
}
.contact-strip__item { display: flex; flex-direction: column; }
.contact-strip__label { color: var(--ink-muted); margin-bottom: 10px; }
.contact-strip__value {
  font-family: 'Fahkwang', serif; font-weight: 400;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem); line-height: 1.2; color: var(--ink);
  transition: color 180ms ease;
}
a.contact-strip__value:hover { color: var(--taupe); }
.contact-strip__note {
  font-family: 'Montserrat', sans-serif; font-size: 12px; line-height: 1.5;
  color: var(--ink-muted); margin-top: 8px;
}

/* -------- Contact form (full-width centered) ---------------- */
.contact-form { padding: var(--sp-section) var(--gutter); max-width: 1000px; margin: 0 auto; }
.contact-form__header { text-align: center; margin-bottom: 48px; }
.contact-form__header .eyebrow { display: block; margin-bottom: 12px; }
.contact-form__intro {
  font-family: 'Montserrat', sans-serif; font-size: 15px; line-height: 1.7;
  color: var(--ink-muted); max-width: 520px; margin: 12px auto 0;
}

/* -------- Guest support micro-note (above map band) --------- */
.support-note {
  padding: 0 var(--gutter) var(--sp-lg); text-align: center;
  font-family: 'Montserrat', sans-serif; font-size: 13px; line-height: 1.85;
  color: var(--ink-muted); max-width: 640px; margin: 0 auto;
}
.support-note a { border-bottom: 0.5px solid var(--coffee); padding-bottom: 1px; color: var(--ink); }

/* -------- Map band (full-width map with floating address card) */
.map-band { position: relative; }
.map-band__media { width: 100%; height: 460px; border: 0; display: block; background: var(--warm-gray); }
.map-band__card {
  position: absolute; left: var(--gutter); top: 60px;
  background: var(--coffee); color: var(--ink-light);
  padding: 34px 40px; max-width: 360px;
}
.map-band__title { color: var(--ink-light); font-size: clamp(1.25rem, 2vw, 1.625rem); margin: 16px 0 18px; line-height: 1.2; }
.map-band__note { font-family: 'Montserrat', sans-serif; font-size: 13px; line-height: 1.85; color: var(--ink-light-2); }
.map-band__link { display: inline-block; margin-top: 22px; }

/* -------- Editorial suite spread (used on /suites) ------------ */
.suite-spread { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; padding: 0; }
.suite-spread--flip { grid-template-columns: 1fr 1.2fr; }
.suite-spread__media { min-height: 440px; background: var(--taupe); background-size: cover; background-position: center; background-repeat: no-repeat; display: block; transition: opacity 220ms ease; }
a.suite-spread__media { cursor: pointer; }
a.suite-spread__media:hover { opacity: 0.9; }
.suite-spread__body {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
}
.suite-spread--flip .suite-spread__body { align-items: flex-end; text-align: right; }
/* Vertical space between suite tiles on /suites (only for tile spreads, not homepage featured) */
.suite-spread + .suite-spread { margin-top: clamp(2rem, 4vw, 4rem); }

/* Space between suite tile paragraph and its Explore button */
.suite-spread__body p + .btn-ghost { margin-top: 40px; }

/* -------- Suite specs row (BR/BA/Sleeps meta) ----------------- */
.suite-specs {
  display: flex; gap: 26px; margin-top: 10px; margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink);
}

/* -------- Address list (distance rows) ------------------------ */
.address-list {
  font-family: 'Montserrat', sans-serif; font-size: 14px; line-height: 1.9;
  color: var(--ink);
}
.address-list__row {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 0.5px solid var(--hairline);
}
.address-list__distance { color: var(--ink-soft); }

/* -------- Featured-suite editorial (homepage / suite index) --- */
.featured__body { padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; }
.featured__title { font-size: var(--fs-h1); margin: 18px 0 22px; }
/* Reduce suite tile title size on /suites (homepage Featured section keeps larger) */
.suite-spread__body:not(.featured__body) .featured__title { font-size: clamp(2.25rem, 4vw, 3.25rem); }

.featured__body p { max-width: none; margin: 0 0 32px; }
/* Featured section (homepage 'Our Suites') needs more breathing room than tiles */
.featured__body .suite-specs { margin-bottom: 30px; }

@media (max-width: 768px) {
  .suite-specs { flex-direction: column; gap: 10px; }
}

/* -------- Groups band (homepage dark spread) ------------------ */
.groups-band { padding: var(--sp-section) var(--gutter); }
.groups-band__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.groups-band__body { max-width: 500px; margin: 0 0 34px; }

/* -------- Address section (homepage) -------------------------- */
.address-block { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
.address-block__text { padding: var(--sp-section) var(--gutter); }
.address-block__title { font-size: var(--fs-h1); margin: 20px 0 24px; }
.address-block__map { background: var(--warm-gray) url('/images/homepage/map.jpg') center/cover no-repeat; min-height: 420px; }

/* -------- Breadcrumb (suite detail + wallet pages) ----------- */
.breadcrumb {
  padding: 26px var(--gutter) 0;
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-eyebrow);
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-muted);
}
.breadcrumb__sep { margin: 0 10px; opacity: 0.6; }
.breadcrumb .is-current { color: var(--ink); }
.breadcrumb a { transition: color 180ms ease; }
.breadcrumb a:hover { color: var(--ink); border-bottom: 0.5px solid var(--ink); padding-bottom: 2px; }

/* -------- Suite detail hero (boxed, with floating spec card) - */
.suite-hero { padding: 26px var(--gutter) 0; }
.suite-hero__media {
  position: relative; height: clamp(400px, 52vw, 560px);
  background: var(--taupe); overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.suite-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(78,60,49,0.05) 0%, rgba(78,60,49,0.15) 45%, rgba(78,60,49,0.55) 100%);
}
.suite-hero__caption {
  position: absolute; left: 44px; bottom: 40px;
  color: var(--ink-light);
}
.suite-hero__caption .eyebrow { color: var(--ink-light); }
.suite-hero__title {
  color: var(--ink-light); font-size: clamp(3rem, 6vw, 4.75rem);
  line-height: 0.98; margin-top: 22px;
}
.suite-hero__floors {
  position: absolute; right: 24px; top: 24px; color: var(--coffee);
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-eyebrow);
  letter-spacing: 0.32em; text-transform: uppercase;
}

/* Hero descriptor subhead — small text under H1, inside caption */
.suite-hero__sub {
  color: var(--ink-light); opacity: 0.9;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.1vw, 15.5px);
  line-height: 1.6;
  max-width: 560px;
  margin: 20px 0 0;
}

/* Right-column stack: Book Now (text button) sits above the spec-card,
   overlapping the hero image's bottom-right area on desktop. */
.suite-hero__aside {
  position: relative; z-index: 3;
  margin: -70px 24px 0 auto;
  width: min(680px, calc(100% - 48px));
}

/* Constrain caption so H1 never runs behind spec-card on desktop */
.suite-hero__caption { max-width: calc(100% - 720px); }

/* Spec card inside the aside owns width; parent owns margin */
.suite-hero__aside .spec-card { margin: 0; width: 100%; }

/* Floating spec card overlapping the hero bottom */
.spec-card {
  position: relative; margin: -70px 24px 0 auto;
  width: min(680px, calc(100% - 48px));
  background: var(--cream); padding: 32px 36px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 3px solid var(--icy);
}
.spec-card__cell { text-align: center; flex: 1; padding: 0 18px; }
.spec-card__num { font-family: 'Fahkwang', serif; font-size: 34px; line-height: 1; color: var(--ink); }
.spec-card__label { margin-top: 6px; }
.spec-card__divider { width: 1px; height: 46px; background: var(--hairline); }

/* -------- Suite gallery -------------------------------------- */

/* -------- Lightbox ------------------------------------------ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 15, 12, 0.94);
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  transition: opacity 240ms ease, visibility 0s linear 240ms;
}
.lightbox.is-open {
  visibility: visible; opacity: 1;
  transition: opacity 240ms ease, visibility 0s;
}
.lightbox__stage {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  max-width: min(calc(100vw - 220px), 1600px);
  max-height: min(88vh, 1000px);
  background: transparent;
}
.lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(88vh, 1000px);
  object-fit: contain;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute; background: transparent; border: 0; cursor: pointer;
  color: var(--cream); padding: 12px 16px;
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  transition: opacity 160ms ease;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { opacity: 0.7; }
.lightbox__close { top: 24px; right: 32px; }
.lightbox__prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 32px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  color: var(--cream); font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs); letter-spacing: 0.28em; text-transform: uppercase;
  opacity: 0.75;
}

/* -------- Floor plan band (3D rendering hero) --------------- */
.floorplan-band {
  background: var(--warm-gray);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  margin-top: 60px;
}
.floorplan-band__grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.floorplan-band__image {
  min-height: clamp(320px, 42vw, 520px);
  background: var(--cream) center / contain no-repeat;
  border: 0.5px solid var(--hairline);
}
.floorplan-band__title { font-size: var(--fs-h2); margin: 20px 0 22px; }
.floorplan-band__body {
  font-family: 'Montserrat', sans-serif; font-size: 15px; line-height: 1.85;
  color: var(--ink-muted); max-width: 400px;
}
.floorplan-band__meta {
  margin-top: 28px; padding-top: 20px; border-top: 0.5px solid var(--hairline-strong);
  display: flex; flex-wrap: wrap; gap: 20px 32px;
  font-family: 'Montserrat', sans-serif; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted);
}

/* -------- Fit For band (warm-gray, centered icon columns) --- */
.fit-for-band {
  background: var(--warm-gray);
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--gutter);
  text-align: center;
}
.fit-for-band__title { max-width: 720px; margin: 20px auto 60px; font-size: var(--fs-h2); }
.fit-for-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.fit-for-band__cell { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.fit-for-band__icon { font-size: 32px; color: var(--ink-muted); }
.fit-for-band__label { font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--ink); }

/* -------- Callout band (icy accent, big idea) --------------- */
.callout-band {
  background: var(--icy); color: var(--ink);
  padding: clamp(4rem, 7vw, 5.5rem) var(--gutter);
}
.callout-band__grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.callout-band__title { font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); margin: 20px 0 24px; }
.callout-band__body {
  font-family: 'Montserrat', sans-serif; font-size: 15px; line-height: 1.85;
  color: var(--ink); margin: 0 0 20px; max-width: 500px;
}
.callout-band__body:last-child { margin-bottom: 0; }
.callout-band--warm { background: var(--warm-gray); }
.callout-band--dark {
  background: var(--coffee);
  color: var(--ink-light);
}
.callout-band--dark .eyebrow,
.callout-band--dark .callout-band__body,
.callout-band--dark .callout-band__stat-num,
.callout-band--dark .callout-band__stat-label { color: var(--ink-light); }
.callout-band--dark .callout-band__title { color: var(--ink-light); }
.callout-band--dark .callout-band__stat-label { opacity: 0.75; }
.callout-band__stats {
  display: flex; gap: 40px 48px; flex-wrap: wrap;
}
.callout-band__stat { display: flex; flex-direction: column; }
.callout-band__stat-num {
  font-family: 'Fahkwang', serif; font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1;
  color: var(--ink); font-weight: 400;
}
.callout-band__stat-label {
  margin-top: 6px;
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-xs);
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted);
}

/* -------- Namesake band (New Orleans story, text L / image R) */
.namesake-band {
  padding: clamp(4rem, 7vw, 6rem) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.namesake-band__eyebrow { display: block; margin-bottom: 14px; }
.namesake-band__title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin: 0 0 18px;
  color: var(--ink);
}
.namesake-band__lede {
  font-family: 'Fahkwang', serif;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 22px;
}
.namesake-band__body p,
.namesake-band__body > p:last-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0;
}
.namesake-band__image {
  height: clamp(360px, 42vw, 520px);
  background: var(--taupe);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Per-suite namesake image slots (drop file at path to fill) */
.namesake-band__image--the-canal            { background-image: url('/images/suites/the-canal/namesake.jpg'); }
.namesake-band__image--the-marigny          { background-image: url('/images/suites/the-marigny/namesake.jpg'); }
.namesake-band__image--the-gameday          { background-image: url('/images/suites/the-gameday/namesake.jpg'); }
.namesake-band__image--the-garden-district  { background-image: url('/images/suites/the-garden-district/namesake.jpg'); }
.namesake-band__image--the-crescent-city    { background-image: url('/images/suites/the-crescent-city/namesake.jpg'); }
.namesake-band__image--the-courtyard        { background-image: url('/images/suites/the-courtyard/namesake.jpg'); }
.namesake-band__image--the-french-quarter   { background-image: url('/images/suites/the-french-quarter/namesake.jpg'); }

/* -------- Booking bar group-stays secondary link ----------- */
.booking-bar__group-link {
  display: inline-block;
  margin-top: 20px;
}

/* -------- Booking bar (suite detail closer) ----------------- */
.booking-bar {
  background: var(--coffee); color: var(--ink-light);
  padding: 60px var(--gutter);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.booking-bar__title { color: var(--ink-light); font-size: clamp(2rem, 4vw, 2.75rem); }
.booking-bar__note {
  font-family: 'Montserrat', sans-serif; font-size: 13px; line-height: 1.8;
  color: var(--ink-light-2); margin-top: 18px; max-width: 460px;
}
.booking-bar__actions { text-align: right; }
.booking-bar__phone {
  margin-top: 18px; font-family: 'Montserrat', sans-serif; font-size: var(--fs-xs);
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-light-2);
}

/* -------- Related suites ------------------------------------ */

/* -------- Legal page (long-form prose column) --------------- */
.legal-page { padding: var(--sp-section) var(--gutter); max-width: 780px; margin: 0 auto; }
.legal-page__title { font-size: var(--fs-h1); margin: 20px 0 8px; }
.legal-page__updated {
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-xs);
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted);
  margin: 0 0 44px;
}
.legal-page__body { font-family: 'Montserrat', sans-serif; font-size: 15px; line-height: 1.85; color: var(--ink); }
.legal-page__body h2 {
  font-family: 'Fahkwang', serif; font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 400; letter-spacing: -0.01em;
  margin: 44px 0 12px;
}
.legal-page__body h3 {
  font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 500;
  letter-spacing: 0; text-transform: none;
  margin: 28px 0 8px;
}
.legal-page__body p { margin: 0 0 16px; }
.legal-page__body a { color: var(--ink); border-bottom: 0.5px solid var(--coffee); }
.legal-page__body a:hover { color: var(--taupe); border-bottom-color: var(--taupe); }
.legal-page__body ul, .legal-page__body ol { margin: 0 0 16px; padding-left: 24px; }
.legal-page__body li { margin-bottom: 6px; }
.legal-page__placeholder {
  padding: 20px 24px; margin: 20px 0;
  background: var(--warm-gray); border-left: 3px solid var(--taupe);
  font-family: 'Montserrat', sans-serif; font-size: 13px; color: var(--ink-muted);
  line-height: 1.7;
}

/* -------- Wallet page hero (brand icon + eyebrow row) ------- */
.wallet-hero__meta { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.wallet-hero__brand { font-size: 32px; color: var(--ink-muted); }

/* -------- Numbered step grid (4 across, Fahkwang numerals) -- */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  padding: 0 var(--gutter) var(--sp-section);
}
.steps-grid__num {
  font-family: 'Fahkwang', serif; font-weight: 400;
  font-size: clamp(2.25rem, 3vw, 2.75rem); line-height: 1;
  color: var(--ink-soft);
}
.steps-grid__label {
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; line-height: 1.7;
  color: var(--ink);
}

/* -------- Inline row of ghost links inside a callout band --- */
.callout-band__links { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 4px; }

/* -------- Support page: category tabs ----------------------- */
.support-tabs {
  padding: 0 var(--gutter);
  display: flex; gap: 34px; flex-wrap: wrap;
  border-top: 0.5px solid var(--hairline);
  border-bottom: 0.5px solid var(--hairline);
}
.support-tabs__tab {
  padding: 22px 0; border-bottom: 1px solid transparent; margin-bottom: -0.5px;
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-muted);
  transition: color 180ms ease, border-color 180ms ease;
}
.support-tabs__tab.is-current { color: var(--ink); border-bottom-color: var(--ink); }
a.support-tabs__tab:hover { color: var(--ink); }

/* -------- FAQ section wrapper -------------------------------- */
.faq-section { padding: var(--sp-section) var(--gutter); }
.faq-section__heading { margin-bottom: 50px; }
.page-intro--tight  { padding-top: 2.5rem; padding-bottom: 1.5rem; }
.faq-section--tight { padding-top: 2rem; }
.faq-section--tight .faq-section__heading { margin-bottom: 32px; }
@media (max-width: 768px) {
  .page-intro--tight  { padding-top: 1.25rem; padding-bottom: 0.5rem; }
  .faq-section--tight { padding-top: 1.25rem; }
}
.faq-section__title { font-size: clamp(2rem, 4vw, 3rem); margin: 20px 0 0; max-width: 720px; }

/* -------- FAQ subgroup (labels + spacing between clusters) --- */
.faq-group + .faq-group { margin-top: 60px; }
.faq-group__label { display: block; margin-bottom: 22px; color: var(--ink-muted); }

/* -------- Wallet guide tiles (2-column card grid) ------------- */
.faq-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-tile {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 24px;
  background: #fff;
  border: 0.5px solid var(--hairline);
  border-radius: 6px;
  text-decoration: none; color: var(--ink);
  transition: border-color 200ms ease, transform 200ms ease;
}
.faq-tile:hover { border-color: var(--hairline-strong); transform: translateY(-1px); }
.faq-tile__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--warm-gray);
  display: grid; place-items: center;
  color: var(--coffee); font-size: 22px;
  flex-shrink: 0;
}
.faq-tile__body { flex: 1; }
.faq-tile__label {
  display: block;
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 4px;
}
.faq-tile__title {
  display: block;
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 500; color: var(--ink);
}
.faq-tile__cta {
  font-family: 'Montserrat', sans-serif; font-size: var(--fs-eyebrow);
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-muted); flex-shrink: 0;
}
@media (max-width: 768px) {
  .faq-tiles { grid-template-columns: 1fr; }
}

/* -------- FAQ accordion (card treatment) --------------------- */
.faq-item {
  background: rgba(78, 60, 49, 0.025);
  border: 0.5px solid var(--hairline);
  border-radius: 4px;
  margin-bottom: 12px;
  transition: background 220ms ease, border-color 220ms ease;
}
.faq-item:hover { background: rgba(78, 60, 49, 0.05); }
.faq-item.is-open {
  background: #fff;
  border-color: var(--hairline-strong);
}
.faq-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  font-family: 'Montserrat', sans-serif; font-size: 15px; color: var(--ink);
  cursor: pointer;
}
.faq-row .faq-icon { font-size: 16px; color: var(--ink-muted); }
.faq-body {
  padding: 0 24px 22px;
  font-family: 'Montserrat', sans-serif; font-size: 14px; line-height: 1.85; color: var(--ink-muted);
  max-width: 720px; display: none;
}
.faq-body p { margin: 0 0 14px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-item.is-open .faq-body { display: block; }
.faq-item.is-open > .faq-row { padding-bottom: 10px; font-weight: 500; }

/* -------- Utility --------------------------------------------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.bg-cream { background: var(--cream); }
.bg-warm  { background: var(--warm-gray); }
.bg-icy   { background: var(--icy); }
.bg-coffee, .on-dark.bg-coffee { background: var(--coffee); }

/* =============================================================
   Breakpoints — 1024 (nav collapse) and 768 (mobile)
   ============================================================= */
@media (max-width: 1024px) {
  .namesake-band { grid-template-columns: 1fr; gap: 28px; }
  .namesake-band__image { height: 320px; }

  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .groups-band__grid { grid-template-columns: 1fr; gap: 2rem; }
  .address-block { grid-template-columns: 1fr; }
  .address-block__map { min-height: 320px; }

  .spread { grid-template-columns: 1fr; gap: 2rem; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .amenities__cell:not(:nth-child(4n)) { border-right: 0; }
  .amenities__cell:not(:nth-child(2n)) { border-right: 0.5px solid var(--hairline); }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .suite-spread, .suite-spread--flip { grid-template-columns: 1fr; }
  .suite-spread__media { min-height: 320px; }
  .suite-spread--flip .suite-spread__body { align-items: flex-start; text-align: left; }

  .form-grid { grid-template-columns: 1fr; gap: 26px; }

  
  
  .lightbox__stage { max-width: 94vw; max-height: 62vh; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: 24px; transform: none; }
  .lightbox__prev { left: 24px; }
  .lightbox__next { right: 24px; }
  .lightbox__counter { bottom: 76px; }
  .floorplan-band__grid { grid-template-columns: 1fr; gap: 32px; }
  .booking-bar { grid-template-columns: 1fr; gap: 32px; }

  .contact-strip { grid-template-columns: 1fr; gap: 28px; padding: 32px var(--gutter); }
  .callout-band__grid { grid-template-columns: 1fr; gap: 24px; }
  .fit-for-band__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .map-band__card { position: static; max-width: none; padding: 32px var(--gutter); }
  .map-band__media { height: 320px; }
  .booking-bar__actions { text-align: left; }
}

@media (max-width: 768px) {
  :root { --gutter: 1.5rem; --nav-height: 72px; }

  /* On mobile, Fahkwang stays for display but drops to slightly tighter tracking */
  .display, h1 { letter-spacing: -0.015em; }

  .book-direct {
    flex-direction: row; flex-wrap: nowrap;
    gap: 10px; padding: 12px var(--gutter);
    font-size: 10px; letter-spacing: 0.12em;
  }
  .book-direct__icon { font-size: 14px; }
  .book-direct__msg--long { display: none; }
  .book-direct__msg--short { display: inline; }
  .book-direct__sep { display: inline; }

  .suite-hero__caption { left: 24px; bottom: 28px; }
  .suite-hero__caption { max-width: none; }
  .suite-hero__aside { margin: 20px 0 0; width: 100%; }
    .suite-hero__sub { max-width: none; }

  .suite-hero__floors { display: none; }
  .spec-card {
    margin: 20px 0 0; width: 100%;
    padding: 24px 20px; flex-wrap: wrap; gap: 20px;
  }
  .spec-card__divider { display: none; }
  .spec-card__cell { flex: 1 0 40%; }

  .hero { min-height: 480px; padding: calc(var(--nav-height) + 60px) var(--gutter) 40px; }
  .hero__meta { position: static; margin-top: 24px; opacity: 0.6; }

  .amenities__grid { grid-template-columns: 1fr; }
  .amenities__cell:not(:nth-child(2n)) { border-right: 0; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__meta { flex-direction: column; gap: 8px; align-items: flex-start; }

  /* Mobile footer: accordion columns */
  .footer__grid { gap: 0; }
  .footer__col { border-top: 0.5px solid var(--hairline); }
  .footer__col:last-of-type { border-bottom: 0.5px solid var(--hairline); }
  .footer__col h4 {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; margin: 0;
    color: var(--ink);
    cursor: pointer;
    letter-spacing: 0.32em;
  }
  .footer__col-icon {
    font-size: 16px; color: var(--ink-muted);
    transition: transform 220ms ease;
  }
  .footer__col.is-open .footer__col-icon { transform: rotate(180deg); }
  .footer__col ul {
    display: none;
    padding: 0 0 18px;
  }
  .footer__col.is-open ul { display: block; }
  .footer__meta { margin-top: 24px; padding-top: 20px; border-top: 0.5px solid var(--hairline); }
}

/* =============================================================
   Per-suite media modifiers
   Photo assets live at /images/suites/{slug}/{tile|hero}.jpg
   ============================================================= */

/* -------- Suite index tiles (.suite-spread__media--{slug}) --- */
.suite-spread__media--the-canal       { background-image: url('/images/suites/the-canal/tile.jpg'); }
.suite-spread__media--the-marigny     { background-image: url('/images/suites/the-marigny/tile.jpg'); }
.suite-spread__media--the-gameday     { background-image: url('/images/suites/the-gameday/tile.jpg'); }
.suite-spread__media--the-garden-district  { background-image: url('/images/suites/the-garden-district/tile.jpg'); }
.suite-spread__media--the-crescent-city   { background-image: url('/images/suites/the-crescent-city/tile.jpg'); }
.suite-spread__media--the-french-quarter       { background-image: url('/images/suites/the-french-quarter/tile.jpg'); }
.suite-spread__media--the-courtyard     { background-image: url('/images/suites/the-courtyard/tile.jpg'); }

/* -------- Suite detail heroes (.suite-hero__media--{slug}) --- */
.suite-hero__media--the-canal       { background-image: url('/images/suites/the-canal/hero.jpg'); }
.suite-hero__media--the-marigny     { background-image: url('/images/suites/the-marigny/hero.jpg'); }
.suite-hero__media--the-gameday     { background-image: url('/images/suites/the-gameday/hero.jpg'); }
.suite-hero__media--the-garden-district      { background-image: url('/images/suites/the-garden-district/hero.jpg'); }
.suite-hero__media--the-crescent-city   { background-image: url('/images/suites/the-crescent-city/hero.jpg'); }
.suite-hero__media--the-french-quarter       { background-image: url('/images/suites/the-french-quarter/hero.jpg'); }
.suite-hero__media--the-courtyard     { background-image: url('/images/suites/the-courtyard/hero.jpg'); }

/* =============================================================
   Page-level hero + homepage media modifiers
   Drop the referenced files into /images/ (see paths below).
   All use background-image so the layout keeps working when
   an image is missing — you just see the fallback color.
   ============================================================= */

/* Homepage featured-suite block (section "02 — Featured Suite") */
.suite-spread__media--featured { background-image: url('/images/homepage/featured.jpg'); }

/* Full-bleed page heroes — one file per page, all cover-fitted */
.hero__media--home     { background: var(--coffee) url('/images/homepage/hero-poster.jpg') center/cover no-repeat; }
.hero__media--suites   { background: var(--coffee) url('/images/suites/hero.jpg')          center/cover no-repeat; }
.hero__media--groups   { background: var(--coffee) url('/images/group-stays/hero.jpg')     center/cover no-repeat; }
.hero__media--business { background: var(--coffee) url('/images/business-travel/hero.jpg')  center/cover no-repeat; }
.hero__media--contact  { background: var(--coffee) url('/images/contact/hero.jpg')          center/cover no-repeat; }

/* Virtual Tour CTA under first column of Views Across New Orleans */
.page-intro__cta { display: inline-block; margin-top: 32px; }
.page-intro__body--cols > .page-intro__cta { grid-column: 1; justify-self: start; margin-top: 8px; }

/* =============================================================
   Global color-scheme lock — prevent iOS Safari / Samsung Internet
   / Chrome auto-invert on phones where the user has dark mode on.
   Paired with <meta name="color-scheme" content="light"> in <head>.
   ============================================================= */
:root { color-scheme: light; }

/* =============================================================
   MOBILE POLISH PASS — Sept 11 2026
   Targets the layout bugs surfaced by real-device screenshots at
   375px wide. Every rule below is additive — it overrides earlier
   base or breakpoint rules by living lower in the cascade.
   ============================================================= */

/* --- 1024 tweaks (tablet + small laptop) -------------------- */
@media (max-width: 1024px) {
  
  
  

  /* Index list (suite spec grid, business travel points, etc.) —
     drop to one column so labels aren't cramped into 3-line wraps. */
  .index-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: var(--sp-lg);
  }
  .index-list__row:nth-child(2) { border-top: 0; }

  /* Media-first stacking: when a 2-col spread collapses to 1 col on
     mobile, the image/map child must render ABOVE the body, regardless
     of DOM order. Otherwise --flip tiles (Marigny, Garden District,
     Courtyard) and every namesake-band show their photo orphaned
     500 px below the block it belongs to. */
  .suite-spread,
  .suite-spread--flip,
  .namesake-band,
  .address-block,
  .floorplan-band__grid,
  .callout-band__grid,
  .groups-band__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .suite-spread__media,
  .namesake-band__image,
  .address-block__map,
  .floorplan-band__image { order: -1; width: 100%; }

  /* Editorial spread: kill the desktop-only top offset that leaves
     ~180px of empty space above the body when it's stacked below H2. */
  .spread__body { padding-top: 0; }
}

/* --- 768 tweaks (phones) ------------------------------------ */
@media (max-width: 768px) {
  /* Shrink display type so H1/H2 don't run 4-5 lines tall and clip
     descenders into the next section. Applies to hero + section H2. */
  :root {
    --fs-display: clamp(2.25rem, 8vw, 3rem);
    --fs-h1:      clamp(2rem, 7vw, 2.75rem);
    --fs-h2:      clamp(1.625rem, 5.5vw, 2.25rem);
  }
  .display, h1, h2 { line-height: 1.05; }
  .display { line-height: 1.05; }
  .featured__title { font-size: var(--fs-h1); }
  .suite-hero__title { font-size: clamp(2.25rem, 8vw, 3rem); }
  .cta-band__title,
  .cta-band--hero .cta-band__title,
  .booking-bar__title,
  .callout-band__title,
  .namesake-band__title,
  .floorplan-band__title,
  .section-heading__title,
  .page-intro__title,
  .fit-for-band__title,
  .faq-section__title,
  .address-block__title,
  .map-band__title { font-size: var(--fs-h1); }

  /* Nav: keep brand left, group reserve pill + hamburger on the right
     without touching the HTML. margin-left:auto on the reserve pushes
     both toward the right edge, ending the "floating middle" look. */
  .nav__reserve { display: none; }
  .nav__toggle {
    display: block;
    width: 44px; height: 44px;
    padding: 12px 9px;
    box-sizing: border-box;
    position: relative;
  }
  .nav__toggle span { left: 9px; right: 9px; }
  .nav__toggle span:nth-child(1) { top: 17px; }
  .nav__toggle span:nth-child(2) { top: 27px; }

  /* Book-Direct strip: tighter tracking so the marketing line fits
     on two neat lines instead of chopping mid-word. */
  .book-direct { font-size: 11px; letter-spacing: 0.14em; }

  /* Spread section: halve the vertical padding on phones so a text
     block doesn't drag 250px+ of blank background above and below. */
  .spread { padding: var(--sp-lg) var(--gutter); gap: 1.25rem; }

  /* Suite hero — darker scrim so white type has real contrast over
     the bright interior photography. */
  .suite-hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(78,60,49,0.55) 0%,
        rgba(78,60,49,0.15) 45%,
        rgba(78,60,49,0.85) 100%);
  }
  .suite-hero__caption .display,
  .suite-hero__title,
  .suite-hero__sub { text-shadow: 0 1px 12px rgba(0,0,0,0.35); }

  /* Homepage hero: same treatment so hero copy is readable over
     the video/poster even in bright sun. */
  .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(78,60,49,0.55) 0%,
        rgba(78,60,49,0.10) 40%,
        rgba(78,60,49,0.15) 55%,
        rgba(78,60,49,0.70) 100%);
  }
  .hero__title, .hero__sub, .hero__eyebrow { text-shadow: 0 1px 12px rgba(0,0,0,0.35); }

  /* Section-heading bottom margin was 60px — halve it. */
  .section-heading__title { margin: 16px auto 32px; }

  /* Support tabs: horizontal scroll strip instead of ragged wrap. */
  .support-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 24px;
    padding: 0 var(--gutter);
  }
  .support-tabs::-webkit-scrollbar { display: none; }
  .support-tabs__tab { white-space: nowrap; padding: 18px 0; }

  /* Contact strip: give the value line room to breathe so the last
     item doesn't clip. */
  .contact-strip { padding: 32px var(--gutter) 40px; gap: 24px; }
  .contact-strip__value { line-height: 1.3; }

  /* Map card: match the strip's bottom breathing room. */
  .map-band__card { padding: 28px var(--gutter) 36px; }

  /* Full-width, centered buttons in the primary CTA/form/booking
     surfaces — feels correct on a touch device. */
  .form-actions { flex-direction: column-reverse; align-items: stretch; gap: 20px; }
  .form-actions .btn-primary,
  .cta-band .btn-primary,
  .booking-bar .btn-primary,
  .callout-band .btn-primary {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .form-note { max-width: none; text-align: left; }
  .booking-bar__actions { text-align: left; }

  /* Callout stats: tighter gap so pairs of stats don't feel adrift. */
  .callout-band__stats { gap: 20px 24px; }

  /* Namesake image: honor aspect ratio instead of forcing 320px. */
  .namesake-band__image {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }

  /* Spec card: 3-cell rows on a phone are unbalanced when only 3
     cells exist and the 4th wraps. Force even 2-up then last row. */
  .spec-card__cell { flex: 1 0 calc(50% - 10px); }
}

/* --- 560 tweaks (small phones) ------------------------------ */
@media (max-width: 560px) {
  /* Stats + fit-for + steps grids collapse from 2 → 1 col so Fahkwang
     numerals + labels stop crowding on iPhone SE / small Androids. */
  .stats__grid       { grid-template-columns: 1fr; gap: 32px; }
  .fit-for-band__grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid        { grid-template-columns: 1fr; gap: 28px; padding-bottom: var(--sp-lg); }
  .stats__grid > div { text-align: left !important; }
  .stats__grid > div,
  .fit-for-band__cell { align-items: flex-start; }

  /* Homepage stats look better centered on a full-width column */
  .stats__grid > div { text-align: center !important; }
  .fit-for-band__cell { align-items: center; }
}

/* =============================================================
   End mobile polish pass
   ============================================================= */

/* =============================================================
   MOBILE SUITE GALLERY — Sept 11 2026
   Big hero photo + horizontal thumbnail strip.
   Tap a thumb → hero swaps to that photo. Tap hero → lightbox.
   ============================================================= */
@media (max-width: 768px) {
  
  
  

  /* Main gallery layout */
  

  /* Hero: full width, tap to open the lightbox at the current image */
  

  /* Stack becomes a horizontal thumbnail strip */
  
  
  
  
  
}

/* =============================================================
   MOBILE SUITE HERO — Sept 11 2026
   Caption sits BELOW the image on mobile, dark ink on cream.
   The JS in site.js moves .suite-hero__caption out of the media
   container on mobile so it becomes a sibling after the image.
   ============================================================= */
@media (max-width: 768px) {
  .suite-hero { padding: 20px var(--gutter) 0; }
  .suite-hero__media {
    height: clamp(240px, 55vw, 320px);
  }
  .suite-hero__scrim { display: none; }

  /* When JS lifts the caption out of media, this rule applies */
  .suite-hero > .suite-hero__caption {
    position: static;
    left: auto; bottom: auto; right: auto;
    max-width: none;
    padding: 22px 0 8px;
    color: var(--ink);
    text-shadow: none;
  }
  .suite-hero > .suite-hero__caption .eyebrow { color: var(--ink-muted); }
  .suite-hero > .suite-hero__caption .suite-hero__title,
  .suite-hero > .suite-hero__caption h1 {
    color: var(--ink);
    text-shadow: none;
    margin-top: 10px;
  }
  .suite-hero > .suite-hero__caption .suite-hero__sub,
  .suite-hero > .suite-hero__caption p {
    color: var(--ink-muted);
    text-shadow: none;
    max-width: none;
  }
}

/* =============================================================
   MOBILE SPEC-CARD — Sept 11 2026
   Use a real 2-column grid so the stat cells are perfectly
   centered within each half instead of drifting when flex-wrap
   inherits the base spec-card's space-between distribution.
   ============================================================= */
@media (max-width: 768px) {
  .spec-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    row-gap: 24px;
    column-gap: 0;
    padding: 28px 16px;
  }
  .spec-card__cell {
    flex: none;
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .spec-card__divider { display: none; }
}

/* =============================================================
   FLOORPLAN BOX — explicit cream background behind the
   transparent PNG. The base shorthand `background: var(--cream)
   center / contain no-repeat` was getting outcompeted at some
   screen widths (or blending into the warm-gray section), so
   split it into discrete properties with the color in its own
   declaration that inline `background-image` cannot touch.
   ============================================================= */
.floorplan-band__image {
  background-color: transparent;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border: 0;
  padding: 16px;
}
@media (max-width: 768px) {
  .floorplan-band__image { padding: 12px; }
}

/* =============================================================
   NAMESAKE LEDE — subtitle treatment
   The base body rule `.namesake-band__body p` was outranking
   `.namesake-band__lede` on specificity, so the first-sentence
   subtitle looked identical to the paragraph below it. Boost
   the selector and give it a real subtitle feel — larger
   Fahkwang serif, italic, dark ink, more breathing room.
   ============================================================= */
.namesake-band__body p.namesake-band__lede {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 22px;
}

/* =============================================================
   WARM-GRAY SECTIONS — full-strength ink for body text
   On the warm-gray (taupe) band background, muted-ink text
   washes out. Push body copy and stat labels to full --ink;
   eyebrows and hairline dividers stay muted for hierarchy.
   ============================================================= */
.floorplan-band__body,
.floorplan-band__meta,
.stats .stats__label,
.fit-for-band__label,
.callout-band--warm .callout-band__body,
.callout-band--warm .callout-band__stat-num,
.contact-strip__value,
.contact-strip__note,
.map-band__card--warm .map-band__note {
  color: var(--ink);
}

/* =============================================================
   BOOKING BAR — group-stays tuck-in
   Small sentence-case ghost line under the primary CTA that
   points larger groups toward /group-stays without competing
   for visual weight with the Check Availability button.
   ============================================================= */
.booking-bar__actions { align-self: end; }
.booking-bar__group {
  margin: 16px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-light-2);
  text-align: right;
}
.booking-bar__group a {
  color: var(--ink-light-2);
  border-bottom: 0.5px solid var(--ink-light-2);
  padding-bottom: 1px;
  margin-left: 4px;
  transition: color 160ms ease, border-color 160ms ease;
}
.booking-bar__group a:hover {
  color: var(--warm-gray);
  border-bottom-color: var(--warm-gray);
}
@media (max-width: 1024px) {
  .booking-bar__group { text-align: left; }
}

/* =============================================================
   LIGHTBOX THUMBS — navigation strip inside the lightbox
   Stage + thumbs are one flex row (desktop) or column (mobile),
   centered together on screen with a real gap between them.
   The active thumb gets a cream outline; JS builds them.
   ============================================================= */
.lightbox { gap: 12px; }
.lightbox__thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  padding-left: 4px;
  padding-right: 4px;
  width: 110px;
  flex: 0 0 110px;
  height: min(88vh, 1000px);
}
.lightbox__thumbs::-webkit-scrollbar { width: 5px; }
.lightbox__thumbs::-webkit-scrollbar-thumb { background: rgba(237,235,230,0.3); border-radius: 3px; }
.lightbox__thumb {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.05);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 1;
  filter: brightness(1);
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: filter 160ms ease, outline-color 160ms ease;
}
.lightbox__thumb:hover { filter: brightness(0.5); }
.lightbox__thumb.is-active {
  filter: brightness(0.5);
}

/* Desktop: shrink stage so the pair fits centered together */
@media (min-width: 1025px) {
  .lightbox__stage {
    max-width: min(calc(100vw - 380px), 1300px);
  }
}

/* Mobile: stack column so the strip runs along the bottom */
@media (max-width: 1024px) {
  .lightbox {
    flex-direction: column;
    gap: 12px;
  }
  .lightbox__thumbs {
    flex-direction: row;
    width: min(94vw, 1200px);
    flex: 0 0 auto;
    max-height: 68px;
    height: 68px;
    padding-left: 0;
    padding-right: 0;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .lightbox__thumbs::-webkit-scrollbar { height: 4px; width: 0; }
  .lightbox__thumb {
    width: 60px;
    height: 60px;
    aspect-ratio: 1 / 1;
  }
  .lightbox__stage { max-height: 55vh; max-width: min(94vw, 1200px); }
  .lightbox__counter { bottom: 8px; }
}

/* Widen the group-stays hero text column so the long title
   doesn't wrap onto too many lines and stretch the hero height. */
.hero:has(.hero__media--groups) .hero__inner { max-width: 620px; }
.hero:has(.hero__media--groups) .hero__sub { max-width: 520px; }

/* No dark fade over the group-stays hero image */
.hero:has(.hero__media--groups) .hero__scrim { display: none; }
.hero:has(.hero__media--groups) .hero__title,
.hero:has(.hero__media--suites) .hero__title,
.hero:has(.hero__media--business) .hero__title,
.hero:has(.hero__media--home) .hero__title { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.hero:has(.hero__media--suites) .hero__scrim { display: none; }
.hero:has(.hero__media--business) .hero__scrim { display: none; }
/* Homepage hero: text sits in a frosted-glass card, bottom-left */
.hero:has(.hero__media--home) .hero__inner {
  max-width: 500px;
  padding: clamp(24px, 2.5vw, 32px) clamp(24px, 2.5vw, 32px);
  background: rgba(78, 60, 49, 0.28);
  border: 0.5px solid rgba(237, 235, 230, 0.15);
  border-radius: 4px;
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .hero:has(.hero__media--home) .hero__inner {
    max-width: none;
    padding: 22px;
  }
}

.hero:has(.hero__media--home) .hero__scrim {
  background: linear-gradient(180deg, rgba(78,60,49,0.55) 0%, rgba(78,60,49,0.25) 20%, rgba(78,60,49,0) 40%);
}
@media (min-width: 769px) {
  .hero:has(.hero__media--suites) .hero__inner { max-width: none; }
  .hero:has(.hero__media--suites) .hero__title { white-space: nowrap; }
}

/* =============================================================
   SUITE GALLERY — clean rebuild Sept 12 2026
   Desktop (>=769px): static 3-column grid, no scroll capture.
     col 1: hero (photo 1), spans all 4 rows
     col 2: 2 stacked (photos 2, 3)
     col 3: 4 stacked (photos 4-7)
   Mobile (<769px): hero + horizontal thumbstrip built by
     js/site.js from photos 2..N plus extras.
   Extras (photos 8+) live in <script data-gallery-extras>
   as JSON for the lightbox — not in the visible DOM.
   ============================================================= */

.suite-gallery-band {
  background: var(--coffee);
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(2.5rem, 5vw, 4rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

/* Base (mobile-first): single-column stack + hydrated strip */
.suite-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 var(--gutter);
}
.suite-gallery__cell {
  background: var(--warm-gray) center / cover no-repeat;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: opacity 220ms ease;
}
.suite-gallery__cell:hover,
.suite-gallery__cell:focus-visible {
  opacity: 0.85;
  outline: none;
}
.suite-gallery__cell--main {
  height: clamp(240px, 62vw, 340px);
  cursor: zoom-in;
}
.suite-gallery > .suite-gallery__cell:not(.suite-gallery__cell--main) {
  display: none;
}

.suite-gallery__strip {
  display: flex;
  gap: 8px;
  padding: 4px 0 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.suite-gallery__strip::-webkit-scrollbar { display: none; }
.suite-gallery__thumb {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
  background: var(--warm-gray) center / cover no-repeat;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: opacity 160ms ease, outline-color 160ms ease;
}
.suite-gallery__thumb:hover { opacity: 0.85; }
.suite-gallery__thumb.is-active { outline-color: var(--coffee); }

.suite-gallery__note {
  display: none;
  padding: 20px var(--gutter) 0;
  margin: 0;
  text-align: right;
}
.suite-gallery__link {
  background: transparent;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-light-2);
  transition: color 180ms ease;
}
.suite-gallery__link:hover { color: var(--warm-gray); }

/* Desktop (>=769px): static 3-column grid. All 7 cells visible.
   No JS involvement, no scroll capture, no hidden reflows. */
@media (min-width: 769px) {
  .suite-gallery {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr) minmax(0, 0.55fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 12px;
    height: clamp(420px, 48vw, 620px);
  }
  .suite-gallery__cell--main   { grid-column: 1; grid-row: 1 / -1; cursor: zoom-in; height: auto; }
  .suite-gallery__cell--mid-a  { grid-column: 2; grid-row: 1 / span 2; }
  .suite-gallery__cell--mid-b  { grid-column: 2; grid-row: 3 / span 2; }
  .suite-gallery__cell--side-a { grid-column: 3; grid-row: 1; }
  .suite-gallery__cell--side-b { grid-column: 3; grid-row: 2; }
  .suite-gallery__cell--side-c { grid-column: 3; grid-row: 3; }
  .suite-gallery__cell--side-d { grid-column: 3; grid-row: 4; }
  .suite-gallery > .suite-gallery__cell:not(.suite-gallery__cell--main) {
    display: block;
  }
  .suite-gallery__strip { display: none; }
  .suite-gallery__note  { display: block; padding: 20px var(--gutter) 0; }
}

/* =============================================================
   SCROLL PERFORMANCE — content-visibility
   Every major page-level section skips render + paint while it
   is off-screen. contain-intrinsic-size gives each a placeholder
   height so the scrollbar and scroll position stay accurate.
   Grouped in one rule so the whole site benefits at once.
   ============================================================= */
.hero,
.suite-hero,
.spread,
.suite-spread,
.suite-gallery-band,
.floorplan-band,
.namesake-band,
.booking-bar,
.featured,
.groups-band,
.stats,
.amenities,
.address-block,
.page-intro,
.stacked-section,
.callout-band,
.fit-for-band,
.contact-strip,
.faq-section,
.map-band,
.support-tabs,
.legal-page,
.cta-band {
  content-visibility: auto;
  contain-intrinsic-size: 600px;
}

/* Section-specific placeholders where 600px is a poor guess */
.suite-hero,
.hero            { contain-intrinsic-size: 700px; }
.suite-gallery-band,
.floorplan-band  { contain-intrinsic-size: 800px; }
.booking-bar,
.cta-band        { contain-intrinsic-size: 300px; }
.legal-page      { contain-intrinsic-size: 1200px; }

/* =============================================================
   WALLET PAGES — scoped tightening
   Reduces heading sizes so h2 subsections don't compete with the
   page h1, and cuts every major section's vertical padding so
   the page reads compactly.
   ============================================================= */
.wallet-page .page-intro__title    { font-size: var(--fs-h2); }
.wallet-page .section-heading__title { font-size: var(--fs-h2); margin: 16px auto 32px; }
.wallet-page .callout-band__title  { font-size: clamp(1.75rem, 3vw, 2.25rem); margin: 16px 0 16px; }
.wallet-page .cta-band__title      { font-size: clamp(1.75rem, 3vw, 2.25rem); }

.wallet-page .page-intro    { padding: 3rem var(--gutter) 2rem; }
.wallet-page .faq-section   { padding: 2.5rem var(--gutter); }
.wallet-page .callout-band  { padding: 3rem var(--gutter); }
.wallet-page .cta-band      { padding: 3rem var(--gutter); }
.wallet-page section[aria-labelledby="steps-h"] {
  background: var(--warm-gray);
  padding: 3.5rem var(--gutter);
}
.wallet-page section[aria-labelledby="steps-h"] .section-heading__title { margin-top: 16px; margin-bottom: 40px; }
.wallet-page .steps-grid { padding: 0 var(--gutter); }
@media (max-width: 768px) {
  .wallet-page section[aria-labelledby="steps-h"] { padding: 2rem var(--gutter); }
}

@media (max-width: 768px) {
  .wallet-page .page-intro    { padding: 1.75rem var(--gutter) 1.5rem; }
  .wallet-page .faq-section   { padding: 1.5rem var(--gutter); }
  .wallet-page .callout-band  { padding: 2rem var(--gutter); }
  .wallet-page .cta-band      { padding: 2rem var(--gutter); }
}

/* =============================================================
   HERO — mobile: move the sub copy out of the photo overlay
   into its own quiet text band below. Keeps the h1 + CTA over
   the image, gives long sub copy a proper reading treatment.
   ============================================================= */
.hero-sub-mobile { display: none; }
@media (max-width: 768px) {
  .hero__sub { display: none; }
  .hero-sub-mobile {
    display: block;
    padding: 32px var(--gutter) 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-muted);
    max-width: 620px;
  }
  /* Shift hero photo so the interesting side is in frame at portrait width */
  .hero__media--groups,
  .hero__media--business,
  .hero__media--contact {
    background-position: 65% center;
  }
}


/* =============================================================
   MOBILE TIGHTENING PASS (Sept 14 2026)
   Four coordinated changes:
   1. Cut section vertical padding roughly in half (via --sp-section).
   2. Shrink display/H1/H2 sizes so titles wrap less and feel less shouty.
   3. Tighten line-height and paragraph gaps on body copy.
   4. Cap hero min-height so real content appears above the fold sooner.
   Desktop is unchanged.
   ============================================================= */
@media (max-width: 768px) {
  :root {
    --sp-section: clamp(2.5rem, 6vw, 4rem);
    --fs-display: clamp(2.5rem, 8vw, 3.75rem);
    --fs-h1:      clamp(2rem, 6vw, 2.75rem);
    --fs-h2:      clamp(1.5rem, 4vw, 1.875rem);
    --sp-lg:      clamp(1.75rem, 4vw, 2.5rem);
  }
  .body      { line-height: 1.6; }
  .body-lead { line-height: 1.65; }
  .body p, .body-lead p, .stacked-body p, .featured__body p { margin-bottom: 16px; }
  .featured__title { margin: 12px 0 16px; }
  .page-intro__title { margin: 14px 0 18px; }
  .section-heading__title { margin: 12px auto 22px; }
  .hero { min-height: 65vh; padding-top: calc(var(--nav-height) + 40px); padding-bottom: 40px; }
  .hero--short { min-height: 45vh; }
}


/* ---------- Form submission status ---------- */
.form-status {
  grid-column: 1 / -1;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-top: 12px;
}
.form-status--success {
  background: #e8f4ea;
  color: #235c33;
  border: 1px solid #b8d9bf;
}
.form-status--error {
  background: #fbeaea;
  color: #7a2727;
  border: 1px solid #e5bcbc;
}
