/* =============================================================
   Hotel The Black Gold — global.css
   Production. Single source of truth for all shared styles.
   ============================================================= */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg:           #111111;
  --text:         #F5F5F5;
  --muted:        #EDEDED;
  --gold:         #D4AF37;
  --card:         #161616;
  --line:         #2A2A2A;
  --shadow:       0 8px 24px rgba(0,0,0,.35), 0 2px 6px rgba(0,0,0,.25);
  --font-heading: Montserrat, sans-serif;
}

/* ── Fonts ──────────────────────────────────────────────────── */
@font-face { font-family:"Revenue";    src:url("/assets/fonts/revenue-800.woff2")    format("woff2"); font-weight:800; font-style:normal; font-display:swap }
@font-face { font-family:"Revenue";    src:url("/assets/fonts/revenue-400.woff2")    format("woff2"); font-weight:400; font-style:normal; font-display:swap }
@font-face { font-family:"Lato";       src:url("/assets/fonts/lato-400.woff2")       format("woff2"); font-weight:400; font-style:normal; font-display:swap }
@font-face { font-family:"Lato";       src:url("/assets/fonts/lato-700.woff2")       format("woff2"); font-weight:700; font-style:normal; font-display:swap }
@font-face { font-family:"Montserrat"; src:url("/assets/fonts/montserrat-600.woff2") format("woff2"); font-weight:600; font-style:normal; font-display:swap }
@font-face { font-family:"Montserrat"; src:url("/assets/fonts/montserrat-700.woff2") format("woff2"); font-weight:700; font-style:normal; font-display:swap }
@font-face { font-family:"Montserrat"; src:url("/assets/fonts/montserrat-800.woff2") format("woff2"); font-weight:800; font-style:normal; font-display:swap }

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box }
html { scroll-behavior: smooth }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; border: 0 }
a    { color: var(--muted); text-decoration: none }
a:hover, a:focus { color: var(--gold) }

/* ── Accessibility ──────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; border: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; clip-path: inset(50%);
}
.skip-link {
  position: absolute; left: -999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 1rem; top: 1rem; width: auto; height: auto;
  background: #000; padding: .75rem 1rem;
  border: 2px solid var(--gold); z-index: 10000;
}
:where(a, button, input, select, textarea) { outline-color: var(--gold); outline-offset: 2px }
:where(a, button, input, select, textarea):focus-visible { outline-color: var(--gold); outline-offset: 2px }
.hidden { display: none !important }

/* ── Layout ─────────────────────────────────────────────────── */
.container { width: min(1180px, 92vw); margin-inline: auto }

