﻿/* ==========================================================================
   The Sahil Hotel — pages.css
   Home blocks, gallery masonry, contact, location map, inner-page specifics
   ========================================================================== */

/* --- Home: philosophy block --- */
.philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: var(--space-xl);
  align-items: start;
}
.philosophy__heading { position: relative; }
.philosophy__heading h2 { line-height: 1.05; }
.philosophy__body p { font-size: 1.0625rem; line-height: 1.8; }
.philosophy__body p + p { margin-top: var(--space-md); }
.philosophy__body .dining-cta-row { justify-content: flex-start; margin-top: var(--space-md); }
@media (max-width: 880px) { .philosophy { grid-template-columns: 1fr; gap: var(--space-md); } }

/* --- Home: location strip --- */
.location-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.location-strip__copy { padding: var(--space-xl); display: flex; flex-direction: column; justify-content: center; gap: var(--space-md); }
.location-strip__list { display: flex; flex-direction: column; gap: .75rem; }
.location-strip__list li {
  display: flex; gap: .75rem; align-items: baseline;
  font-size: .9375rem;
  color: var(--color-text-muted);
}
.location-strip__list li strong {
  color: var(--color-accent);
  flex: 0 0 90px;
  font-weight: 500;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.location-strip__media { background: var(--color-secondary); min-height: 360px; }
.location-strip__media img { width: 100%; height: 100%; object-fit: cover; }
.location-strip__media iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
@media (max-width: 880px) {
  .location-strip { grid-template-columns: 1fr; }
  .location-strip__media { min-height: 240px; order: -1; }
}
@media (max-width: 640px) {
  /* Tighten the inner padding to a clean 30px from the strip edge — matches
     the global mobile container gutter so content alignment stays consistent. */
  .location-strip__copy { padding: 30px; }
}

/* --- Gallery masonry --- */
.gallery-filters {
  display: flex; flex-wrap: wrap;
  gap: var(--space-2xs);
  justify-content: center;
  margin-bottom: var(--space-xl);
}
.gallery-filter {
  padding: .55rem 1.1rem;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  background: #fff;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.gallery-filter:hover { color: var(--color-accent); border-color: var(--color-accent); }
.gallery-filter.is-active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

/* --- Curated mosaic grid: 4-col on desktop, 3-col tablet, 2-col mobile.
       Items use a repeating 8-step pattern of 1×1, 2×2 (featured), 1×2 (tall)
       and 2×1 (wide) tiles to give the wall visual rhythm without HTML changes. --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 16vw, 210px);
  grid-auto-flow: dense;
  gap: clamp(8px, 1vw, 16px);
}
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }
}

.gallery-grid > .gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-secondary);
  cursor: zoom-in;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  transform: translateZ(0);
  transition: box-shadow 400ms cubic-bezier(.4,0,.2,1),
              transform 400ms cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, .14);
  transform: translateY(-3px);
  z-index: 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.is-hidden { display: none; }

/* Subtle dark gradient + magnify-cue circle on hover */
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 14, 6, .55) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 1;
}
.gallery-item::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2393734B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>") center / 22px 22px no-repeat;
  opacity: 0;
  transform: scale(.7);
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover::after { opacity: 1; transform: scale(1); }

/* --- Mosaic tile sizing — repeating 8-step pattern.
       Position 1 → big featured 2×2
       Position 4 → tall portrait 1×2
       Position 6 → wide panorama 2×1
       All other positions stay at the default 1×1.
       grid-auto-flow: dense ensures the smaller tiles pack into gaps. --- */
.gallery-grid > .gallery-item:nth-child(8n+1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-grid > .gallery-item:nth-child(8n+4) {
  grid-row: span 2;
}
.gallery-grid > .gallery-item:nth-child(8n+6) {
  grid-column: span 2;
}

/* Tablets: keep the featured 2×2 but drop the panoramic wides
   (they look squashed at 3-col widths). */
@media (max-width: 1024px) {
  .gallery-grid > .gallery-item:nth-child(8n+6) { grid-column: span 1; }
}
/* Mobile: collapse all variations — every tile is 1×1 for predictability. */
@media (max-width: 640px) {
  .gallery-grid > .gallery-item:nth-child(8n+1),
  .gallery-grid > .gallery-item:nth-child(8n+4),
  .gallery-grid > .gallery-item:nth-child(8n+6) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* --- Contact page --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: var(--space-sm);
  transition: border-color var(--transition-fast);
}
.contact-card:hover { border-color: var(--color-accent); }
.contact-card__icon {
  width: 44px; height: 44px;
  background: rgba(147,115,75,.08);
  color: var(--color-accent);
  border-radius: 50%;
  display: grid; place-items: center;
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card__label {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .75rem;
  color: var(--color-text-muted);
}
.contact-card__value { font-size: 1.0625rem; line-height: 1.6; }
.contact-card__value a { color: var(--color-text); }
.contact-card__value a:hover { color: var(--color-accent); }

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 880px) { .contact-form-wrap { grid-template-columns: 1fr; } }

/* --- Location page --- */
.map-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--color-secondary);
}

.distances {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}
.distances__card {
  padding: var(--space-md);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.distances__num {
  font-size: 1.875rem;
  color: var(--color-accent);
  font-weight: 300;
  letter-spacing: -.02em;
}
.distances__label { font-size: .9375rem; color: var(--color-text-muted); margin-top: .35rem; line-height: 1.5; }

/* --- "Related" cards row (center single card on inner pages) ---
   When an inner page shows only 1 related sibling card, this layout sizes it
   like a normal summary-page card (50% of container) and centers it. */
.related-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
.related-row > .card {
  flex: 0 1 calc((100% - var(--space-md)) / 2);
  max-width: 540px;
}
@media (max-width: 640px) {
  .related-row > .card { flex: 0 1 100%; max-width: none; }
}

/* --- Inner-page editorial gallery (asymmetric grid) ---
   Replaces the slider on rooms / dining / events inner pages with a richer
   visual layout: 1 large featured image on the left + 3 supporting images
   stacked on the right. Shows everything at once, no arrows needed.
*/
.room-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: var(--space-sm);
  aspect-ratio: 16 / 10;
  max-height: 660px;
}
.room-gallery__featured {
  grid-row: 1 / -1;
  grid-column: 1;
}
.room-gallery__item,
.room-gallery__featured {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-secondary);
  display: block;
  cursor: pointer;
}
.room-gallery__featured { border-radius: var(--radius-md); }
.room-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(.4,0,.2,1);
}
.room-gallery > a:hover img { transform: scale(1.05); }

/* Soft dark overlay on hover, with a subtle "expand" icon */
.room-gallery > a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}
.room-gallery > a:hover::after { opacity: 1; }

@media (max-width: 768px) {
  .room-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    aspect-ratio: auto;
    max-height: none;
  }
  .room-gallery__featured {
    grid-row: 1;
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }
  .room-gallery__item { aspect-ratio: 1; }
}

/* --- Inner-page intro --- */
.inner-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}
.inner-intro__heading {
  position: relative;
}
.inner-intro__heading h2 { line-height: 1.1; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.inner-intro__body p { font-size: 1.0625rem; line-height: 1.8; }
.inner-intro__body p + p { margin-top: var(--space-sm); }
.inner-intro__body ul { margin-top: var(--space-sm); display: flex; flex-direction: column; gap: .5rem; }
.inner-intro__body ul li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}
.inner-intro__body ul li::before {
  content: "";
  position: absolute; left: 0; top: .65em;
  width: 8px; height: 1px;
  background: var(--color-accent);
}
@media (max-width: 880px) { .inner-intro { grid-template-columns: 1fr; gap: var(--space-md); } }

/* --- Signature dishes / amenity deep-dive --- */
.signature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}
.signature__item {
  border: 1px solid var(--color-border);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  text-align: center;
  background: #fff;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.signature__item:hover { border-color: var(--color-accent); transform: translateY(-3px); }
.signature__item h4 { font-size: 1.125rem; color: var(--color-accent); margin-bottom: .35rem; }
.signature__item p { font-size: .9375rem; color: var(--color-text-muted); line-height: 1.55; }

/* --- Address card (location) --- */
.address-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-bg-soft);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
}
.address-card__col h4 {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .75rem;
  color: var(--color-accent);
  margin-bottom: .5rem;
}

