:root {
  /* ---- Palette: Luxury Navy & Gold ---- */
  --navy: #0F172A;
  --navy-soft: #1E293B;
  --gold: #D4AF37;
  --gold-soft: #E4C766;
  --gold-deep: #B8952C;
  --bg-white: #FFFFFF;
  --bg-light: #F7F6F3;
  --beige: #F3E9D8;
  --ink: #16213A;
  --ink-soft: #5B6472;
  --line: #E7E4DC;
  --white: #FFFFFF;
  --danger: #B3261E;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 12px 30px -14px rgba(15, 23, 42, 0.28);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  /* Back-compat aliases (older markup / inline styles reference these) */
  --cream: var(--bg-light);
  --cream-light: var(--bg-white);
  --teal-deep: var(--navy);
  --teal: var(--navy-soft);
  --teal-soft: var(--gold);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0 0 .5em; color: var(--navy); }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- Header ---- */
.site-header { position: sticky; top: 0; z-index: 40; background: var(--navy); }
.site-header::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); opacity: .6; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; overflow: hidden; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.15rem; color: var(--white); }
.logo-mark { width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.logo-img { height: 82px; width: auto; max-width: none; display: block; }
.footer-logo-img { height: 150px; max-width: none; }
.logo-text { flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.15; }
.logo-text .logo-name { font-size: 1.5rem; font-weight: 700; color: var(--gold-soft); letter-spacing: .02em; }
.logo-text .logo-tagline { font-size: .66rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.65); }
@media (max-width: 860px) { .header-inner { height: 76px; } .logo-img { height: 66px; } .logo-text .logo-name { font-size: 1.2rem; } .logo-text .logo-tagline { display: none; } }
.main-nav { display: flex; gap: 34px; font-size: .82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.main-nav a { position: relative; padding-bottom: 6px; color: rgba(255,255,255,.82); transition: color .2s ease; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px; background: var(--gold); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.main-nav a:hover, .main-nav a.is-active { color: var(--gold-soft); }
.phone-pill { display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--gold); border-radius: 999px; padding: 10px 22px; font-size: .88rem; white-space: nowrap; font-weight: 600; color: var(--white); transition: background .2s ease, color .2s ease; }
.phone-pill svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; transition: stroke .2s ease; }
.phone-pill:hover { background: var(--gold); color: var(--navy); }
.phone-pill:hover svg { stroke: var(--navy); }

/* Transparent header floating over the hero image — home page only.
   Background is a constant translucent/blurred navy (never fully see-through),
   so it stays legible against both the hero photo and the sky at the top,
   with no scroll-based JS state to get out of sync. */
.site-header--overlay {
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.6) 0%, rgba(15,23,42,.28) 100%);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: none; z-index: 45;
}
.site-header--overlay::after { opacity: .35; }

@media (max-width: 860px) { .main-nav { display: none; } .phone-pill { display: none; } }

/* ---- Mobile nav toggle + drawer ---- */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: 1px solid rgba(255,255,255,.35); border-radius: 8px; padding: 0; }
.nav-toggle .bar { display: block; width: 20px; height: 2px; margin: 0 auto; background: var(--white); transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 860px) { .nav-toggle { display: flex; } }

.nav-scrim { position: fixed; inset: 0; background: rgba(15,23,42,.55); z-index: 55; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

.mobile-nav {
  position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 84vw);
  background: var(--navy); z-index: 60; display: flex; flex-direction: column;
  padding: 96px 32px 40px; gap: 2px; box-shadow: -12px 0 40px rgba(0,0,0,.35);
  transform: translateX(100%); transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  color: rgba(255,255,255,.85); font-family: var(--font-body); font-weight: 600;
  font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a.is-active, .mobile-nav a:hover { color: var(--gold-soft); }
.mobile-nav-phone { display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--gold) !important; border-radius: 999px; padding: 12px 20px; margin-top: 24px; color: var(--white) !important; }
.mobile-nav-phone svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; }
.mobile-nav-close { position: absolute; top: 20px; right: 24px; background: none; border: none; padding: 8px; color: var(--white); }
.mobile-nav-close svg { width: 22px; height: 22px; }
body.nav-locked { overflow: hidden; }
@media (min-width: 861px) { .mobile-nav, .nav-scrim { display: none; } }

