/* ============================================================
   KALLISTISHOME design system
   Tricolor: cream · ink · cypress green. Rounded. Airy.
   Same architecture as luxurypearlchania reference; only colors differ.
   ============================================================ */

:root {
  /* palette, three colors only */
  --ink:        #0A0A0A;
  --ink-soft:   #181818;
  --paper:      #F4F1EA;        /* warm cream — page background */
  --paper-2:    #FFFFFF;        /* pure white — card surface + alternating sections */
  --red:        #1F5B4A;        /* primary accent — deep cypress green */
  --red-deep:   #143E33;        /* hover state */
  --red-soft:   #DBE6E0;        /* surface tint for badges */

  /* hierarchy via alpha on ink */
  --rule:       rgba(10,10,10,0.10);
  --rule-soft:  rgba(10,10,10,0.06);
  --mute:       rgba(10,10,10,0.62);
  --mute-soft:  rgba(10,10,10,0.40);

  /* state surfaces */
  --ok-bg:      rgba(31,91,74,0.08);
  --ok-fg:      #143E33;
  --warn-bg:    rgba(31,91,74,0.14);
  --warn-fg:    #143E33;
  --bad-bg:     rgba(31,91,74,0.18);
  --bad-fg:     #143E33;

  /* typography, Playfair (display) + Plus Jakarta Sans (body), both Google Fonts */
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body:    'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;

  /* spacing, generous, breathy */
  --s-1: 4px;
  --s-2: 12px;
  --s-3: 22px;
  --s-4: 36px;
  --s-5: 56px;
  --s-6: 84px;
  --s-7: 124px;
  --s-8: 180px;
  --s-9: 240px;

  /* radius, rounded everywhere */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   44px;
  --r-pill: 999px;

  /* shadows, soft elevations, never sharp */
  --shadow-sm: 0 1px 2px rgba(10,10,10,0.04), 0 6px 18px rgba(10,10,10,0.05);
  --shadow-md: 0 4px 12px rgba(10,10,10,0.05), 0 16px 48px rgba(10,10,10,0.08);
  --shadow-lg: 0 8px 28px rgba(10,10,10,0.10), 0 32px 80px rgba(10,10,10,0.14);
  --shadow-red: 0 10px 30px rgba(31,91,74,0.22);

  /* layout */
  --container:        1240px;
  --container-narrow: 780px;

  --transition: 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ============== RESET + BASE ============== */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, p, ul, ol, li, figure, blockquote, dl, dd { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overscroll-behavior: none; }
html, body { overscroll-behavior: none; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
hr { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 500; }
h1 em { font-style: italic; font-weight: 400; color: var(--red); }
h2 { font-size: clamp(2rem, 4.4vw, 3rem); }
h3 { font-size: 1.45rem; line-height: 1.25; }
h4 { font-size: 1.15rem; line-height: 1.3; }

p { color: var(--mute); }
.lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 400;
  max-width: 60ch;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: none; }

/* ============== LAYOUT ============== */
.container        { max-width: var(--container);        margin: 0 auto; padding: 0 var(--s-4); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s-4); }
.section { padding: var(--s-7) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  align-items: end;
  margin-bottom: var(--s-6);
}
@media (max-width: 720px) {
  .section { padding: var(--s-6) 0; }
  .section-head { grid-template-columns: 1fr; align-items: start; gap: var(--s-3); margin-bottom: var(--s-4); }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: var(--r-pill);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover {
  background: var(--ink); color: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--red); border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-ghost { border-color: var(--ink); }
.btn-accent {
  background: var(--red); color: var(--paper); border-color: var(--red);
}
.btn-accent:hover {
  background: var(--red-deep); border-color: var(--red-deep);
  box-shadow: var(--shadow-red);
}
.btn-quiet {
  background: transparent; border-color: var(--rule); color: var(--mute);
}
.btn-quiet:hover {
  background: var(--paper-2); color: var(--ink); border-color: var(--rule); transform: none; box-shadow: none;
}
.btn-sm { padding: 11px 22px; font-size: 0.78rem; }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 600;
  color: var(--red);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition), gap var(--transition);
}
.btn-link::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--red);
  transform-origin: left; transition: transform var(--transition);
}
.btn-link:hover { color: var(--red-deep); gap: 12px; }
.btn-link:hover::after { transform: scaleX(0.5); }

/* ============== FORM FIELDS ============== */
.field { display: flex; flex-direction: column; gap: 10px; }
.field-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.field-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.field-input, .field-textarea {
  font: inherit; color: var(--ink);
  background: var(--paper-2);
  border: 1.5px solid var(--rule);
  padding: 16px 20px;
  border-radius: var(--r-md);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.field-input:hover, .field-textarea:hover {
  border-color: rgba(31,91,74,0.30);
}
.field-input:focus, .field-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}
.field-textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.field-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--s-3); }
@media (max-width: 600px) {
  .field-grid-2:not(.field-grid-2--keep), .field-grid-3 { grid-template-columns: 1fr; }
}

