/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --sand:    #F2EAD8;
  --stone:   #C9B89A;
  --terra:   #9E6B4A;
  --sea:     #3D6B74;
  --olive:   #E8E4D0;
  --ink:     #2A1F14;
  --cream:   #FBF7F0;
  --white:   #FFFFFF;
  --input-bg: #EDE4D0;

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'DM Sans', system-ui, sans-serif;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── NAV ──────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(251,247,240,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,184,154,0.3);
}
.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.nav-logo .wordmark {
  font-family: var(--display);
  font-size: 20px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--ink); line-height: 1;
}
.nav-logo .sub {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra); font-weight: 400;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
  font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 400;
}
.nav-links a { color: var(--ink); opacity: 0.7; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-book {
  background: var(--terra);
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 10px 24px;
  border-radius: var(--r-sm);
  font-weight: 500; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s;
}
.nav-book:hover { background: var(--sea) !important; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 72px;
  background: var(--sand);
  position: relative;
}
.hero-left::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 4px;
  background: var(--sea);
  border-radius: 0 2px 2px 0;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--terra);
  font-weight: 500; margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500; line-height: 1.08;
  color: var(--ink); margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--terra); }
.hero-body {
  font-size: 16px; line-height: 1.7;
  color: rgba(42,31,20,0.75);
  max-width: 420px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--sea); color: var(--white);
  padding: 16px 36px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block; cursor: pointer;
}
.btn-primary:hover { background: var(--terra); transform: translateY(-1px); }
.btn-secondary {
  border: 1.5px solid var(--stone); color: var(--ink);
  padding: 15px 36px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--terra); color: var(--terra); }
.hero-trust {
  margin-top: 52px;
  display: flex; gap: 32px;
}
.trust-item { display: flex; flex-direction: column; gap: 3px; }
.trust-value {
  font-family: var(--display);
  font-size: 28px; font-weight: 600;
  color: var(--ink); line-height: 1;
}
.trust-label {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(42,31,20,0.55);
}
.trust-divider {
  width: 1px; background: var(--stone);
  opacity: 0.4; align-self: stretch;
}
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-caption {
  position: absolute; bottom: 32px; left: 32px;
  background: rgba(251,247,240,0.9);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--terra);
  padding: 14px 20px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.hero-caption p {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--terra); font-weight: 500;
}
.hero-caption span { font-size: 13px; color: var(--ink); opacity: 0.7; }

/* ── BOOKING BAR ──────────────────────────────────────────── */
.booking-bar {
  background: var(--ink);
  padding: 28px 72px;
  display: flex; gap: 0; align-items: stretch;
}
.booking-field {
  flex: 1; display: flex; flex-direction: column; gap: 6px;
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  margin-right: 28px;
}
.booking-field:last-of-type { border-right: none; margin-right: 0; }
.booking-field label {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--stone); font-weight: 500;
}
.booking-field input,
.booking-field select {
  background: var(--input-bg);
  border: 1.5px solid var(--stone);
  border-radius: var(--r-sm);
  outline: none;
  font-family: var(--body);
  font-size: 15px; color: var(--ink);
  font-weight: 400; cursor: pointer;
  appearance: none; -webkit-appearance: none;
  padding: 8px 12px;
  transition: border-color 0.2s, background 0.2s;
}
.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--terra);
  background: #E8DCC8;
  outline: none;
}
.booking-field input:hover,
.booking-field select:hover {
  border-color: var(--terra);
}
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none; cursor: pointer; opacity: 0.6;
}
.booking-submit {
  background: var(--terra); color: var(--white);
  border: none; cursor: pointer;
  padding: 0 40px; border-radius: var(--r-sm);
  font-family: var(--body); font-size: 13px;
  font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s; flex-shrink: 0;
}
.booking-submit:hover { background: var(--sea); }

/* ── SECTION WRAPPER ──────────────────────────────────────── */
.section { padding: 100px 72px; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--terra);
  font-weight: 500; margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 500; line-height: 1.1;
  color: var(--ink); max-width: 560px;
}
.section-subtitle {
  font-size: 16px; color: rgba(42,31,20,0.65);
  max-width: 520px; margin-top: 16px; line-height: 1.7;
}