/* ---- Hero ---- */
.hero { position: relative; }
.hero-media { position: relative; height: min(92vh, calc(100vh - 40px)); min-height: 680px; max-height: 880px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); filter: saturate(1.18) contrast(1.1) brightness(.97) sepia(.08); animation: heroZoom 16s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.14); } }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,.4) 0%, rgba(15,23,42,.72) 100%); }
.hero-watermark { position: absolute; left: 50%; top: 44%; width: min(560px, 70vw); transform: translate(-50%, -50%); opacity: .1; pointer-events: none; filter: drop-shadow(0 0 40px rgba(212,175,55,.4)); }
.hero-corner { position: absolute; width: 96px; height: 96px; opacity: .55; pointer-events: none; }
.hero-corner svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.2; }
.hero-corner-tl { top: 24px; left: 24px; }
.hero-corner-br { bottom: 24px; right: 24px; transform: rotate(180deg); }
@media (max-width: 700px) { .hero-corner { width: 56px; height: 56px; } .hero-text { padding-top: 116px; } }
.hero-text { position: absolute; left: 0; right: 0; top: 0; bottom: 0; display: flex; align-items: flex-start; text-align: left; padding: 168px 24px 100px; }
.hero-text-inner { max-width: 640px; margin: 0 min(6vw, 96px); }
.hero-text .section-eyebrow { color: var(--gold-soft); text-align: left; margin-bottom: 14px; }
.hero-text h1 { color: var(--white); font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.14; text-shadow: 0 2px 24px rgba(0,0,0,.4); }
.hero-text .sub-heading { color: rgba(255,255,255,.85); font-size: clamp(1rem, 1.6vw, 1.12rem); max-width: 480px; margin: 0 0 28px; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-bottom: 34px; }
.hero-stat { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; min-width: 72px; }
.hero-stat svg { width: 22px; height: 22px; stroke: var(--gold-soft); }
.hero-stat .hero-stat-value { color: var(--white); font-weight: 700; font-size: .95rem; white-space: nowrap; }
.hero-stat .hero-stat-label { color: rgba(255,255,255,.68); font-size: .74rem; line-height: 1.3; }

.hero-buttons { display: flex; gap: 16px; justify-content: flex-start; margin-bottom: 22px; flex-wrap: wrap; }
.hero-buttons .btn-primary { display: inline-flex; align-items: center; gap: 10px; }

.trust-line { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: .9rem; }
.trust-line svg { width: 20px; height: 20px; stroke: var(--gold-soft); flex-shrink: 0; }
.trust-line strong { color: var(--gold-soft); font-weight: 700; }

