:root {
  /* Canonical light theme, per design/STYLE.md (2026-08-07 revision — the
     dark palette was rejected by the client as "gloomy, not pretty").
     --accent is fill-only (buttons, filled circles/avatars, always paired
     with #06070a text); anywhere accent color is used as text, an icon
     glyph, or a border/underline directly on the page, use --accent-text
     instead — raw --accent on --bg is 2.8:1 and fails AA, --accent-text is
     6.0:1. See STYLE.md "Fix 2" for the full rationale. */
  --bg: #faf7f2;
  --bg-elevated: #ffffff;
  --glass: rgba(36,31,26,0.035);
  --glass-border: rgba(36,31,26,0.10);
  --text: #241f1a;
  --text-dim: #6b6459;
  --accent: #f87171;
  --accent-text: #b91c1c;
  --accent-grad: linear-gradient(135deg, #f43f5e 0%, #9f1239 100%);
  --danger: #b45309;
  --success: #047857;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(36,31,26,0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.4em; font-weight: 650; letter-spacing: -0.02em; }
p { color: var(--text-dim); line-height: 1.6; margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; }

.btn-primary {
  background: var(--accent-grad);
  color: #06070a;
  box-shadow: 0 8px 24px rgba(248,113,113,0.3);
}
.btn-primary:hover:not(:disabled) { box-shadow: 0 10px 32px rgba(248,113,113,0.45); }

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover { background: rgba(36,31,26,0.06); }

.btn-lg { padding: 16px 30px; font-size: 17px; }
@media (min-width: 861px) { .btn-lg { padding: 22px 44px; font-size: 20px; } }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  /* --bg at ~85% opacity -- light themes need higher opacity than the old
     dark one to keep page content from showing through and muddying the
     blur. Per design/STYLE.md "Also fix while touching .site-header". */
  background: rgba(250,247,242,0.85);
  border-bottom: 1px solid var(--glass-border);
}
.nav-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo: design/logo-concepts.html Concept A ("Underline Flag") -- the
   client hasn't picked between A/B/C yet; A is used as the safe default
   per design's recommendation (lightest lift, holds up cleanly at 26px).
   Swap for B or C later is an isolated change once the client decides. */
.logo { font-weight: 800; font-size: 26px; letter-spacing: -0.02em; }
.logo .t, .brand-t {
  font-weight: 800;
  color: var(--accent-text);
  position: relative;
  margin-left: 0.02em;
}
.logo .t::after {
  content: "";
  position: absolute;
  left: 8%;
  right: -6%;
  bottom: -0.14em;
  height: 0.09em;
  min-height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--text-dim); font-size: 16px; font-weight: 700; }
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 12px 22px; font-size: 15px; }
@media (min-width: 721px) {
  .nav-wrap { padding: 22px 24px; }
  .logo { font-size: 32px; }
  .nav-links { gap: 36px; }
  .nav-links a { font-size: 18px; }
  .nav-cta { padding: 16px 28px; font-size: 17px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* Hero */
.hero {
  position: relative;
  padding: 100px 24px 80px;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(closest-side, rgba(248,113,113,0.16), rgba(185,28,28,0.09), transparent);
  filter: blur(20px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}
.hero-content { padding-top: 8px; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-photo { order: -1; }
}
.hero-content { position: relative; }
.hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Warm scrim per design/STYLE.md "Hero photo" section -- soft, not a flat
   dark box, and light enough that the photo still reads bright. Reused
   verbatim from the doc's spec rather than a per-section reinvention. */
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(36,31,26,0.55) 0%, rgba(36,31,26,0.05) 55%, transparent 100%);
  pointer-events: none;
}
.rating-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  /* Light frosted chip, not the old dark one -- a dark chip here would
     have silently inherited the new (dark) --text color and become
     unreadable, the exact "inverted contrast" bug the theme swap warns
     about. Explicit light backing + the normal (now correctly dark)
     --text token is the more maintainable fix than hardcoding light text
     onto a chip that no longer matches the rest of the page. */
  background: rgba(250,247,242,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.rating-badge .stars { color: var(--accent-text); letter-spacing: 1px; }
.eyebrow {
  display: inline-block;
  color: var(--accent-text);
  background: rgba(248,113,113,0.14);
  border: 1px solid rgba(185,28,28,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 { font-size: clamp(34px, 6vw, 58px); margin-bottom: 18px; }
.subhead { font-size: 18px; max-width: 560px; margin: 0 0 32px; }
@media (max-width: 860px) { .subhead { margin: 0 auto 32px; } }
.trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 13px;
}
.trust-row .dot { color: var(--accent-text); }

/* Services */
.services, .how, .areas { max-width: 1120px; margin: 0 auto; padding: 60px 24px; }
.services h2, .how h2, .areas h2 { text-align: center; font-size: clamp(26px, 4vw, 36px); margin-bottom: 40px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(185,28,28,0.35); }
.service-icon { color: var(--accent-text); font-size: 20px; margin-bottom: 12px; }
.service-card h3 { font-size: 17px; margin-bottom: 6px; }
.service-card p { font-size: 14px; margin: 0; }

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 720px) { .how-grid { grid-template-columns: 1fr; } }
.how-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #06070a;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 20px;
}
.how-step h3 { font-size: 17px; }
.how-step p { font-size: 14px; }
@media (max-width: 720px) {
  .how-step { padding: 20px; background: none; border: none; }
  .how-num { width: 40px; height: 40px; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
  .how-step h3 { font-size: 17px; margin-bottom: 0; }
  .how-step p { font-size: 14px; line-height: normal; }
}
@media (min-width: 721px) {
  .how-step h3 { font-size: 22px; margin-bottom: 8px; }
  .how-step p { font-size: 17px; line-height: 1.5; }
}

/* Booking */
.booking { padding: 60px 24px 100px; }
.booking-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.progress-track {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-dim);
  flex-shrink: 0;
}
.progress-step span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
}
.progress-step.active span, .progress-step.done span {
  background: var(--accent-grad);
  color: #06070a;
  border-color: transparent;
}
.progress-step.active, .progress-step.done { color: var(--text); }
.progress-line { flex: 1; height: 1px; background: var(--glass-border); margin: 0 8px 18px; }

