/* ============================================================
   Maia Hotel Jakarta — Independent Guide
   Design tokens per idea_y_concepto/arquitectura-idea.md
   ============================================================ */

:root {
  /* Color */
  --color-primary: #0B1E3C;
  --color-secondary: #2B5DAA;
  --color-accent: #F5B400;
  --color-accent-hover: #DDA200;
  --color-gold-muted: #C9A15C;
  --color-bg: #FFFFFF;
  --color-gray-50: #F7F8FA;
  --color-gray-100: #EEF0F3;
  --color-gray-300: #D7DBE0;
  --color-gray-500: #8A909A;
  --color-gray-700: #4B5563;
  --color-text: #1B1F27;
  --color-footer-bg: #EEF2FA;

  /* Radius */
  --radius-card: 16px;
  --radius-input: 12px;
  --radius-button: 10px;

  /* Shadow */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .08);
  --shadow-header: 0 2px 12px rgba(11, 30, 60, .08);

  /* Spacing scale — 8 / 16 / 24 / 32 / 48 / 64 / 96 */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  /* Layout */
  --container-max: 1400px;
  --pad-desktop: 40px;
  --pad-tablet: 20px;
  --pad-mobile: 16px;

  /* Type scale */
  --fs-hero: 56px;
  --fs-subtitle: 32px;
  --fs-h2: 36px;
  --fs-h3: 26px;
  --fs-card-title: 22px;
  --fs-body: 17px;
  --fs-small: 14px;
  --fs-note: 12px;

  /* Display font — premium accent for logo/major headings only */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.25; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; font-size: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-desktop);
}

.section { padding: var(--space-6) 0; }
.section--alt { background: var(--color-gray-50); }

/* Sticky header covers the top of the viewport, so in-page anchor jumps
   (hero "Map & Directions", nav "Reviews"/"FAQ") need room to land below it. */
#map, #faq, #reviews, #rooms { scroll-margin-top: 100px; }

.section-header { margin-bottom: var(--space-4); }
.section-header h2 { font-size: var(--fs-h2); font-family: var(--font-display); }
.section-header .eyebrow {
  display: block;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-1);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Buttons: only 3 variants ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 14px 28px;
  border-radius: var(--radius-button);
  font-size: var(--fs-body);
  font-weight: 700;
  border: 2px solid transparent;
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 2px; }

.btn--primary { background: var(--color-accent); color: var(--color-primary); }
.btn--primary:hover { background: var(--color-accent-hover); }

.btn--secondary { background: #fff; color: var(--color-secondary); border-color: var(--color-secondary); }
.btn--secondary:hover { background: var(--color-secondary); color: #fff; }

.btn--ghost { background: transparent; color: var(--color-secondary); padding-left: 4px; padding-right: 4px; }
.btn--ghost:hover { color: var(--color-primary); }

.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: var(--fs-small); }

/* ---------- Card ---------- */
.card {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease;
}
.card:hover { transform: scale(1.01); }

/* ---------- Icon box ---------- */
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-gray-100);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; }

/* ============================================================
   Utility bar (3.1)
   ============================================================ */
.utility-bar {
  background: var(--color-primary);
  color: #fff;
  min-height: 34px;
  font-size: var(--fs-note);
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: 6px;
  padding-bottom: 6px;
  flex-wrap: wrap;
}
.utility-bar__nav { display: flex; align-items: center; gap: var(--space-2); }
.utility-bar__nav a:hover { text-decoration: underline; }
.utility-bar__lang { position: relative; }
.utility-bar__lang summary {
  cursor: pointer;
  list-style: none;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: var(--fs-note);
  user-select: none;
}
.utility-bar__lang summary::-webkit-details-marker { display: none; }
.utility-bar__lang summary::after { content: " \25BE"; }
.utility-bar__lang[open] summary::after { content: " \25B4"; }
.utility-bar__lang-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  margin: 0;
  background: var(--color-primary);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  padding: 4px 0;
  min-width: 150px;
  list-style: none;
  z-index: 60;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.utility-bar__lang-menu li { padding: 0; }
.utility-bar__lang-menu a,
.utility-bar__lang-menu .utility-bar__lang-current {
  display: block;
  padding: 6px 12px;
  color: #fff;
  white-space: nowrap;
}
.utility-bar__lang-menu a:hover { background: rgba(255,255,255,.12); text-decoration: none; }
.utility-bar__lang-menu .utility-bar__lang-current { opacity: .6; cursor: default; }
.utility-bar__disclaimer { opacity: .85; text-align: right; }