.booking-widget {
  position: relative;
  max-width: 1180px;
  margin: -50px auto 0;
  background: linear-gradient(165deg, rgba(30,41,59,.92) 0%, rgba(15,23,42,.94) 100%);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -22px rgba(0,0,0,.6), 0 0 0 1px rgba(212,175,55,.08) inset;
  padding: 14px;
  display: grid;
  grid-template-columns: 1.9fr 1.9fr auto;
  align-items: stretch;
  gap: 2px;
  z-index: 2;
  border: 1px solid rgba(212,175,55,.4);
}
.booking-widget .field-icon-row {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 14px 12px;
  border-radius: var(--radius-md);
  transition: background .2s ease;
  min-width: 0;
}
.booking-widget .field-icon-row:hover,
.booking-widget .field-icon-row:focus-within { background: rgba(255,255,255,.05); }
.booking-widget .field-icon-row svg { width: 17px; height: 17px; stroke: var(--gold-soft); flex-shrink: 0; margin-top: 3px; opacity: .9; }
.booking-widget .field { flex: 1; min-width: 0; }
.booking-widget .field label {
  color: var(--gold-soft); text-transform: uppercase; letter-spacing: .08em; font-size: .64rem; font-weight: 700;
  display: block; margin-bottom: 3px; white-space: nowrap;
}
.booking-widget .field input, .booking-widget .field select {
  background: transparent; border: none; border-radius: 0; padding: 2px 0 0; color: var(--white); font-weight: 600; font-size: .92rem; min-height: auto;
  color-scheme: dark; width: 100%; font-family: inherit; letter-spacing: 0; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.booking-widget .field input[type="date"] { font-size: .85rem; }
.booking-widget .field input::-webkit-calendar-picker-indicator { filter: invert(78%) sepia(37%) saturate(600%) hue-rotate(1deg) brightness(105%); opacity: .85; cursor: pointer; }
.booking-widget .field input:focus, .booking-widget .field select:focus { outline: none; }
.booking-widget .field select option { color: var(--navy); background: #fff; }
.booking-widget .field-guests { display: flex; align-items: center; min-width: 0; }
.booking-widget .field-guests select { font-size: .92rem; flex-shrink: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.booking-widget .field-guests select#children { color: rgba(255,255,255,.7); font-size: .76rem; font-weight: 500; flex-shrink: 2; }
.booking-widget .field-guests-divider { width: 1px; height: 12px; background: rgba(255,255,255,.18); flex-shrink: 0; margin: 0 7px; }
.booking-widget .field-hint { display: block; font-size: .62rem; color: rgba(255,255,255,.42); margin-top: 5px; letter-spacing: 0; white-space: nowrap; }
.booking-widget .field-divider { display: none; }

/* ---- Popover fields: dates & guests/breakfast triggers ---- */
.field-trigger {
  background: transparent; border: none; padding: 2px 0 0; margin: 0;
  color: var(--white); font-weight: 600; font-size: .92rem; font-family: inherit;
  text-align: left; width: 100%; cursor: pointer; letter-spacing: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.field-trigger:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 3px; border-radius: 3px; }
.popover-field { position: relative; }
.popover {
  position: absolute; top: calc(100% + 14px); left: 0; z-index: 40;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -16px rgba(15,23,42,.45), 0 0 0 1px rgba(15,23,42,.06);
  padding: 18px; color: var(--ink);
}
.popover[hidden] { display: none; }

/* Calendar popover */
.popover-dates { width: min(680px, 88vw); }
.popover-cal-header { display: flex; align-items: flex-start; gap: 4px; }
.cal-nav {
  background: var(--bg-light); border: 1px solid var(--line); border-radius: 50%;
  width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--navy); transition: background .15s ease, border-color .15s ease; margin-top: 2px;
}
.cal-nav svg { width: 15px; height: 15px; }
.cal-nav:hover { background: var(--bg-cream, #FBFAF7); border-color: var(--gold); }
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.cal-months { flex: 1; display: flex; gap: 28px; overflow: hidden; }
.cal-month { flex: 1; min-width: 0; }
.cal-month-title {
  font-family: var(--font-display); font-size: 1rem; color: var(--navy); font-weight: 600;
  text-align: center; margin-bottom: 12px;
}
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-weekdays span {
  text-align: center; font-size: .66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--ink-soft); padding-bottom: 6px;
}
.cal-day {
  position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 600; color: var(--ink); background: none; border: none;
  cursor: pointer; border-radius: 50%; z-index: 1;
}
.cal-day.is-empty { cursor: default; }
.cal-day.is-disabled { color: var(--line); cursor: not-allowed; }
.cal-day.is-today:not(.is-selected)::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold-deep);
}
.cal-day:not(.is-empty):not(.is-disabled):hover { background: rgba(212,175,55,.16); }
.cal-day.is-selected { background: var(--navy); color: var(--white); }
.cal-day.is-in-range { background: rgba(212,175,55,.16); border-radius: 0; }
.cal-day.is-range-start { border-radius: 50% 0 0 50%; }
.cal-day.is-range-end { border-radius: 0 50% 50% 0; }
.cal-day.is-range-start.is-range-end { border-radius: 50%; }
.popover-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
}
.popover-hint { font-size: .78rem; color: var(--ink-soft); }
.btn-popover-done {
  background: var(--navy); color: var(--white); border: none; border-radius: var(--radius-sm);
  padding: 10px 22px; font-size: .82rem; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; cursor: pointer; transition: background .15s ease;
}
.btn-popover-done:hover { background: var(--navy-deep, #0E2436); }

/* Guests + breakfast popover */
.popover-guests { width: min(340px, 88vw); }
.stepper-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.stepper-label strong { display: block; font-size: .9rem; color: var(--navy); }
.stepper-label .stepper-sub { display: block; font-size: .74rem; color: var(--ink-soft); margin-top: 2px; }
.stepper-controls { display: flex; align-items: center; gap: 14px; }
.stepper-btn {
  width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line);
  background: var(--white); color: var(--navy); font-size: 1.1rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; cursor: pointer; line-height: 1;
  transition: border-color .15s ease, color .15s ease, opacity .15s ease;
}
.stepper-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold-deep); }
.stepper-btn:disabled { opacity: .35; cursor: not-allowed; }
.stepper-value { min-width: 20px; text-align: center; font-weight: 700; font-size: .92rem; color: var(--ink); }
.popover-divider { height: 1px; background: var(--line); margin: 4px 0; }
.breakfast-row { padding: 12px 0 4px; }
.breakfast-toggle-group { display: flex; gap: 8px; margin-top: 10px; }
.breakfast-option {
  flex: 1; padding: 9px 8px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--white); color: var(--ink-soft); font-size: .78rem; font-weight: 600;
  cursor: pointer; text-align: center; transition: all .15s ease;
}
.breakfast-option:hover { border-color: var(--gold); }
.breakfast-option.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.popover-guests .popover-footer { justify-content: flex-end; }
.popover-guests .popover-footer .popover-hint { margin-right: auto; }

