/* ==========================================================================
   Cristo Rey Hostal Campestre — Stylesheet
   ========================================================================== */

:root {
  --forest-900: #12241b;
  --forest-800: #16281f;
  --forest-700: #1d3527;
  --forest-600: #274733;
  --cream-100: #faf7f0;
  --cream-200: #f4efe4;
  --cream-300: #f0e6d6;
  --sand-100: #f3e8da;
  --gold-500: #c9974a;
  --gold-600: #b3823a;
  --gold-700: #96692c;
  --ink-900: #241f1a;
  --ink-700: #43392f;
  --ink-500: #6f6357;
  --line-200: #e6dbc9;
  --line-300: #d9cbb2;
  --white: #ffffff;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-w: 1240px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(18, 36, 27, 0.08);
  --shadow-md: 0 12px 40px rgba(18, 36, 27, 0.14);
  --shadow-lg: 0 24px 70px rgba(18, 36, 27, 0.22);
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; font-weight: 600; color: var(--forest-800); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; font-size: inherit; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--forest-800); color: var(--cream-100); padding: 12px 18px;
  border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2.5px solid var(--gold-500);
  outline-offset: 2px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 10px;
  display: block;
}
.eyebrow--light { color: var(--cream-200); opacity: 0.9; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { flex-shrink: 0; }

.btn--primary { background: var(--forest-800); color: var(--cream-100); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--forest-700); box-shadow: var(--shadow-md); }

.btn--gold { background: var(--gold-500); color: var(--forest-900); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-600); box-shadow: var(--shadow-md); }

.btn--forest { background: var(--forest-800); color: var(--cream-100); }
.btn--forest:hover { background: var(--forest-700); }

.btn--forest-outline { background: transparent; color: var(--forest-800); border-color: var(--forest-800); }
.btn--forest-outline:hover { background: var(--forest-800); color: var(--cream-100); }

.btn--ghost { background: var(--white); color: var(--forest-800); border-color: var(--line-300); }
.btn--ghost:hover { border-color: var(--forest-800); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--forest-900);
  color: var(--cream-200);
  font-size: 0.8rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 28px;
  gap: 16px;
}
.topbar__location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: 0.9;
}
.topbar__location:hover { opacity: 1; }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__label { opacity: 0.75; }
.topbar__right a { opacity: 0.85; display: inline-flex; }
.topbar__right a:hover { opacity: 1; color: var(--gold-500); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-200);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--forest-800); }
.logo__mark { color: var(--forest-800); flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__title { font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; letter-spacing: 0.01em; }
.logo__subtitle { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-500); }
.logo--light { color: var(--cream-100); }
.logo--light .logo__mark { color: var(--gold-500); }
.logo--light .logo__subtitle { color: rgba(250, 247, 240, 0.6); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 2px;
}
.nav a:hover { color: var(--forest-800); }
.nav a.is-active { color: var(--gold-600); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.site-header__right { display: flex; align-items: center; gap: 16px; }

.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border: 1.5px solid var(--forest-800);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest-800);
}
.whatsapp-pill:hover { background: var(--forest-800); color: var(--cream-100); }

.lang-switch button {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; font-weight: 600; font-size: 0.88rem; color: var(--ink-700);
  padding: 6px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: none; border: none;
  padding: 0;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--forest-800); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: visible;
  padding-bottom: 74px;
}
.hero__media {
  position: absolute;
  inset: 0;
  bottom: 74px;
  overflow: hidden;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(18,36,27,0.86) 0%, rgba(18,36,27,0.55) 38%, rgba(18,36,27,0.08) 65%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 90px;
  max-width: 640px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.08;
  color: var(--cream-100);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero__lede {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--cream-200);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Booking bar ---------- */
.booking-bar {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.booking-bar__field { flex: 1 1 150px; padding: 6px 18px; }
.booking-bar__field label { display: block; font-size: 0.74rem; font-weight: 600; color: var(--ink-500); margin-bottom: 4px; }
.booking-bar__field input, .booking-bar__field select {
  border: none; background: none; padding: 0; width: 100%;
  font-size: 0.94rem; color: var(--ink-900); font-weight: 500;
}
.booking-bar__field input:focus, .booking-bar__field select:focus { outline: none; }
.booking-bar__field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236f6357' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; padding-right: 16px; }
.booking-bar__divider { width: 1px; align-self: stretch; background: var(--line-200); margin: 6px 0; }
.booking-bar__submit { flex-shrink: 0; margin-left: 8px; }

@media (max-width: 720px) {
  .booking-bar { flex-direction: column; align-items: stretch; border-radius: var(--radius-md); }
  .booking-bar__divider { display: none; }
  .booking-bar__submit { margin-left: 0; width: 100%; justify-content: center; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--cream-100); padding: 56px 0 44px; }
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-item svg { color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; font-size: 0.98rem; color: var(--forest-800); margin-bottom: 3px; }
.trust-item span { font-size: 0.86rem; color: var(--ink-500); }

/* ---------- Rooms ---------- */
.rooms { padding: 30px 0 96px; }
.rooms__layout { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.rooms__intro h2 { font-size: 2.1rem; line-height: 1.2; margin-bottom: 16px; }
.rooms__intro p { color: var(--ink-500); line-height: 1.65; margin-bottom: 26px; }

.rooms__carousel { position: relative; }
.rooms__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border: 1px solid var(--line-200);
}
.room-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.room-card__media { aspect-ratio: 4/3; overflow: hidden; }
.room-card__media img { width: 100%; height: 100%; object-fit: cover; }
.room-card__body { padding: 20px 22px 24px; }
.room-card__body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.room-card__price { color: var(--gold-700); font-weight: 600; font-size: 0.94rem; margin-bottom: 14px; }
.room-card__meta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 16px; padding-top: 14px; border-top: 1px solid var(--line-200); }
.room-card__meta li { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--ink-500); }
.room-card__meta svg { color: var(--ink-500); }
.room-card__link { font-size: 0.88rem; font-weight: 600; color: var(--forest-800); }
.room-card__link:hover { color: var(--gold-600); }

