/* ============================================================
   NAFPAKTOS SOUL — Monochrome + Pool Teal
   Soft rounded design · black, white, and one accent
   ============================================================ */

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

:root {
  /* Surface palette — white & soft greys */
  --bone-50:   #FFFFFF;
  --bone-100:  #F7F7F7;
  --bone-200:  #EAEAEA;
  --bone-300:  #D0D0D0;
  --bone-400:  #909090;

  /* Ink — pure greyscale */
  --ink-900:   #0A0A0A;
  --ink-800:   #1A1A1A;
  --ink-700:   #2D2D2D;
  --ink-600:   #4A4A4A;
  --ink-500:   #707070;
  --ink-400:   #9C9C9C;
  --ink-300:   #C4C4C4;

  /* Accent: pool teal — the only color */
  --brass-100: #DDF1F2;
  --brass-300: #5FB7BC;
  --brass-500: #117C82;
  --brass-600: #0E6A6F;
  --brass-700: #0A5F63;

  /* Deep teal for footers / sidebar */
  --sea-100:   #DDF1F2;
  --sea-300:   #4A8E92;
  --sea-500:   #0E6A6F;
  --sea-700:   #073C40;

  /* Soft teal tint for alternating sections */
  --tint-50:   #F0F8F9;
  --tint-100:  #E2F2F3;

  /* Olive→teal alias used by toast/success */
  --olive-300: #B5C9CB;
  --olive-500: #1FA0A6;

  --white:     #FFFFFF;
  --black:     #000000;

  /* Typography */
  --font-display: "Cormorant Garamond", "Tiempos Headline", Georgia, serif;
  --font-sans:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 18px;
  --s-5: 26px;
  --s-6: 36px;
  --s-7: 52px;
  --s-8: 72px;
  --s-9: 100px;
  --s-10: 140px;

  /* Radius — softer, friendlier */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 999px;

  --transition: 280ms cubic-bezier(0.32, 0.72, 0, 1);
  --transition-slow: 700ms cubic-bezier(0.22, 1, 0.36, 1);

  --container: 1320px;
  --container-narrow: 880px;

  --navbar-h: 78px;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--bone-50);
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; }

::selection { background: var(--brass-500); color: var(--white); }

/* ===== Typography ===== */
.display, h1.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink-900);
}
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); line-height: 1.05; }
h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.18; }
h4 { font-size: 1.2rem; line-height: 1.3; }

em { font-style: italic; color: var(--brass-500); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-500);
  display: inline-block;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  color: var(--ink-600);
  font-weight: 400;
}

p { color: var(--ink-700); }

/* ===== Layout primitives ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-5); }
.section { padding: var(--s-9) 0; }
.section-tight { padding: var(--s-7) 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 30px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  border: 1.5px solid transparent;
  position: relative;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--ink-900);
  color: var(--white);
  border-color: var(--ink-900);
}
.btn-primary:hover {
  background: var(--brass-500);
  border-color: var(--brass-500);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--brass-500);
  color: var(--white);
  border-color: var(--brass-500);
}
.btn-accent:hover {
  background: var(--brass-600);
  border-color: var(--brass-600);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--ink-900);
  color: var(--ink-900);
}
.btn-ghost:hover {
  background: var(--ink-900);
  color: var(--white);
}
.btn-quiet {
  background: var(--bone-100);
  color: var(--ink-800);
  border-color: var(--bone-200);
}
.btn-quiet:hover {
  background: var(--bone-200);
}
.btn-sm { padding: 10px 22px; font-size: 0.74rem; letter-spacing: 0.12em; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--bone-200);
  transition: box-shadow var(--transition);
  height: var(--navbar-h);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.08);
}
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--s-5);
}

/* Brand: arch motif (kept, just re-coloured) */
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--brass-500);
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: block;
}
.brand-mark-ring,
.brand-mark-horizon { stroke: var(--ink-900); fill: none; }
.brand-mark-sun { stroke: var(--brass-500); fill: none; }
.brand-mark-spark { fill: var(--brass-500); }
.brand-name {
  line-height: 1;
  font-weight: 700;
}
.brand-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  list-style: none;
}
.nav-links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-600);
  padding: 10px 0;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--ink-900); }
.nav-links a.active { color: var(--ink-900); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 16px;
  height: 1.5px;
  background: var(--brass-500);
  transform: translateX(-50%);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--bone-300);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-600);
  transition: all var(--transition);
  font-family: var(--font-sans);
}
.lang-toggle:hover { border-color: var(--ink-900); color: var(--ink-900); }
.lang-toggle .lang-active { color: var(--brass-500); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink-900);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--navbar-h) 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: var(--s-6) var(--s-5) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  overflow: hidden;
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transform: translateX(16px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  pointer-events: none;
}
.mobile-menu.open { overflow: hidden; }
body.menu-open { overflow: hidden; }
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-500);
  font-weight: 700;
  margin-bottom: var(--s-4);
}
.mobile-menu-top { display: flex; flex-direction: column; }
.mobile-menu-nav { display: flex; flex-direction: column; }
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--ink-900);
  border-bottom: 1px solid var(--bone-200);
  padding: var(--s-4) 0;
  transition: color var(--transition);
  position: relative;
}
.mobile-menu-nav a:last-child { border-bottom: none; }
.mobile-menu-nav .mm-num {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--brass-500);
  font-weight: 700;
  min-width: 28px;
}
.mobile-menu-nav .mm-label { flex: 1; line-height: 1; }
.mobile-menu-nav .mm-arrow {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--bone-300);
  transition: color var(--transition), transform var(--transition);
  font-weight: 400;
}
.mobile-menu-nav a:hover { color: var(--brass-500); }
.mobile-menu-nav a:hover .mm-arrow,
.mobile-menu-nav a.active .mm-arrow {
  color: var(--brass-500);
  transform: translateX(4px);
}
.mobile-menu-nav a.active {
  color: var(--brass-500);
}
.mobile-menu-nav a.active .mm-num { color: var(--brass-700); }

.mobile-menu a.mobile-menu-book {
  display: block;
  background: var(--brass-500);
  color: var(--white);
  text-align: center;
  border: none;
  border-radius: var(--r-full);
  padding: var(--s-4) var(--s-5);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  box-shadow: 0 14px 30px -12px rgba(17, 124, 130, 0.55);
  transition: background var(--transition), transform var(--transition);
}
.mobile-menu a.mobile-menu-book:hover {
  background: var(--brass-600);
  transform: translateY(-1px);
}

.mobile-menu-foot {
  margin-top: auto;
  padding-top: var(--s-5);
  border-top: 1px solid var(--bone-200);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.mobile-menu-foot .mobile-menu-eyebrow { margin-bottom: var(--s-2); }
.mm-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-700);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  border: none;
  padding: 0;
  transition: color var(--transition);
}
.mm-contact svg { color: var(--brass-500); flex-shrink: 0; }
.mm-contact:hover { color: var(--brass-500); }
.mm-social {
  display: flex;
  gap: var(--s-2);
  margin-top: var(--s-3);
}
.mm-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bone-200);
  color: var(--ink-700);
  background: var(--white);
  padding: 0;
  transition: all var(--transition);
}
.mm-social a:hover {
  background: var(--brass-500);
  border-color: var(--brass-500);
  color: var(--white);
}