/* --- Careers values --- */
.values-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}
.value-card {
  padding: var(--space-md);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.value-card h4 { color: var(--color-accent); margin-bottom: .5rem; }
.value-card p { font-size: .9375rem; color: var(--color-text-muted); }

/* --- About: stats / founding marker --- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.stat-row__num {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--color-accent);
  letter-spacing: -.02em;
}
.stat-row__label {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .75rem;
  color: var(--color-text-muted);
  margin-top: .35rem;
}

/* --- Rooms slider (home page) ---
   Editorial 3-card layout (Reverie-Safaris-style): tall image, eyebrow,
   title, 3-line description, 3 amenities row, then CTA.
   Slider mechanism stays so the 4th room is reachable via arrows.
*/

/* Cards inside the rooms slider override the standard .card styling for an
   editorial, borderless feel. */
.rooms-slider .slider__slide {
  display: flex !important;       /* lets the card stretch to slide height */
}
.rooms-slider .card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  height: 100%;                   /* fills slide so margin-top: auto on CTA works */
  width: 100%;
}
.rooms-slider .card:hover {
  transform: translateY(-2px);
  box-shadow: none;
  border-color: transparent;
}
.rooms-slider .card__media {
  aspect-ratio: 4/3;            /* landscape — horizontal room photos */
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}
.rooms-slider .card__body {
  padding: 0;
  background: transparent;
  gap: var(--space-2xs);
}
.rooms-slider .card__eyebrow {
  font-size: .7rem;
  letter-spacing: .25em;
  color: var(--color-accent);
  margin-bottom: .25rem;
}
.rooms-slider .card__title {
  font-size: clamp(1.4rem, 2.1vw, 1.65rem);
  font-weight: 500;
  margin-bottom: .5rem;
  line-height: 1.2;
}
.rooms-slider .card__desc {
  /* exactly 3 lines, ellipsis if longer */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  font-size: .9375rem;
}

/* Amenities row inside the card */
.card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.1rem;
  padding: var(--space-sm) 0;
  margin-top: var(--space-2xs);
  margin-bottom: var(--space-sm);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.card__amenity {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--color-text);
  font-size: .8125rem;
  letter-spacing: .02em;
  font-weight: 500;
}
.card__amenity svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex: 0 0 16px;
  stroke-width: 1.6;
}

.rooms-slider {
  --slides-per-view: 3;
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  /* Tighter horizontal padding so each card gets more width for its image */
  padding: 12px 48px 56px;
}
.rooms-slider .slider__viewport {
  overflow: hidden;
  width: 100%;
}
/* Tighter gap between cards = wider cards = larger image area */
.rooms-slider .slider__track {
  gap: var(--space-md);
}
.rooms-slider .slider__slide {
  flex: 0 0 calc((100% - (var(--slides-per-view) - 1) * var(--space-md)) / var(--slides-per-view));
  aspect-ratio: auto;
  min-height: 0;
  display: block;
}
/* Arrows align vertically with the IMAGE area only, so they never overlap
   the card title / description / amenities text. The image is roughly the
   top quarter of the card, so 25% from the slider's top centers the arrow
   on the image. */
.rooms-slider .slider__nav {
  top: 25%;
}
.rooms-slider .slider__nav--prev { left: 8px; }
.rooms-slider .slider__nav--next { right: 8px; }
.rooms-slider .slider__dots { bottom: 14px; }
.rooms-slider .slider__dot { background: rgba(0,0,0,.18); }
.rooms-slider .slider__dot.is-active { background: var(--color-accent); }

@media (max-width: 1080px) {
  .rooms-slider { --slides-per-view: 2; padding-inline: 56px; }
}
@media (max-width: 640px) {
  .rooms-slider { --slides-per-view: 1; padding-inline: 48px; }
  .rooms-slider .slider__nav { width: 40px; height: 40px; }
}

/* --- Why The Sahil — stats showcase (home page) ---
   Inspired by luxury hotel "Why Choose Us" widgets: large gold-gradient
   numbers, small uppercase labels, hairline dividers between cells.
*/
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
  text-align: center;
  padding-block: var(--space-lg);
}
.stats-row__item {
  padding: var(--space-md) var(--space-md);
  border-right: 1px solid rgba(147, 115, 75, .2);
  position: relative;
}
.stats-row__item:last-child { border-right: 0; }

/* Number + icon row — number on the left, icon on the right */
.stats-row__top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.stats-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--color-accent);
  opacity: .9;
  flex: 0 0 38px;
  transition: transform var(--transition), opacity var(--transition);
}
.stats-row__item:hover .stats-row__icon {
  transform: translateX(3px);
  opacity: 1;
}
.stats-row__icon svg { width: 100%; height: 100%; }

.stats-row__num {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1;
  /* warm gold gradient — light → mid → dark for depth */
  background: linear-gradient(135deg, #B89A78 0%, var(--color-accent) 45%, #7A5E3C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.stats-row__num em {
  font-style: italic;
  font-size: .42em;
  font-weight: 300;
  vertical-align: super;
  margin-left: .1em;
  letter-spacing: 0;
  position: relative;
  top: -.55em;
  /* Re-fill: parent's transparent fill is inherited, but its gradient
     background isn't — without this the "+" would render invisible. */
  -webkit-text-fill-color: var(--color-accent);
  color: var(--color-accent);
}
.stats-row__num sup {
  font-size: .5em;
  font-weight: 400;
  vertical-align: top;
  top: .15em;
  position: relative;
  margin-left: .05em;
  -webkit-text-fill-color: var(--color-accent);
  color: var(--color-accent);
}

.stats-row__label {
  margin-top: var(--space-sm);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* 2-per-row on tablet & mobile — keeps the stats compact and balanced
   instead of stacking into a tall single column. */
@media (max-width: 880px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); row-gap: var(--space-lg); }
  .stats-row__item:nth-child(2n) { border-right: 0; }
}
/* Tighten the gauge on narrow phones so the 2x2 grid still breathes. */
@media (max-width: 480px) {
  .stats-row { row-gap: var(--space-md); column-gap: var(--space-2xs); }
  .stats-row__item { padding-inline: var(--space-2xs); }
  .stats-row__num { font-size: clamp(2rem, 12vw, 2.75rem); }
}

/* --- Nearby Attractions slider (home page) ---
   3 cards visible at desktop, 2 at tablet, 1 at mobile.
   Same arrow-outside pattern as the rooms / offers / testimonials sliders.
*/
.attractions-slider {
  --slides-per-view: 3;
  position: relative;
  overflow: visible;
  background: transparent;
  padding: 12px 64px 56px;
}

/* Tighten the gap below the attractions-slider dots, on home only.
   Reduces the bottom padding of the slider's section + the top padding of
   the section that follows (Trusted partners), without changing the dots'
   position above. */
body[data-page="index"] section:has(.attractions-slider) {
  padding-bottom: clamp(.75rem, 1.5vw, 1.25rem);
}
body[data-page="index"] section:has(.attractions-slider) + section {
  padding-top: clamp(1rem, 2vw, 1.75rem);
}
.attractions-slider .slider__viewport {
  overflow: hidden;
  width: 100%;
}
.attractions-slider .slider__track {
  gap: var(--space-md);
  align-items: stretch;
}
.attractions-slider .slider__slide {
  flex: 0 0 calc((100% - (var(--slides-per-view) - 1) * var(--space-md)) / var(--slides-per-view));
  aspect-ratio: auto;
  min-height: 0;
  display: block;
}
.attractions-slider .slider__nav--prev { left: 8px; }
.attractions-slider .slider__nav--next { right: 8px; }
.attractions-slider .slider__dots { bottom: 14px; }
.attractions-slider .slider__dot { background: rgba(0,0,0,.18); }
.attractions-slider .slider__dot.is-active { background: var(--color-accent); }