.rooms__nav { display: none; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.rooms__arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line-300); background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--forest-800);
}
.rooms__arrow:hover { background: var(--forest-800); color: var(--cream-100); border-color: var(--forest-800); }

@media (max-width: 980px) {
  .rooms__layout { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 760px) {
  .rooms__nav { display: flex; }
  .rooms__track { grid-template-columns: repeat(3, minmax(260px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; }
  .room-card { scroll-snap-align: start; }
}

/* ---------- Why choose ---------- */
.why { background: var(--sand-100); padding: 64px 0; }
.why__heading { text-align: center; font-size: 1.7rem; margin-bottom: 46px; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.why-item { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.why-item svg { color: var(--forest-800); }
.why-item strong { font-size: 0.96rem; color: var(--forest-800); }
.why-item span { font-size: 0.82rem; color: var(--ink-500); }

@media (max-width: 900px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
}

/* ---------- Location ---------- */
.location {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.62fr;
  align-items: stretch;
  min-height: 560px;
  position: relative;
}
.location__media { position: relative; overflow: hidden; }
.location__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.location__content {
  background: var(--cream-100);
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location__content h2 { font-size: 2rem; line-height: 1.22; margin-bottom: 18px; }
.location__content > p { color: var(--ink-500); line-height: 1.65; margin-bottom: 22px; max-width: 440px; }
.location__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.location__list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--ink-700); }
.location__list svg { color: var(--gold-600); flex-shrink: 0; }
.location__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.location__photo {
  position: relative;
  margin: 28px 28px 28px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.location__photo img { width: 100%; height: 100%; object-fit: cover; }
.location__photo figcaption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(18, 36, 27, 0.75);
  color: var(--cream-100);
  font-size: 0.76rem;
  padding: 7px 12px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
  backdrop-filter: blur(4px);
}

@media (max-width: 1080px) {
  .location { grid-template-columns: 1fr; min-height: 0; }
  .location__media { height: 340px; }
  .location__photo { grid-row: 3; margin: 0 28px 40px; height: 260px; }
  .location__content { padding: 48px 28px; }
}

/* ---------- Reviews ---------- */
.reviews { padding: 88px 0 100px; text-align: center; }
.reviews h2 { font-size: 1.9rem; margin-bottom: 44px; }
.reviews__wrap { display: flex; align-items: center; justify-content: center; gap: 18px; }
.reviews__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 980px; flex: 1; }
.review-card {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  text-align: left;
  margin: 0;
}
.review-card__stars { color: var(--gold-500); letter-spacing: 2px; font-size: 0.92rem; margin-bottom: 12px; }
.review-card p { font-size: 0.95rem; line-height: 1.55; color: var(--ink-700); margin-bottom: 20px; font-style: italic; }
.review-card footer { display: flex; align-items: center; gap: 10px; }
.review-card__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--forest-800); color: var(--cream-100);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  flex-shrink: 0;
}
.review-card cite { font-style: normal; font-size: 0.86rem; font-weight: 600; color: var(--forest-800); }

.reviews__arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--line-300); background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--forest-800); flex-shrink: 0;
}
.reviews__arrow:hover { background: var(--forest-800); color: var(--cream-100); border-color: var(--forest-800); }