/* ============================================================
   Main header (3.2)
   ============================================================ */
.site-header {
  background: #fff;
  min-height: 84px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-header); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); width: 100%; }

.brand { display: flex; align-items: center; gap: var(--space-2); }
.brand__icon {
  width: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0;
}
.brand__icon img { width: 44px; height: 44px; display: block; }
.brand__icon::after {
  content: "★★★★";
  font-size: 10px;
  color: var(--color-accent);
  letter-spacing: 1px;
  line-height: 1;
  margin-top: 3px;
}
.brand__text { overflow: hidden; max-width: 260px; opacity: 1; transition: opacity 2s ease, max-width .25s ease; }
.brand__name { font-family: 'Dancing Script', cursive; font-size: 27px; font-weight: 700; color: var(--color-primary); white-space: nowrap; }
.brand__tagline { font-size: var(--fs-note); color: var(--color-gray-700); font-weight: 500; white-space: nowrap; }

.brand__welcome {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-gold-muted);
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: opacity 2s ease, max-width .25s ease;
}

/* Home page only: the hero's H1 repeats the brand name right below the header,
   so keep the header to just the mark until the user scrolls past the hero —
   the wordmark reveals once .is-stuck kicks in. A script "welcome" line fills
   that empty space instead, and swaps back out once the wordmark takes over.
   Other pages (no .hero) are unaffected. */
body:has(.hero) .site-header:not(.is-stuck) .brand__text { opacity: 0; max-width: 0; }
body:has(.hero) .site-header:not(.is-stuck) .brand__welcome { opacity: 1; max-width: 420px; }

.main-nav { display: flex; align-items: center; gap: var(--space-4); }
.main-nav__list { display: flex; align-items: center; gap: var(--space-3); }
.main-nav__list a {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-text);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav__list a:hover { color: var(--color-secondary); border-color: var(--color-accent); }
.main-nav__list a.is-active { color: var(--color-secondary); border-color: var(--color-accent); }

.menu-toggle {
  background: none; border: none; color: var(--color-primary);
  width: 40px; height: 40px; display: none; align-items: center; justify-content: center;
  border-radius: 8px;
}
.menu-toggle:hover { background: var(--color-gray-100); }

/* ============================================================
   Hero (3.3) — 60 / 40 split
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 30, 60, .55), rgba(11, 30, 60, .78));
  z-index: 1;
}

/* Sliding vertical-photo carousel — hero backdrop */
.hero__carousel {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__carousel-track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: hero-carousel-scroll 50s linear infinite;
}
.hero__carousel-track img {
  height: 100%;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 4px;
}
@keyframes hero-carousel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__carousel-track { animation: none; }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60% 40%;
  gap: var(--space-5);
  align-items: center;
  width: 100%;
}

.hero__content { color: #fff; }
.hero__title { font-family: var(--font-display); font-size: var(--fs-hero); color: #fff; margin-bottom: var(--space-1); text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.hero__subtitle { font-size: var(--fs-subtitle); font-weight: 500; color: #fff; margin-bottom: var(--space-3); text-shadow: 0 1px 10px rgba(0,0,0,.3); }

.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); margin-bottom: var(--space-3); font-size: var(--fs-small); font-weight: 600; }
.hero__meta-stars { color: var(--color-accent); font-size: 16px; letter-spacing: 2px; text-shadow: 0 1px 6px rgba(0,0,0,.3); }
.hero__meta .badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(245,180,0,.14); border: 1px solid rgba(245,180,0,.5); color: var(--color-accent); padding: 4px 12px; border-radius: 999px; font-weight: 700; }
.hero__meta .badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero__text { max-width: 560px; margin-bottom: var(--space-4); color: rgba(255,255,255,.92); }

.hero__cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); }
.hero__cta-row .btn--secondary {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.hero__cta-row .btn--secondary:hover { background: rgba(255,255,255,.26); color: #fff; }

.hero__trust-note { margin-top: var(--space-2); font-size: var(--fs-small); display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); }

/* Floating booking widget — reusable component */
.booking-widget {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
}
.booking-widget h3 { font-size: var(--fs-card-title); margin-bottom: var(--space-3); color: var(--color-primary); }
.booking-widget__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); margin-bottom: var(--space-2); }
.booking-widget__field label { display: block; font-size: var(--fs-note); font-weight: 700; color: var(--color-gray-700); margin-bottom: 4px; }
.booking-widget__field input, .booking-widget__field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-input);
  font-size: var(--fs-small);
}
.booking-widget__guests { margin-bottom: var(--space-3); }
.booking-widget__powered { text-align: center; margin-top: var(--space-2); font-size: var(--fs-note); color: var(--color-gray-500); }
.booking-widget__powered strong { color: var(--color-gray-700); }