@media (max-width: 1080px) {
  .attractions-slider { --slides-per-view: 2; padding-inline: 56px; }
}
@media (max-width: 640px) {
  .attractions-slider { --slides-per-view: 1; padding-inline: 48px; }
  .attractions-slider .slider__nav { width: 40px; height: 40px; }
}

/* Attraction card */
.attraction {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 600ms cubic-bezier(.4,0,.2,1), box-shadow 600ms cubic-bezier(.4,0,.2,1), border-color 600ms cubic-bezier(.4,0,.2,1);
}
.attraction:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.attraction__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--color-secondary);
  overflow: hidden;
}
.attraction__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1500ms cubic-bezier(.4,0,.2,1);
}
.attraction:hover .attraction__media img { transform: scale(1.06); }
.attraction__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
.attraction__type {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,.92);
  color: var(--color-accent);
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: .35rem .65rem;
  border-radius: 2px;
  font-weight: 500;
  z-index: 1;
}
.attraction__distance {
  position: absolute;
  bottom: 1rem; left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: #fff;
  font-size: .8125rem;
  letter-spacing: .04em;
  font-weight: 500;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.attraction__distance svg { width: 13px; height: 13px; flex: 0 0 13px; }

.attraction__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1 1 auto;
}
.attraction__title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -.005em;
  line-height: 1.2;
}
.attraction__desc {
  color: var(--color-text-muted);
  font-size: .9375rem;
  line-height: 1.6;
  /* clamp to 3 lines for consistent card heights */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1 auto;
}
.attraction__cta {
  margin-top: var(--space-2xs);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--color-accent);
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  transition: color var(--transition-fast);
}
.attraction__cta::after {
  content: "→";
  transition: transform var(--transition-fast);
}
.attraction:hover .attraction__cta::after { transform: translateX(3px); }

/* --- Offers feature grid (home page) ---
   Two full-bleed feature cards side-by-side. Each card is a tall image with
   a dark gradient overlay, a corner tag badge, and bottom-aligned text.
*/
.offers-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Offers slider (home) — same arrow-outside pattern as the rooms slider.
   2 cards visible at desktop, 1 at mobile. Body description hidden. */
.offers-slider {
  --slides-per-view: 2;
  position: relative;
  overflow: visible;
  background: transparent;
  padding: 12px 64px 56px;
}
.offers-slider .slider__viewport {
  overflow: hidden;
  width: 100%;
}
.offers-slider .slider__track {
  gap: var(--space-md);
  align-items: stretch;
}
.offers-slider .slider__slide {
  flex: 0 0 calc((100% - (var(--slides-per-view) - 1) * var(--space-md)) / var(--slides-per-view));
  aspect-ratio: auto;
  min-height: 0;
  display: block;
}
.offers-slider .slider__slide > .offer-feature { height: 100%; }
.offers-slider .slider__nav--prev { left: 8px; }
.offers-slider .slider__nav--next { right: 8px; }
.offers-slider .slider__dots { bottom: 14px; }
.offers-slider .slider__dot { background: rgba(0,0,0,.18); }
.offers-slider .slider__dot.is-active { background: var(--color-accent); }

@media (max-width: 880px) {
  .offers-slider { --slides-per-view: 1; padding-inline: 48px; }
  .offers-slider .slider__nav { width: 40px; height: 40px; }
}

/* F&B Offers slider on the home page — 3 cards visible on desktop. */
.fnb-offers-slider { --slides-per-view: 3; }
@media (max-width: 1024px) {
  .fnb-offers-slider { --slides-per-view: 2; }
}
@media (max-width: 640px) {
  .fnb-offers-slider { --slides-per-view: 1; }
}
.offer-feature {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 480px;
  height: 100%;
  background: var(--color-secondary);
  isolation: isolate;
  transition: transform var(--transition);
}
.offer-feature:hover { transform: translateY(-4px); }
.offer-feature__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1200ms cubic-bezier(.4,0,.2,1);
  z-index: 1;
}
.offer-feature:hover .offer-feature__bg { transform: scale(1.06); }
.offer-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Lighter gradient — top half fully clear so the image is visible,
     only the bottom darkens enough to keep the white title/CTA readable. */
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0)   0%,
    rgba(0, 0, 0, 0)   45%,
    rgba(0, 0, 0, .25) 65%,
    rgba(0, 0, 0, .65) 100%);
  z-index: 2;
  transition: opacity var(--transition);
}
.offer-feature__tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-accent);
  color: #fff;
  padding: .6rem 1rem;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 3;
  border-radius: 2px;
}
.offer-feature__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 3;
  color: #fff;
}
.offer-feature__eyebrow {
  display: block;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  font-weight: 500;
  margin-bottom: var(--space-2xs);
}
.offer-feature__title {
  color: #fff;
  font-size: 1.5rem;            /* 24px — fixed across viewports */
  font-weight: 500;
  margin-bottom: var(--space-sm);
  letter-spacing: -.01em;
  line-height: 1.2;
}
.offer-feature__title::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--color-accent-light);
  margin-top: .65rem;
}
.offer-feature__desc {
  /* Body description hidden per design — cards now show image + title + CTA only */
  display: none;
}
.offer-feature__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding-bottom: .35rem;
  border-bottom: 1px solid rgba(255,255,255,.5);
  transition: gap var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.offer-feature__cta::after {
  content: "→";
  font-size: 1rem;
  transition: transform var(--transition-fast);
}
.offer-feature:hover .offer-feature__cta {
  gap: .85rem;
  color: var(--color-accent-light);
  border-color: var(--color-accent-light);
}
.offer-feature:hover .offer-feature__cta::after { transform: translateX(4px); }

@media (max-width: 880px) {
  .offers-feature-grid { grid-template-columns: 1fr; }
  .offer-feature { min-height: 380px; }
}

/* Mobile — turn the homepage offers grid into a horizontal card slider
   to match the Nearby Attractions pattern. The dots host beneath the
   grid is wired up by cards-slider.js (data-cards-slider). */