.booking-step h2 { font-size: 22px; margin-bottom: 18px; }

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.option-tile {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.option-tile strong { font-size: 14px; }
.option-tile span { font-size: 12px; color: var(--text-dim); }
.option-tile:hover { border-color: rgba(185,28,28,0.4); }
.option-tile.selected {
  border-color: var(--accent-text);
  background: rgba(248,113,113,0.08);
}

.field-row { display: flex; gap: 12px; margin-bottom: 16px; }
.field-row > * {
  flex: 1;
  /* Flex items default to min-width: auto (their content's intrinsic min
     width) rather than 0, so without this a wider-intrinsic-width field
     (e.g. a type="tel" input, which browsers tend to size wider by
     default than a plain text input) won't shrink and instead squeezes
     its row-mate. Root-cause fix for the mobile Name/Phone squeeze on
     booking step 3 -- applies to every .field-row (step 1 Bedrooms/
     Bathrooms, step 2 Date/Window, step 3 Name/Phone) since they all
     share the same flexbox setup and the same latent bug. */
  min-width: 0;
}
@media (max-width: 480px) {
  /* min-width: 0 above stops one field from squeezing the other, but at
     real phone-portrait widths (~320-390px) the booking card's inner
     content area only has roughly 200-260px to split between two fields
     -- each one lands around 100-125px, which is technically no longer
     "broken" but is a cramped target for a tel input's placeholder text.
     Stack vertically instead so each field gets the full row width, which
     is the actually-comfortable mobile experience the "mobile-first" bar
     in design/STYLE.md calls for, not just a non-broken one. flex-gap
     applies between rows in column direction too, so this is the only
     change needed -- no separate child margins. */
  .field-row { flex-direction: column; gap: 16px; }
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}
.field-full { margin-bottom: 16px; }
.optional { color: var(--text-dim); font-weight: 400; opacity: 0.7; }

input, select, textarea {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent-text); }
textarea { resize: vertical; }

/* #address is pinned to 16px at every breakpoint, unlike the 14px other
   mobile inputs on this form get (see the `input, select, textarea` rule
   above and the min-width:861px override below). iOS Safari zooms the
   whole page in on focus for any input with a computed font-size under
   16px, which rescales the visual viewport out from under anything
   positioned relative to the page -- a very plausible unifying explanation
   for the "dropdown appears blank / in the wrong place" reports across
   the last two rounds of investigating this field specifically (see
   .address-suggestions below and initAddressAutocomplete() in script.js).
   Scoped to just this field rather than changing the site-wide mobile
   input font-size, which is a design-system call outside this fix's
   scope -- flagged for design to consider applying 16px to mobile inputs
   generally, since the same zoom mechanism applies to all of them, not
   just this one. */
#address { font-size: 16px; }

.address-field { position: relative; }