/* When menu is open, blend navbar seamlessly into menu */
body.menu-open .navbar {
  background: var(--white);
  border-bottom-color: transparent;
  box-shadow: none;
}

/* ===== Hero — full-bleed photo with overlay ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(7, 60, 64, 0.78) 0%,
      rgba(7, 60, 64, 0.45) 35%,
      rgba(7, 60, 64, 0.1) 70%,
      transparent 100%
    ),
    linear-gradient(180deg,
      transparent 0%,
      transparent 60%,
      rgba(7, 60, 64, 0.4) 90%,
      rgba(7, 60, 64, 0.7) 100%
    );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(180px, 28vh, 340px) var(--s-5) clamp(120px, 18vh, 220px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-content > .hero-actions {
  margin-top: auto;
}
.hero-content .eyebrow {
  color: var(--brass-300);
  margin-bottom: var(--s-3);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s-5);
  max-width: 760px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero h1 em {
  font-style: italic;
  color: var(--brass-300);
  font-weight: 500;
}
.hero-content p.lead {
  color: rgba(255, 255, 255, 0.95);
  max-width: 560px;
  font-size: clamp(1rem, 1.5vw, 1.32rem);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--s-5);
}
.hero-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin: 0;
}
.hero-meta {
  display: flex;
  gap: clamp(var(--s-4), 3.5vw, var(--s-7));
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  flex-wrap: nowrap;
  max-width: 100%;
}
.hero-meta-item {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}
.hero-meta-item .label {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--brass-300);
  font-weight: 500;
}
.hero-meta-item .value {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--white);
  margin-top: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .hero {
    min-height: 78svh;
    align-items: stretch;
  }
  .hero-bg-overlay {
    background:
      linear-gradient(180deg,
        rgba(7, 60, 64, 0.45) 0%,
        rgba(7, 60, 64, 0.15) 25%,
        rgba(7, 60, 64, 0.5) 55%,
        rgba(7, 60, 64, 0.94) 90%
      );
  }
  .hero-content {
    padding: clamp(185px, 24vh, 260px) var(--s-4) var(--s-6);
  }
  .hero-content > .hero-actions {
    margin-top: var(--s-6);
  }
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }
  .hero-actions { gap: var(--s-2); }
  .hero-actions .btn { flex: 1 1 0; min-width: 0; padding: 13px 16px; font-size: 0.7rem; }
  .hero-meta {
    flex-wrap: wrap;
    gap: var(--s-4);
    padding-top: var(--s-3);
    margin-top: var(--s-4);
  }
  .hero-meta-item .label { font-size: 0.85rem; }
  .hero-meta-item .value { font-size: 1rem; }
}

/* Light variant of ghost button used over photos */
.btn-light-ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-light-ghost:hover {
  background: var(--white);
  color: var(--ink-900);
  border-color: var(--white);
}

/* Eyebrow light variant for use on photo backgrounds */
.eyebrow-light {
  color: var(--brass-300) !important;
}

/* ===== Booking widget — floats over hero bottom ===== */
.booking-widget-shell {
  position: relative;
  z-index: 6;
  max-width: var(--container);
  margin: -56px auto 0;
  padding: 0 var(--s-5) var(--s-9);
}
@media (max-width: 768px) {
  .booking-widget-shell {
    margin-top: -36px;
    padding: 0 var(--s-4) var(--s-7);
  }
}
.booking-widget {
  background: var(--white);
  border: 1.5px solid var(--brass-300);
  border-radius: var(--r-xl);
  padding: var(--s-3);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1px;
  box-shadow: 0 30px 80px -20px rgba(7, 60, 64, 0.55), 0 8px 24px -8px rgba(17, 124, 130, 0.25);
  position: relative;
}
.booking-widget-field {
  padding: var(--s-3) var(--s-4);
  border-right: 1px solid var(--bone-200);
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: var(--r-lg);
}
.booking-widget-field:hover { background: var(--brass-100); }
.booking-widget-field[data-field="checkIn"]:hover,
.booking-widget-field[data-field="checkOut"]:hover { background: transparent; }
.booking-widget-field.active { background: var(--brass-100); }
.booking-widget-field:last-of-type { border-right: none; }
.booking-widget-field .label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-500);
  margin-bottom: 6px;
  display: block;
  font-weight: 700;
}
.booking-widget-field .value {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-900);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.booking-widget-field .value.placeholder { color: var(--ink-400); font-weight: 400; font-style: italic; }
.booking-widget .btn {
  padding: 0 var(--s-5);
  border-radius: var(--r-full);
  margin-left: var(--s-2);
}

/* Custom select dropdown */
.custom-select {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding: 13px 18px;
  border: 1px solid var(--bone-300);
  border-radius: var(--r-md);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-900);
  transition: all var(--transition);
  min-height: 50px;
}
.custom-select-trigger:hover { border-color: var(--ink-500); }
.custom-select.open .custom-select-trigger {
  border-color: var(--brass-500);
  box-shadow: 0 0 0 3px var(--brass-100);
}
.custom-select-trigger::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--ink-700);
  border-bottom: 1.5px solid var(--ink-700);
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.custom-select.open .custom-select-trigger::after {
  transform: rotate(-135deg) translateY(-2px);
}
.custom-select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-md);
  box-shadow: 0 18px 40px -10px rgba(10, 10, 10, 0.18);
  z-index: 50;
  max-height: 280px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms, transform 180ms;
  padding: 6px;
}
.custom-select.open .custom-select-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.custom-select-option {
  padding: 11px 14px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--ink-800);
  cursor: pointer;
  transition: background 120ms;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
}
.custom-select-option:hover { background: var(--bone-100); }
.custom-select-option.selected {
  background: var(--brass-100);
  color: var(--brass-700);
  font-weight: 600;
}
.custom-select-option.selected::after {
  content: '';
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--brass-500);
  border-bottom: 2px solid var(--brass-500);
  transform: rotate(45deg);
  margin-bottom: 3px;
}