/* ============== NAVBAR ============== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 var(--rule), 0 8px 24px rgba(10,10,10,0.04);
}
.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-3) var(--s-4);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--paper);
  position: relative;
  transition: background var(--transition), transform var(--transition);
}
.brand-mark::before { content: 'K'; }
.brand-mark::after {
  content: ''; position: absolute;
  top: -3px; right: -3px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
}
.brand:hover .brand-mark { background: var(--red); transform: rotate(-6deg); }
.brand:hover .brand-mark::after { background: var(--ink); }
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.brand-name-accent { color: var(--red); }
.footer .brand-name-accent { color: var(--red); }
.brand-tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
  font-weight: 600;
}
.nav-links {
  display: flex; gap: var(--s-4);
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 50%; right: 50%; bottom: 2px;
  height: 2px; background: var(--red);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-links a:hover::after, .nav-links a.active::after { left: 0; right: 0; }
.nav-actions { display: flex; align-items: center; gap: var(--s-3); }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--mute);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background var(--transition);
}
.lang-toggle:hover { background: var(--paper-2); }
.lang-toggle .lang-active { color: var(--red); font-weight: 700; }
.nav-book-btn { padding: 12px 24px; font-size: 0.78rem; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; align-items: stretch; justify-content: center;
  gap: 5px;
  border-radius: var(--r-pill);
  background: var(--paper-2);
  padding: 12px 11px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 920px) {
  .nav-links, .nav-book-btn { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) {
  .navbar-inner { padding: var(--s-2) var(--s-3); gap: var(--s-2); }
  .nav-actions { gap: 6px; }
  .brand { gap: 8px; }
  .brand-mark { width: 36px; height: 36px; font-size: 1rem; }
  .brand-name { font-size: 1.25rem; }
  .brand-tag { font-size: 0.62rem; }
  .nav-toggle { width: 38px; height: 38px; }
  .lang-toggle { padding: 6px 10px; font-size: 0.78rem; }
}
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: 88%; max-width: 380px; height: 100vh;
  background: var(--paper);
  display: flex; flex-direction: column;
  padding: 110px var(--s-4) var(--s-4);
  z-index: 49;
  transition: right var(--transition);
  box-shadow: var(--shadow-lg);
  border-top-left-radius: var(--r-xl);
  border-bottom-left-radius: var(--r-xl);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  padding: var(--s-3) 0;
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--red); }
.mobile-menu .mobile-menu-book {
  margin-top: var(--s-4);
  background: var(--red);
  color: var(--paper);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 20px var(--s-3);
  border: none;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-red);
  text-transform: none;
}
.mobile-menu .mobile-menu-book:hover { background: var(--red-deep); color: var(--paper); }

/* ============== HERO ============== */
main#page-content { padding-top: 86px; min-height: 60vh; }

.hero {
  padding: var(--s-7) 0 var(--s-5);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -160px;
  width: 460px; height: 460px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-4);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-6);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  margin-top: var(--s-3);
  font-size: clamp(2.8rem, 7.4vw, 5.6rem);
  letter-spacing: -0.025em;
  font-weight: 500;
}
.hero-copy h1 em { display: block; font-size: 0.95em; }
.hero-copy .lead { margin-top: var(--s-4); }
.hero-actions {
  display: flex; gap: var(--s-3);
  margin-top: var(--s-5); flex-wrap: wrap;
}
.hero-meta {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: var(--s-3);
  margin-top: var(--s-6);
  padding: var(--s-2) var(--s-3);
  background: var(--paper-2);
  border-radius: var(--r-lg);
}
.hero-meta-item {
  display: flex; flex-direction: column;
  padding: var(--s-2) var(--s-3);
  border-right: 1px solid var(--rule);
}
.hero-meta-item:last-child { border-right: none; }
.hero-meta-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 6px;
  font-weight: 700;
}
.hero-meta-item .value {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -8px -8px auto auto;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--red);
  z-index: 2;
  box-shadow: var(--shadow-red);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--transition);
}
.hero-visual:hover img { transform: scale(1.05); }
.hero-pill {
  position: absolute; bottom: var(--s-3); left: var(--s-3);
  background: var(--paper);
  padding: 10px 18px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
@media (max-width: 920px) {
  .hero { padding-top: var(--s-5); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero-visual { aspect-ratio: 4/5; max-height: 70vh; }
  .hero-meta--desktop { display: none; }
}

.hero-meta-mobile-wrap { display: none; }
@media (max-width: 720px) {
  .hero-meta-mobile-wrap {
    display: block;
    padding: 0 var(--s-4);
    margin: 0 auto var(--s-5);
    max-width: var(--container);
  }
  .hero-meta--mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    padding: var(--s-2) var(--s-3);
    gap: 0;
  }
  .hero-meta--mobile .hero-meta-item {
    padding: var(--s-2) var(--s-3);
    border-right: 1px solid var(--rule);
    border-bottom: none;
  }
  .hero-meta--mobile .hero-meta-item:last-child {
    border-right: none;
  }
  .hero-meta--mobile .hero-meta-item .label {
    font-size: 0.62rem;
    margin-bottom: 2px;
  }
  .hero-meta--mobile .hero-meta-item .value {
    font-size: 0.94rem;
  }
}

/* ============== BOOKING WIDGET ============== */
.booking-widget {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  background: var(--paper-2);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  position: relative;
}
.booking-widget-field {
  padding: 14px 24px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column;
  gap: 4px;
  cursor: pointer;
  border-radius: var(--r-pill);
  transition: background var(--transition);
}
.booking-widget-field:hover { background: var(--paper-2); }
.booking-widget-field.active { background: var(--paper-2); }
.booking-widget-field .label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
}
.booking-widget-field .value {
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--ink);
}
.booking-widget-field .value.placeholder {
  color: var(--mute-soft);
  font-style: italic;
  font-weight: 400;
}
.booking-widget button[type="submit"] {
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 var(--s-5);
  border: none;
  cursor: pointer;
  border-radius: var(--r-pill);
  transition: background var(--transition), box-shadow var(--transition);
  margin-left: 4px;
}
.booking-widget button[type="submit"]:hover {
  background: var(--red-deep);
  box-shadow: var(--shadow-red);
}
@media (max-width: 920px) {
  .booking-widget {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--r-lg);
    padding: var(--s-2);
  }
  .booking-widget-field {
    border-right: none;
    border-radius: var(--r-md);
  }
  .booking-widget button[type="submit"] {
    grid-column: span 2;
    padding: 18px;
    margin-left: 0; margin-top: 6px;
    border-radius: var(--r-md);
  }
}