@media (max-width: 640px) {
  .offers-grid {
    grid-template-columns: repeat(2, 100%) !important;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .offers-grid::-webkit-scrollbar { display: none; }
  .offers-grid .offer-feature {
    scroll-snap-align: start;
    min-height: 360px;
  }
}

/* --- Offers slider — 3 cards visible on desktop, more come in via arrows.
       Autoplays via the data-autoplay attribute. --- */
.offers-slider {
  --slides-per-view: 3;
  position: relative;
  overflow: visible;            /* allow arrows to extend outside */
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 12px 64px 56px;
}
.offers-slider .slider__viewport {
  overflow: hidden;             /* clips slides cleanly at the container edge */
}
.offers-slider .slider__track {
  gap: var(--space-md);
}
.offers-slider .slider__slide {
  flex: 0 0 calc((100% - (var(--slides-per-view) - 1) * var(--space-md)) / var(--slides-per-view));
  aspect-ratio: auto;
  min-height: 0;
  display: block;
}
/* Arrows: sit in the horizontal padding zone outside the card edges */
.offers-slider .slider__nav--prev { left: 8px; }
.offers-slider .slider__nav--next { right: 8px; }
.offers-slider .slider__dots { bottom: 14px; }
.offers-slider .slider__dot { background: rgba(0,0,0,.18); }
.offers-slider .slider__dot.is-active { background: var(--color-accent); }

/* Tablet — drop to 2 cards visible */
@media (max-width: 1024px) {
  .offers-slider { --slides-per-view: 2; }
}
/* Mobile — single card, tighter padding */
@media (max-width: 640px) {
  .offers-slider { --slides-per-view: 1; padding-inline: 48px; }
}

/* --- Testimonials slider (home page) ---
   Same pattern as the rooms slider: 3 cards visible, arrows sit OUTSIDE the
   cards in horizontal padding zones. The .slider__viewport wrapper strictly
   clips at the content edge so the 4th+ never peeks.
*/
.testimonials-slider {
  --slides-per-view: 3;
  position: relative;
  overflow: visible;          /* allow arrows to extend into padding zone */
  background: transparent;
  padding: 12px 64px 56px;    /* horizontal padding for arrows outside cards */
}
.testimonials-slider .slider__viewport {
  overflow: hidden;
  width: 100%;
}
.testimonials-slider .slider__track {
  gap: var(--space-md);
  align-items: stretch;
}
.testimonials-slider .slider__slide {
  flex: 0 0 calc((100% - (var(--slides-per-view) - 1) * var(--space-md)) / var(--slides-per-view));
  aspect-ratio: auto;
  min-height: 0;
  display: block;
}
.testimonials-slider .slider__slide > .testimonial { height: 100%; }
.testimonials-slider .slider__nav--prev { left: 8px; }
.testimonials-slider .slider__nav--next { right: 8px; }
.testimonials-slider .slider__dots { bottom: 14px; }
.testimonials-slider .slider__dot { background: rgba(0,0,0,.18); }
.testimonials-slider .slider__dot.is-active { background: var(--color-accent); }

@media (max-width: 960px) {
  .testimonials-slider { --slides-per-view: 2; padding-inline: 56px; }
}
@media (max-width: 640px) {
  .testimonials-slider { --slides-per-view: 1; padding-inline: 48px; }
  .testimonials-slider .slider__nav { width: 40px; height: 40px; }
}

.testimonial {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.testimonial__quote-mark {
  position: absolute;
  top: 8px;
  left: var(--space-md);
  font-family: 'Roboto', serif;
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-accent);
  opacity: .85;
  pointer-events: none;
}

.testimonial__quote {
  font-style: italic;
  color: var(--color-text);
  line-height: 1.75;
  font-size: 1rem;
  margin: 0;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
}

.testimonial__attribution {
  margin: 0;
  color: var(--color-accent);
  font-weight: 500;
  font-size: .9375rem;
  letter-spacing: .02em;
}

.testimonials__footnote {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: .875rem;
  color: var(--color-text-muted);
}
.testimonials__footnote a { color: var(--color-accent); }
.testimonials__footnote a:hover { text-decoration: underline; }

/* --- Mission / Vision blocks (about page) ---
   Each block is a 2-column split (image one side, text-with-eyebrow the other). */
.mv-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: center;
}
.mv-split--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.mv-split--reverse .mv-split__media { order: 2; }
.mv-split__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-secondary);
}
.mv-split__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 800ms ease;
}
.mv-split__media:hover img { transform: scale(1.03); }
.mv-split__media[data-tag]::before {
  content: attr(data-tag);
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: rgba(255,255,255,.92);
  color: var(--color-accent);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: .45rem .75rem;
  border-radius: 2px;
  font-weight: 500;
  z-index: 1;
}
.mv-split__body { padding-block: var(--space-md); }
.mv-split__body .section__eyebrow { display: inline-block; margin-bottom: var(--space-md); }
.mv-split__body .section__title::after {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}
.mv-split__body p { font-size: 1.0625rem; line-height: 1.8; }
.mv-split__body p + p { margin-top: var(--space-sm); }
.mv-split__quote {
  margin-top: var(--space-md);
  padding-left: var(--space-md);
  border-left: 3px solid var(--color-accent);
  font-style: italic;
  color: var(--color-accent-dark);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 880px) {
  .mv-split, .mv-split--reverse { grid-template-columns: 1fr; gap: var(--space-md); }
  .mv-split--reverse .mv-split__media { order: -1; }
  .mv-split__media img { aspect-ratio: 4/3; }
}

/* --- Photo collage (about page) ---
   Asymmetric grid: 1 large featured image + 4 smaller supporting images.
*/
.collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: var(--space-sm);
}
.collage__cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--color-secondary);
  cursor: pointer;
}
.collage__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}
.collage__cell:hover img { transform: scale(1.05); }
.collage__cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.collage__cell:hover::after { opacity: 1; }
.collage__caption {
  position: absolute;
  bottom: .85rem; left: 1rem; right: 1rem;
  color: #fff;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 1;
}
.collage__cell:hover .collage__caption { opacity: 1; transform: translateY(0); }
.collage__cell--featured {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}
.collage__cell--tall {
  grid-row: 1 / span 2;
}
@media (max-width: 880px) {
  .collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .collage__cell--featured { grid-column: 1 / span 2; grid-row: 1; }
  .collage__cell--tall { grid-row: auto; }
}

/* ==========================================================================
   HOME PAGE — Elegant / Luxurious Customization
   Scoped to body[data-page="index"] so other pages stay unchanged.
   Typography stays in Roboto throughout — refinement comes from weight,
   tracking, scale, color and motion (no extra fonts).
   ========================================================================== */

/* Hero — more cinematic, more luxurious (still Roboto) */
body[data-page="index"] .hero__title {
  font-size: clamp(2.25rem, 6vw, 4rem);   /* maxes at 64px on desktop */
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.05;
  max-width: 18ch;
}
body[data-page="index"] .hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent-light);
}
body[data-page="index"] .hero__eyebrow {
  letter-spacing: .35em;
  font-size: .75rem;
  font-weight: 400;
  border-left-color: var(--color-accent);
}

/* Section eyebrow — more refined letter-spacing */
body[data-page="index"] .section__eyebrow {
  letter-spacing: .35em;
  font-size: .75rem;
  font-weight: 400;
}

/* Section titles — more dramatic scale and weight on home */
body[data-page="index"] .section__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -.015em;
}
body[data-page="index"] .section__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent);
}

/* (Underline tokens are now defined site-wide in components.css —
   gold, slim, 48px wide.  This block is intentionally empty.) */

/* --- Gallery page: no hero banner — push <main> below the fixed header.
       Padding the parent (instead of just `:first-child`) so it works whether
       the inline mobile bookbar or the gallery section comes first. --- */
body[data-page="gallery"] main {
  padding-top: var(--header-h);
}
body[data-page="gallery"] main > section.section:first-of-type {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

/* --- Mobile-specific overrides for elements that conflict with rules in
       components.css. Lives here in pages.css (loaded last) so the cascade
       resolves in our favour without needing !important. --- */
@media (max-width: 640px) {

  /* Recognised By partner badge row — clean 2×2 grid (override the
     desktop flex-wrap which wraps inconsistently based on logo widths). */
  .badge-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) var(--space-sm);
    text-align: center;
    justify-content: stretch;
  }
  .badge-row__logo { height: 52px; }

  /* === Inner-page "Other Rooms / Other Venues / Also Dining / Other Offers"
         become a horizontal swipeable card carousel on mobile instead of
         stacking vertically.  Pure CSS scroll-snap — no JS required. === */
  html[data-depth="1"] .grid.grid--2,
  html[data-depth="1"] .grid.grid--3,
  html[data-depth="1"] .grid.grid--auto,
  html[data-depth="1"] .related-row {
    display: flex;
    flex-direction: row;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    gap: 14px;
    /* Bleed to the viewport edges so cards can scroll past the container
       gutter and the next card peeks naturally on either side */
    margin-inline: calc(-1 * var(--container-pad));
    padding: 4px var(--container-pad) 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  html[data-depth="1"] .grid.grid--2::-webkit-scrollbar,
  html[data-depth="1"] .grid.grid--3::-webkit-scrollbar,
  html[data-depth="1"] .grid.grid--auto::-webkit-scrollbar,
  html[data-depth="1"] .related-row::-webkit-scrollbar { display: none; }

  /* Each card becomes a snap-point — sized so the next card peeks ~15% */
  html[data-depth="1"] .grid.grid--2 > .card,
  html[data-depth="1"] .grid.grid--3 > .card,
  html[data-depth="1"] .grid.grid--auto > .card,
  html[data-depth="1"] .related-row > .card {
    flex: 0 0 82%;
    max-width: 340px;
    min-width: 0;
    scroll-snap-align: start;
  }

  /* Hide the home-page hero booking form on mobile — the fixed mobile bookbar
     at the bottom of the screen replaces it. The hero stays clean and
     image-led, with no overlapping booking widget. */
  .booking-form-wrap { display: none !important; }
  /* Now that the booking form is gone, the hero no longer needs the huge
     extra bottom padding that was reserving space for it on small screens. */
  .hero--home.has-booking-form + .section {
    padding-top: clamp(3rem, 8vw, 5rem) !important;
  }
}