/* Inside the booking widget, borderless variant */
.booking-widget-field .custom-select-trigger {
  border: none;
  padding: 0;
  background: transparent;
  min-height: auto;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.booking-widget-field .custom-select-trigger::after { margin-left: auto; }
.booking-widget-field .custom-select.open .custom-select-trigger {
  box-shadow: none;
}

/* Date picker popup */
.date-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 60, 64, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 59;
  display: none;
}
@media (max-width: 760px) {
  .date-popup-backdrop.show { display: block; }
}
.date-popup {
  position: fixed;
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  box-shadow: 0 28px 70px -14px rgba(10, 10, 10, 0.28);
  padding: var(--s-5);
  padding-top: 36px;
  z-index: 60;
  display: none;
  width: 380px;
}
.date-popup--top { box-shadow: 0 -28px 70px -14px rgba(10, 10, 10, 0.28); }
.date-popup.show { display: block; }
.date-popup-single { width: 100%; }
.date-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bone-100);
  color: var(--ink-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border: none;
  padding: 0;
}
.date-popup-close:hover { background: var(--bone-200); color: var(--ink-900); }
.date-popup-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--bone-200);
  font-size: 0.85rem;
}
.date-popup-foot .legend { display: flex; gap: var(--s-4); color: var(--ink-500); }
.date-popup-foot .legend span { display: inline-flex; align-items: center; gap: 6px; }
.date-popup-foot .legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: var(--r-sm);
}
.date-popup-foot .legend .swatch-booked {
  background: repeating-linear-gradient(45deg, var(--bone-200), var(--bone-200) 2px, var(--bone-100) 2px, var(--bone-100) 4px);
}
.date-popup-foot .legend .swatch-selected { background: var(--brass-500); }
.date-popup-clear {
  background: transparent;
  color: var(--ink-500);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.date-popup-clear:hover { color: var(--brass-500); }
@media (max-width: 760px) {
  .date-popup {
    top: 50% !important;
    left: 50% !important;
    bottom: auto !important;
    transform: translate(-50%, -50%);
    width: min(92vw, 360px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }
}

/* ===== Cards & sections ===== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--s-5);
  margin-bottom: var(--s-7);
  flex-wrap: wrap;
}
.section-head h2 { max-width: 720px; }
.section-head .lead { max-width: 460px; }

/* ===== Room cards ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s-6);
}
.room-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--bone-200);
  display: flex;
  flex-direction: column;
  position: relative;
}
.room-card:hover {
  transform: translateY(-4px);
  border-color: var(--brass-500);
  box-shadow: 0 30px 60px -22px rgba(17, 124, 130, 0.35);
}
.room-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bone-200);
}
.room-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-card-price-overlay {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  background: var(--ink-900);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 1rem;
  z-index: 4;
  pointer-events: none;
  font-weight: 500;
}
.room-card-price-overlay strong {
  color: var(--brass-300);
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.room-card-body {
  padding: var(--s-5) var(--s-5) var(--s-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.room-card-type {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-500);
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.room-card-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--ink-900);
  line-height: 1.05;
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.room-card-desc {
  color: var(--ink-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--s-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.amenities-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--s-4);
}
.amenity-chip {
  font-size: 0.76rem;
  padding: 6px 13px 6px 11px;
  border-radius: var(--r-full);
  background: var(--bone-100);
  color: var(--ink-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--bone-200);
  line-height: 1.2;
  font-weight: 500;
}
.amenity-chip svg { color: var(--brass-500); flex-shrink: 0; }
.amenity-chip-more {
  background: transparent;
  border-color: var(--bone-300);
  color: var(--ink-600);
  font-weight: 700;
  padding-left: 13px;
}

/* ===== Image Carousel ===== */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: all;
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
  color: var(--ink-900);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.carousel:hover .carousel-nav,
.carousel:focus-within .carousel-nav { opacity: 1; }
.carousel-nav:hover { background: var(--white); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
  background: rgba(10, 10, 10, 0.55);
  padding: 6px 12px;
  border-radius: var(--r-full);
  backdrop-filter: blur(6px);
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}
.carousel-dot.active {
  background: var(--brass-300);
  width: 18px;
  border-radius: var(--r-full);
}
.carousel-counter {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: rgba(10, 10, 10, 0.6);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-weight: 600;
  backdrop-filter: blur(6px);
  font-family: var(--font-sans);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .carousel-nav { opacity: 1; width: 34px; height: 34px; }
}
.room-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--bone-200);
}
.room-card-meta {
  font-size: 0.82rem;
  color: var(--ink-500);
}
.room-card-meta strong { color: var(--ink-800); font-weight: 600; }
.btn-link {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-900);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.btn-link::after { content: '→'; transition: transform var(--transition); }
.btn-link:hover { color: var(--brass-500); }
.btn-link:hover::after { transform: translateX(4px); }

/* ===== Editorial split ===== */
.editorial-split {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.editorial-split-image {
  position: relative;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  background: var(--bone-200);
  box-shadow: 0 30px 60px -25px rgba(17, 124, 130, 0.28);
}
.editorial-split-image::before {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  background: var(--brass-500);
  border-radius: var(--r-lg);
  z-index: 0;
  opacity: 0.92;
}
.editorial-split-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
}

/* ===== Mosaic ===== */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: var(--s-3);
}
.mosaic-cell {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bone-200);
  cursor: zoom-in;
  position: relative;
}
.mosaic-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 124, 130, 0);
  transition: background var(--transition);
}
.mosaic-cell:hover::after { background: rgba(17, 124, 130, 0.32); }
.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.mosaic-cell:hover img { transform: scale(1.05); }
.mosaic-cell:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.mosaic-cell:nth-child(2) { grid-column: 3; grid-row: 1; }
.mosaic-cell:nth-child(3) { grid-column: 4; grid-row: 1; }
.mosaic-cell:nth-child(4) { grid-column: 3; grid-row: 2; }
.mosaic-cell:nth-child(5) { grid-column: 4; grid-row: 2; }

/* ===== Destinations ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-5);
}
.dest-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  background: var(--bone-200);
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.dest-card:hover img { transform: scale(1.05); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-5);
  background: linear-gradient(180deg, transparent 25%, rgba(7, 60, 64, 0.55) 60%, rgba(7, 60, 64, 0.95));
  color: var(--white);
}
.dest-card-overlay h1,
.dest-card-overlay h2,
.dest-card-overlay h3,
.dest-card-overlay h4,
.dest-card-overlay h5,
.dest-card-overlay h6,
.dest-card-overlay p,
.dest-card-overlay span,
.dest-card-overlay a,
.dest-card-overlay div { color: var(--white); }
.dest-card-type {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-300) !important;
  font-weight: 700;
  margin-bottom: var(--s-2);
}
.dest-card-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: var(--s-2);
  color: var(--white) !important;
  font-weight: 500;
  line-height: 1.05;
}
.dest-card-distance {
  font-size: 0.82rem;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dest-card-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  margin-top: var(--s-2);
  opacity: 0.92;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.dest-card:hover .dest-card-desc { max-height: 200px; }

/* ===== Footer ===== */
.footer {
  background: var(--sea-700);
  color: var(--bone-100);
  padding: var(--s-9) 0 var(--s-6);
  margin-top: var(--s-10);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-500), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-7);
  margin-bottom: var(--s-7);
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer .brand { color: var(--white); }
.footer .brand-mark-ring,
.footer .brand-mark-horizon { stroke: var(--white); }
.footer .brand-mark-sun { stroke: var(--brass-300); }
.footer .brand-mark-spark { fill: var(--brass-300); }
.footer .brand-tag { color: var(--ink-300); }
.footer-about p {
  color: var(--ink-300);
  margin-top: var(--s-4);
  max-width: 320px;
  line-height: 1.65;
  font-size: 0.92rem;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-2); }
.footer ul a { color: var(--ink-300); font-size: 0.88rem; transition: color var(--transition); }
.footer ul a:hover { color: var(--brass-300); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-300);
  flex-wrap: wrap;
  gap: var(--s-3);
}
.social-row {
  display: flex;
  gap: var(--s-3);
}
.social-row a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all var(--transition);
}
.social-row a:hover {
  border-color: var(--brass-500);
  background: var(--brass-500);
  color: var(--white);
}
.footer-privacy-link {
  font-size: 0.8rem;
  color: var(--ink-300);
  transition: color var(--transition);
}
.footer-privacy-link:hover { color: var(--brass-300); }
.footer-powered {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-400);
  letter-spacing: 0.04em;
}
.footer-powered a {
  color: var(--bone-200);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-powered a:hover { color: var(--brass-300); }

/* ===== Booking flow ===== */
.booking-shell {
  padding-top: calc(var(--navbar-h) + var(--s-7));
  min-height: 100vh;
}

.booking-combined {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
.booking-combined-col { min-width: 0; }
@media (max-width: 900px) {
  .booking-combined { grid-template-columns: 1fr; gap: var(--s-6); }
}

.booking-details-only {
  max-width: 720px;
  min-width: 0;
}

.booking-step2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 380px);
  gap: var(--s-6);
  align-items: start;
}
.booking-step2-layout > .booking-details-only { max-width: none; }