/* ============================================================
   Trust bar (3.4)
   ============================================================ */
.trust-bar { background: var(--color-gray-50); padding: var(--space-4) 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.trust-item { flex: 1 1 220px; display: flex; gap: var(--space-2); align-items: flex-start; }
.trust-item h3 { font-size: 16px; margin-bottom: 2px; }
.trust-item p { font-size: var(--fs-small); color: var(--color-gray-700); }

/* ============================================================
   Why Stay (3.5) — 70 / 30
   ============================================================ */
.why-stay .container { display: grid; grid-template-columns: 70% 28%; gap: var(--space-4); align-items: start; }
.why-stay__intro { max-width: 640px; color: var(--color-gray-700); margin-bottom: var(--space-4); }
.why-stay__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); margin-bottom: var(--space-4); }
.feature:not(.card) { padding: var(--space-3); }
.feature .icon-box { margin-bottom: var(--space-2); }
.feature h3 { font-size: 18px; margin-bottom: 4px; }
.feature p { font-size: var(--fs-small); color: var(--color-gray-700); }

.feature__photo {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.feature__body { padding: var(--space-3); }

.about-guide-card { padding: var(--space-3); }
.about-guide-card h3 { font-size: var(--fs-card-title); margin-bottom: var(--space-2); color: var(--color-primary); }
.about-guide-card p { font-size: var(--fs-small); color: var(--color-gray-700); margin-bottom: var(--space-2); }
.about-guide-card img { border-radius: 12px; margin-top: var(--space-2); }

/* ============================================================
   Rooms & Suites (3.6)
   ============================================================ */
.rooms .section-header { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2); }
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.rooms--all .rooms-grid { grid-template-columns: repeat(3, 1fr); }
.room-card { display: flex; flex-direction: column; overflow: hidden; }
.room-card__img { aspect-ratio: 16 / 9; overflow: hidden; }
.room-card__img img { width: 100%; height: 100%; object-fit: cover; }
.room-card__body { padding: var(--space-3); display: flex; flex-direction: column; flex: 1; }
.room-card h3 { font-size: var(--fs-card-title); margin-bottom: var(--space-1); }
.room-card__attrs { display: flex; gap: var(--space-2); flex-wrap: wrap; font-size: var(--fs-note); color: var(--color-gray-700); margin-bottom: var(--space-2); }
.room-card__attrs span { display: inline-flex; align-items: center; gap: 4px; }
.room-card__desc { font-size: var(--fs-small); color: var(--color-gray-700); margin-bottom: var(--space-3); flex: 1; }
.room-card__price { font-size: 20px; font-weight: 800; color: var(--color-primary); margin-bottom: 2px; }
.room-card__price span { font-size: var(--fs-note); font-weight: 500; color: var(--color-gray-500); }
.room-card__price-usd { font-size: var(--fs-note); color: var(--color-gray-500); margin-bottom: var(--space-2); }
.room-card__actions { display: flex; flex-direction: column; gap: 8px; }

/* ---------- Room detail modal ---------- */
.room-modal {
  padding: 0;
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  max-width: 880px;
  width: min(92vw, 880px);
  max-height: min(88vh, 900px);
  overscroll-behavior: contain;
}
.room-modal::backdrop { background: rgba(11, 30, 60, .65); }
.room-modal__inner { position: relative; display: grid; grid-template-columns: 42% 58%; max-height: min(88vh, 900px); }
.room-modal__close {
  position: absolute; top: var(--space-2); right: var(--space-2); z-index: 2;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.9); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.room-modal__close:hover { background: #fff; }
.room-modal__media { overflow: hidden; }
.room-modal__media img { width: 100%; height: 100%; object-fit: cover; }
.room-modal__content { padding: var(--space-4); overflow-y: auto; }
.room-modal__content h3 { font-size: var(--fs-h3); font-family: var(--font-display); color: var(--color-primary); margin-bottom: var(--space-1); }
.room-modal__content .room-card__attrs { margin-bottom: var(--space-2); }
.room-modal__desc { font-size: var(--fs-small); color: var(--color-gray-700); margin-bottom: var(--space-3); }
.room-modal__content h4 { font-size: var(--fs-small); text-transform: uppercase; letter-spacing: .04em; color: var(--color-gray-500); margin-bottom: var(--space-2); }
.room-modal__facilities {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px var(--space-2);
  margin-bottom: var(--space-3);
}
.room-modal__facilities li {
  font-size: var(--fs-small); color: var(--color-text);
  display: flex; align-items: flex-start; gap: 8px;
}
.room-modal__facilities li::before {
  content: ""; flex-shrink: 0; margin-top: 6px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-accent);
}
.room-modal__cta { border-top: 1px solid var(--color-gray-100); padding-top: var(--space-3); }