@media (max-width: 900px) {
  .reviews__track { grid-template-columns: 1fr; }
  .reviews__wrap { align-items: flex-start; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-900); color: var(--cream-200); padding-top: 68px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.12);
}
.footer-brand p { margin: 18px 0 20px; font-size: 0.9rem; line-height: 1.6; color: rgba(250, 247, 240, 0.7); max-width: 340px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(250, 247, 240, 0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(250, 247, 240, 0.85);
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--forest-900); }

.site-footer h3 { font-family: var(--font-display); color: var(--cream-100); font-size: 1.12rem; margin-bottom: 14px; font-weight: 600; }
.footer-newsletter p { font-size: 0.88rem; color: rgba(250, 247, 240, 0.7); line-height: 1.55; margin-bottom: 18px; max-width: 320px; }
.footer-newsletter__form { display: flex; gap: 10px; }
.footer-newsletter__form input {
  flex: 1; min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(250, 247, 240, 0.25);
  background: rgba(250, 247, 240, 0.06);
  color: var(--cream-100);
  font-size: 0.88rem;
}
.footer-newsletter__form input::placeholder { color: rgba(250, 247, 240, 0.5); }
.footer-newsletter__form input:focus { outline: none; border-color: var(--gold-500); }
.footer-newsletter__note { margin-top: 10px; font-size: 0.82rem; color: var(--gold-500); min-height: 1em; }

.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: rgba(250, 247, 240, 0.82); }
.footer-contact svg { color: var(--gold-500); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--gold-500); }

.site-footer__bottom { padding: 22px 0; }
.site-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 0.82rem; color: rgba(250, 247, 240, 0.6); }
.site-footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer__legal a:hover { color: var(--gold-500); }

@media (max-width: 860px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Floating action buttons ---------- */
.fab-stack {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fab {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 0.6rem;
  font-weight: 700;
  gap: 1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab:hover { transform: scale(1.06); box-shadow: var(--shadow-lg); }
.fab--whatsapp { background: var(--forest-800); color: var(--cream-100); }
.fab--call { background: var(--gold-500); color: var(--forest-900); }
.fab span { font-size: 0.56rem; letter-spacing: 0.02em; }

@media (max-width: 600px) {
  .fab-stack { right: 16px; bottom: 20px; }
  .fab { width: 52px; height: 52px; }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 1080px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--cream-100);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 28px 20px;
    border-bottom: 1px solid var(--line-200);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line-200); }
  .nav a.is-active::after { display: none; }
  .whatsapp-pill span br { display: none; }
  .whatsapp-pill { padding: 8px 14px; }
  .menu-toggle { display: flex; }
}
@media (max-width: 560px) {
  .whatsapp-pill span { display: none; }
  .whatsapp-pill { width: 40px; height: 40px; padding: 0; justify-content: center; border-radius: 50%; }
}

/* ---------- Responsive base ---------- */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .hero { min-height: 560px; padding-bottom: 60px; }
  .hero__content { padding-top: 40px; padding-bottom: 60px; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 26px 20px; }
}
@media (max-width: 640px) {
  .topbar__location span, .topbar__label { display: none; }
  .topbar__inner { justify-content: flex-end; }
}

/* ---------- Booking + payment modal ---------- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.booking-modal.is-open { display: block; }
.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 36, 27, 0.55);
  backdrop-filter: blur(2px);
}
.booking-modal__dialog {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: 6vh auto;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--cream-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px;
}
@media (max-width: 560px) {
  .booking-modal__dialog { margin: 0; max-height: 100vh; height: 100%; border-radius: 0; }
}
.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--cream-200);
  color: var(--forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-modal__close:hover { background: var(--line-200); }
.booking-modal__step h3 { font-size: 1.5rem; margin: 4px 0 18px; }
.booking-modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.booking-modal__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-500);
}
.booking-modal__label input,
.booking-modal__label select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line-300);
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  color: var(--ink-900);
  background: var(--white);
}
.booking-modal__label input:focus,
.booking-modal__label select:focus { outline: none; border-color: var(--gold-500); }
.booking-modal__error {
  color: #a3392b;
  background: #fbe8e4;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 0.86rem;
  margin-bottom: 14px;
}
.booking-modal__note { font-size: 0.9rem; color: var(--ink-700); margin-bottom: 16px; }
.booking-modal__summary {
  background: var(--white);
  border: 1px solid var(--line-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
}
.booking-modal__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--ink-700);
  padding: 4px 0;
}
.booking-modal__row--total {
  border-top: 1px solid var(--line-200);
  margin-top: 6px;
  padding-top: 10px;
  font-weight: 700;
  color: var(--forest-800);
  font-size: 1.05rem;
}
.booking-modal__step .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.booking-modal__step .btn:last-child { margin-bottom: 0; }