.booking-summary-aside { position: sticky; top: calc(var(--navbar-h) + var(--s-5)); }
.booking-summary-card {
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px -24px rgba(17, 124, 130, 0.22);
}
.booking-summary-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bone-100);
}
.booking-summary-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.booking-summary-body { padding: var(--s-5); }
.booking-summary-body .eyebrow {
  color: var(--brass-500);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
}
.booking-summary-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 6px 0 var(--s-4);
  color: var(--ink-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.booking-summary-list {
  margin: 0;
  padding: var(--s-3) 0;
  border-top: 1px solid var(--bone-200);
  border-bottom: 1px solid var(--bone-200);
  display: grid;
  gap: var(--s-3);
}
.booking-summary-list > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-3);
}
.booking-summary-list dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin: 0;
}
.booking-summary-list dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-900);
  font-weight: 500;
  text-align: right;
}
.booking-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: var(--s-4);
  gap: var(--s-3);
}
.booking-summary-total-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.booking-summary-nights {
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}
.booking-summary-total-amount {
  display: inline-block;
  background: var(--brass-500);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.booking-actions {
  margin-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .booking-step2-layout {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
  .booking-summary-aside { position: static; order: -1; }
  .booking-summary-thumb { aspect-ratio: 21 / 9; }
}

.booking-section {
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-5) var(--s-6);
  box-shadow: 0 12px 32px -22px rgba(17, 124, 130, 0.18);
}
.booking-section + .booking-section { margin-top: var(--s-5); }

.booking-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 var(--s-4);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.booking-section-title::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass-500);
  flex-shrink: 0;
}

.booking-section-lead {
  margin: calc(-1 * var(--s-2)) 0 var(--s-5);
  color: var(--ink-600);
  font-size: 0.92rem;
}

.booking-form { display: grid; gap: var(--s-4); }

.booking-section .field-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-section .field-label::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass-500);
  flex-shrink: 0;
}

.booking-terms {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  margin-top: var(--s-5);
  font-size: 0.92rem;
  color: var(--ink-700);
  cursor: pointer;
}
.booking-terms input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--brass-500);
  flex-shrink: 0;
}
.booking-terms a {
  color: var(--brass-500);
  text-decoration: underline;
}

@media (max-width: 540px) {
  .booking-section { padding: var(--s-4); }
}

.booking-search-card {
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  margin-bottom: var(--s-7);
  box-shadow: 0 14px 40px -22px rgba(17, 124, 130, 0.25);
}
.booking-search-head { margin-bottom: var(--s-5); }
.booking-search-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: var(--s-7);
  align-items: start;
}
.booking-search-cal { max-width: 520px; }
.booking-search-fields {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
@media (max-width: 900px) {
  .booking-search-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .booking-search-cal { max-width: 100%; }
  .booking-search-fields { flex-direction: row; gap: var(--s-4); }
  .booking-search-fields .field { flex: 1; }
}
@media (max-width: 540px) {
  .booking-search-card { padding: var(--s-4); }
  .booking-search-fields { flex-direction: column; }
}
.rooms-result-section {
  animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.field-input,
.field-select,
.field-textarea {
  border: 1px solid var(--bone-300);
  background: var(--white);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--ink-900);
  transition: all var(--transition);
  font-family: var(--font-sans);
}
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--brass-500);
  box-shadow: 0 0 0 3px var(--brass-100);
}
.field-textarea { min-height: 100px; resize: vertical; border-radius: var(--r-md); }

.field .custom-select-trigger {
  width: 100%;
  padding: 13px 16px;
  border-color: var(--bone-300);
}

.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s-4); }

/* ===== Room select cards (booking step 1) ===== */
.room-select-list {
  display: grid;
  gap: var(--s-4);
}
.room-select-card {
  display: grid;
  grid-template-columns: 580px 1fr;
  gap: var(--s-6);
  cursor: pointer;
  padding: var(--s-4);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: all var(--transition);
}
.room-select-card:hover {
  border-color: var(--ink-500);
  background: var(--bone-100);
}
.room-select-card.selected {
  border-color: var(--brass-500);
  border-width: 2px;
  padding: calc(var(--s-4) - 1px);
  box-shadow: 0 8px 30px -14px rgba(17, 124, 130, 0.5);
}
.room-select-media {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bone-200);
  aspect-ratio: 4 / 3;
  align-self: start;
}
.room-select-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.room-select-card:hover .room-select-media img {
  transform: scale(1.04);
}
.room-select-media .carousel-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.room-select-body {
  display: flex;
  flex-direction: column;
  padding: var(--s-2) var(--s-3) var(--s-2) 0;
  min-width: 0;
}
.room-select-type {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-500);
  font-weight: 700;
}
.room-select-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink-900);
  margin: 6px 0 var(--s-2);
  font-weight: 500;
  line-height: 1.05;
}
.room-select-desc {
  font-size: 0.92rem;
  color: var(--ink-600);
  line-height: 1.6;
  margin-bottom: var(--s-3);
}
.room-select-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--ink-600);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.room-select-location svg { color: var(--brass-500); flex-shrink: 0; }
.room-select-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--s-4);
  padding: 12px 22px;
  background: var(--brass-500);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background var(--transition), transform var(--transition);
}
.room-select-card:hover .room-select-cta {
  background: var(--brass-600);
}
.room-select-book {
  margin-top: var(--s-4);
  align-self: flex-start;
  padding: 12px 28px;
  border-radius: var(--r-full);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}
.room-select-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.room-select-stats {
  font-size: 0.86rem;
  color: var(--ink-500);
}
.room-select-stats strong { color: var(--ink-800); font-weight: 600; }
/* ===== Price pill (unified) ===== */
.price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--brass-500);
  color: var(--white);
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.price-pill--lg {
  font-size: 1.1rem;
  padding: 9px 18px;
}
.price-pill--sm {
  font-size: 0.8rem;
  padding: 3px 9px;
  margin-left: 4px;
  vertical-align: 1px;
}
.price-pill .amount {
  font: inherit;
  color: inherit;
  font-weight: 700;
}
.price-pill .suffix {
  font-family: var(--font-sans);
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.room-select-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--brass-500);
  color: var(--white);
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.room-select-price .suffix {
  font-family: var(--font-sans);
  font-size: 0.78em;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.85);
  margin-left: 0;
  font-weight: 500;
}

/* Tablet: balance photo and body widths */
@media (max-width: 1080px) {
  .room-select-card {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5);
  }
}

/* Mobile: card container, but extend list beyond viewport padding for more width */
@media (max-width: 720px) {
  .room-select-list {
    gap: var(--s-5);
    margin-left: calc(-1 * var(--s-4));
    margin-right: calc(-1 * var(--s-4));
  }
  .room-select-card {
    grid-template-columns: 1fr;
    gap: var(--s-3);
    padding: var(--s-3);
  }
  .room-select-card.selected {
    padding: calc(var(--s-3) - 1px);
  }
  .room-select-body {
    padding: 0 var(--s-2) var(--s-2);
  }
  .room-select-media {
    aspect-ratio: 4 / 3;
  }
  .room-select-name { font-size: 1.5rem; }
  .room-select-desc { font-size: 0.9rem; }
  .room-select-cta {
    align-self: stretch;
    padding: 14px 22px;
    font-size: 0.78rem;
  }
}