/* ==========================================================================
   MOBILE SLIDER REFINEMENTS — hide chevron arrows, expand card to full width,
   strengthen the offer card so it feels premium on small screens.
   ========================================================================== */
@media (max-width: 640px) {

  /* Hide arrows on every slider — touch users get dots + swipe instead.
     Triple-defended (display + visibility + pointer-events) so no other
     rule can re-show them. */
  .slider__nav,
  .slider__nav--prev,
  .slider__nav--next,
  .rooms-slider .slider__nav,
  .offers-slider .slider__nav,
  .attractions-slider .slider__nav,
  .testimonials-slider .slider__nav,
  .hero__nav,
  .hero__nav--prev,
  .hero__nav--next {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* Remove the side padding that was reserving space for the arrows
     so the card now fills the screen width comfortably */
  .rooms-slider,
  .offers-slider,
  .attractions-slider,
  .testimonials-slider {
    padding-inline: 0 !important;
  }

  /* Slider dots — slightly larger and pushed below the card.
     `transform: none` is critical: the desktop rule applies translateX(-50%)
     which would otherwise stay active after switching to static and shift
     the dots 50% left. */
  .slider__dots {
    position: static !important;
    transform: none !important;
    left: auto !important;
    display: flex !important;
    justify-content: center;
    width: 100%;
    gap: 8px;
    margin-top: 18px;
  }
  .slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(147, 115, 75, .28);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
  }
  .slider__dot.is-active {
    background: var(--color-accent);
    transform: scale(1.25);
  }

  /* === Offer card refinements on mobile === */
  .offer-feature {
    min-height: 420px;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(20, 14, 6, .22);
    overflow: hidden;
  }
  /* Lighter gradient — image stays clearly visible, only the bottom edge
     darkens enough for the white title and CTA to read on it. */
  .offer-feature::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0)   0%,
      rgba(0, 0, 0, 0)   50%,
      rgba(0, 0, 0, .2)  65%,
      rgba(0, 0, 0, .7)  100%
    );
  }
  /* Tag pill — slightly more presence */
  .offer-feature__tag {
    top: 1.15rem;
    right: 1.15rem;
    padding: .55rem .9rem;
    font-size: .68rem;
    letter-spacing: .22em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
  }
  /* Content area — bigger title, better breathing room */
  .offer-feature__content {
    padding: 1.5rem 1.4rem 1.6rem;
  }
  .offer-feature__eyebrow {
    font-size: .7rem;
    color: var(--color-accent-light);
    margin-bottom: .4rem;
  }
  .offer-feature__title {
    font-size: 1.5rem;           /* 24px on mobile too */
    line-height: 1.2;
    margin-bottom: .85rem;
  }
  .offer-feature__title::after {
    width: 36px;
    height: 1.5px;
    margin-top: .85rem;
  }
  .offer-feature__cta {
    font-size: .78rem;
    padding-bottom: .4rem;
    letter-spacing: .2em;
  }
}

/* ==========================================================================
   MOBILE BOOKBAR — INLINE strip placed directly under the hero on mobile.
   Quick actions: Menu, Book Now, Map, Call. Hidden on desktop.
   Matches the Simplotel mobile pattern (in page flow, not fixed-bottom).
   ========================================================================== */
.mobile-bookbar { display: none; }

@media (max-width: 640px) {
  .mobile-bookbar {
    display: block;
    position: relative;
    background: #1A1410;            /* deep dark brown — frames the gold cleanly */
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    padding: 14px 0 12px;
  }

  .mobile-bookbar__price {
    text-align: center;
    font-size: 11.5px;
    color: rgba(255, 255, 255, .7);
    margin: 0 0 10px;
    letter-spacing: .04em;
  }
  .mobile-bookbar__price strong {
    color: var(--color-accent-light);
    font-weight: 500;
    margin-left: 2px;
  }

  .mobile-bookbar__actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .mobile-bookbar__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 6px 4px 4px;
    background: transparent;
    border: 0;
    color: var(--color-accent-light);
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    transition: color var(--transition-fast), transform var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-bookbar__action:active {
    color: #fff;
    transform: scale(.96);
  }
  .mobile-bookbar__action svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-light);
  }
  .mobile-bookbar__action span {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 500;
    color: var(--color-accent-light);
    line-height: 1;
  }

  /* Hide the back-to-top button entirely on mobile (per earlier request) */
  .back-to-top { display: none !important; }
}

/* --- Dining page: more breathing room above the philosophy heading
       so it doesn't feel cramped against the hero image. --- */
body[data-page="dining"] .hero + .section {
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

/* Soft section — warm cream base with a subtle decorative pattern.
   Applied site-wide on every page that uses .section--soft (incl. all inner
   sub-pages which share data-page with their parent). */
body[data-page="index"] .section--soft,
body[data-page="about"] .section--soft,
body[data-page="rooms"] .section--soft,
body[data-page="offers"] .section--soft,
body[data-page="dining"] .section--soft,
body[data-page="events"] .section--soft,
body[data-page="careers"] .section--soft,
body[data-page="location"] .section--soft,
body[data-page="contact"] .section--soft,
body[data-page="gallery"] .section--soft {
  background-color: #FAF7F2;
  background-image: url('https://assets.simplotel.com/simplotel/image/upload/hotel-pr-residency/Group_1921_81d8c268.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

/* Philosophy block — more editorial */
body[data-page="index"] .philosophy__heading h2 {
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -.015em;
  line-height: 1.1;
}
body[data-page="index"] .philosophy__heading h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--color-accent);
}
body[data-page="index"] .philosophy__body p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: #3A3A3A;
}
/* Inline links inside the philosophy paragraph — accent colour with a soft
   underline so they're recognisable as links even without hover. */
body[data-page="index"] .philosophy__body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}
body[data-page="index"] .philosophy__body a:hover {
  color: var(--color-text);
}

/* Card titles inside the rooms slider — refined, lighter, more breathing room */
body[data-page="index"] .rooms-slider .card__title {
  font-weight: 400;
  letter-spacing: -.005em;
}

/* Slower, more refined hover transitions on home */
body[data-page="index"] .card,
body[data-page="index"] .offer-feature,
body[data-page="index"] .testimonial {
  transition:
    transform 600ms cubic-bezier(.4,0,.2,1),
    box-shadow 600ms cubic-bezier(.4,0,.2,1),
    border-color 600ms cubic-bezier(.4,0,.2,1);
}
body[data-page="index"] .rooms-slider .card__media img,
body[data-page="index"] .offer-feature__bg {
  transition: transform 1500ms cubic-bezier(.4,0,.2,1);
}

/* Offer feature title — lighter weight for a more elegant tone */
body[data-page="index"] .offer-feature__title {
  font-weight: 400;
  letter-spacing: -.01em;
}

/* Testimonial quote — italic Roboto for an editorial tone */
body[data-page="index"] .testimonial__quote {
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #2A2A2A;
  font-weight: 300;
}
body[data-page="index"] .testimonial__quote-mark {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--color-accent);
  opacity: .85;
  top: 6px;
  left: var(--space-md);
}
body[data-page="index"] .testimonial {
  background: #fff;
  border: 1px solid rgba(147,115,75,.18);
  border-radius: var(--radius-md);
}
body[data-page="index"] .testimonial__attribution {
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .04em;
}

/* Decorative section divider — a subtle gold vertical hairline above centered heads */
body[data-page="index"] .section__head--center {
  position: relative;
}
body[data-page="index"] .section__head--center::before {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: var(--color-accent);
  margin: 0 auto var(--space-md);
  opacity: .55;
}

/* Lede copy across the home page gets a more readable, considered tone */
body[data-page="index"] .section__lede {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #5A5A5A;
}

/* Card hover lifts a touch more on home */
body[data-page="index"] .rooms-slider .card:hover {
  transform: translateY(-6px);
}

/* More cinematic section rhythm only on home */
body[data-page="index"] main > .section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