/* ── WHY ALEXIA ───────────────────────────────────────────── */
.why { background: var(--sand); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 60px; align-items: start;
}
.why-features { display: flex; flex-direction: column; gap: 36px; }
.feature { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--terra); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px; color: var(--white);
}
.feature-text h4 {
  font-family: var(--display);
  font-size: 20px; font-weight: 600; margin-bottom: 4px;
}
.feature-text p { font-size: 14px; color: rgba(42,31,20,0.65); line-height: 1.6; }
.feature-text .kitchen-note {
  font-size: 13px; color: rgba(42,31,20,0.5);
  margin-top: 4px; font-style: italic;
}
.why-image {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; aspect-ratio: 4/5;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-badge {
  position: absolute; bottom: -1px; right: -1px;
  background: var(--sea); color: var(--white);
  padding: 20px 28px;
  border-radius: var(--r-lg) 0 0 0; text-align: center;
}
.why-badge .big {
  font-family: var(--display);
  font-size: 36px; font-weight: 600; line-height: 1; display: block;
}
.why-badge .small {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.8;
}

/* ── ROOM TYPES ───────────────────────────────────────────── */
.rooms { background: var(--cream); }
.rooms-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid rgba(201,184,154,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(42,31,20,0.1);
}
.room-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.room-card:hover .room-card-img img { transform: scale(1.04); }
.room-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--sea); color: var(--white);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 12px;
  border-radius: 20px; font-weight: 500;
}
.room-tag.family { background: var(--terra); }
.room-tag.twin { background: var(--ink); }
.room-card-body {
  padding: 24px; flex: 1; display: flex; flex-direction: column;
}
.room-card-title {
  font-family: var(--display);
  font-size: 22px; font-weight: 600; margin-bottom: 4px;
}
.room-floor {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--stone);
  margin-bottom: 10px;
}
.room-card-desc {
  font-size: 13.5px; color: rgba(42,31,20,0.6);
  line-height: 1.6; margin-bottom: 20px; flex: 1;
}
.room-amenities {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.amenity-tag {
  background: var(--sand); color: var(--ink);
  font-size: 11px; padding: 4px 10px;
  border-radius: 20px; letter-spacing: 0.04em;
}
.amenity-tag.no-kitchen {
  background: var(--sand);
  color: var(--ink);
}
.room-card-footer {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 20px;
  border-top: 1px solid rgba(201,184,154,0.3);
}
.room-cta {
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--terra);
  font-weight: 500; border-bottom: 1px solid var(--stone);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
  cursor: pointer; background: none; border-top: none;
  border-left: none; border-right: none; font-family: var(--body);
}
.room-card:hover .room-cta { color: var(--sea); border-color: var(--sea); }

/* ── FAMILY SECTION ───────────────────────────────────────── */
.family { background: var(--olive); color: var(--ink); }
.family .section-eyebrow { color: var(--terra); }
.family .section-title { color: var(--ink); max-width: 480px; }
.family .section-subtitle { color: rgba(42,31,20,0.7); }
.family-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 60px; align-items: center;
}
.family-image { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/2; }
.family-image img { width: 100%; height: 100%; object-fit: cover; }
.family-perks { display: flex; flex-direction: column; gap: 24px; }
.perk {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: rgba(255,255,255,0.6);
  border-radius: var(--r-md); border: 1px solid rgba(201,184,154,0.4);
}
.perk-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.perk h4 {
  font-family: var(--display); font-size: 18px;
  font-weight: 500; margin-bottom: 4px; color: var(--ink);
}
.perk p { font-size: 13.5px; color: rgba(42,31,20,0.65); line-height: 1.6; }