@media (max-width: 640px) {
  .popover-dates { width: 92vw; left: 50%; transform: translateX(-50%); }
  .cal-months { flex-direction: column; gap: 20px; }
  .popover-guests { width: 92vw; left: 50%; transform: translateX(-50%); max-height: 78vh; overflow-y: auto; }
}

/* Split Check In / Check Out sub-fields sharing one calendar popover */
.date-field-pair { display: flex; align-items: stretch; min-width: 0; gap: 0; }
.date-subfield { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.date-subfield-divider { width: 1px; align-self: stretch; background: rgba(255,255,255,.14); margin: 0 12px; flex-shrink: 0; }
@media (max-width: 560px) {
  .date-field-pair { flex-direction: row; }
}

/* Rooms quantity picker inside the guests popover */
.rooms-picker { padding: 4px 0; }
.rooms-picker > .stepper-label { padding-bottom: 4px; }
.room-type-row { padding: 8px 0; }
.room-type-row .stepper-label { font-size: .86rem; color: var(--ink); font-weight: 600; }


@media (min-width: 981px) {
  .booking-widget .field-icon-row:not(:last-of-type) { position: relative; }
  .booking-widget .field-icon-row:not(:last-of-type)::after {
    content: ''; position: absolute; right: -1px; top: 16px; bottom: 16px; width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212,175,55,.25), transparent);
  }
}
.booking-widget .widget-submit { padding: 10px 8px 10px 14px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.field label { font-size: .8rem; font-weight: 600; color: var(--navy); }
.field input, .field select {
  border: 1px solid rgba(15,23,42,.12); border-radius: var(--radius-sm);
  padding: 10px 12px; font-size: .95rem; font-family: inherit; background: rgba(255,255,255,.65);
  min-height: 44px;
}
.field input:focus, .field select:focus { border-color: var(--gold); }
.field .error-msg { color: var(--danger); font-size: .78rem; min-height: 1em; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: var(--navy); border: none;
  border-radius: var(--radius-sm); padding: 14px 26px; font-size: .92rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  min-height: 44px; box-shadow: 0 8px 24px -8px rgba(212,175,55,.55);
  transition: box-shadow .2s ease, transform .15s ease, filter .2s ease;
  white-space: nowrap;
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 10px 30px -6px rgba(212,175,55,.7); transform: translateY(-1px); }
.btn-primary:active { transform: scale(.98); }
.btn-primary:disabled { opacity: .6; cursor: not-allowed; box-shadow: none; }
.btn-secondary {
  background: transparent; color: var(--navy); border: 1.5px solid var(--navy);
  border-radius: var(--radius-sm); padding: 12px 22px; font-weight: 600; min-height: 44px;
  letter-spacing: .03em; text-transform: uppercase; font-size: .88rem;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.widget-submit { display: flex; flex-direction: column; gap: 6px; }
.widget-submit .btn-primary { white-space: nowrap; padding: 14px 30px; width: 100%; }
@media (max-width: 980px) {
  .booking-widget { grid-template-columns: 1fr 1fr; margin-top: -40px; padding: 10px; }
  .booking-widget .field-icon-row:not(:last-of-type)::after { display: none; }
  .booking-widget .field-icon-row { border-bottom: 1px solid rgba(255,255,255,.08); }
  .booking-widget .widget-submit { grid-column: 1 / -1; padding: 14px 10px 10px; }
}
@media (max-width: 560px) {
  .booking-widget { grid-template-columns: 1fr; }
}

[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---- Sections ---- */
section { padding: 96px 0; }
.hero { padding: 0; }
.section-eyebrow { text-align: center; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; font-weight: 600; }
.section-title { text-align: center; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: .01em; margin-bottom: 20px; }
.section-intro { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-alt { background: var(--bg-light); }
.section-navy { background: var(--navy); }
.section-navy .section-title, .section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy .section-eyebrow { color: var(--gold-soft); }
.section-navy p { color: rgba(255,255,255,.75); }

.policy-strip { padding: 0; background: var(--navy); border-bottom: 1px solid rgba(212,175,55,.25); }
.policy-strip-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 32px; padding: 22px 24px; position: relative; }
.policy-item { display: flex; align-items: center; gap: 12px; }
.policy-item svg { width: 26px; height: 26px; stroke: var(--gold-soft); flex-shrink: 0; }
.policy-item div { display: flex; flex-direction: column; gap: 2px; }
.policy-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.55); font-weight: 600; }
.policy-value { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); font-weight: 600; }
.policy-divider { width: 1px; height: 34px; background: rgba(255,255,255,.15); }
.policy-note { margin: 0 0 0 auto; font-size: .8rem; color: rgba(255,255,255,.6); }
.policy-note a { color: var(--gold-soft); font-weight: 600; }
.policy-note a:hover { color: var(--gold); }
@media (max-width: 860px) {
  .policy-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .policy-divider { display: none; }
  .policy-note { margin-left: 0; }
}