/* Hero CTAs — slightly more refined letter-spacing.
   On home, the 4 hero CTAs are laid out as a 2×2 grid (2 buttons per row).
   On mobile they collapse to a single column. */
body[data-page="index"] .hero__cta-row {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: var(--space-sm);
  justify-content: start;
}
body[data-page="index"] .hero__cta-row .btn {
  letter-spacing: .2em;
}
@media (max-width: 540px) {
  body[data-page="index"] .hero__cta-row {
    grid-template-columns: 1fr;
  }
  body[data-page="index"] .hero__cta-row .btn { width: 100%; text-align: center; justify-content: center; }
}

/* --- Privacy / long-form --- */
.long-form { max-width: 760px; margin-inline: auto; }
.long-form h2 { margin-top: var(--space-xl); margin-bottom: var(--space-sm); }
.long-form h3 { margin-top: var(--space-lg); margin-bottom: var(--space-2xs); font-size: 1.25rem; }
.long-form p, .long-form li { font-size: 1rem; line-height: 1.8; color: var(--color-text); }
.long-form ul { margin-top: var(--space-2xs); padding-left: 1.25rem; list-style: disc; }
.long-form ul li { margin-bottom: .5rem; }

/* ==========================================================================
   LOCATION PAGE
   ========================================================================== */

/* --- Breadcrumb --- */
.breadcrumb {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: .9rem 0;
  font-size: .85rem;
  color: var(--color-text-muted);
}
.breadcrumb__list li + li::before {
  content: ">";
  margin-right: .35rem;
  color: var(--color-text-muted);
  font-weight: 400;
}
.breadcrumb__list a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb__list a:hover { color: var(--color-accent-dark); text-decoration: underline; }
.breadcrumb__list [aria-current="page"] {
  color: var(--color-accent);
  font-weight: 500;
}

/* --- Compact section spacing for the action row --- */
.section--compact { padding-block: clamp(1.5rem, 3vw, 2.5rem); }

/* --- Location quick-action button row --- */
.location-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .9rem 1.25rem;
}
.location-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.location-actions .btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --- Location accordion --- */
.location-accordion {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  max-width: 880px;
  margin-inline: auto;
}
.location-accordion__item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.location-accordion__item:hover {
  border-color: var(--color-accent-light);
}
.location-accordion__item[open] {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
}
.location-accordion__summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--transition-fast);
}
.location-accordion__summary::-webkit-details-marker { display: none; }
.location-accordion__summary:hover {
  background: var(--color-bg-soft);
}
.location-accordion__title {
  flex: 1 1 auto;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -.005em;
}
.location-accordion__meta {
  flex: 0 0 auto;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--color-accent);
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}
.location-accordion__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  position: relative;
  transition: transform 350ms cubic-bezier(.4,0,.2,1), border-color var(--transition-fast), background var(--transition-fast);
}
.location-accordion__icon::before,
.location-accordion__icon::after {
  content: "";
  position: absolute;
  background: var(--color-text);
  transition: background var(--transition-fast);
}
.location-accordion__icon::before {
  top: 50%; left: 25%; right: 25%;
  height: 1.5px;
  margin-top: -.75px;
}
.location-accordion__icon::after {
  left: 50%; top: 25%; bottom: 25%;
  width: 1.5px;
  margin-left: -.75px;
  transform-origin: center;
  transition: transform 350ms cubic-bezier(.4,0,.2,1);
}
.location-accordion__item[open] .location-accordion__icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.location-accordion__item[open] .location-accordion__icon::before,
.location-accordion__item[open] .location-accordion__icon::after {
  background: #fff;
}
.location-accordion__item[open] .location-accordion__icon::after {
  transform: scaleY(0);
}
.location-accordion__body {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid var(--color-border);
  margin-top: 0;
}
.location-accordion__body p {
  margin-top: 1.1rem;
  font-size: .98rem;
  line-height: 1.75;
  color: var(--color-text);
}
.location-accordion__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.1rem;
}
.location-accordion__body .btn--ghost { margin-top: 1rem; }

@media (max-width: 640px) {
  .location-accordion__summary {
    flex-wrap: wrap;
    padding: 1rem 1.15rem;
    gap: .65rem;
  }
  .location-accordion__title {
    flex: 1 1 100%;
    order: 1;
  }
  .location-accordion__meta {
    flex: 1 1 auto;
    order: 2;
    font-size: .75rem;
  }
  .location-accordion__icon { order: 3; }
  .location-accordion__body { padding: 0 1.15rem 1.15rem; }
}

/* --- Details grid (Address + Direction tool) --- */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 880px) {
  .details-grid { grid-template-columns: 1fr; }
}

.address-card--stacked {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.address-card--stacked .address-card__col {
  padding: 1.1rem 1.25rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}
.address-card--stacked .address-card__col h4 {
  margin: 0 0 .35rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
}
.address-card--stacked .address-card__col p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.55;
  color: var(--color-text);
}
.address-card--stacked .address-card__col a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.address-card--stacked .address-card__col a:hover { color: var(--color-accent); }

/* --- Direction form --- */
.direction-form {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.direction-form__field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.direction-form__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.direction-form__value {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1rem;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast);
}
.direction-form__value:focus-within {
  border-color: var(--color-accent);
}
.direction-form__value svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}
.direction-form__input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .95rem;
  color: var(--color-text);
  outline: none;
  min-width: 0;
}
.direction-form__input[readonly] {
  color: var(--color-text-muted);
  cursor: default;
}
.direction-form__submit {
  margin-top: .25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  align-self: flex-start;
}
.direction-form__submit svg {
  width: 16px;
  height: 16px;
}
.direction-form__hint {
  margin: -.25rem 0 0;
  font-size: .8rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* --- Location page: tighter top spacing on hero, finishing CTA centred --- */
body[data-page="location"] .section--compact + .section { padding-top: clamp(2.5rem, 5vw, 4rem); }
body[data-page="location"] .map-frame { box-shadow: var(--shadow-card); }

/* --- Intro section (just a section__head) — collapse the spacing
       between it and the next section so they read as one block --- */
body[data-page="location"] .section--intro {
  padding-bottom: 0;
}
body[data-page="location"] .section--intro .section__head--tight {
  margin-bottom: 0;
}
body[data-page="location"] .section--intro + .section {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
}

/* ==========================================================================
   LOCATION PAGE — Tabbed contact panel + map (La Marvella style)
   Dark info panel on the left, Google Map on the right.  Three tabs in the
   panel: Hotel · Travel Hubs · Attractions.
   ========================================================================== */
.location-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 560px;
}

/* Left dark panel */
.location-block__panel {
  background: #0F0A06;
  color: #fff;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

/* Brand title block */
.location-block__brand {
  margin-bottom: 4px;
}
.location-block__brand-name {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: -.005em;
  line-height: 1.1;
}
.location-block__brand-name em {
  font-style: italic;
  color: var(--color-accent-light);
  font-weight: 300;
}
.location-block__brand-loc {
  display: block;
  margin-top: 6px;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-accent-light);
}

/* Tabs row */
.location-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(184, 154, 120, .25);
  margin-top: 4px;
}
.location-tabs__btn {
  flex: 1;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .55);
  padding: 14px 8px;
  font: inherit;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition-fast),
              border-color var(--transition-fast),
              background var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}
.location-tabs__btn:hover { color: rgba(255, 255, 255, .85); }
.location-tabs__btn.is-active {
  color: var(--color-accent-light);
  border-bottom-color: var(--color-accent);
  background: rgba(0, 0, 0, .25);
}

/* Tab panes */
.location-pane {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}
.location-pane.is-active { display: flex; }

/* Hotel info row (icon + label + value) */
.location-info {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.location-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 154, 120, .35);
  color: var(--color-accent-light);
}
.location-info__icon svg {
  width: 16px;
  height: 16px;
}
.location-info__label {
  display: block;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 4px;
  font-weight: 500;
}
.location-info__value {
  display: block;
  color: #fff;
  font-size: .92rem;
  line-height: 1.5;
  text-decoration: none;
}
a.location-info__value:hover { color: var(--color-accent-light); }