/* ── Utility ────────────────────────────────────────────────── */
.font-heading   { font-family: var(--font-heading) }
.text-gold      { color: var(--gold) }
.icon-gold      { color: var(--gold) }
.text-center    { text-align: center }
.text-muted     { color: #cfcfcf }
.small          { font-size: .95rem; color: #cfcfcf }
.muted          { color: #d2d2d2 }
.small-mt       { margin-top: 12px }
.small-mt-s     { margin-top: 10px }
.small-mt-xs    { margin-top: 6px }
.disclaimer-mt  { margin-bottom: 12px }
.amenities-mt   { margin-top: 16px }
.nowrap         { white-space: nowrap }
.grid-2-center  { align-items: center }
.form-note      { margin-top: .5rem; color: #888; text-align: center }
address.small   { font-style: normal }

/* ── Section spacing modifiers (site-wide) ──────────────────── */
/* Tighten vertical rhythm between sections that share a topic
   (e.g. AI summary → intro → next section). */
.section-tight-top    { padding-top: 0 }
.section-tight-bottom { padding-bottom: 0 }
.section-snug-top     { padding-top: 40px }
.pt-0                 { padding-top: 0 }
.pb-0                 { padding-bottom: 0 }

/* ── Intro paragraph helpers (site-wide) ────────────────────── */
/* Constrain intro / lead paragraphs to a comfortable reading
   width. Use .max-w-prose for short prose blocks. */
.intro-lead     { max-width: 860px }
.max-w-prose    { max-width: 780px }
.intro-spaced   { margin-bottom: 24px }
.intro-spaced-sm{ margin-bottom: 4px }

/* ── Inline tile sub-text (site-wide) ───────────────────────── */
/* The small grey caption inside an .amenity tile or trust tile. */
.amenity-sub    { font-size: .88rem; color: #cfcfcf }

/* ── Inline heading icon (site-wide) ────────────────────────── */
.heading-icon   { margin-right: 8px }

/* ── Flex helper (site-wide) ────────────────────────────────── */
.flex-no-shrink { flex-shrink: 0 }

/* ── Header ─────────────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(17,17,17,.75);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.nav {
  display: flex; align-items: center;
  justify-content: space-between; padding: .85rem 0;
}
.compact header .nav { padding: .55rem 0 }
.brand        { display: flex; align-items: center; gap: .75rem }
.logo         { width: 36px; height: 36px; border-radius: 10px; box-shadow: var(--shadow) }
.brand-name   { font-family: "Revenue", Montserrat, sans-serif; font-weight: 800; letter-spacing: .4px; font-size: 20px }

/* ── Navigation ─────────────────────────────────────────────── */
nav ul.menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 1.25rem; align-items: center;
}
.menu > li { position: relative }
.menu a, .menu button {
  font: inherit; color: var(--muted);
  background: transparent; border: 0;
  padding: .4rem 0; cursor: pointer;
}
.menu a:hover, .menu a:focus,
.menu button:hover, .menu button:focus { color: var(--gold) }

/* Dropdown trigger arrow via ::after */
.has-dropdown > button { display: inline-flex; align-items: center; gap: .45rem }
.has-dropdown > button::after {
  content: "";
  display: inline-block;
  width: .5rem; height: .35rem;
  border-left: .35rem solid transparent;
  border-right: .35rem solid transparent;
  border-top: .45rem solid var(--muted);
  transform: translateY(1px);
  transition: border-top-color .18s ease, transform .18s ease;
}
.has-dropdown:hover > button::after,
.has-dropdown:focus-within > button::after,
.has-dropdown > button[aria-expanded="true"]::after {
  border-top-color: var(--gold);
  transform: translateY(1px) rotate(180deg);
}

/* Dropdown panel */
.dropdown {
  position: absolute; left: 0; top: calc(100% + 10px);
  min-width: 230px;
  background: #1a1a1a; border: 1px solid #646464;
  border-radius: 14px; box-shadow: var(--shadow);
  padding: .6rem 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 999;
  display: flex; flex-direction: column; gap: 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown > button[aria-expanded="true"] + .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li  { list-style: none }
.dropdown a   { display: block; padding: .6rem .9rem; color: #E7E7E7; white-space: nowrap }
.dropdown a:hover { color: var(--gold) }

/* Sub-dropdown (for nested menus on certain pages) */
ul.sub-dropdown {
  display: none; position: absolute; left: 100%; top: 0;
  border-radius: 10px; padding: 9px 11px;
  background: #1a1a1a; border: 1px solid #646464;
  min-width: 220px;
}
ul.sub-dropdown li a { color: #fff }
.dropdown li:hover > ul.sub-dropdown { display: block }

/* Book Now button */
.book-now {
  background: var(--gold); color: #111;
  padding: .6rem 1rem; border-radius: 999px;
  font-weight: 700; box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.35);
}
.book-now:hover { filter: brightness(1.05); color: #fff }

/* ── Mobile nav ─────────────────────────────────────────────── */
.menu-toggle { display: none; font-size: 2rem; cursor: pointer; color: #fff; background: transparent; border: none; position: relative }
.menu-close  { display: none }

@media (max-width: 1024px) {
  #main-nav .menu {
    position: fixed; top: 0; left: -100%;
    height: 100vh; width: 100%; max-width: 300px;
    background: #333; flex-direction: column;
    padding: 1rem; transition: left .3s ease;
    z-index: 999999; display: flex;
  }
  #main-nav .menu.active { left: 0 }
  #main-nav .dropdown {
    display: none; flex-direction: column; gap: 0;
    margin-top: .5rem; background: #444;
    position: static; opacity: 1; visibility: visible;
    transform: none; border: none; border-radius: 8px; padding: .4rem 0;
  }
  #main-nav .has-dropdown.open .dropdown { display: flex }
  #main-nav .dropdown li { width: 100% }
  .menu-toggle {
    display: block; font-size: 2rem; cursor: pointer;
    color: #fff; z-index: 10000; background: transparent; border: none; position: relative;
  }
  .menu-close {
    display: block; font-size: 2rem; color: #fff;
    margin-bottom: 1rem; cursor: pointer;
    align-self: flex-end; background: transparent;
    border: none; padding: 0; line-height: 1;
  }
  .menu > li { width: 100% }
}
@media (min-width: 1025px) {
  .menu-toggle, .menu-close { display: none !important }
}

/* ── Breadcrumbs ────────────────────────────────────────────── */
.breadcrumbs ol  { display: flex; flex-wrap: nowrap; gap: 6px; list-style: none; padding: 0; margin: 0 }
.breadcrumbs li  { font-size: 14px; color: #fff }
.breadcrumbs li a { text-decoration: none; color: #fff }
.breadcrumbs li + li::before { content: "›"; padding: 0 4px; color: #fff }

/* ── Hero ───────────────────────────────────────────────────── */
.hero        { position: relative; isolation: isolate }
.hero-media  { position: absolute; inset: 0; z-index: -1; overflow: hidden }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.1) contrast(1.1) brightness(.8);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 60% 20%, rgba(212,175,55,.15), transparent),
    linear-gradient(180deg, rgba(17,17,17,.35), rgba(17,17,17,.85));
}
.hero-inner { padding: clamp(84px, 11vw, 140px) 0 56px }

h1 {
  font-family: Montserrat, sans-serif; font-weight: 800;
  line-height: 1.1;
  font-size: clamp(28px, 5.6vw, 48px);
  margin: 0 0 .5rem;
}
.subhead { color: var(--muted); font-size: clamp(15px, 2.2vw, 18px); max-width: 820px }

/* ── Sections ───────────────────────────────────────────────── */
section { padding: 64px 0 }
section.fade-up { padding-bottom: 32px }
section.fade-up:last-child { padding-bottom: 50px }
.section-title {
  font-family: Montserrat, sans-serif; font-weight: 800;
  font-size: clamp(22px, 3.6vw, 32px); margin: 0 0 18px;
}

/* ── Cards (generic grid + card) ────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px }
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 18px }
@media (min-width: 700px) { .cards-grid { grid-template-columns: repeat(3, 1fr) } }

.card {
  background: var(--card); border: 1px solid #646464;
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateZ(0); min-width: 0;
  display: flex; flex-direction: column; height: 100%;
}
.card img { display: block; aspect-ratio: 16/9; width: 100%; object-fit: cover }
.card-body { padding: 16px; display: flex; flex-direction: column; flex-grow: 1 }
.card-body h3 { font-family: Montserrat, sans-serif; margin: 0 0 .4rem; font-size: 1.1rem }
.card-body p  { margin: 0 0 1.2rem; color: #dcdcdc; flex-grow: 1 }
.card h3 { font-family: Montserrat, sans-serif; margin: .2rem 0 .4rem; font-size: 1.1rem }
.card p  { margin: 0 0 .8rem; color: #dcdcdc }

/* Card as link wrapper */
.card-link { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100% }
.card-link:hover .card {
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  transform: translateY(-2px);
  transition: transform .2s, box-shadow .2s;
}

.more { color: var(--gold); font-weight: 700; background: none; border: 0; font-size: 16px; display: inline-block; margin-top: auto }
.more:hover { text-decoration: underline; color: var(--gold) }

/* ── Grids ──────────────────────────────────────────────────── */
.grid   { display: grid; grid-template-columns: 1fr; gap: 22px }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 22px }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 18px }

/* ── Generic Button ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-size: 1rem;
  border: none; cursor: pointer;
}

/* ── Pill button variants ────────────────────────────────────── */
.btn-primary {
  transition: all .3s ease;
  background: var(--gold); color: #111;
  border: 1px solid var(--gold);
  border-radius: 59px;
  padding: 10px 20px;
  font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center;
  gap: .5rem; text-decoration: none;
}
.btn-primary:hover {
  filter: brightness(1.08); color: #111;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(212,175,55,.35);
}
.btn-ghost {
  transition: all .3s ease;
  background: transparent; color: var(--muted);
  border: 1px solid #646464;
  border-radius: 59px;
  padding: 10px 20px;
  font-size: 16px;
  display: inline-flex; align-items: center;
  gap: .5rem; text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--gold); color: var(--gold);
  transform: scale(1.05);
}

/* ── btn-cta-call / btn-cta-wa (promoted from page-index.css — now
   shared by index.html, contact.html, faqs.html hero + CTA rows) ── */
a.btn-cta-call {
  display: inline-flex; justify-content: center; align-items: center;
  text-align: center; font-size: 18px; font-weight: 800; font-family: Montserrat, sans-serif;
  background: var(--gold); color: #000;
  padding: 14px 22px; border-radius: 99px;
  border: none; text-decoration: none;
}
a.btn-cta-call:hover { filter: brightness(1.08); color: #000 }

a.btn-cta-wa {
  display: inline-flex; justify-content: center; align-items: center; gap: .5rem;
  text-align: center; font-size: 18px; font-weight: 800; font-family: Montserrat, sans-serif;
  background: #128C7E; color: #fff;
  padding: 14px 22px; border-radius: 99px;
  border: none; text-decoration: none;
}
a.btn-cta-wa:hover { filter: brightness(1.1); color: #fff }

/* ── Call & WhatsApp pill buttons (used in CTAs, FAB, footer) ── */
.call-btn {
  transition: all .3s ease;
  color: #fff;
  background: transparent;
  border: 1px solid #646464;
  border-radius: 59px;
  padding: 10px 15px;
  display: inline-flex; align-items: center;
  gap: .5rem; font-size: 16px; text-decoration: none;
}
.call-btn:hover {
  background: var(--gold); color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(211,174,37,.4);
  border-color: var(--gold);
}
.whatsapp-btn {
  transition: all .3s ease;
  color: #fff;
  background: #128C7E;
  border: 1px solid #128C7E;
  border-radius: 59px;
  padding: 10px 15px;
  display: inline-flex; align-items: center;
  gap: .5rem; font-size: 16px; text-decoration: none;
}
.whatsapp-btn:hover {
  background: #0f7a6d; color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(18,140,126,.4);
  border-color: #0f7a6d;
}
.cta-group   { display: flex; gap: 10px; flex-wrap: wrap }
.cta-row     { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px }

/* ── Inquiry form (homepage + contact page, promoted v2.6) ──── */
.inquiry-form  { display: flex; flex-direction: column; gap: .9rem }
.inquiry-title { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--gold); margin: 0; letter-spacing: .3px }
.inquiry-row   { display: grid; grid-template-columns: 1fr; gap: .75rem }
@media (min-width: 600px) { .inquiry-row { grid-template-columns: 1fr 1fr } }
.inquiry-field { display: flex; flex-direction: column; gap: .35rem }
.inquiry-field label { font-size: .85rem; color: #d6d6d6 }
.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
  width: 100%; background: #0f0f0f; border: 1px solid #646464; border-radius: 12px;
  padding: .9rem .95rem; color: var(--text); outline: none; font-family: inherit; font-size: 1rem;
}
.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.2) }
.inquiry-field textarea { resize: vertical; min-height: 80px }
.inquiry-field select option { background: #1a1a1a; color: var(--text) }
.req { color: var(--gold); font-weight: 700 }
.opt { font-size: .78rem; color: #888; font-weight: 400 }
.inquiry-success {
  display: none; align-items: center; gap: .6rem;
  background: rgba(18,140,126,.15); border: 1px solid #128C7E;
  border-radius: 12px; padding: .9rem 1rem; color: #e0f5f2; font-size: .95rem;
}
.inquiry-success i        { color: #128C7E; font-size: 1.3rem; flex-shrink: 0 }
.inquiry-success.visible  { display: flex }
.honeypot { display: none }
button.btn-cta-submit {
  width: 100%; display: inline-flex; justify-content: center; align-items: center; gap: .5rem;
  font-size: 18px; font-weight: 800; font-family: Montserrat, sans-serif;
  background: var(--gold); color: #000;
  padding: 16px 22px; border-radius: 99px;
  border: none; cursor: pointer;
}
button.btn-cta-submit:hover    { filter: brightness(1.08) }
button.btn-cta-submit:disabled { opacity: .7; cursor: not-allowed }

/* Trust badges */
.trust       { margin-top: .75rem; font-size: .9rem; color: #cfcfcf; display: flex; flex-wrap: wrap; gap: .75rem }
.trust .badge,
.badge       { border: 1px solid #646464; padding: .35rem .6rem; border-radius: 999px }
.rating-badge { background: rgba(212,175,55,.12); border-color: var(--gold); color: #f5f5f5; font-weight: 700 }

/* ── Amenities grid ─────────────────────────────────────────── */
.amenities { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px }
.amenity   {
  display: flex; gap: .6rem; align-items: flex-start;
  background: #131313; border: 1px solid #646464;
  padding: .7rem .8rem; border-radius: 12px;
}
.dot { width: 10px; height: 10px; border-radius: 999px; background: var(--gold); margin-top: .35rem; flex-shrink: 0 }
.amenity-icon { font-size: .95rem; color: var(--gold); flex-shrink: 0; width: 16px; text-align: center; margin-top: .2rem }
.amenity i { color: var(--gold); font-size: 1rem; margin-top: .2rem; flex-shrink: 0 }
.amenity-subhead { font-family: var(--font-heading); margin-top: 12px; margin-bottom: 6px }

/* ── Amenity groups (used on homepage + amenities page) ─────── */
.amenities-groups    { display: flex; flex-direction: column; gap: 28px }
.amenity-group       { width: 100% }
.amenity-group-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: .85rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold); margin: 0 0 10px;
  padding-bottom: 6px; border-bottom: 1px solid var(--line);
}
.amenity-group .amenities { grid-template-columns: repeat(3, minmax(0,1fr)) }
@media (max-width: 699px) { .amenity-group .amenities { grid-template-columns: 1fr } }

/* ── Amenity section block (amenities page) ─────────────────── */
.amenity-section        { border: 1px solid rgba(255,255,255,.07); border-radius: 18px; background: #141414; padding: 28px 24px }
.amenity-section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px }
.amenity-section-header i  { font-size: 1.3rem; color: var(--gold); flex-shrink: 0 }
.amenity-section-header h3 { font-family: Montserrat, sans-serif; font-weight: 800; font-size: clamp(16px, 2vw, 20px); margin: 0 }
.amenity-section-header p  { margin: 4px 0 0; color: #cfcfcf; font-size: .9rem }
.amenity-sections-grid { display: grid; grid-template-columns: 1fr; gap: 20px }
@media (min-width: 700px) { .amenity-sections-grid { grid-template-columns: repeat(2, 1fr) } }

/* ── Trust tiles ────────────────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 24px }
@media (min-width: 700px) { .trust-grid { grid-template-columns: repeat(2, 1fr) } }
.trust-tile {
  display: flex; gap: 16px; align-items: flex-start;
  background: #161616; border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 20px;
}
.trust-tile i      { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; margin-top: 2px }
.trust-tile strong { display: block; font-family: Montserrat, sans-serif; font-size: 1rem; margin-bottom: 6px; color: var(--text) }
.trust-tile p      { margin: 0; color: #cfcfcf; font-size: .95rem; line-height: 1.6 }
.trust-cta-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-top: 24px; padding: 18px 20px;
  background: rgba(212,175,55,.06); border: 1px solid rgba(212,175,55,.2); border-radius: 14px;
}
.trust-google-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--gold); font-weight: 700; font-size: .95rem; text-decoration: none;
}
.trust-google-link:hover { text-decoration: underline; color: var(--gold) }

/* ── Highlight band ─────────────────────────────────────────── */
.highlight-band {
  background: rgba(212,175,55,.08); border: 1px dashed var(--gold);
  border-radius: 18px; padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 32px;
}
.highlight-band h3 { font-family: Montserrat, sans-serif; font-weight: 800; color: var(--gold); margin: 0 0 4px }
.highlight-band p  { margin: 0; color: #d2d2d2 }
@media (min-width: 768px) { .highlight-band { flex-direction: row; align-items: center; justify-content: space-between } }

/* ── Accordion / FAQ ────────────────────────────────────────── */
.accordion    { border-radius: 10px; overflow: hidden }
.acc-item     { background: #1f1f1f; margin-bottom: 16px; padding: 0; border-radius: 10px; color: #fff }
.acc-btn      {
  width: 100%; text-align: left; padding: 25px 16px;
  background: transparent; border-radius: 18px; border: 0;
  font-weight: 700; font-family: Montserrat, sans-serif;
  cursor: pointer; font-size: 18px; color: #fff;
}
.acc-btn::after { content: "+"; float: right; font-weight: bold; transition: transform .3s }
.acc-btn[aria-expanded="true"]::after { content: "−" }
.acc-content  { max-height: 0; overflow: hidden; transition: max-height .35s ease }
.acc-inner    { padding: 0 18px 16px; color: #d7d7d7 }
.acc-inner a  { color: var(--gold) }

/* ── AI Summary block (shared component) ────────────────────── */
.ai-summary {
  background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 16px;
  padding: 22px 24px;
  margin-top: 28px;
}
.ai-summary-label {
  font-family: var(--font-heading); margin: 0 0 12px;
  font-size: .8rem; text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold); font-weight: 700;
}
.ai-summary-intro { margin: 0 0 12px; color: #cfcfcf }
.ai-summary ul {
  margin: 0; padding-left: 1.2rem; color: #cfcfcf;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px;
  list-style: disc;
}
.ai-summary ul li strong { color: var(--text) }
@media (max-width: 600px) {
  .ai-summary ul { grid-template-columns: 1fr }
}

/* ── Long-stay stats (used inside .highlight-band) ──────────── */
.long-stay-stats { display: flex; gap: 25px; flex-wrap: wrap }
.stat-item       { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text) }
.stat-item i     { color: var(--gold) }

/* ── Room card image, price badge, CTA strip (rooms + room pages) ── */
.card-image-wrapper { position: relative }
.price-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(17,17,17,.85); color: var(--gold);
  font-weight: 800; font-size: .85rem;
  padding: .3rem .7rem; border-radius: 999px;
  border: 1px solid rgba(212,175,55,.4);
}
.card-cta { margin-top: auto; border-top: 1px solid var(--line); padding-top: 15px }
.card-cta .small { margin: 0 0 8px; color: #cfcfcf; font-size: .85rem }
.list-normal { color: #fff }
.list-normal li { margin-bottom: .25rem }
.disclaimer  { padding: 8px 12px; color: #cfcfcf }

/* ── Rooms comparison table (rooms.html only) ───────────────── */
.rooms-compare table { width: 100%; border-collapse: collapse }
.rooms-compare th,
.rooms-compare td    { padding: 14px; border-bottom: 1px solid rgba(255,255,255,.07) }
.rooms-compare thead th {
  font-family: Montserrat, sans-serif; text-align: center;
  background: #131313; color: var(--text);
  position: sticky; top: 0;
}
.rooms-compare thead th a       { color: var(--text) }
.rooms-compare thead th a:hover { color: var(--gold) }
.rooms-compare tbody tr:nth-child(even) { background: #121212 }
.rooms-compare .price { font-weight: 800; color: var(--gold) }
.rooms-compare thead th:first-child,
.rooms-compare tbody th[scope="row"] {
  text-align: left; border-right: 1px solid rgba(255,255,255,.07);
  padding-right: 18px; color: var(--text);
}
.rooms-compare tbody td { text-align: center; color: var(--text) }
.rooms-compare thead th:nth-child(4) {
  background: linear-gradient(180deg, rgba(212,175,55,.14), rgba(212,175,55,.06));
  border-bottom: 1px solid rgba(212,175,55,.35);
}
.rooms-compare tbody td:nth-child(4) {
  background: linear-gradient(180deg, rgba(212,175,55,.06), rgba(212,175,55,.02));
  font-weight: 600;
}
.rooms-compare thead th:nth-child(4),
.rooms-compare tbody td:nth-child(4) { border-left: 1px solid rgba(212,175,55,.35) }

/* ── Rooms snap-scroll carousel ─────────────────────────────── */
.rooms-section   { overflow: hidden }
.rooms-carousel  {
  display: flex; overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0; margin-top: 28px; border-radius: 18px;
}
.rooms-carousel::-webkit-scrollbar { display: none }

.room-slide {
  flex: 0 0 100%; scroll-snap-align: start; scroll-snap-stop: always;
  display: grid; grid-template-columns: 1fr;
  background: var(--card); border: 1px solid #646464;
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow); color: inherit;
  text-decoration: none; transition: box-shadow .2s;
}
.room-slide:hover { box-shadow: 0 12px 32px rgba(0,0,0,.45) }
.room-slide.premium {
  border-color: rgba(212,175,55,.45);
  background: linear-gradient(160deg, rgba(212,175,55,.08), rgba(212,175,55,.02));
  box-shadow: 0 0 0 1px rgba(212,175,55,.25), var(--shadow);
}

.room-slide-img img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover }
.room-slide-body    { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: .5rem }
.room-tag {
  display: inline-block; font-size: .75rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: .2rem .6rem; border-radius: 999px; width: fit-content;
}
.room-slide-body h3 { font-family: Montserrat, sans-serif; font-weight: 800; font-size: clamp(18px, 2.4vw, 24px); margin: 0 }
.room-slide-body p  { color: #dcdcdc; margin: 0; flex-grow: 1 }
.room-best-for {
  display: block; font-size: .78rem; font-weight: 600;
  color: var(--gold); opacity: .85; margin-top: .25rem; letter-spacing: .2px;
}
.room-slide-body .more { margin-top: .75rem }

.rooms-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px }
.rooms-dot  {
  width: 8px; height: 8px; border-radius: 999px; background: #646464;
  transition: background .25s, width .25s; cursor: pointer;
  border: none; padding: 0; appearance: none; -webkit-appearance: none;
}
.rooms-dot.active { background: var(--gold); width: 24px }

@media (min-width: 700px) {
  .rooms-carousel { scroll-padding-left: 0 }
  .room-slide     { flex: 0 0 calc(100% - 60px); margin-right: 20px }
  .room-slide:last-child { margin-right: 0 }
}
@media (min-width: 1024px) { .room-slide { flex: 0 0 calc(70% - 20px) } }

/* ── Gallery variant of rooms-carousel (room-detail pages) ── */
/* Used on /deluxe-room.html, /super-deluxe-room.html, /premium-room.html.
   Snap-scroll carousel on mobile (default behaviour above), 3-up grid
   on desktop. Dots hide at the desktop breakpoint since slides are
   already visible in a grid. Added in v2.8 (May 2026). */
@media (min-width: 700px) {
  .rooms-carousel.is-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    overflow: visible;
    scroll-snap-type: none;
    border-radius: 0;
  }
  .rooms-carousel.is-gallery .room-slide {
    flex: initial;
    margin-right: 0;
    scroll-snap-align: none;
  }
  .rooms-carousel.is-gallery + .rooms-dots {
    display: none;
  }
}

/* ── Distance table (location page) ─────────────────────────── */
.table-wrap  { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: #141414; box-shadow: var(--shadow) }
table        { width: 100%; border-collapse: collapse; min-width: 380px }
th, td       { padding: 13px 16px; border-bottom: 1px solid #1e1e1e; text-align: left }
thead th     { font-family: Montserrat, sans-serif; font-size: .88rem; font-weight: 700; background: #131313; color: var(--gold); position: sticky; top: 0 }
tbody tr:nth-child(even) { background: rgba(255,255,255,.02) }
tbody tr:hover { background: rgba(212,175,55,.04) }
.dest-label  { font-weight: 700; color: var(--text) }
.dist-val    { color: var(--gold); font-weight: 700 }
.time-val    { font-size: .88rem; color: #888 }
.row-hl td, .row-hl th { background: rgba(212,175,55,.05) !important }

/* ── Transport items (location page) ────────────────────────── */
.transport-grid { display: grid; grid-template-columns: 1fr; gap: 12px }
@media (min-width: 700px) { .transport-grid { grid-template-columns: repeat(2, 1fr) } }
.transport-item {
  display: flex; gap: .9rem; align-items: flex-start;
  background: #131313; border: 1px solid rgba(255,255,255,.08);
  padding: .85rem .95rem; border-radius: 12px;
}
.transport-item i      { color: var(--gold); font-size: 1.2rem; margin-top: .2rem; flex-shrink: 0; width: 20px; text-align: center }
.transport-item strong { color: var(--text); display: block; margin-bottom: 2px }
.transport-item p      { margin: 0; font-size: .92rem; color: #cfcfcf }

/* ── Map embed ──────────────────────────────────────────────── */
.map-wrap         { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #0e0e0e; line-height: 0 }
.map-wrap iframe  { display: block; width: 100%; height: 420px; border: 0 }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; border-radius: 18px }

/* When a map shares a 2-column grid row with taller content (e.g. the
   distance table on room pages), the grid stretches the .map-wrap cell.
   The iframe must fill that stretched height. height:100% and flex both
   fail intermittently against a grid-computed parent height, so the
   iframe is absolutely positioned to pin to all four edges of the cell.
   Scoped to .grid-2 so standalone maps (location, contact) are untouched. */
.grid-2 .map-wrap        { position: relative; min-height: 420px }
.grid-2 .map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100% }

/* ── Footer ─────────────────────────────────────────────────── */
footer { border-top: 1px solid rgba(255,255,255,.06); padding-top: 40px; padding-bottom: 80px }
.footer-grid  { display: grid; grid-template-columns: 1fr; gap: 22px }
.footer-col h4 { font-family: Montserrat, sans-serif; margin: .2rem 0 .6rem }
.copyright    { border-top: 1px solid rgba(255,255,255,.06); margin-top: 26px; padding-top: 18px; color: #c9c9c9; font-size: .9rem }
.footer-social { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .5rem }
.footer-social a {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .9rem; color: #cfcfcf;
  border: 1px solid #646464; padding: .3rem .65rem; border-radius: 999px;
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold) }

/* ── FAB ────────────────────────────────────────────────────── */
.fab { position: fixed; right: 16px; bottom: 16px; display: grid; gap: 10px; z-index: 1000 }
.fab a {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem .9rem; border-radius: 999px;
  box-shadow: var(--shadow); border: 1px solid rgba(0,0,0,.4);
  backdrop-filter: saturate(120%) blur(6px);
  font-size: 12px;
}
.fab a i    { font-size: 19px }
.fab .call  { background: var(--gold); color: #111; font-weight: 800 }
.fab .wa    { background: #128C7E; color: #fff }
.fab .book  { background: #1f1f1f; color: #f1f1f1; border-color: #343434; width: fit-content }

@supports (padding: max(0px)) {
  .fab { bottom: max(16px, env(safe-area-inset-bottom)) }
}

/* ── Animations ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0; transform: translateY(10px);
    animation: fadeUp .6s ease .05s forwards;
  }
  .fade-up.delay  { animation-delay: .16s }
  .fade-up.delay2 { animation-delay: .28s }
  @keyframes fadeUp { to { opacity: 1; transform: none } }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (min-width: 700px) {
  .grid        { grid-template-columns: 1.2fr .8fr }
  .grid-2      { grid-template-columns: 1.15fr .85fr }
  .grid-3      { grid-template-columns: repeat(3, 1fr) }
  .amenities   { grid-template-columns: repeat(3, minmax(0,1fr)) }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr }
  nav ul       { gap: 1.4rem }
}

@media (max-width: 768px) {
  iframe      { width: 100% }
  .logo       { width: 58px }
  .brand      { width: 50% }
  .amenities  { grid-template-columns: repeat(1, minmax(0,1fr)) }
  .hero-media img { object-fit: cover; object-position: center 30% }
}

@media (max-width: 699px) {
  nav ul    { flex-wrap: wrap; gap: .9rem }
  .dropdown { left: 0; right: auto; min-width: calc(100vw - 32px); transform: none }
  .grid-2   { grid-template-columns: 1fr }
}

@media (max-width: 425px) {
  .brand-name { font-size: 16px; width: 101px }
}