/* ============== ROOM CARDS, floating, rounded, gapped ============== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s-4);
}
.room-card {
  position: relative;
  background: var(--paper-2);
  border-radius: var(--r-lg);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.room-card-media {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper-2);
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.room-card-price-overlay {
  position: absolute; top: var(--s-3); right: var(--s-3);
  background: var(--paper);
  font-family: var(--font-body);
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 600;
  z-index: 2;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.room-card-price-overlay strong {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  margin-left: 4px;
}
.room-card-body { padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.room-card-type {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.room-card-name { font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; }
.room-card-desc { color: var(--mute); font-size: 0.94rem; line-height: 1.55; }
.room-card-foot {
  margin-top: auto; padding-top: var(--s-3);
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-2);
}
.room-card-meta { font-size: 0.82rem; color: var(--mute); }
.room-card-meta strong { color: var(--ink); font-weight: 700; }

/* ============== AMENITIES ============== */
.amenities-row {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 6px;
}
.amenity-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 500;
  border-radius: var(--r-pill);
}
.amenity-chip svg { color: var(--red); flex-shrink: 0; }

/* ============== CAROUSEL ============== */
.carousel { position: relative; overflow: hidden; height: 100%; }
.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 700ms ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--paper); color: var(--ink);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  box-shadow: var(--shadow-md);
  transition: opacity var(--transition), background var(--transition), color var(--transition);
  z-index: 3;
}
.carousel-prev { left: var(--s-3); }
.carousel-next { right: var(--s-3); }
.room-card:hover .carousel-nav,
.room-select-card:hover .carousel-nav,
.carousel:hover .carousel-nav { opacity: 1; }
@media (max-width: 920px) {
  .carousel-nav { opacity: 1; width: 36px; height: 36px; }
}
.carousel-nav:hover { background: var(--red); color: var(--paper); }
.carousel-dots {
  position: absolute; bottom: var(--s-3); left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 3;
  background: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}
.carousel-dot {
  width: 8px; height: 8px;
  background: rgba(10, 10, 10, 0.25);
  border: none; padding: 0;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active { background: var(--red); transform: scale(1.2); }
.carousel-counter {
  position: absolute; bottom: var(--s-3); right: var(--s-3);
  background: var(--ink); color: var(--paper);
  padding: 6px 12px;
  font-size: 0.74rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  z-index: 3;
}

/* ============== EDITORIAL SPLIT ============== */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
.editorial-split-image {
  aspect-ratio: 4/5;
  background: var(--paper-2);
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  position: relative;
}
.editorial-split-image::after {
  content: '';
  position: absolute;
  bottom: -28px; left: -28px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--red);
  z-index: -1;
}
.editorial-split-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 920px) {
  .editorial-split { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* ============== DESTINATIONS ============== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-4);
}
.dest-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--paper-2);
  border-radius: var(--r-lg);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--s-4);
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(10,10,10,0.85) 100%);
  color: var(--paper);
}
.dest-card-type {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 700;
  margin-bottom: 8px;
  align-self: flex-start;
  background: var(--red);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.dest-card-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 6px;
}
.dest-card-distance {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.84rem;
  color: var(--paper);
  margin-bottom: 8px;
  opacity: 0.9;
}
.dest-card-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--transition), opacity var(--transition), margin-top var(--transition);
}
.dest-card:hover .dest-card-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 4px;
}

/* ============== MOSAIC ============== */
.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: var(--s-3);
}
.mosaic-cell {
  overflow: hidden;
  background: var(--paper-2);
  cursor: zoom-in;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mosaic-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mosaic-cell:nth-child(1) { grid-row: span 2; border-radius: var(--r-xl); }
.mosaic-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s ease;
}
.mosaic-cell:hover img { transform: scale(1.06); }
@media (max-width: 720px) {
  .mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .mosaic-cell:nth-child(1) { grid-row: span 1; grid-column: span 2; }
  .mosaic-cell:nth-child(5) { display: none; }
}