/* POI row (used inside Travel Hubs / Attractions tabs) */
.location-poi {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(184, 154, 120, .15);
}
.location-poi:last-child { border-bottom: 0; }
.location-poi__name {
  display: block;
  font-size: .92rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 2px;
}
.location-poi__meta {
  display: block;
  font-size: .75rem;
  color: var(--color-accent-light);
  letter-spacing: .04em;
}

/* CTA — gold rectangular Get Directions button at the bottom */
.location-block__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-accent);
  color: #fff;
  padding: 16px 20px;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--transition-fast);
}
.location-block__cta:hover { background: var(--color-accent-dark); }
.location-block__cta svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent-light);
}

/* Right map panel */
.location-block__map {
  background: var(--color-bg-soft);
  min-height: 100%;
}
.location-block__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Mobile — stack: map on top, dark panel below */
@media (max-width: 880px) {
  .location-block {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .location-block__map {
    min-height: 320px;
    order: -1;
  }
  .location-block__panel {
    padding: 1.6rem 1.4rem 1.4rem;
  }
}

/* ==========================================================================
   LOCATION PAGE — "Around The Sahil" expanded neighbourhood widget
   Subsections: Travel Hubs · Tourist Attractions · Business Hubs ·
   Medical · Educational · Markets.  Each subsection has a heading and
   a grid of cards (name · distance · time · description · Get Directions).
   ========================================================================== */
.poi-section {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.poi-section:first-of-type {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.poi-section__heading {
  margin: 0 0 var(--space-md);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--color-text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-accent);
  display: inline-block;
}

/* Auto-fit responsive card grid (3 columns on desktop, 2 on tablet, 1 on mobile) */
.poi-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(14px, 1.5vw, 20px);
}

/* Individual card */
.poi-listing {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
}
.poi-listing:hover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 28px rgba(20, 14, 6, .08);
  transform: translateY(-2px);
}

.poi-listing__name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.3;
  letter-spacing: -.005em;
}

.poi-listing__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--color-text-muted);
  letter-spacing: .03em;
}
.poi-listing__distance {
  color: var(--color-accent);
  font-weight: 600;
  font-size: .85rem;
}

.poi-listing__desc {
  margin: 0;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  flex: 1;
}

.poi-listing__cta {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--color-border);
  align-self: flex-start;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  width: 100%;
  transition: color var(--transition-fast);
}
.poi-listing__cta:hover {
  color: var(--color-accent-dark);
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .poi-listing-grid { grid-template-columns: 1fr; gap: 12px; }
  .poi-listing { padding: 18px 18px 16px; }
  .poi-section { margin-top: clamp(2rem, 5vw, 2.5rem); }
  .poi-section__heading { font-size: 1.15rem; }
}

/* ==========================================================================
   LOCATION PAGE — La Marvella-style POI cards + contact + perfect-for grid
   ========================================================================== */

/* --- Contact info grid (Address / Phone / Email / WhatsApp) --- */
.location-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.location-contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  padding: 1.5rem 1.4rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
}
.location-contact-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.location-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(147, 115, 75, .12);
  color: var(--color-accent);
  margin-bottom: .5rem;
}
.location-contact-card__icon svg {
  width: 20px;
  height: 20px;
}
.location-contact-card h4 {
  margin: 0;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
}
.location-contact-card a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.location-contact-card a:hover { color: var(--color-accent); }
.location-contact-card p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--color-text);
}
.location-contact-card p + a { margin-top: .25rem; }

/* --- POI grid (point of interest cards: name + distance + time + CTA) --- */
.poi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.poi-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
}
.poi-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 18px rgba(20, 14, 6, .08);
  transform: translateY(-2px);
}
.poi-card__name {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.3;
  letter-spacing: -.005em;
}
.poi-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--color-text-muted);
  letter-spacing: .03em;
}
.poi-card__meta span:first-child {
  color: var(--color-accent);
  font-weight: 600;
  font-size: .85rem;
}
.poi-card__cta {
  margin-top: auto;
  padding-top: 8px;
  align-self: flex-start;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast),
              border-color var(--transition-fast);
}
.poi-card__cta:hover {
  color: var(--color-accent-dark);
  border-bottom-color: var(--color-accent);
}

/* --- "Perfect For" grid (4 columns of purpose cards) --- */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
@media (max-width: 1024px) {
  .purpose-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .purpose-grid { grid-template-columns: 1fr; }
}
.purpose-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
}
.purpose-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(20, 14, 6, .08);
  transform: translateY(-3px);
}
.purpose-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(147, 115, 75, .12);
  color: var(--color-accent);
  margin-bottom: 4px;
}
.purpose-card__icon svg {
  width: 24px;
  height: 24px;
}
.purpose-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--color-text);
}
.purpose-card p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* --- Mobile tweaks for location page --- */
@media (max-width: 640px) {
  .location-contact-grid { grid-template-columns: 1fr; }
  .poi-grid { grid-template-columns: 1fr; }
  .poi-card { padding: 16px 18px 14px; }
}

/* --- Location page: section heading (consistent with .section__title pattern) --- */
.location-section__heading {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 var(--space-lg);
  color: var(--color-text);
}

/* ==========================================================================
   OFFER & ROOM SUB-PAGE LISTS (.offer-checklist, .room-checklist, .feature-bullets)
   Used on pages like special-rates.html, long-stay.html. Inline gold dot bullets,
   comfortable line-height, generous spacing.
   ========================================================================== */
.offer-checklist,
.room-checklist,
.feature-bullets {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 60ch;
}
.offer-checklist li,
.room-checklist li,
.feature-bullets li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
}
.offer-checklist li::before,
.room-checklist li::before,
.feature-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(147, 115, 75, .14);
}

/* --- Mv-split tweaks for short bodies (offer pages):
       align text to top instead of center so the image doesn't visually float
       beside an awkwardly-centered short text column. --- */
body[data-page="offers"] .mv-split,
body[data-page="rooms"] .mv-split,
body[data-page="dining"] .mv-split {
  align-items: start;
}
/* Constrain the offer image so it's not absurdly taller than the body */
body[data-page="offers"] .mv-split__media img {
  aspect-ratio: 4/3;
}
/* Ensure body has a comfortable top inset so eyebrow/h1 sit aligned with image top */
body[data-page="offers"] .mv-split__body,
body[data-page="rooms"] .mv-split__body,
body[data-page="dining"] .mv-split__body {
  padding-block: 0;
}
/* Paragraph spacing inside offer/room mv-split */
body[data-page="offers"] .mv-split__body > p,
body[data-page="rooms"] .mv-split__body > p,
body[data-page="dining"] .mv-split__body > p {
  margin-top: var(--space-sm);
  font-size: 1rem;
  line-height: 1.75;
}
/* Eyebrow + h1 sit close together — h1 has a small top margin only */
body[data-page="offers"] .inner-intro__h1,
body[data-page="rooms"] .inner-intro__h1,
body[data-page="dining"] .inner-intro__h1 {
  margin-top: .5rem;
}