body.has-open-modal { overflow: hidden; }

@media (max-width: 760px) {
  .room-modal__inner { grid-template-columns: 1fr; overflow-y: auto; }
  .room-modal__media { aspect-ratio: 16 / 9; }
  .room-modal__facilities { grid-template-columns: 1fr; }
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery-section { margin-bottom: var(--space-5); }
.gallery-section:last-child { margin-bottom: 0; }
.gallery-section__title { font-size: var(--fs-h3); font-family: var(--font-display); color: var(--color-primary); margin-bottom: var(--space-3); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); }
.gallery-tile {
  position: relative; display: block; width: 100%; aspect-ratio: 4 / 5; overflow: hidden;
  padding: 0; border: 0; border-radius: var(--radius-card); background: var(--color-gray-100); cursor: pointer;
}
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.gallery-tile:hover img { transform: scale(1.05); }
.gallery-tile::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(11,30,60,.78) 0%, rgba(11,30,60,0) 50%);
}
.gallery-tile__caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: var(--space-2) 12px; color: #fff; font-size: var(--fs-small); font-weight: 700; text-align: left;
}
.gallery-tile:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

/* Gallery photo modal — lighter variant of the room detail modal */
.gallery-modal { max-height: min(78vh, 620px); }
.gallery-modal .room-modal__inner { grid-template-columns: 58% 42%; max-height: min(78vh, 620px); }
.gallery-modal__content { display: flex; flex-direction: column; height: 100%; }
.gallery-modal__cta { margin-top: auto; padding-top: var(--space-2); border-top: 1px solid var(--color-gray-100); }
.gallery-modal__cta a { font-size: var(--fs-note); font-weight: 600; color: var(--color-gray-500); }
.gallery-modal__cta a:hover { color: var(--color-secondary); }

@media (max-width: 760px) {
  .gallery-modal .room-modal__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Guest reviews highlight (after Rooms & Suites)
   ============================================================ */
.reviews-highlight__intro { max-width: 720px; color: var(--color-gray-700); margin-bottom: var(--space-3); }
.reviews-highlight__scores {
  display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-3);
  margin-bottom: var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px solid var(--color-gray-100);
}
.score-chip { display: flex; flex-direction: column; line-height: 1.2; }
.score-chip strong { font-size: 24px; font-weight: 800; color: var(--color-primary); }
.score-chip strong span { font-size: var(--fs-small); font-weight: 600; color: var(--color-gray-500); }
.score-chip__label { font-size: var(--fs-note); color: var(--color-gray-500); }
.reviews-highlight__links { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.reviews-highlight__link { font-size: var(--fs-small); font-weight: 700; color: var(--color-secondary); }
.reviews-highlight__link:hover { color: var(--color-primary); }

.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.review-card { background: #fff; border-radius: var(--radius-card); box-shadow: var(--shadow-soft); padding: var(--space-3); }
.review-card__stars { color: var(--color-accent); font-size: 15px; letter-spacing: 2px; margin-bottom: var(--space-1); }
.review-card__quote { font-size: var(--fs-small); color: var(--color-text); font-style: italic; margin-bottom: var(--space-2); }
.review-card__meta { font-size: var(--fs-note); color: var(--color-gray-500); font-weight: 600; }

/* ============================================================
   Location + FAQ row (3.7)
   ============================================================ */
.proof-row .container { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); align-items: stretch; }
.proof-card { padding: var(--space-3); display: flex; flex-direction: column; height: 100%; }
.proof-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-2); }
.proof-card h3 { font-size: 18px; }
.proof-card__link { font-size: var(--fs-note); font-weight: 700; color: var(--color-secondary); }