/* ============== PHILOSOPHY ============== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-4);
}
.philosophy-item {
  padding: var(--s-5) var(--s-4);
  background: var(--paper-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.philosophy-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.philosophy-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: var(--s-3);
}
.philosophy-item h4 { font-family: var(--font-display); margin-bottom: var(--s-2); font-weight: 600; }
.philosophy-item p { color: var(--mute); font-size: 0.94rem; }

/* ============== PAGE HERO ============== */
.page-hero {
  padding: var(--s-7) 0 var(--s-5);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; right: -120px;
  transform: translateY(-50%);
  width: 320px; height: 320px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}
.page-hero .container-narrow { position: relative; z-index: 1; }
.page-hero h1 { margin-top: var(--s-3); }
.page-hero .lead { margin-top: var(--s-3); }

/* ============== BOOKING SHELL ============== */
.booking-shell {
  padding: var(--s-6) 0 var(--s-7);
  background: var(--paper);
}
.booking-combined {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  align-items: start;
}
.booking-combined-col {
  position: relative;
  background: var(--paper-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--s-4);
  border-top: 4px solid var(--red);
}
.booking-combined-col h3 {
  display: flex; align-items: center; gap: 12px;
}
.booking-combined-col h3::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--red-soft);
}
@media (max-width: 920px) {
  .booking-combined { grid-template-columns: 1fr; gap: var(--s-3); }
  .booking-combined-col { padding: var(--s-3) 14px; }
  .booking-combined-col h3 { font-size: 1.2rem; }
}
@media (max-width: 720px) {
  .booking-shell { padding: var(--s-5) 0 var(--s-6); }
  .booking-shell .container { padding: 0 var(--s-3); }
}

/* ============== BOOKING TOTAL SUMMARY ============== */
.booking-total-summary {
  margin-top: var(--s-4);
  background: var(--paper-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
  padding: var(--s-3) var(--s-4);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--s-3);
  align-items: center;
}
.booking-total-summary:empty { display: none; }
.booking-total-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: 6px;
}
.booking-total-value {
  font-family: var(--font-body);
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
}
.booking-total-suffix {
  font-family: var(--font-body, inherit);
  font-size: 0.85rem;
  color: var(--mute);
  font-weight: 400;
  margin-left: 4px;
}
.booking-total-grand .booking-total-value {
  color: var(--red);
  font-size: 1.8rem;
}
.booking-total-room .booking-total-value {
  font-size: 1.15rem;
}
.booking-total-empty {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
}
.booking-total-empty-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
.booking-total-empty-room {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
}
.booking-total-empty-hint {
  font-size: 0.9rem;
  color: var(--mute);
  font-style: italic;
  margin-left: auto;
}
@media (max-width: 920px) {
  .booking-total-summary { grid-template-columns: 1fr 1fr; gap: var(--s-3) var(--s-4); }
  .booking-total-room { grid-column: 1 / -1; }
  .booking-total-grand { grid-column: 1 / -1; padding-top: var(--s-2); border-top: 1px solid var(--rule); }
  .booking-total-empty-hint { margin-left: 0; flex-basis: 100%; }
}

.room-select-list {
  display: flex; flex-direction: column;
  gap: var(--s-3);
}
.room-select-card {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--paper-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), outline var(--transition);
  outline: 2px solid transparent;
  outline-offset: -2px;
}
.room-select-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.room-select-card.selected {
  outline-color: var(--red);
  box-shadow: var(--shadow-md);
}
.room-select-media {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper-2);
  overflow: hidden;
}
.room-select-body { padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); }
.room-select-type {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.room-select-name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; }
.room-select-desc { color: var(--mute); font-size: 0.94rem; }
.room-select-meta {
  margin-top: auto; padding-top: var(--s-3);
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3); flex-wrap: wrap;
}
.room-select-stats { font-size: 0.82rem; color: var(--mute); }
.room-select-stats strong { color: var(--ink); font-weight: 700; }
.room-select-price {
  display: inline-flex; flex-direction: column; align-items: flex-end;
  gap: 2px; line-height: 1;
  font-family: var(--font-body);
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--red);
}
.room-select-price .suffix {
  font-family: var(--font-body);
  font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mute);
  font-weight: 600;
  margin: 0;
}
@media (max-width: 720px) {
  .room-select-card { grid-template-columns: 1fr; }
  .room-select-media { aspect-ratio: 4/3; }
  .room-select-body { padding: var(--s-4); gap: var(--s-2); }
}