/* ===== Room preview — booking.com-style gallery + sticky aside ===== */
.room-preview {
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  box-shadow: 0 40px 80px -30px rgba(17, 124, 130, 0.28);
}

.room-preview-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: clamp(380px, 50vh, 540px);
  background: var(--bone-200);
  border-top-left-radius: var(--r-lg);
  border-top-right-radius: var(--r-lg);
  overflow: hidden;
}
.room-preview-gallery .gallery-main {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bone-200);
}
.room-preview-gallery .gallery-thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bone-200);
}
.room-preview-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.room-preview-gallery .gallery-main:hover img,
.room-preview-gallery .gallery-thumb:hover img { transform: scale(1.04); }

.gallery-show-all {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  color: var(--ink-900);
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  z-index: 5;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.25);
}
.gallery-show-all:hover {
  background: var(--brass-500);
  color: var(--white);
}

@media (max-width: 760px) {
  .room-preview-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    height: 320px;
  }
  .room-preview-gallery .gallery-main {
    grid-row: 1;
    grid-column: 1;
  }
  .room-preview-gallery .gallery-thumb { display: none; }
}

.room-preview-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  padding: var(--s-6);
}
.room-preview-continue {
  margin-top: var(--s-5);
  align-self: flex-start;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}
.room-preview-info .eyebrow {
  margin-bottom: var(--s-2);
  display: inline-block;
}
.room-preview-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  color: var(--ink-900);
  margin: var(--s-2) 0 var(--s-3);
  font-weight: 500;
  line-height: 1.05;
}
.room-preview-info-stats {
  display: flex;
  gap: var(--s-3);
  font-size: 0.95rem;
  color: var(--ink-600);
  margin-bottom: var(--s-6);
  flex-wrap: wrap;
}
.room-preview-info-stats strong { color: var(--ink-900); font-weight: 700; }
.room-preview-info-stats .dot { color: var(--ink-400); }

.room-preview-section {
  margin-bottom: var(--s-6);
}
.room-preview-section h4 {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-500);
  font-weight: 700;
  margin-bottom: var(--s-4);
}
.room-preview-section p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-700);
}

.amenities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--s-3) var(--s-5);
  list-style: none;
  padding: 0;
}
.amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-800);
}
.amenities-list li .check {
  color: var(--brass-500);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brass-100);
  border-radius: 50%;
}
.amenities-list li .check svg { width: 11px; height: 11px; }

.room-preview-aside {
  position: sticky;
  top: calc(var(--navbar-h) + var(--s-4));
  align-self: start;
  background: linear-gradient(135deg, var(--tint-50) 0%, var(--tint-100) 100%);
  border: 1px solid var(--sea-100);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: 0 12px 30px -16px rgba(17, 124, 130, 0.25);
}
.aside-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ink-900);
  font-weight: 500;
  line-height: 1;
}
.aside-price em {
  font-style: normal;
  color: var(--ink-600);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.aside-divider {
  height: 1px;
  background: var(--bone-200);
  margin: var(--s-4) 0;
}
.aside-quick-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  font-size: 0.92rem;
  color: var(--ink-700);
  margin-bottom: var(--s-4);
}
.aside-quick-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aside-quick-info-row strong {
  color: var(--ink-900);
  font-weight: 700;
}
.room-preview-actions-pair {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.room-preview-actions-pair .btn {
  width: 100%;
  padding: 14px 22px;
}

@media (max-width: 900px) {
  .room-preview-body {
    grid-template-columns: 1fr;
    gap: var(--s-5);
    padding: var(--s-5);
  }
  .room-preview-aside {
    position: static;
    order: -1;
  }
  .amenities-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .amenities-list {
    grid-template-columns: 1fr;
  }
}

/* ===== Room preview (booking flow, v2) ===== */
.room-preview-v2 {
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(17, 124, 130, 0.28);
}
.room-preview-v2-body {
  padding: var(--s-6);
}
.room-preview-v2-body > .eyebrow {
  display: inline-block;
  margin-bottom: var(--s-2);
}
.room-preview-v2-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--ink-900);
  margin: 0 0 var(--s-3);
  font-weight: 500;
  line-height: 1.1;
}
.room-preview-v2-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: var(--ink-600);
  margin: 0 0 var(--s-3);
}
.room-preview-v2-location svg { color: var(--brass-500); flex-shrink: 0; }

.room-preview-v2-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: var(--s-4);
  padding-bottom: var(--s-5);
  margin-bottom: var(--s-5);
  border-bottom: 1px solid var(--bone-200);
}
.room-preview-v2-stats {
  display: flex;
  gap: var(--s-2);
  font-size: 0.95rem;
  color: var(--ink-600);
  flex-wrap: wrap;
}
.room-preview-v2-stats strong { color: var(--ink-900); font-weight: 700; }
.room-preview-v2-stats .dot { color: var(--ink-400); }
.room-preview-v2-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  text-align: right;
}
.room-preview-v2-price .price-pill .amount {
  font-size: 1.05rem;
}
.room-preview-v2-price .total-inline {
  margin-left: auto;
}

/* ===== Variant (floor) picker shown above the info grid for multi-floor rooms ===== */
.variant-picker {
  border: 1px solid var(--bone-300, #e7e3dc);
  border-radius: var(--r-md, 6px);
  padding: var(--s-4);
  margin-bottom: var(--s-5);
  background: var(--bone-50, #fbfaf6);
}
.variant-picker-head { margin-bottom: var(--s-3); }
.variant-picker-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 4px;
}
.variant-picker-hint {
  font-size: 0.82rem;
  color: var(--ink-500);
  margin: 0;
}
.variant-picker-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-3);
}
.variant-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border: 1.5px solid var(--bone-300, #e7e3dc);
  background: #fff;
  border-radius: var(--r-sm, 4px);
  cursor: pointer;
  transition: border-color var(--transition, 180ms ease), background var(--transition, 180ms ease);
}
.variant-option:hover { border-color: var(--brass-500); }
.variant-option.is-selected {
  border-color: var(--brass-500);
  background: #fff8ec;
}
.variant-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.variant-option-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.variant-option-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-900);
}
.variant-option-desc {
  font-size: 0.8rem;
  color: var(--ink-500);
}
.variant-option-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bone-200, #ece8e1);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition, 180ms ease), color var(--transition, 180ms ease);
}
.variant-option.is-selected .variant-option-tick {
  background: var(--brass-500);
  color: #fff;
}

/* Variant label inside the booking step-2 summary */
.booking-summary-variant {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass-500);
  margin: 4px 0 var(--s-2);
  font-weight: 600;
}

.room-preview-v2-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
  align-items: stretch;
}
.room-preview-v2-info-grid > * { margin-bottom: 0; }

.room-preview-v2-amenities,
.room-preview-v2-map {
  background: var(--bone-100);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
}

.room-preview-v2-amenities h4,
.room-preview-v2-map h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-500);
  font-weight: 700;
  margin: 0 0 var(--s-4);
}

.map-embed {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 260px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--bone-200);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.amenities-list--compact {
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-4);
}