/* CTA row inside inner-intro (e.g., Book a Table + Book Online on restaurant pages) */
.inner-intro__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: var(--space-md);
}
@media (max-width: 540px) {
  .inner-intro__cta { flex-direction: column; align-items: stretch; }
  .inner-intro__cta .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ==========================================================================
   ROOMS GALLERY SLIDER — image-only slider on rooms.html showcasing
   the room photographs. Larger / wider than inner-page sliders.
   ========================================================================== */
.rooms-gallery {
  max-width: 1080px;
  margin-inline: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.rooms-gallery .slider__slide {
  aspect-ratio: 3 / 2;
}
.rooms-gallery .slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .rooms-gallery .slider__slide { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   MEETINGS & EVENTS — Full-width cinematic banner on the home page.
   Background slider (autoplay + dots) + dark overlay + centered headline + CTA.
   ========================================================================== */
.meetings-banner {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 55vw, 580px);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
/* The slider fills the banner area as a background; force off the standard
   slider styling (border-radius, secondary bg) so it reads as a backdrop. */
.meetings-banner__slider {
  position: absolute !important;
  inset: 0;
  z-index: 0;
  border-radius: 0 !important;
  background: var(--color-secondary);
  overflow: hidden;
}
.meetings-banner__slider .slider__viewport {
  height: 100%;
}
.meetings-banner__slider .slider__track {
  height: 100%;
}
.meetings-banner__slider .slider__slide {
  aspect-ratio: auto !important;
  flex: 0 0 100%;
  height: 100%;
  display: block;
}
.meetings-banner__slider .slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Dots — bottom-center, white on the dark background */
.meetings-banner__slider .slider__dots {
  position: absolute !important;
  bottom: 22px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 3;
}
.meetings-banner__slider .slider__dot {
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
.meetings-banner__slider .slider__dot.is-active {
  background: #fff;
}

/* Dark overlay — sits between slider images and content */
.meetings-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(15, 10, 6, .35) 0%,
    rgba(15, 10, 6, .55) 100%);
  pointer-events: none;
}

.meetings-banner__content {
  width: 100%;
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.meetings-banner__eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .8rem;
  font-weight: 400;
  color: var(--color-accent-light);
  margin-bottom: var(--space-sm);
}
.meetings-banner__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 auto var(--space-md);
  letter-spacing: -.015em;
  color: #fff;
  max-width: 18ch;
}
.meetings-banner__title em {
  font-style: italic;
  color: var(--color-accent-light);
  font-weight: 300;
}
.meetings-banner__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-accent-light);
  margin: 1.1rem auto 0;
}
.meetings-banner__sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto var(--space-lg);
  color: rgba(255, 255, 255, .88);
}
.meetings-banner__cta {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.meetings-banner__cta:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

@media (max-width: 640px) {
  .meetings-banner { min-height: 380px; }
  .meetings-banner__content { padding: 3rem 0; }
}

/* ==========================================================================
   DINING FAB — Floating action button site-wide, above the AI Concierge.
   Toggle shows Book a Table + Book Online options on hover (desktop) or
   tap (mobile/touch). Same gold-accent style as the concierge bubble.
   ========================================================================== */
.dining-fab {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.75rem);
  /* Sits above the AI Concierge with ~24px breathing room between icons.
     AI Concierge: bottom ~16-28px, height 60px → top edge ~76-88px.
     Dining FAB bottom needs ~100-112px so the gap reads cleanly. */
  bottom: clamp(7rem, 13vw, 8rem);
  z-index: 91;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  /* Container spans the closed-menu area too (visibility:hidden keeps layout).
     Without this, the empty box would intercept clicks meant for the
     WhatsApp FAB that sits behind it at a lower z-index. */
  pointer-events: none;
}
.dining-fab__toggle { pointer-events: auto; }
.dining-fab__toggle {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(147, 115, 75, .35);
  transition: transform 250ms cubic-bezier(.4,0,.2,1),
              box-shadow 250ms cubic-bezier(.4,0,.2,1);
  -webkit-tap-highlight-color: transparent;
}
.dining-fab__toggle:hover,
.dining-fab.is-open .dining-fab__toggle {
  transform: scale(1.06);
  box-shadow: 0 16px 36px rgba(147, 115, 75, .5);
}
.dining-fab__toggle svg {
  width: 24px;
  height: 24px;
}

/* Expanding menu — pill options stack above the toggle */
.dining-fab__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 250ms cubic-bezier(.4,0,.2,1),
              transform 250ms cubic-bezier(.4,0,.2,1),
              visibility 250ms;
}
.dining-fab:hover .dining-fab__menu,
.dining-fab.is-open .dining-fab__menu,
.dining-fab__toggle:focus-visible ~ .dining-fab__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.dining-fab__option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 16px;
  background: #fff;
  color: var(--color-text);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(147, 115, 75, .25);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
  white-space: nowrap;
  transition: background var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
}
.dining-fab__option:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: translateX(-2px);
}
.dining-fab__option svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}
.dining-fab__option:hover svg { color: #fff; }

/* Mobile — slightly smaller toggle, shorter labels */
@media (max-width: 640px) {
  .dining-fab { gap: 8px; }
  .dining-fab__toggle { width: 52px; height: 52px; }
  .dining-fab__option { padding: 10px 14px; font-size: .72rem; letter-spacing: .12em; }
}

/* ==========================================================================
   EVENT ENQUIRY FORM — Vinca / Aster / Capers inner pages
   Heading on top with comfortable space, form below as a clean card.
   ========================================================================== */
.event-enquiry {
  max-width: 880px;
  margin-inline: auto;
}
.event-enquiry__intro {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.event-enquiry__intro .section__title {
  margin-top: .6rem;
}
.event-enquiry__intro .section__title::after {
  margin-inline: auto;
}
.event-enquiry__form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
}
.event-enquiry__note {
  font-size: .85rem;
  margin: 0;
}
.form__hint {
  color: var(--color-text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: .8em;
  margin-left: 4px;
}

@media (max-width: 640px) {
  .event-enquiry__form { padding: 1.25rem 1.1rem; }
}

/* ==========================================================================
   DINING — Current Offers section on restaurant inner pages
   (rivaaz.html, bluet.html). 3-card grid showing running promos.
   ========================================================================== */
.dining-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--space-md);
}
.dining-offer-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 20px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
}
.dining-offer-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 12px 30px rgba(20, 14, 6, .08);
  transform: translateY(-3px);
}
.dining-offer-card__tag {
  align-self: flex-start;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: #fff;
  padding: .45rem .75rem;
  border-radius: 2px;
  font-weight: 500;
  margin-bottom: 2px;
}
.dining-offer-card__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--color-text);
  line-height: 1.25;
}
.dining-offer-card__desc {
  margin: 0;
  font-size: .9rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  flex: 1;
}
.dining-offer-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  font-size: .82rem;
  color: var(--color-text-muted);
  letter-spacing: .02em;
}
.dining-offer-card__meta strong {
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: .04em;
  margin-right: 4px;
}
.dining-offer-card__cta {
  margin-top: 4px;
  align-self: flex-start;
}

@media (max-width: 640px) {
  .dining-offers-grid { grid-template-columns: 1fr; }
  .dining-offer-card { padding: 20px 18px 16px; }
}

/* Hover zoom for the offer image links in the Running at Rivaaz / Bluet
   sections on each dining inner page. */
.dining-offer-image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.dining-offer-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 500ms cubic-bezier(.4, 0, .2, 1);
}
.dining-offer-image:hover img,
.dining-offer-image:focus-visible img {
  transform: scale(1.04);
}

/* ==========================================================================
   DINING CARDS — home page: image area becomes a swipeable slider
   (instead of a single static image), with slick dots at the bottom.
   The card body remains a single clickable link to the restaurant page.
   ========================================================================== */

/* Make body anchor look like the original div */
a.card__body {
  text-decoration: none;
  color: inherit;
}

/* Slider fills the 4:3 .card__media area */
.dining-card .card__media {
  padding: 0;
}
.dining-card__slider {
  height: 100%;
  width: 100%;
  border-radius: 0;
  background: transparent;
}
.dining-card__slider .slider__viewport,
.dining-card__slider .slider__track {
  height: 100%;
}
.dining-card__slider .slider__slide {
  flex: 0 0 100%;
  aspect-ratio: auto;
  height: 100%;
}
.dining-card__slider .slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Disable the card's image zoom-on-hover (would zoom every slide awkwardly) */
.dining-card:hover .card__media img { transform: none; }

/* Slick-style dots positioned at the bottom of the image */
.dining-card__slider .slider__dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.dining-card__slider .slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  border: 0;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .35);
  transition: background var(--transition-fast),
              width var(--transition-fast);
}
.dining-card__slider .slider__dot.is-active {
  background: #fff;
  width: 22px;
  border-radius: 5px;
}

/* --- FAQ page: centre category headings --- */
body[data-page="faq"] .faq-category { text-align: center; }
body[data-page="faq"] .faq-category__title { text-align: center; }
body[data-page="faq"] .faq-category .location-accordion { text-align: left; }