/* ====== ROOM SELECT — BROWSE MODIFIER (rooms list / home rooms section) ====== */
.room-select-list--browse {
  display: grid;
  flex-direction: initial;
  gap: var(--s-4);
}
.room-select-list--browse .room-select-card {
  grid-template-columns: 480px 1fr;
  gap: var(--s-5);
  padding: var(--s-4);
  border: 1px solid var(--rule);
  background: var(--paper-2);
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  overflow: visible;
  outline: none;
  border-radius: var(--r-lg);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.room-select-list--browse .room-select-card:hover {
  border-color: var(--ink);
  background: var(--paper-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.room-select-list--browse .room-select-media {
  border-radius: var(--r-md);
  aspect-ratio: 4 / 3;
  align-self: start;
}
.room-select-list--browse .room-select-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.room-select-list--browse .room-select-card:hover .room-select-media img {
  transform: scale(1.04);
}
.room-select-list--browse .room-select-body {
  padding: var(--s-2) var(--s-3) var(--s-2) 0;
  min-width: 0;
}
.room-select-list--browse .room-select-type {
  letter-spacing: 0.22em;
}
.room-select-list--browse .room-select-name {
  margin: 6px 0 var(--s-2);
  line-height: 1.05;
}
.room-select-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--mute);
  margin: 0 0 var(--s-3);
  font-weight: 500;
}
.room-select-location svg { color: var(--red); flex-shrink: 0; }
.room-select-list--browse .room-select-meta {
  margin-top: var(--s-3);
  padding-top: 0;
  border-top: none;
}
.room-select-list--browse .room-select-price { color: var(--red); }
.room-select-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--s-4);
  padding: 12px 24px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background var(--transition), gap var(--transition);
}
.room-select-list--browse .room-select-card:hover .room-select-cta {
  background: var(--red);
  gap: 12px;
}

@media (max-width: 1080px) {
  .room-select-list--browse .room-select-card { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
}
@media (max-width: 720px) {
  .room-select-list--browse {
    gap: var(--s-4) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .room-select-list--browse .room-select-card {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: none !important;
    box-shadow: var(--shadow-md) !important;
    border-radius: var(--r-lg) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .room-select-list--browse .room-select-card:hover {
    border-color: transparent !important;
    background: var(--paper) !important;
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-lg) !important;
  }
  .room-select-list--browse .room-select-media {
    aspect-ratio: 5 / 4 !important;
    border-radius: var(--r-lg) var(--r-lg) 0 0 !important;
    align-self: stretch !important;
  }
  .room-select-list--browse .room-select-body {
    padding: var(--s-4) !important;
    gap: 10px !important;
  }
  .room-select-list--browse .room-select-name {
    font-size: 1.7rem !important;
    margin: 4px 0 2px !important;
  }
  .room-select-list--browse .room-select-type {
    font-size: 0.74rem !important;
    letter-spacing: 0.22em !important;
  }
  .room-select-list--browse .room-select-location {
    margin: 0 0 var(--s-2) !important;
  }
  .room-select-list--browse .room-select-meta {
    margin-top: var(--s-3) !important;
    padding-top: var(--s-3) !important;
    border-top: 1px solid var(--rule) !important;
    align-items: center !important;
  }
  .room-select-list--browse .room-select-cta {
    margin-top: var(--s-3) !important;
    align-self: stretch !important;
    justify-content: center !important;
  }
}

/* ============== ROOM DETAIL PAGE ============== */
.room-detail .container { max-width: 1100px; }
.room-detail-back {
  display: inline-block;
  font-size: 0.86rem;
  color: var(--mute);
  margin-bottom: var(--s-4);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.room-detail-back:hover { color: var(--red); }

.room-detail-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: var(--s-5);
}
.room-detail-cell { position: relative; overflow: hidden; background: var(--paper-2); cursor: zoom-in; }
.room-detail-cell--1 { grid-row: 1 / 3; }
.room-detail-cell img { width: 100%; height: 100%; object-fit: cover; }
.room-detail-more {
  position: absolute; right: 12px; bottom: 12px;
  background: rgba(10,10,10,0.78);
  color: var(--paper);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em;
  pointer-events: none;
}
.room-detail-carousel-wrap { display: none; }

.room-detail-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: var(--s-3);
}
.room-detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  margin: var(--s-2) 0 var(--s-2);
}
.room-detail-location {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--mute); font-size: 0.94rem; font-weight: 500;
  margin-bottom: var(--s-2);
}
.room-detail-location svg { color: var(--red); }
.room-detail-stats { color: var(--mute); font-size: 0.94rem; }
.room-detail-stats strong { color: var(--ink); font-weight: 700; }
.room-detail-stats .dot { margin: 0 6px; opacity: 0.6; }
.room-detail-price-block {
  display: inline-flex; flex-direction: column; align-items: flex-end;
  gap: 2px; line-height: 1;
  font-family: var(--font-body);
  text-align: right;
}
.room-detail-price-block .amount {
  font-family: var(--font-body);
  font-size: 2rem; font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--red);
  line-height: 1;
}
.room-detail-price-block .suffix {
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mute);
  font-weight: 600;
  margin: 0;
}
.room-detail-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
  align-items: stretch;
}
.room-detail-amenities,
.room-detail-map {
  background: var(--paper-2);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
}
.room-detail-amenities h3,
.room-detail-map h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 var(--s-3);
  font-weight: 600;
}
.room-detail-amenities-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
  flex: 1;
  align-content: start;
}
.room-detail-amenities-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.94rem; color: var(--ink);
}
.room-detail-amenities-list .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.room-detail-map-embed {
  border-radius: var(--r-md);
  overflow: hidden;
  flex: 1;
  background: var(--paper);
  min-height: 280px;
}
.room-detail-map-embed iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