/* ── LOCATION ─────────────────────────────────────────────── */
.location { background: var(--sand); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; margin-top: 60px; align-items: start;
}
.location-map {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--stone);
}
.location-map iframe { width: 100%; height: 100%; border: none; }
.location-right { display: flex; flex-direction: column; gap: 40px; }
.location-distances { display: flex; flex-direction: column; }
.distance-item {
  display: flex; justify-content: space-between;
  align-items: center; padding: 18px 0;
  border-bottom: 1px solid rgba(201,184,154,0.4);
}
.distance-item:first-child { padding-top: 0; }
.distance-name { font-size: 15px; color: var(--ink); font-weight: 400; }
.distance-time {
  font-family: var(--display); font-size: 18px;
  font-weight: 500; color: var(--terra);
}
.distance-note {
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(42,31,20,0.45); margin-left: 8px;
}
.transfers-info {
  background: var(--white); border-radius: var(--r-md);
  padding: 24px; border: 1px solid rgba(201,184,154,0.3);
}
.transfers-info h4 {
  font-family: var(--display); font-size: 20px;
  font-weight: 600; margin-bottom: 12px; color: var(--ink);
}
.transfers-info p {
  font-size: 14px; color: rgba(42,31,20,0.65);
  line-height: 1.7;
}

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews { background: var(--cream); }
.reviews-header { margin-bottom: 48px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px; border: 1px solid rgba(201,184,154,0.25);
}
.review-stars { color: var(--terra); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.review-text {
  font-family: var(--display); font-size: 18px;
  font-style: italic; line-height: 1.5;
  color: var(--ink); margin-bottom: 20px;
}
.review-author {
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(42,31,20,0.45);
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: var(--terra); padding: 80px 72px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 40px;
}
.cta-banner-text h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500; color: var(--white);
  line-height: 1.1; margin-bottom: 10px;
}
.cta-banner-text p { font-size: 15px; color: rgba(255,255,255,0.75); }
.cta-banner-actions { display: flex; gap: 16px; flex-shrink: 0; }
.btn-light {
  background: var(--white); color: var(--terra);
  padding: 16px 36px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s; display: inline-block; cursor: pointer;
}
.btn-light:hover { background: var(--sand); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 60px 72px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .wordmark {
  font-family: var(--display); font-size: 22px;
  color: var(--white); font-weight: 500;
  display: block; margin-bottom: 6px;
}
.footer-brand .sub {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra);
  display: block; margin-bottom: 20px;
}
.footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 260px; }
.footer-col h5 {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white);
  font-weight: 500; margin-bottom: 18px;
}
.footer-col ul {
  list-style: none; display: flex;
  flex-direction: column; gap: 10px;
}
.footer-col li a { font-size: 13.5px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col li a:hover { color: var(--stone); }
.footer-contact p { font-size: 13.5px; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center; font-size: 12px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 32px; }
  .hero-left::before { display: none; }
  .hero-right { aspect-ratio: 16/9; }
  .booking-bar { flex-direction: column; padding: 28px 32px; gap: 20px; }
  .booking-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 16px; margin-right: 0; }
  .booking-field:last-of-type { border-bottom: none; }
  .booking-submit { width: 100%; padding: 16px; }
  .section { padding: 64px 32px; }
  .why-grid, .family-grid, .location-grid { grid-template-columns: 1fr; }
  .rooms-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; padding: 60px 32px; text-align: center; }
  footer { padding: 48px 32px 32px; }
  .rooms-header { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 640px) {
  .hero-trust { flex-wrap: wrap; gap: 20px; }
  .rooms-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; width: 100%; }
  .hero-ctas { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(42,31,20,0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--cream);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(42,31,20,0.3);
}

.modal-close {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px 0;
  background: var(--cream);
}

.modal-close-btn {
  background: var(--sand);
  border: none;
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  font-family: var(--body);
}
.modal-close-btn:hover { background: var(--stone); }

/* Gallery */
.modal-gallery {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}
.modal-gallery img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
}
.modal-gallery img:first-child { opacity: 1; }
.modal-gallery img.active { opacity: 1; }

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(42,31,20,0.7);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 22px; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  font-family: var(--body);
  line-height: 1;
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-prev:hover,
.gallery-next:hover { background: rgba(42,31,20,0.95); }

.gallery-dots {
  position: absolute;
  bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 10;
}
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.gallery-dot.active {
  background: var(--white);
  transform: scale(1.3);
}

/* Modal body */
.modal-body { padding: 32px; }

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 20px;
}

.modal-title {
  font-family: var(--display);
  font-size: 32px; font-weight: 600;
  color: var(--ink); line-height: 1.1;
}

.modal-floor {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--stone);
  margin-top: 4px;
}

.modal-book-btn {
  background: var(--terra); color: var(--white);
  border: none; cursor: pointer;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.modal-book-btn:hover { background: var(--sea); }

/* Facilities */
.modal-section-title {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--terra);
  font-weight: 500; margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,184,154,0.4);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin-bottom: 28px;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}

.facility-icon {
  width: 28px; height: 28px;
  background: var(--sand);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.modal-note {
  background: var(--sand);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 13.5px;
  color: rgba(42,31,20,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.modal-note strong { color: var(--ink); }

/* Details button on room card */
.room-card-footer-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(201,184,154,0.3);
}

.room-details-btn {
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink);
  font-weight: 400; border: 1.5px solid var(--stone);
  padding: 8px 16px; border-radius: 20px;
  background: none; cursor: pointer;
  font-family: var(--body);
  transition: border-color 0.2s, color 0.2s;
}
.room-details-btn:hover { border-color: var(--terra); color: var(--terra); }

@media (max-width: 640px) {
  .modal { max-height: 95vh; }
  .modal-body { padding: 20px; }
  .facilities-grid { grid-template-columns: 1fr; }
  .modal-header { flex-direction: column; }
  .modal-title { font-size: 26px; }
}

/* ── HAMBURGER MENU ───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Animate to X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(201,184,154,0.3);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(42,31,20,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(201,184,154,0.2);
  }

  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    display: block;
    padding: 14px 32px;
    font-size: 14px;
    opacity: 1;
    color: var(--ink);
  }

  .nav-links .nav-book {
    margin: 12px 32px;
    display: block;
    text-align: center;
    padding: 12px 24px;
  }
}