.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .room-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .room-grid { grid-template-columns: 1fr; } }

.room-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .25s ease;
  border: 1px solid var(--line);
}
.room-card:hover { box-shadow: 0 24px 48px -18px rgba(212,175,55,.4); border-color: rgba(212,175,55,.4); }
.room-card.is-visible { opacity: 1; transform: translateY(0); }
.room-card .room-img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.room-card img { aspect-ratio: 4/3; object-fit: cover; transition: transform .5s ease; }
.room-card:hover img { transform: scale(1.06); }
.room-card-body { padding: 22px; }
.room-card-body h3 { font-size: 1.25rem; margin-bottom: 4px; }
.room-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: .82rem; color: var(--ink-soft); margin-bottom: 14px; }
.room-footer { display: flex; align-items: center; justify-content: space-between; }
.price-from { font-size: .75rem; color: var(--ink-soft); }
.price-value { font-size: 1.15rem; font-weight: 700; color: var(--gold-deep); }
.btn-view { background: var(--navy); color: var(--white); border-radius: var(--radius-sm); padding: 10px 16px; font-size: .85rem; font-weight: 600; transition: background .15s ease; }
.btn-view:hover { background: var(--gold); color: var(--navy); }

.room-qty-controls { display: flex; align-items: center; gap: 12px; }

.cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--navy); box-shadow: 0 -12px 32px -12px rgba(15,23,42,.35);
  padding: 14px 0;
}
.cart-bar-inner { display: flex; align-items: center; justify-content: flex-end; gap: 20px; }
.cart-bar-summary { color: var(--white); font-weight: 600; font-size: .92rem; margin-right: auto; }
.cart-bar-total { color: var(--gold-soft); font-weight: 700; font-size: 1.05rem; }
@media (max-width: 560px) {
  .cart-bar-inner { flex-wrap: wrap; justify-content: space-between; }
  .cart-bar-total { order: 3; width: 100%; }
}