.room-detail-cta-wrap {
  display: flex; justify-content: center;
  padding: var(--s-4) 0 var(--s-3);
  border-top: 1px solid var(--rule);
}
.btn-large {
  font-size: 0.96rem;
  padding: 18px 40px;
}

@media (max-width: 900px) {
  .room-detail-info-grid { grid-template-columns: 1fr; }
  .room-detail-map { order: -1; }
}
@media (max-width: 720px) {
  .room-detail { padding-top: var(--s-5); }
  .room-detail-mosaic { display: none; }
  .room-detail-carousel-wrap {
    display: block;
    position: relative;
    margin: 0 calc(-1 * var(--s-4)) var(--s-4);
    background: var(--paper-2);
  }
  .room-detail-carousel {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    aspect-ratio: 4 / 3;
  }
  .room-detail-carousel::-webkit-scrollbar { display: none; }
  .room-detail-carousel-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    aspect-ratio: 4 / 3;
    cursor: zoom-in;
    position: relative;
  }
  .room-detail-carousel-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .room-detail-counter {
    position: absolute;
    bottom: 14px; right: 18px;
    background: rgba(10, 10, 10, 0.72);
    color: var(--paper);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    pointer-events: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
  }
  .room-detail-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ink);
    font-size: 1.6rem;
    font-family: var(--font-body);
    line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    padding: 0 0 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    z-index: 2;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background var(--transition);
  }
  .room-detail-nav:active { background: rgba(255, 255, 255, 1); }
  .room-detail-nav--prev { left: 10px; }
  .room-detail-nav--next { right: 10px; }
  .room-detail-head { gap: var(--s-3); align-items: center; flex-wrap: nowrap; }
  .room-detail-head > div:first-child { flex: 1 1 auto; min-width: 0; }
  .room-detail-price-block {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    line-height: 1;
    text-align: right;
    font-family: var(--font-body);
  }
  .room-detail-price-block .amount {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .room-detail-price-block .suffix {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    margin: 0;
  }
}

/* ============== CALENDAR ============== */
.calendar {
  background: var(--paper-2);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-lg);
  padding: var(--s-3);
}
.calendar-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-3);
  border-bottom: 1px solid var(--rule);
}
.calendar-head .calendar-month {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.calendar-head .cal-prev,
.calendar-head .cal-next {
  width: 34px; height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--paper-2);
  font-size: 1.2rem;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.calendar-head .cal-prev:hover,
.calendar-head .cal-next:hover {
  background: var(--red); color: var(--paper);
}
.calendar-head .cal-prev:disabled,
.calendar-head .cal-next:disabled {
  opacity: 0.3; cursor: not-allowed;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-dow {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  text-align: center;
  padding: 6px 0;
  font-weight: 700;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.calendar-day:hover:not(.disabled):not(.booked):not(.range-start):not(.range-end) {
  background: var(--paper-2);
}
.calendar-day.disabled { color: var(--mute-soft); cursor: not-allowed; opacity: 0.4; }
.calendar-day.booked {
  color: var(--mute-soft);
  cursor: not-allowed;
  text-decoration: line-through;
}
.calendar-day.today { font-weight: 800; color: var(--red); }
.calendar-day.range-start, .calendar-day.range-end {
  background: var(--red); color: var(--paper);
  box-shadow: var(--shadow-red);
}
.calendar-day.in-range { background: var(--red-soft); border-radius: 0; }
.calendar-day.range-start { border-radius: 50% 0 0 50%; }
.calendar-day.range-end   { border-radius: 0 50% 50% 0; }
.calendar-day.range-start.range-end { border-radius: 50%; }

@media (max-width: 720px) {
  .calendar { padding: 14px 10px; border-radius: var(--r-md); }
  .calendar-head { padding-bottom: var(--s-2); margin-bottom: var(--s-2); }
  .calendar-head .calendar-month { font-size: 1.18rem; }
  .calendar-head .cal-prev,
  .calendar-head .cal-next { width: 38px; height: 38px; font-size: 1.4rem; }
  .calendar-grid { gap: 2px; }
  .calendar-dow { font-size: 0.78rem; padding: 8px 0; }
  .calendar-day { font-size: 1.05rem; font-weight: 500; }
}

/* ============== DATE POPUP ============== */
.date-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 12, 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(--paper-2);
  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(--paper-2);
  color: var(--ink);
  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(--red); color: var(--paper); }
.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(--rule);
  font-size: 0.85rem;
}
.date-popup-foot .legend { display: flex; gap: var(--s-4); color: var(--mute); }
.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);
}
.swatch-booked {
  background: repeating-linear-gradient(45deg, var(--rule), var(--rule) 2px, var(--paper-2) 2px, var(--paper-2) 4px);
}
.swatch-selected { background: var(--red); }
.date-popup-clear {
  background: transparent;
  color: var(--mute);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  border: none;
  padding: 0;
}
.date-popup-clear:hover { color: var(--red); }
@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;
  }
}