/* #address-suggestions: CleanT's own plain-DOM dropdown for address
   autocomplete predictions (see initAddressAutocomplete() in script.js,
   which fetches predictions via google.maps.places.AutocompleteSuggestion
   -- a data-only API with no UI attached). This replaces an earlier
   google.maps.places.PlaceAutocompleteElement widget, whose suggestions
   dropdown rendered inside a CLOSED shadow root: no ::part() hook, no way
   to inspect or influence its internal positioning/rendering. Two rounds
   of workarounds aimed at a rendering bug inside that black box failed
   real mobile-Safari testing. This dropdown is positioned with a plain
   `position: absolute` against `.address-field`'s `position: relative`
   directly above -- the same standard, well-tested pattern as any other
   on-page dropdown/tooltip, not a reimplementation of whatever the widget
   was doing internally. It's an ordinary part of the page's own layout
   (no closed shadow root, no third-party rendering pipeline), so it
   scales and repositions correctly under mobile Safari's focus-zoom and
   keyboard-resize behavior the same way every other list on this page
   already does -- there's no separate "make sure this dropdown behaves"
   problem to solve on top of "make sure this page behaves at ~375px",
   which the mobile-first bar in design/STYLE.md already requires. */
.address-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--bg-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  max-height: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.address-suggestions[hidden] { display: none; }
.address-suggestion {
  padding: 10px 12px;
  border-radius: calc(var(--radius-sm) - 4px);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text);
}
.address-suggestion .suggestion-secondary {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
}
.address-suggestion:hover,
.address-suggestion.active {
  background: rgba(248,113,113,0.08);
}

.price-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(185,28,28,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.price-label { font-size: 13px; color: var(--text-dim); }
.price-value { font-size: 20px; font-weight: 700; color: var(--accent-text); }

.step-nav { display: flex; gap: 10px; }
.step-nav .btn-primary { flex: 1; }
.step-nav .btn-ghost { flex: 0 0 auto; }

/* Booking card reads too small/cramped on a big desktop screen relative
   to everything else on the page -- scale it up for desktop only, mobile
   keeps its existing (already-good, per client) compact sizing. */
@media (min-width: 861px) {
  .booking-card { max-width: 720px; padding: 48px; }
  .progress-track { margin-bottom: 40px; }
  .progress-step { font-size: 13px; gap: 8px; }
  .progress-step span { width: 34px; height: 34px; font-size: 15px; }
  .progress-line { margin: 0 10px 22px; }
  .booking-step h2 { font-size: 28px; margin-bottom: 24px; }
  .option-grid { gap: 14px; margin-bottom: 26px; }
  .option-tile { padding: 22px; }
  .option-tile strong { font-size: 17px; }
  .option-tile span { font-size: 14px; }
  .field-row label { font-size: 14px; }
  input, select, textarea { padding: 14px 16px; font-size: 16px; }
  .address-suggestion { font-size: 15px; }
  .price-preview { padding: 20px 22px; margin-bottom: 26px; }
  .price-label { font-size: 15px; }
  .price-value { font-size: 26px; }
  .booking-card .btn { padding: 18px 30px; font-size: 17px; }
}

.summary-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 20px;
  font-size: 14px;
}
.summary-card .row { display: flex; justify-content: space-between; padding: 6px 0; }
.summary-card .row span:first-child { color: var(--text-dim); }
.summary-card .row.total { border-top: 1px solid var(--glass-border); margin-top: 6px; padding-top: 12px; font-weight: 700; font-size: 16px; }

.mock-payment, .payment-section { margin-bottom: 24px; }
.mock-payment-label, .payment-label { font-size: 13px; color: var(--text-dim); margin-bottom: 8px; }
.mock-card-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--glass);
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  font-size: 13px;
  color: var(--text-dim);
}

/* Stripe Payment Element mounts inside #payment-element. Stripe renders its
   own iframe-based UI, styled to inherit the page's font; the outer
   container below just gives it the same card treatment as other form
   surfaces on the page so it doesn't look bolted on. */
#payment-element {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  min-height: 44px;
}
.payment-message {
  font-size: 13px;
  color: var(--text-dim);
  margin: 10px 0 0;
}
.payment-message.error { color: var(--danger); }

.availability-note {
  font-size: 12px;
  color: var(--text-dim);
  margin: -8px 0 16px;
}
.availability-note.warning { color: var(--danger); }

.form-error {
  font-size: 13px;
  color: var(--danger);
  margin: -8px 0 12px;
}

.confirm-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #06070a;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.confirm-sub { text-align: center; margin-bottom: 20px; }
.booking-step[data-step-panel="done"] h2 { text-align: center; }