.split-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.split-panel .panel-copy { background: var(--navy); color: var(--bg-light); padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.split-panel .panel-copy h2 { color: var(--white); }
.split-panel .panel-copy p { color: rgba(255,255,255,.8); }
.split-panel img { height: 100%; object-fit: cover; }
@media (max-width: 780px) { .split-panel { grid-template-columns: 1fr; } .split-panel img { height: 320px; } }

.feature-strip { background: var(--navy); color: var(--bg-light); text-align: center; }
.feature-strip .wrap { padding: 56px 24px; }
.feature-strip p { color: rgba(255,255,255,.9); font-family: var(--font-display); font-size: clamp(1.3rem,2.6vw,1.7rem); max-width: 760px; margin: 0 auto; }

/* ---- Icon Grid (Why Choose Us / Amenities) ---- */
.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .icon-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .icon-grid { grid-template-columns: 1fr; } }
.icon-card { text-align: center; padding: 32px 20px; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.icon-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -18px rgba(212,175,55,.45); border-color: var(--gold); }
.icon-card .icon-circle { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%; background: var(--beige); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); border: 1px solid rgba(212,175,55,.25); transition: transform .3s ease, background .3s ease; }
.icon-card:hover .icon-circle { transform: rotate(8deg) scale(1.08); background: var(--gold); }
.icon-card:hover .icon-circle svg { stroke: var(--navy); }
.icon-card .icon-circle svg { width: 26px; height: 26px; stroke: var(--gold-deep); transition: stroke .3s ease; }
.icon-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.icon-card p { font-size: .88rem; margin: 0; }
.section-navy .icon-card { background: var(--navy-soft); border-color: rgba(255,255,255,.08); }
.section-navy .icon-card p { color: rgba(255,255,255,.7); }
.section-navy .icon-card .icon-circle { background: rgba(212,175,55,.15); }

/* ---- Ornamental Divider ---- */
.divider-ornamental { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 32px; max-width: 260px; }
.divider-ornamental::before, .divider-ornamental::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider-ornamental::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-ornamental span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ---- Offers ---- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card { position: relative; border-radius: var(--radius-lg); padding: 32px 26px; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%); color: var(--white); overflow: hidden; }
.offer-card::after { content: ''; position: absolute; top: -30%; right: -20%; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.25), transparent 70%); }
.offer-card .offer-tag { display: inline-block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; background: var(--gold); color: var(--navy); padding: 4px 12px; border-radius: 999px; font-weight: 700; margin-bottom: 16px; }
.offer-card h3 { color: var(--white); font-size: 1.25rem; }
.offer-card p { color: rgba(255,255,255,.75); font-size: .92rem; }
.offer-card a { color: var(--gold-soft); font-weight: 600; font-size: .9rem; }
.offer-card a:hover { text-decoration: underline; }

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--gold-deep); flex-shrink: 0; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 22px 20px; margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---- CTA Banner ---- */
.cta-banner { background: var(--navy); border-radius: var(--radius-lg); padding: 56px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(212,175,55,.12), transparent 50%), radial-gradient(circle at 80% 80%, rgba(212,175,55,.1), transparent 50%); }
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid img { border-radius: var(--radius-md); aspect-ratio: 1; object-fit: cover; transition: transform .4s ease; }
.gallery-grid a { overflow: hidden; border-radius: var(--radius-md); display: block; }
.gallery-grid a:hover img { transform: scale(1.08); }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }

/* ---- Checkout ---- */
.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }
.summary-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); position: sticky; top: 100px; border-top: 3px solid var(--gold); }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.summary-row.total { border-bottom: none; font-weight: 700; font-size: 1.05rem; color: var(--navy); padding-top: 14px; }
.checkout-form { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 18px; }
.banner-error { background: #FDECEA; color: var(--danger); border-radius: var(--radius-sm); padding: 12px 16px; font-size: .9rem; }

/* ---- Confirmation ---- */
.confirmation-card { max-width: 640px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 48px; text-align: center; box-shadow: var(--shadow-card); border-top: 3px solid var(--gold); }
.confirmation-code { font-family: var(--font-display); font-size: 2rem; color: var(--navy); letter-spacing: .05em; margin: 12px 0 24px; }

/* ---- Contact Page ---- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.15fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--navy); border-radius: var(--radius-lg); padding: 36px 32px; color: var(--white); }
.contact-info-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.contact-info-card > p { color: rgba(255,255,255,.7); font-size: .92rem; margin-bottom: 26px; }
.contact-info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-row:last-of-type { margin-bottom: 0; }
.contact-info-row .icon-circle { width: 42px; height: 42px; margin: 0; flex-shrink: 0; background: rgba(212,175,55,.15); border: 1px solid rgba(212,175,55,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-info-row .icon-circle svg { width: 20px; height: 20px; stroke: var(--gold-soft); }
.contact-info-row .contact-info-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-soft); margin-bottom: 4px; font-weight: 700; }
.contact-info-row a, .contact-info-row span.contact-info-text { color: rgba(255,255,255,.88); font-size: .95rem; display: block; }
.contact-info-row a:hover { color: var(--gold-soft); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); margin-top: 24px; border: 1px solid var(--line); }
.contact-map iframe { display: block; width: 100%; height: 260px; border: 0; }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-card); border-top: 3px solid var(--gold); }
.contact-form-card h3 { margin-bottom: 6px; }
.contact-form-card > p { margin-bottom: 26px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .contact-form-grid { grid-template-columns: 1fr; } }
.contact-form-grid .field-full { grid-column: 1 / -1; }
.contact-form-card .field label { color: var(--navy); }
.contact-form-card .field input, .contact-form-card .field select, .contact-form-card .field textarea {
  border: 1px solid var(--line); background: var(--bg-light); color: var(--ink); min-height: 46px;
  border-radius: var(--radius-sm); padding: 10px 14px; font-size: .95rem; font-family: inherit; width: 100%;
}
.contact-form-card .field textarea { min-height: 110px; resize: vertical; }
.contact-form-card .field input:focus, .contact-form-card .field select:focus, .contact-form-card .field textarea:focus { border-color: var(--gold); outline: none; }
.contact-form-card .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.contact-form-card .form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 14px; }

/* ---- Footer ---- */
.site-footer { position: relative; background: var(--navy); color: rgba(255,255,255,.75); padding: 64px 0 24px; }
.site-footer::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); opacity: .6; }
.footer-grid { display: grid; grid-template-columns: .9fr 1.2fr 1fr 1fr 1fr; gap: 32px; align-items: start; }
.footer-grid h4 { color: var(--white); font-family: var(--font-body); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-grid a { display: block; margin-bottom: 8px; color: rgba(255,255,255,.7); transition: color .15s ease; }
.footer-grid a:hover { color: var(--gold-soft); }
.footer-logo { color: var(--white); margin-bottom: 14px; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold-soft); letter-spacing: .02em; }
.footer-address { font-size: .92rem; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 0; }
.footer-contact .contact-row { display: flex; align-items: baseline; gap: 10px; font-size: .92rem; }
.footer-contact .contact-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold-soft); width: 42px; flex-shrink: 0; }
.footer-contact a { display: inline; margin-bottom: 0; color: rgba(255,255,255,.8); }
.footer-contact a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: 10px; margin-top: 2px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); color: var(--gold-soft); margin-bottom: 0; transition: background .2s ease, transform .2s ease, border-color .2s ease; }
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); border-color: var(--gold); }
.footer-social svg { width: 17px; height: 17px; }
.copyright { text-align: center; font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.copyright a { color: rgba(255,255,255,.6); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.25); transition: color .15s ease, border-color .15s ease; }
.copyright a:hover { color: var(--gold-soft); border-color: var(--gold-soft); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-logo-img { height: 90px; }
  .footer-contact .contact-row { flex-wrap: wrap; }
}
.footer-grid, .footer-grid > * { min-width: 0; }
.footer-address, .footer-contact a { overflow-wrap: anywhere; }

/* ---- Floating action buttons ---- */
.floating-actions { position: fixed; right: 20px; bottom: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 60; }
.fab { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px -6px rgba(15,23,42,.4); transition: transform .15s ease; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 24px; height: 24px; }
.fab-whatsapp { background: #25D366; color: var(--white); }
.fab-call { background: var(--gold); color: var(--navy); }
.fab-top { background: var(--navy); color: var(--white); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .15s ease; }
.fab-top.is-visible { opacity: 1; pointer-events: auto; }
@media (max-width: 600px) { .floating-actions { right: 14px; bottom: 14px; } .fab { width: 46px; height: 46px; } }

/* ---- Utility ---- */
.text-center { text-align: center; }
.stack { display: flex; flex-direction: column; gap: 16px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: white; padding: 10px 16px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }
.breadcrumbs { font-size: .85rem; color: var(--ink-soft); margin-bottom: 20px; }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--gold-deep); }
.breadcrumbs span[aria-current] { color: var(--navy); font-weight: 600; }
.amenity-list { list-style: none; margin: 0 0 1em; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.amenity-list li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--ink-soft); }
.amenity-list li::before { content: '✓'; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%; background: var(--beige); color: var(--gold-deep); font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
@media (max-width: 480px) { .amenity-list { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