.proof-card__map { border-radius: 12px; overflow: hidden; margin-bottom: var(--space-2); border: 0; width: 100%; height: 160px; }
.proof-card__map--lg { height: 300px; }
.proof-card__address { font-size: var(--fs-small); color: var(--color-gray-700); margin-bottom: var(--space-2); }

.quick-facts { list-style: none; padding: 0; margin: 0; font-size: var(--fs-small); color: var(--color-gray-700); }
.quick-facts li { position: relative; padding-left: 16px; margin-bottom: 6px; }
.quick-facts li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--color-gray-100); }
.faq-item:first-child { border-top: none; }
.faq-item summary {
  padding: 10px 0; font-size: var(--fs-small); font-weight: 700; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 18px; font-weight: 400; color: var(--color-gray-500); flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover { color: var(--color-secondary); }
.faq-item p { font-size: var(--fs-small); color: var(--color-gray-700); padding-bottom: 12px; margin: 0; }
.faq-item p a { color: var(--color-secondary); font-weight: 600; }

/* ============================================================
   Footer divider band (3.8)
   ============================================================ */
.footer-divider { background: var(--color-primary); height: 14px; }

/* ============================================================
   Footer (3.9)
   ============================================================ */
.site-footer { background: var(--color-footer-bg); border-top: 1px solid var(--color-gray-100); padding: var(--space-6) 0 var(--space-3); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-4); margin-bottom: var(--space-5); }
.footer-brand .brand { margin-bottom: var(--space-2); }
.footer-brand p { font-size: var(--fs-small); color: var(--color-gray-700); margin-bottom: 0; max-width: 260px; }

.footer-col h4 { font-size: var(--fs-note); text-transform: uppercase; letter-spacing: .05em; color: var(--color-gray-500); margin-bottom: var(--space-2); }
.footer-col ul li { margin-bottom: var(--space-1); }
.footer-col a { font-size: var(--fs-small); color: var(--color-text); }
.footer-col a:hover { color: var(--color-secondary); }
.footer-col--soon p { font-size: var(--fs-small); color: var(--color-gray-500); font-style: italic; }

.footer-partners p { font-size: var(--fs-note); color: var(--color-gray-700); margin-bottom: var(--space-2); }
.partner-logos { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }
.partner-logos img { height: 32px; width: auto; border-radius: 6px; }

.footer-legal { border-top: 1px solid var(--color-gray-100); padding-top: var(--space-3); text-align: center; font-size: var(--fs-note); color: var(--color-gray-500); }

/* ---------- Reusable responsive grids (content pages) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.location-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-4); align-items: start; }
.location-map { width: 100%; height: 420px; border: 0; border-radius: var(--radius-card); box-shadow: var(--shadow-soft); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .container { padding-left: var(--pad-tablet); padding-right: var(--pad-tablet); }
  .main-nav__list { display: none; }
  .main-nav__list--open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: var(--space-2) var(--pad-tablet);
    box-shadow: var(--shadow-header);
    gap: 0;
  }
  .main-nav__list--open a { display: block; padding: 10px 0; }
  .menu-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero__content { order: 1; }
  .booking-widget { order: 2; }
  .why-stay .container { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid, .rooms--all .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .proof-row .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root {
    --fs-hero: 36px;
    --fs-subtitle: 20px;
    --fs-h2: 26px;
    --fs-h3: 20px;
    --fs-card-title: 19px;
  }
  .container { padding-left: var(--pad-mobile); padding-right: var(--pad-mobile); }
  .brand__icon { width: 36px; }
  .brand__icon img { width: 36px; height: 36px; }
  .brand__icon::after { font-size: 8px; margin-top: 2px; }
  .brand__name { font-size: 21px; }
  .brand__tagline { display: none; }
  .utility-bar .container { flex-direction: column; align-items: center; text-align: center; gap: 4px; padding-top: 8px; padding-bottom: 8px; }
  .utility-bar__nav { display: none; }
  .utility-bar__disclaimer { text-align: center; font-size: 11.5px; }
  .brand__welcome { font-size: 18px; white-space: nowrap; }
  body:has(.hero) .site-header:not(.is-stuck) .brand__welcome { max-width: 280px; }
  .why-stay__grid { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .reviews-highlight__links { margin-left: 0; align-items: flex-start; }
  .rooms-grid, .rooms--all .rooms-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-widget__row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-4); }
}