/* Grouped amenities — used on room preview / detail */
.amenity-section + .amenity-section {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--bone-200);
}
.amenity-section-title {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-500);
  font-weight: 700;
  margin: 0 0 var(--s-3) 0;
}
@media (max-width: 640px) {
  .amenities-list--compact { grid-template-columns: 1fr; gap: var(--s-2) 0; }
}

/* ===================================================================
   Uniform apartment containers — used on room detail / preview page.
   Every apartment renders the same blocks in the same order.
=================================================================== */
.apt-block {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--bone-200);
}
.apt-block:first-of-type {
  margin-top: var(--s-5);
}
.apt-block-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-900);
  margin: 0 0 var(--s-3) 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.apt-block-title svg { color: var(--brass-500); }

/* Chip row — used for highlights & languages */
.apt-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}
.apt-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--bone-300);
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--ink-700);
  background: var(--bone-100);
  white-space: nowrap;
}
.apt-chip--ghost {
  background: transparent;
  border-style: dashed;
}

/* About this property — card grid */
.apt-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-4);
}
.apt-about-card {
  border: 1px solid var(--bone-200);
  background: var(--bone-100);
  border-radius: var(--r-md, 8px);
  padding: var(--s-4);
}
.apt-about-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 6px 0;
}
.apt-about-card-body {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
}

/* Property info / Neighbourhood info — prose */
.apt-prose {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
}

/* Surroundings (Restaurants / Beaches / Airports) — three columns */
.apt-surr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-5);
}
.apt-surr-group-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-500);
  font-weight: 700;
  margin: 0 0 var(--s-3) 0;
}
.apt-surr-group-title svg { color: var(--brass-500); }
.apt-surr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apt-surr-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-3);
  font-size: 0.9rem;
  color: var(--ink-700);
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--bone-200);
}
.apt-surr-list li:last-child { border-bottom: 0; }
.apt-surr-dist {
  font-weight: 600;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Room details (size, bedrooms, bathrooms, beds rating) */
.apt-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-3);
}
.apt-detail-card {
  border: 1px solid var(--bone-200);
  background: var(--white);
  border-radius: var(--r-md, 8px);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apt-detail-card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}
.apt-detail-card-label svg { color: var(--brass-500); }
.apt-detail-card-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.1;
}
.apt-detail-card-sub {
  font-size: 0.8rem;
  color: var(--ink-500);
}
.apt-detail-card--bedrooms { grid-column: span 2; }
@media (max-width: 640px) {
  .apt-detail-card--bedrooms { grid-column: auto; }
}
.apt-bedrooms-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.apt-bedrooms-list li {
  font-size: 0.9rem;
  color: var(--ink-700);
}
.apt-bedrooms-list li strong {
  color: var(--ink-900);
  font-weight: 600;
}

/* Feature lists (Kitchen / Bathroom / View / Facilities) */
.apt-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 16px;
}
.apt-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-700);
  line-height: 1.4;
}
.apt-feature-list li .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(17, 124, 130, 0.12);
  color: var(--brass-500, #117C82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Smoking note */
.apt-block--note {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 0.9rem;
  color: var(--ink-700);
  border-top: 1px solid var(--bone-200);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
}
.apt-note-label {
  font-weight: 600;
  color: var(--ink-900);
}

/* Map block (reuse map-embed inside container) */
.apt-block--map .map-embed {
  margin-top: 0;
}

.mosaic.mosaic--preview {
  position: relative;
  height: clamp(380px, 50vh, 540px);
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  border-radius: 0;
}
.mosaic.mosaic--preview .mosaic-cell { border-radius: 0; cursor: pointer; }
.mosaic.mosaic--preview .mosaic-cell:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.mosaic.mosaic--preview .mosaic-cell:nth-child(2) { grid-column: 2; grid-row: 1; }
.mosaic.mosaic--preview .mosaic-cell:nth-child(3) { grid-column: 3; grid-row: 1; }
.mosaic.mosaic--preview .mosaic-cell:nth-child(4) { grid-column: 2; grid-row: 2; }
.mosaic.mosaic--preview .mosaic-cell:nth-child(5) { grid-column: 3; grid-row: 2; }

.mosaic-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 760px) {
  .room-preview-v2 {
    margin-left: calc(-1 * var(--s-5));
    margin-right: calc(-1 * var(--s-5));
    border-radius: 0;
    border-left: none;
    border-right: none;
    box-shadow: none;
  }
  .room-preview-v2-body { padding: var(--s-5) var(--s-5) var(--s-6); }
  .room-preview-v2-meta {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding-bottom: var(--s-4);
    margin-bottom: var(--s-5);
  }
  .room-preview-v2-price {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 6px;
    text-align: right;
  }
  .room-preview-v2-price .total-inline { margin-left: 0; }
  .room-preview-v2-info-grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    margin-bottom: var(--s-5);
  }
  .room-preview-v2-amenities,
  .room-preview-v2-map { padding: var(--s-4); }
  .room-preview-v2-map { order: 1; }
  .room-preview-v2-amenities { order: 2; margin-bottom: 0; }
  .map-embed { aspect-ratio: 16 / 10; flex: none; min-height: 0; }
  .room-preview-continue { width: 100%; }

  .mosaic.mosaic--preview {
    height: auto;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 180px 120px;
    gap: 4px;
  }
  .mosaic.mosaic--preview .gallery-show-all { display: none; }
  .mosaic.mosaic--preview .mosaic-cell { grid-row: auto; grid-column: auto; }
  .mosaic.mosaic--preview .mosaic-cell:nth-child(1) { grid-column: 1 / 4; grid-row: 1; }
  .mosaic.mosaic--preview .mosaic-cell:nth-child(2) { grid-column: 4 / 7; grid-row: 1; }
  .mosaic.mosaic--preview .mosaic-cell:nth-child(3) { grid-column: 1 / 3; grid-row: 2; }
  .mosaic.mosaic--preview .mosaic-cell:nth-child(4) { grid-column: 3 / 5; grid-row: 2; }
  .mosaic.mosaic--preview .mosaic-cell:nth-child(5) { grid-column: 5 / 7; grid-row: 2; }
}

/* ===== Lightbox gallery (multi-photo navigation) ===== */
.lightbox-gallery .lightbox-close,
.lightbox-gallery .lightbox-prev,
.lightbox-gallery .lightbox-next {
  position: absolute;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 300;
  backdrop-filter: blur(8px);
}
.lightbox-gallery .lightbox-close:hover,
.lightbox-gallery .lightbox-prev:hover,
.lightbox-gallery .lightbox-next:hover {
  background: var(--brass-500);
  border-color: var(--brass-500);
}
.lightbox-gallery .lightbox-close { top: 24px; right: 24px; }
.lightbox-gallery .lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-gallery .lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-gallery .lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  z-index: 10000;
  backdrop-filter: blur(8px);
}