/* ============== PAYMENT ============== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-3);
}
.payment-option {
  position: relative;
  background: var(--paper-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--s-4);
  cursor: pointer;
  display: flex; flex-direction: column; gap: var(--s-2);
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: transform var(--transition), box-shadow var(--transition), outline var(--transition);
}
.payment-option:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.payment-option.selected { outline-color: var(--red); box-shadow: var(--shadow-md); }
.payment-option-radio {
  position: absolute; top: var(--s-3); right: var(--s-3);
  width: 18px; height: 18px;
  border: 1.5px solid var(--mute);
  border-radius: 50%;
  transition: all var(--transition);
}
.payment-option.selected .payment-option-radio {
  border-color: var(--red);
  background: var(--red);
  box-shadow: inset 0 0 0 3px var(--paper);
}
.payment-option-icon { color: var(--red); margin-bottom: var(--s-2); }
.payment-option-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.payment-option-meta {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.payment-option-desc { font-size: 0.88rem; color: var(--mute); line-height: 1.5; }

/* ============== CUSTOM SELECT ============== */
.custom-select { position: relative; font: inherit; width: 100%; }
.custom-select-trigger {
  width: 100%;
  background: var(--paper-2);
  border: 1.5px solid var(--rule);
  padding: 16px 40px 16px 20px;
  text-align: left;
  font: inherit; color: var(--ink);
  cursor: pointer;
  position: relative;
  border-radius: var(--r-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.custom-select:not(.embed) .custom-select-trigger:hover { border-color: rgba(31,91,74,0.30); }
.custom-select:not(.embed).open .custom-select-trigger {
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
}
.custom-select.embed .custom-select-trigger {
  border: none; background: transparent;
  padding: 0;
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 500;
}
.custom-select-trigger::after {
  content: ''; position: absolute;
  right: 16px; top: 50%; transform: translateY(-30%) rotate(45deg);
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transition: transform var(--transition);
}
.custom-select.embed .custom-select-trigger::after { right: -2px; }
.custom-select.open .custom-select-trigger::after { transform: translateY(-10%) rotate(-135deg); }
.custom-select-trigger:focus { outline: none; border-color: var(--ink); }
.custom-select.embed .custom-select-trigger:focus { border: none; }
.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--paper-2);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  z-index: 20;
  max-height: 240px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity var(--transition), transform var(--transition);
  padding: 6px;
}
.custom-select.open .custom-select-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.custom-select-option {
  padding: 12px 16px;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: var(--r-sm);
}
.custom-select-option:hover { background: var(--paper-2); }
.custom-select-option.selected { background: var(--red-soft); color: var(--red); font-weight: 700; }

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-7) 0 var(--s-3);
  margin-top: var(--s-6);
  border-top-left-radius: var(--r-xl);
  border-top-right-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.18;
}
.footer .container { padding: 0 var(--s-4); position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-5);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer .brand-name { color: var(--paper); }
.footer .brand-tag { color: rgba(255, 255, 255, 0.6); }
.footer .brand-mark { background: var(--paper); color: var(--ink); }
.footer .brand-mark::after { background: var(--red); }
.footer .brand:hover .brand-mark { background: var(--red); color: var(--paper); }
.footer .brand:hover .brand-mark::after { background: var(--paper); }
.footer-about p { color: rgba(255, 255, 255, 0.72); margin-top: var(--s-3); max-width: 36ch; font-size: 0.94rem; line-height: 1.6; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  font-weight: 700;
  margin-bottom: var(--s-3);
}
.footer ul li { margin-bottom: var(--s-2); }
.footer ul li a, .footer ul li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  transition: color var(--transition);
}
.footer ul li a:hover { color: var(--red); }
.social-row { display: flex; gap: var(--s-2); margin-top: var(--s-2); }
.social-row a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--paper);
  border-radius: 50%;
  transition: all var(--transition);
}
.social-row a:hover { background: var(--red); color: var(--paper); border-color: var(--red); transform: translateY(-3px); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-3) 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap; gap: var(--s-2);
}
.footer-privacy-link {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}
.footer-privacy-link:hover { color: var(--red); }
.footer-powered {
  text-align: center;
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  font-weight: 600;
}
.footer-powered a {
  color: var(--paper);
  border-bottom: 1px solid var(--paper);
  padding-bottom: 1px;
  margin-left: 4px;
  transition: color var(--transition), border-color var(--transition);
}
.footer-powered a:hover { color: var(--red); border-color: var(--red); }
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .footer-about { grid-column: span 2; }
}
@media (max-width: 480px) {
  .footer { padding: var(--s-5) 0 var(--s-3); margin-top: var(--s-5); }
  .footer .container { padding: 0 var(--s-3); }
  .footer .brand-name { font-size: 1.3rem; }
  .footer-grid { gap: var(--s-3); padding-bottom: var(--s-4); }
  .footer-about p { font-size: 0.86rem; line-height: 1.55; max-width: none; }
  .footer h4 { font-size: 0.68rem; letter-spacing: 0.14em; margin-bottom: var(--s-2); }
  .footer ul li a, .footer ul li { font-size: 0.84rem; word-break: break-word; }
  .footer ul li { margin-bottom: 8px; }
  .social-row a { width: 36px; height: 36px; }
  .footer-bottom { font-size: 0.74rem; }
  .footer-powered { font-size: 0.66rem; letter-spacing: 0.08em; }
}