/* Stat banner */
.stat-banner {
  position: relative;
  height: 220px;
  margin: 60px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 85%; }
.stat-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* No scrim -- client wants the photo unobstructed. Text colors (bright
     red / solid white, set above) carry their own contrast instead. */
  background: none;
}
.stat-banner-content {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 12px;
  /* Explicit light color, NOT var(--text) -- this text sits directly on a
     dark photo scrim regardless of overall site theme, so it must stay
     light even though --text is now dark elsewhere on the page. Letting
     this inherit --text was exactly the "fine on dark bg, invisible on
     light" bug: the scrim didn't get lighter enough to read dark text,
     but --text flipped anyway. */
  color: #faf5ef;
}
.stat-banner-content strong {
  font-size: 44px;
  font-weight: 750;
  color: #ff3b3b;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.stat-banner-content span {
  font-size: 28px;
  font-weight: 650;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
@media (max-width: 720px) { .stat-banner-content span { font-size: 16px; font-weight: 400; } }

/* Reviews */
.reviews { max-width: 1120px; margin: 0 auto; padding: 60px 24px; }
.reviews-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.reviews-head h2 { margin: 0; font-size: clamp(26px, 4vw, 36px); }
.reviews-agg { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-dim); }
.reviews-agg .stars { color: var(--accent-text); font-size: 16px; letter-spacing: 1px; }
.reviews-agg strong { color: var(--text); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 720px;
  margin: 0 auto;
  gap: 16px;
}
@media (max-width: 860px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 22px;
}
.review-card .stars { color: var(--accent-text); font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.review-card p { color: var(--text); font-size: 14px; margin-bottom: 16px; }
.review-who { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #06070a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-who span { font-size: 13px; color: var(--text-dim); }
.review-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  opacity: 0.6;
  margin-top: 24px;
}

/* Areas */
.areas {
  position: relative;
  text-align: center;
  padding: 0;
  max-width: none;
  margin: 60px 0 0;
  overflow: hidden;
}
.areas-photo {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.areas-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.areas-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Warm dark scrim, same family/reduced opacity as the hero scrim and
     stat-banner overlay -- keeps the photo itself moody without needing
     it to carry text contrast (that's .areas-content's job now, below). */
  background: linear-gradient(180deg, rgba(36,31,26,0.15) 0%, rgba(36,31,26,0.38) 100%);
}
.areas-content {
  position: relative;
  max-width: 620px;
  margin: 24px;
  padding: 32px 36px;
  /* Light frosted card instead of the old dark panel -- .areas-content h2/p
     use the normal --text/--text-dim tokens below them, which are now dark;
     a dark panel here would have reproduced the same "dark text on a dark
     surface" bug the stat-banner overlay had. A light card is also the more
     consistent fix: it lets this content correctly use the page's real
     text tokens instead of a one-off hardcoded light-text override. */
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.areas-content h2 { font-size: clamp(26px, 4vw, 36px); }
.areas-content p { max-width: 520px; margin: 0 auto; }

/* Footer */
.site-footer { border-top: 1px solid var(--glass-border); padding: 40px 24px; }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-links { display: flex; gap: 20px; font-size: 13px; color: var(--text-dim); }
.footer-links a:hover { color: var(--text); }
.footer-note { width: 100%; font-size: 12px; color: var(--text-dim); opacity: 0.6; margin: 8px 0 0; }

/* Legal/content pages (terms, privacy, contact) -- plain readable prose,
   not the app-like booking-flow vocabulary. Reuses the same tokens as
   everything else so it stays on-brand without needing its own palette. */
.legal-page { max-width: 720px; margin: 0 auto; padding: 60px 24px 100px; }
.legal-page h1 { font-size: clamp(28px, 5vw, 40px); margin-bottom: 10px; }
.legal-page .legal-meta { color: var(--text-dim); font-size: 13px; margin-bottom: 40px; }
.legal-page h2 { font-size: 20px; margin: 40px 0 12px; }
.legal-page p { font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.legal-page ul { margin: 0 0 16px; padding-left: 20px; }
.legal-page li { font-size: 15px; line-height: 1.7; color: var(--text-dim); margin-bottom: 8px; }
.legal-page a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 2px; }
.legal-page a:hover { opacity: 0.75; }
.legal-page em { color: var(--text-dim); }
.legal-page hr { border: none; border-top: 1px solid var(--glass-border); margin: 40px 0 24px; }
.legal-page .legal-footer-note { font-size: 13px; color: var(--text-dim); font-style: italic; }