/* ===== Payment options ===== */
.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.payment-option {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-6) var(--s-5);
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all var(--transition);
}
.payment-option:hover {
  border-color: var(--ink-500);
  background: var(--bone-100);
  transform: translateY(-2px);
}
.payment-option.selected {
  border-color: var(--brass-500);
  border-width: 2px;
  padding: calc(var(--s-6) - 1px) calc(var(--s-5) - 1px);
  background: var(--brass-100);
  box-shadow: 0 12px 30px -14px rgba(17, 124, 130, 0.4);
}
.payment-option-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--bone-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-700);
  margin-bottom: var(--s-2);
}
.payment-option.selected .payment-option-icon {
  background: var(--white);
  color: var(--brass-500);
}
.payment-option-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink-900);
  font-weight: 500;
  line-height: 1.15;
}
.payment-option-meta {
  font-size: 0.66rem;
  color: var(--ink-500);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.payment-option.selected .payment-option-meta { color: var(--brass-700); }
.payment-option-desc {
  font-size: 0.92rem;
  color: var(--ink-600);
  line-height: 1.55;
  margin-top: auto;
}
.payment-option-radio {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--bone-300);
  background: var(--white);
  transition: all var(--transition);
}
.payment-option.selected .payment-option-radio {
  border-color: var(--brass-500);
  background: var(--brass-500);
}
.payment-option.selected .payment-option-radio::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--white);
  border-radius: 50%;
}
@media (max-width: 700px) {
  .payment-grid { grid-template-columns: 1fr; }
}

/* ===== Calendar ===== */
.calendar {
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}
.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-4);
}
.calendar-month {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--ink-900);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.calendar-head button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bone-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  font-size: 1.2rem;
  color: var(--ink-800);
}
.calendar-head button:hover { background: var(--bone-200); }
.calendar-head button:disabled { opacity: 0.4; cursor: not-allowed; }
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-dow {
  font-size: 0.66rem;
  font-weight: 700;
  text-align: center;
  padding: var(--s-2) 0;
  color: var(--ink-500);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 150ms ease;
  color: var(--ink-800);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.calendar-day:hover:not(.disabled):not(.booked):not(.range-start):not(.range-end) {
  background: var(--bone-100);
}
.calendar-day.disabled { color: var(--ink-300); cursor: not-allowed; }
.calendar-day.booked {
  background: repeating-linear-gradient(45deg, var(--bone-200), var(--bone-200) 4px, var(--bone-100) 4px, var(--bone-100) 8px);
  color: var(--ink-300);
  cursor: not-allowed;
  text-decoration: line-through;
}
.calendar-day.in-range {
  background: var(--brass-100);
  border-radius: 0;
}
.calendar-day.today { font-weight: 700; color: var(--brass-500); }
.calendar-day.range-start,
.calendar-day.range-end {
  background: var(--brass-500);
  color: var(--white);
}
.calendar-day.range-start { border-radius: var(--r-sm) 0 0 var(--r-sm); }
.calendar-day.range-end   { border-radius: 0 var(--r-sm) var(--r-sm) 0; }

/* ===== Philosophy grid ===== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-6);
}
.philosophy-item {
  padding: 0;
  position: relative;
}
.philosophy-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--brass-500);
  margin-bottom: var(--s-3);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}
.philosophy-item h4 {
  font-size: 1.25rem;
  margin-bottom: var(--s-2);
  font-weight: 500;
}
.philosophy-item p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-600);
}

/* ===== Page hero (sub-pages) ===== */
.page-hero {
  padding: calc(var(--navbar-h) + var(--s-9)) 0 var(--s-8);
  background: linear-gradient(180deg, var(--bone-50) 0%, var(--tint-50) 80%, var(--tint-100) 100%);
  text-align: center;
  border-bottom: 1px solid var(--sea-100);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 100%, rgba(17, 124, 130, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(17, 124, 130, 0.12) 0%, transparent 45%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(1.3rem, 4vw, 3.4rem);
  margin: var(--s-3) auto var(--s-4);
  max-width: 100%;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 var(--s-3);
}
.page-hero .lead { max-width: 620px; margin: 0 auto; position: relative; }

/* Photo variant — full-bleed background image with dark overlay */
.page-hero--photo {
  background: var(--ink-900);
  border-bottom: none;
  padding: calc(var(--navbar-h) + var(--s-9)) 0 var(--s-9);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero--photo::before { display: none; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 60, 64, 0.55) 0%, rgba(7, 60, 64, 0.4) 50%, rgba(7, 60, 64, 0.7) 100%);
  z-index: 1;
}
.page-hero--photo .container-narrow { position: relative; z-index: 2; }
.page-hero--photo h1 {
  color: var(--white);
  white-space: normal;
}
.page-hero--photo .lead { color: rgba(255, 255, 255, 0.88); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  display: none; align-items: center; justify-content: center;
  cursor: zoom-out;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--r-md); }
/* Gallery override: every photo renders inside a uniform 16:9 frame so the
   stack looks consistent regardless of source orientation. Specificity is
   bumped via `.lightbox.lightbox-gallery` so this beats `.lightbox img`. */
.lightbox.lightbox-gallery img {
  width: min(92vw, 1400px);
  height: auto;
  max-width: none;
  aspect-ratio: 16 / 9;
  max-height: 88vh;
  object-fit: cover;
  background: #111;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: var(--s-5);
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink-900);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  z-index: 2000;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--olive-500); }
.toast.error { background: var(--brass-700); }

/* ===== Cookie ===== */
.cookie-banner {
  position: fixed;
  bottom: var(--s-5);
  right: var(--s-5);
  max-width: 380px;
  display: none;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-5);
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px -20px rgba(10, 10, 10, 0.22), 0 4px 14px -6px rgba(10, 10, 10, 0.08);
  z-index: 500;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1), transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.cookie-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--brass-100);
  color: var(--brass-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-icon svg { width: 24px; height: 24px; }
.cookie-body { flex: 1; min-width: 0; }
.cookie-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.cookie-banner p {
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0 0 var(--s-4);
  color: var(--ink-600);
}
.cookie-actions { display: flex; gap: var(--s-2); }
.cookie-btn {
  flex: 1;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 120ms ease;
}
.cookie-btn:active { transform: translateY(1px); }
.cookie-btn-ghost {
  background: transparent;
  color: var(--ink-700);
  border-color: var(--bone-200);
}
.cookie-btn-ghost:hover {
  background: var(--bone-100);
  border-color: var(--bone-300);
}
.cookie-btn-primary {
  background: var(--ink-900);
  color: var(--white);
}
.cookie-btn-primary:hover { background: var(--brass-500); }

@media (max-width: 520px) {
  .cookie-banner {
    left: var(--s-4);
    right: var(--s-4);
    bottom: var(--s-4);
    max-width: none;
  }
}

/* ===== Animations ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero-visual { height: 60vh; }
  .hero-visual::before { display: none; }
  .editorial-split { grid-template-columns: 1fr; gap: var(--s-6); }
  .editorial-split-image::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mosaic { grid-template-rows: 200px 200px; }
}

@media (max-width: 768px) {
  .nav-links, .lang-toggle.desktop { display: none; }
  .nav-book-btn { display: none !important; }
  .nav-toggle { display: flex; }
  .booking-widget { grid-template-columns: 1fr 1fr; border-radius: var(--r-lg); }
  .booking-widget-field { border-right: none; border-bottom: 1px solid var(--bone-200); }
  .booking-widget-field:nth-child(odd) { border-right: 1px solid var(--bone-200); }
  .booking-widget .btn { grid-column: 1 / -1; padding: 14px; margin: 0; }
  .booking-widget-field { padding: var(--s-3); }
  .booking-widget-field .value { font-size: 0.92rem; }
  .booking-widget-field .label { font-size: 0.58rem; }
  .booking-widget-field .custom-select-trigger { font-size: 0.92rem; }
  .field-grid-2, .field-grid-3 { grid-template-columns: 1fr; }
  .field-grid-2.field-grid-2--keep { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero-meta { flex-wrap: wrap; gap: var(--s-4); }
  .section { padding: var(--s-7) 0; }
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 180px 180px 180px;
  }
  .mosaic-cell:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .mosaic-cell:nth-child(2) { grid-column: 1; grid-row: 2; }
  .mosaic-cell:nth-child(3) { grid-column: 2; grid-row: 2; }
  .mosaic-cell:nth-child(4) { grid-column: 1; grid-row: 3; }
  .mosaic-cell:nth-child(5) { grid-column: 2; grid-row: 3; }
}

/* ===== Deep teal stats section ===== */
.section-deep {
  background: var(--sea-700);
  color: var(--white);
  padding: var(--s-9) 0;
  position: relative;
  overflow: hidden;
}
.section-deep::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(17, 124, 130, 0.45) 0%, transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(217, 185, 117, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.section-deep .container { position: relative; z-index: 1; }
.section-deep h2 { color: var(--white); }
.section-deep p { color: rgba(255, 255, 255, 0.78); }
.section-deep .eyebrow { color: var(--brass-300); }
.section-deep .eyebrow::before { background: var(--brass-300); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-7);
  margin-top: var(--s-7);
}
.stat-item {
  border-left: 2px solid var(--brass-500);
  padding: 6px 0 6px var(--s-4);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  color: var(--brass-300);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.stat-num em { font-style: italic; color: var(--white); font-weight: 400; }
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 700;
  margin-top: var(--s-3);
}
.stat-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--s-2);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .section-deep { padding: var(--s-7) 0; }
  .stats-grid { gap: var(--s-5); margin-top: var(--s-5); }
  .stat-num { font-size: 2.6rem; }
}