/* ============== UTILITIES ============== */
.toast {
  position: fixed; bottom: var(--s-4); left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--paper);
  padding: 16px 26px;
  font-size: 0.92rem;
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  transition: opacity var(--transition), transform var(--transition);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { background: var(--red); }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 300;
  padding: var(--s-5);
  cursor: zoom-out;
  backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--r-lg); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
  border: 0;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  font-family: var(--font-body);
  line-height: 1;
  transition: background var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox-close { top: 20px; right: 20px; font-size: 1.6rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 600px) {
  .lightbox { padding: var(--s-3); }
  .lightbox-prev { left: 12px; width: 40px; height: 40px; }
  .lightbox-next { right: 12px; width: 40px; height: 40px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lightbox-counter { bottom: 16px; }
}

.cookie-banner {
  position: fixed; bottom: var(--s-3); left: var(--s-3); right: var(--s-3);
  margin: 0 auto; max-width: 720px;
  background: var(--paper-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--s-3) var(--s-4);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3); flex-wrap: wrap;
  z-index: 100;
  transform: translateY(140%);
  transition: transform var(--transition);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { color: var(--ink); font-size: 0.9rem; max-width: 60ch; }
.cookie-actions { display: flex; gap: var(--s-2); }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============== ADMIN ============== */
.admin-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: var(--paper-2);
}
.admin-sidebar {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-4) var(--s-3);
  display: flex; flex-direction: column;
  gap: var(--s-4);
  position: sticky; top: 0; height: 100vh;
}
.admin-sidebar .brand { color: var(--paper); }
.admin-sidebar .brand-name { color: var(--paper); }
.admin-sidebar .brand-tag { color: rgba(255, 255, 255, 0.6); }
.admin-sidebar .brand-mark { background: var(--paper); color: var(--ink); }
.admin-sidebar .brand-mark::after { background: var(--red); }
.admin-nav {
  display: flex; flex-direction: column; gap: 4px;
  flex: 1;
}
.admin-nav a {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: var(--r-pill);
  transition: all var(--transition);
}
.admin-nav a:hover { color: var(--paper); background: rgba(255, 255, 255, 0.05); }
.admin-nav a.active {
  color: var(--paper);
  background: var(--red);
  box-shadow: var(--shadow-red);
}
.admin-main { padding: var(--s-5) var(--s-5); }
@media (max-width: 920px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; flex-direction: row; flex-wrap: wrap; align-items: center; }
  .admin-nav { flex-direction: row; flex-wrap: wrap; gap: 0; flex: 0 1 auto; }
  .admin-main { padding: var(--s-4); }
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--s-3);
}
.stat-card {
  padding: var(--s-4);
  background: var(--paper-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.stat-card .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
  margin-bottom: var(--s-2);
}
.stat-card .value {
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat-card .value.value-accent { color: var(--red); }

.admin-card {
  background: var(--paper-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--s-4);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th {
  text-align: left;
  padding: var(--s-2) var(--s-3);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 700;
  border-bottom: 1.5px solid var(--rule);
}
.admin-table td {
  padding: var(--s-3);
  border-bottom: 1px solid var(--rule-soft);
  font-size: 0.94rem;
  vertical-align: top;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--paper-2); }

.status-badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}
.status-pending   { background: var(--warn-bg); color: var(--warn-fg); }
.status-confirmed { background: var(--ink); color: var(--paper); }
.status-cancelled { background: var(--bad-bg); color: var(--bad-fg); }

.login-shell {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-2);
  padding: var(--s-4);
  position: relative;
  overflow: hidden;
}
.login-shell::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.1;
}
.login-shell::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.06;
}
.login-card {
  background: var(--paper-2);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--s-5);
  width: 100%; max-width: 440px;
  position: relative;
  z-index: 1;
}
.login-card h2 { margin-bottom: var(--s-2); font-size: 1.7rem; }
.login-card .lead { font-size: 0.94rem; color: var(--mute); margin-bottom: var(--s-4); }
.login-card .field { margin-bottom: var(--s-3); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
  margin-top: 4px;
}
.amenity-pick {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  background: var(--paper-2);
  border: 1.5px solid var(--rule);
  cursor: pointer;
  font-size: 0.86rem;
  border-radius: var(--r-pill);
  transition: all var(--transition);
  user-select: none;
}
.amenity-pick:hover { background: var(--paper-2); }
.amenity-pick.on {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.amenity-pick input { accent-color: var(--red); }

.booking-step { display: inline-flex; align-items: center; gap: 8px; }
.booking-step .num {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--rule);
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 50%;
}
.booking-step.active .num { background: var(--red); color: var(--paper); border-color: var(--red); }
.booking-step.done .num { background: var(--ink); color: var(--paper); border-color: var(--ink); }