/* ===== Photo divider — full-bleed image strip with overlay ===== */
.photo-divider {
  position: relative;
  height: clamp(420px, 60vh, 620px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.photo-divider .bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 12s ease;
}
.photo-divider:hover .bg-photo { transform: scale(1.06); }
.photo-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(7, 60, 64, 0.55) 0%, rgba(17, 124, 130, 0.4) 100%);
  pointer-events: none;
}
.photo-divider-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--s-5);
}
.photo-divider-content h2 {
  color: var(--white);
  font-style: italic;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  margin-top: var(--s-3);
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.photo-divider-content p {
  color: rgba(255, 255, 255, 0.88);
  margin-top: var(--s-4);
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .photo-divider { height: clamp(280px, 50vh, 380px); }
  .photo-divider-content { padding: 0 var(--s-4); }
  .photo-divider-content h2 {
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    margin-top: var(--s-2);
  }
}

/* ===== Showcase grid — featured + small ===== */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-5);
  align-items: stretch;
}
.showcase-feature {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 580px;
  background: var(--bone-200);
  cursor: pointer;
}
.showcase-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.showcase-feature:hover img { transform: scale(1.04); }
.showcase-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 60, 64, 0.92));
}
.showcase-feature-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: var(--s-6);
  color: var(--white);
}
.showcase-feature-body .eyebrow { color: var(--brass-300); }
.showcase-feature-body .eyebrow::before { background: var(--brass-300); }
.showcase-feature-body h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: var(--s-3) 0 var(--s-2);
  line-height: 1.05;
}
.showcase-feature-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  max-width: 460px;
}
.showcase-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--s-5);
}
.showcase-stack .room-card { min-height: 0; }

@media (max-width: 980px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-feature { min-height: 420px; }
  .showcase-stack { grid-template-rows: auto auto; }
}

/* ===== CTA section with photo background ===== */
.section-cta-photo {
  position: relative;
  padding: clamp(var(--s-9), 14vw, var(--s-10)) 0;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.section-cta-photo .bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.section-cta-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(17, 124, 130, 0.45) 0%, transparent 65%),
    linear-gradient(180deg, rgba(7, 60, 64, 0.85) 0%, rgba(7, 60, 64, 0.7) 100%);
}
.section-cta-photo .container-narrow {
  position: relative;
  z-index: 2;
}
.section-cta-photo h2 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.section-cta-photo p.lead {
  color: rgba(255, 255, 255, 0.9);
}
.section-cta-photo .eyebrow {
  color: var(--brass-300);
}

@media (max-width: 768px) {
  .section-cta-photo {
    padding: var(--s-8) 0;
  }
  .section-cta-photo h2 {
    font-size: clamp(1.8rem, 6.5vw, 2.6rem);
  }
}

/* ===== Tinted section helper ===== */
.section-tinted {
  background: linear-gradient(180deg, var(--tint-50) 0%, var(--tint-100) 100%);
}

/* ===== Admin styles ===== */
.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background: var(--bone-100);
}
.admin-sidebar {
  background: var(--sea-700);
  color: var(--bone-100);
  padding: var(--s-5);
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.admin-sidebar .brand { color: var(--white); margin-bottom: var(--s-7); }
.admin-sidebar .brand-mark-ring,
.admin-sidebar .brand-mark-horizon { stroke: var(--white); }
.admin-sidebar .brand-mark-sun { stroke: var(--brass-300); }
.admin-sidebar .brand-mark-spark { fill: var(--brass-300); }
.admin-sidebar .brand-tag { color: var(--ink-300); }
.admin-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.admin-nav a {
  padding: 11px 16px;
  border-radius: var(--r-md);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-300);
  transition: all var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.admin-nav a.active {
  background: var(--brass-500);
  color: var(--white);
}
.admin-main { padding: var(--s-7); overflow-x: auto; }
.admin-card {
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  padding: var(--s-5);
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--brass-500);
}
.stat-card .label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: var(--s-2);
  font-weight: 700;
}
.stat-card .value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--ink-900);
  line-height: 1;
  font-weight: 500;
}
.stat-card .value-accent { color: var(--brass-500); }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
  text-align: left;
  padding: var(--s-3) var(--s-4);
  border-bottom: 1px solid var(--bone-200);
  font-size: 0.92rem;
}
.admin-table th {
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.admin-table tr:hover td { background: var(--bone-100); }

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.status-pending   { background: #FEF3DB; color: #8C6A1A; }
.status-confirmed { background: var(--brass-100); color: var(--brass-700); }
.status-cancelled { background: #FADCD3; color: #7E2C16; }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 6px;
  padding: var(--s-2);
  border: 1px dashed var(--bone-300);
  border-radius: var(--r-md);
  background: var(--bone-100);
}
.amenity-pick {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 0.86rem;
  color: var(--ink-700);
  transition: all 150ms;
  border: 1px solid transparent;
  background: var(--white);
}
.amenity-pick:hover { background: var(--bone-100); }
.amenity-pick input { accent-color: var(--brass-500); }
.amenity-pick.on {
  background: var(--brass-100);
  color: var(--brass-700);
  border-color: var(--brass-300);
  font-weight: 600;
}

.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-5);
  background: var(--sea-700);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(17, 124, 130, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(17, 124, 130, 0.10) 0%, transparent 50%);
}
.login-card {
  background: var(--white);
  border: 1px solid var(--bone-200);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  max-width: 440px;
  width: 100%;
  box-shadow: 0 40px 80px -24px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}
.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brass-500);
}
.login-card h2 { margin-bottom: var(--s-2); }
.login-card .lead { margin-bottom: var(--s-5); font-size: 0.95rem; }
.login-card .field { margin-bottom: var(--s-4); }
