@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --ink: #10211d;
  --forest: #143f36;
  --forest-2: #0d312a;
  --moss: #9ec4a6;
  --lime: #d8eb9b;
  --cream: #f6f2e8;
  --paper: #fffdf7;
  --coral: #ef745f;
  --line: rgba(16, 33, 29, .16);
  --muted: #61716b;
  --shadow: 0 18px 60px rgba(13, 49, 42, .12);
  --radius: 24px;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; right: 0; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 28px; color: white; background: linear-gradient(to bottom, rgba(4, 20, 17, .72), transparent); transition: background .25s, backdrop-filter .25s; }
.site-header.scrolled { background: rgba(12, 41, 35, .92); backdrop-filter: blur(18px); }
.brand { display: flex; gap: 10px; align-items: center; font-weight: 700; text-decoration: none; }
.brand-mark { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--lime); color: var(--forest); font-family: var(--serif); font-size: 20px; font-style: italic; }
.site-header nav { display: flex; gap: 28px; font-size: 14px; }
.site-header nav a { padding: 12px 4px; text-decoration: none; opacity: .84; }
.site-header nav a:hover { opacity: 1; }

.hero { position: relative; min-height: 760px; height: 92vh; color: white; overflow: hidden; background: var(--forest); }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; transform: scale(1.02); }
.hero-shade { background: linear-gradient(90deg, rgba(4, 27, 23, .93) 0%, rgba(7, 31, 26, .72) 42%, rgba(7, 31, 26, .12) 72%), linear-gradient(0deg, rgba(7, 31, 26, .74), transparent 48%); }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; padding-bottom: 62px; padding-top: 130px; }
.eyebrow { margin: 0 0 16px; color: var(--lime); font-size: 12px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow.dark { color: #4b6e62; }
.hero h1 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(56px, 7.4vw, 104px); font-weight: 400; line-height: .87; letter-spacing: -.045em; }
.hero h1 em { color: var(--lime); font-weight: 400; }
.lede { max-width: 650px; margin: 26px 0 0; color: rgba(255,255,255,.84); font-size: 18px; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 700; text-decoration: none; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: var(--forest); }
.button-ghost { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.07); color: white; backdrop-filter: blur(10px); }
.button-dark { background: var(--forest); color: white; }
.button-outline { border-color: var(--line); background: transparent; color: var(--forest); }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.72); font-size: 13px; }
.trust-row b { color: white; }

.verdict-band { background: var(--forest); color: white; padding: 74px 0; }
.verdict-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.verdict-grid h2 { max-width: 430px; margin: 0; font: 400 clamp(40px, 5vw, 64px)/.98 var(--serif); }
.verdict-list { border-top: 1px solid rgba(255,255,255,.2); }
.verdict-list a { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; padding: 17px 2px; border-bottom: 1px solid rgba(255,255,255,.2); text-decoration: none; transition: background .2s, padding .2s; }
.verdict-list a:hover { background: rgba(255,255,255,.06); padding-inline: 12px; }
.verdict-list .rank { color: var(--lime); font: italic 20px var(--serif); }
.verdict-list b, .verdict-list small { display: block; }
.verdict-list small { margin-top: 2px; color: rgba(255,255,255,.6); }

.section { padding-top: 112px; padding-bottom: 112px; }
.section-tint { background: var(--cream); }
.section-heading { margin-bottom: 42px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.section-heading h2 { margin: 0; font: 400 clamp(45px, 6vw, 74px)/.94 var(--serif); letter-spacing: -.025em; }
.section-heading > p { max-width: 480px; margin: 0 0 5px; color: var(--muted); }

.priority-picker { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; }
.priority { min-height: 44px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--ink); font: 600 13px var(--sans); cursor: pointer; }
.priority:hover, .priority.active { border-color: var(--forest); background: var(--forest); color: white; }
.recommendation { display: grid; grid-template-columns: 56px 1fr auto; gap: 18px; align-items: center; min-height: 128px; margin: 20px 0 34px; padding: 24px 28px; border-radius: var(--radius); background: var(--lime); transition: opacity .18s, transform .18s; }
.recommendation.changing { opacity: .2; transform: translateY(4px); }
.recommendation-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--forest); color: var(--lime); font-size: 25px; }
.recommendation h3 { margin: 2px 0 2px; font: 400 30px var(--serif); }
.recommendation p { margin: 0; }
.recommendation-kicker { color: #446558; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.recommendation > a { font-weight: 700; text-decoration: none; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 14px 40px rgba(13,49,42,.06); }
table { width: 100%; min-width: 930px; border-collapse: collapse; font-size: 14px; }
th, td { padding: 18px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
thead th { color: var(--muted); background: #f4f7f4; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
tbody th a { font-size: 15px; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
.mini-label { display: block; width: max-content; margin-top: 6px; padding: 3px 7px; border-radius: 5px; background: #edf2ed; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.mini-label.best { background: var(--lime); color: var(--forest); }
.status { white-space: nowrap; font-weight: 700; }
.status::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #2da77a; }
.status.private::before { background: var(--coral); }
.micro-note { margin: 13px 4px 0; color: var(--muted); font-size: 11px; }

.location-section { background: #e8eee7; }
.map-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; align-items: stretch; }
.map-panel { position: relative; min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 14px 44px rgba(13,49,42,.08); }
.map-toolbar { position: absolute; z-index: 500; top: 26px; left: 26px; display: flex; gap: 6px; padding: 5px; border: 1px solid rgba(16,33,29,.12); border-radius: 999px; background: rgba(255,253,247,.94); box-shadow: 0 8px 25px rgba(13,49,42,.13); backdrop-filter: blur(10px); }
.map-filter { min-height: 39px; padding: 0 14px; border: 0; border-radius: 999px; background: transparent; color: var(--forest); font: 700 11px var(--sans); cursor: pointer; }
.map-filter.active { background: var(--forest); color: white; }
#location-map { height: 590px; border-radius: 16px; background: #dfe8df; }
.map-legend { display: flex; flex-wrap: wrap; gap: 9px 18px; padding: 12px 4px 2px; color: var(--muted); font-size: 11px; }
.map-legend span { display: flex; align-items: center; gap: 6px; }
.legend-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--forest); }
.legend-dot.fit { background: #2f9e6f; }
.legend-dot.outside { background: var(--coral); }
.leaflet-container { font-family: var(--sans); }
.leaflet-control-attribution { font-size: 8px !important; }
.spa-div-icon { background: none; border: 0; }
.spa-marker { display: grid; place-items: center; width: 34px; height: 34px; border: 3px solid white; border-radius: 50% 50% 50% 10%; background: var(--forest); color: white; box-shadow: 0 4px 15px rgba(13,49,42,.34); font: 700 12px var(--sans); transform: rotate(-45deg); }
.spa-marker span { transform: rotate(45deg); }
.spa-marker.fit { background: #2f9e6f; }
.spa-marker.outside { background: var(--coral); }
.spa-marker.center { width: 27px; height: 27px; border-radius: 50%; background: var(--forest); }
.map-popup { min-width: 190px; padding: 2px; }
.map-popup b, .map-popup small, .map-popup span { display: block; }
.map-popup b { font: 400 21px var(--serif); }
.map-popup small { margin-top: 2px; color: var(--muted); }
.map-popup span { margin-top: 8px; color: var(--forest); font-weight: 700; }
.map-popup a { display: inline-block; margin-top: 8px; color: var(--forest); font-size: 12px; font-weight: 700; }
.walk-zone { stroke-dasharray: 5 8; }
.location-list { display: flex; flex-direction: column; gap: 8px; }
.location-callout { display: flex; align-items: center; gap: 16px; min-height: 85px; padding: 17px 20px; border-radius: 18px; background: var(--forest); color: white; }
.location-callout span { flex: 0 0 auto; font: italic 36px/1 var(--serif); color: var(--lime); }
.location-callout p { margin: 0; color: rgba(255,255,255,.78); font-size: 12px; }
.location-row { display: grid; grid-template-columns: 38px 1fr auto; gap: 12px; align-items: center; width: 100%; min-height: 78px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--paper); color: var(--ink); text-align: left; cursor: pointer; transition: border-color .2s, transform .2s, box-shadow .2s; }
.location-row:hover, .location-row:focus-visible { transform: translateY(-2px); border-color: #2f9e6f; box-shadow: 0 8px 22px rgba(13,49,42,.09); outline: none; }
.location-row.outside { opacity: .68; }
.location-row.outside:hover, .location-row.outside:focus-visible { opacity: 1; border-color: var(--coral); }
.location-pin { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; background: #d8efdf; color: #19714d; font-weight: 700; }
.location-row.outside .location-pin { background: #ffe5df; color: #b64e3e; }
.location-row b, .location-row small, .location-row strong { display: block; }
.location-row b { font-size: 14px; }
.location-row small { color: var(--muted); font-size: 11px; font-weight: 500; }
.location-row strong { color: var(--forest); font: 400 23px/1 var(--serif); text-align: right; }
.location-row strong small { margin-top: 4px; text-align: right; }
.central-verdict { margin-top: auto; padding: 19px; border: 1px solid rgba(239,116,95,.32); border-radius: 16px; background: #fff4ef; }
.central-verdict .eyebrow { margin-bottom: 8px; }
.central-verdict > p:not(.eyebrow) { margin: 0; color: #485b54; font-size: 12px; }
.central-verdict > div { display: flex; gap: 16px; margin-top: 13px; }
.central-verdict a { color: var(--forest); font-size: 11px; font-weight: 700; }
.map-note { margin-top: 15px; }

.spa-card { display: grid; grid-template-columns: .95fr 1.05fr; gap: 0; margin: 0 0 82px; border-radius: 30px; overflow: hidden; background: var(--paper); box-shadow: var(--shadow); }
.spa-card:last-child { margin-bottom: 0; }
.spa-card.reverse .gallery { order: 2; }
.spa-card.reverse .spa-content { order: 1; }
.gallery { position: relative; min-height: 720px; background: #203a34; overflow: hidden; }
.gallery-main { width: 100%; height: 100%; object-fit: cover; transition: opacity .18s, transform .35s; }
.gallery-main.swapping { opacity: .2; transform: scale(1.02); }
.gallery-side { position: absolute; z-index: 2; left: 18px; bottom: 18px; display: flex; gap: 8px; }
.gallery-thumb { width: 68px; height: 54px; padding: 0; border: 2px solid transparent; border-radius: 9px; overflow: hidden; opacity: .68; cursor: pointer; background: none; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--lime); opacity: 1; }
.expand-image { position: absolute; z-index: 2; top: 18px; right: 18px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(10,35,29,.8); color: white; font-size: 18px; cursor: pointer; backdrop-filter: blur(8px); }
.photo-credit { position: absolute; right: 18px; bottom: 21px; color: white; font-size: 11px; text-shadow: 0 1px 8px #000; }
.spa-content { padding: 42px 42px 38px; }
.spa-title-row { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.spa-title-row h3 { max-width: 420px; margin: 0; font: 400 clamp(37px, 4vw, 53px)/.96 var(--serif); }
.score-ring { flex: 0 0 auto; display: grid; place-items: center; width: 68px; height: 68px; border: 1px solid var(--line); border-radius: 50%; }
.score-ring span, .score-ring small { display: block; text-align: center; }
.score-ring span { font: 400 24px/1 var(--serif); }
.score-ring small { color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.spa-summary { margin: 22px 0; color: #42544e; font-size: 16px; }
.policy-callout { display: grid; grid-template-columns: 34px 1fr; gap: 11px; padding: 15px 16px; border-radius: 13px; background: #e3f2df; }
.policy-callout > span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #2f8e69; color: white; font-weight: 700; }
.policy-callout b, .policy-callout small { display: block; }
.policy-callout small { margin-top: 2px; color: #4b625a; line-height: 1.45; }
.private-callout { background: #ffe7df; }
.private-callout > span { background: var(--coral); }
.fact-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 22px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.fact-grid > div { min-height: 90px; padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-grid small, .fact-grid b, .fact-grid span { display: block; }
.fact-grid small { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.fact-grid b { margin: 4px 0 2px; }
.fact-grid span { color: var(--muted); font-size: 11px; }
.details-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.details-columns h4 { margin: 0 0 8px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
ul { margin: 0; padding-left: 18px; }
li { margin: 0 0 7px; color: #4a5d56; font-size: 13px; }
ul.caution li::marker { color: var(--coral); }
.review-card { display: grid; grid-template-columns: 120px 1fr; gap: 14px 20px; margin-top: 24px; padding: 20px; border-radius: 15px; background: #f1ede4; }
.review-card > div { border-right: 1px solid var(--line); }
.review-card .rating { display: block; font: 400 31px var(--serif); }
.review-card small { color: var(--muted); font-size: 9px; }
.review-card p { margin: 0; color: #46564f; font-size: 12px; }
.review-card a { grid-column: 2; width: max-content; color: var(--forest); font-size: 11px; font-weight: 700; }
.action-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 22px; }
.action-row .button { min-height: 42px; padding-inline: 17px; font-size: 11px; }
.text-link { margin-left: 4px; font-size: 11px; font-weight: 700; }

.review-method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.method-card { min-height: 280px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.method-number { color: var(--forest); font: italic 54px/1 var(--serif); }
.method-card h3 { margin: 20px 0 9px; font: 400 24px/1 var(--serif); }
.method-card p { color: var(--muted); font-size: 12px; }
.confidence { display: inline-block; margin-top: 12px; padding: 5px 9px; border-radius: 999px; background: #e4f1df; color: var(--forest); font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.confidence.low { background: #fff0cf; }

.booking-section { background: var(--forest); color: white; }
.booking-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.booking-grid h2 { margin: 0; font: 400 clamp(45px, 6vw, 72px)/.95 var(--serif); }
.booking-grid ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.booking-grid li { display: grid; grid-template-columns: 55px 1fr; gap: 14px; margin: 0; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); color: white; }
.booking-grid li > span { color: var(--lime); font: italic 20px var(--serif); }
.booking-grid li p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; }
.booking-grid li b { color: white; }

.methodology { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.methodology > div { min-height: 180px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; }
.methodology h3 { margin: 0 0 8px; font: 400 25px var(--serif); }
.methodology p { margin: 0; color: var(--muted); font-size: 13px; }
.sources { margin-top: 18px; border: 1px solid var(--line); border-radius: 15px; background: #f8f5ed; }
.sources summary { padding: 18px 20px; font-weight: 700; cursor: pointer; }
.source-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; padding: 0 20px 24px; }
.source-columns h4 { margin: 0 0 10px; }
.source-columns a { display: block; margin-bottom: 7px; color: var(--forest); font-size: 12px; }

footer { padding: 80px 0 22px; background: #0c2f28; color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr .8fr auto; gap: 55px; align-items: center; }
.footer-grid h2 { max-width: 520px; margin: 14px 0 0; font: 400 clamp(38px, 5vw, 62px)/.96 var(--serif); }
.footer-grid p { margin: 0 0 8px; color: rgba(255,255,255,.55); font-size: 12px; }
.footer-grid b { display: block; margin-bottom: 4px; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 60px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.5); font-size: 10px; }

#lightbox { width: min(1050px, 92vw); max-width: none; padding: 0; border: 0; border-radius: 18px; overflow: hidden; background: #071e19; color: white; }
#lightbox::backdrop { background: rgba(3,17,14,.88); backdrop-filter: blur(8px); }
#lightbox img { width: 100%; max-height: 78vh; object-fit: contain; }
#lightbox p { margin: 0; padding: 12px 18px; color: rgba(255,255,255,.7); font-size: 12px; }
.lightbox-close { position: absolute; z-index: 2; top: 12px; right: 12px; display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(0,0,0,.7); color: white; font-size: 25px; cursor: pointer; }

@media (max-width: 980px) {
  .verdict-grid, .split-heading, .booking-grid { grid-template-columns: 1fr; gap: 35px; }
  .map-layout { grid-template-columns: 1fr; }
  .location-list { display: grid; grid-template-columns: 1fr 1fr; }
  .location-callout, .central-verdict { grid-column: 1 / -1; }
  .spa-card, .spa-card.reverse { grid-template-columns: 1fr; }
  .spa-card.reverse .gallery, .spa-card.reverse .spa-content { order: initial; }
  .gallery { min-height: 520px; }
  .review-method-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .button { width: max-content; }
}

@media (max-width: 650px) {
  .wrap { width: min(100% - 24px, 1180px); }
  .site-header { height: 62px; padding: 0 13px; }
  .site-header nav { gap: 12px; }
  .site-header nav a:nth-child(n+3) { display: none; }
  .brand { font-size: 13px; }
  .brand-mark { width: 27px; height: 27px; }
  .hero { min-height: 720px; height: 100svh; }
  .hero-shade { background: linear-gradient(0deg, rgba(4,27,23,.96) 0%, rgba(4,27,23,.72) 62%, rgba(4,27,23,.18) 100%); }
  .hero-copy { padding-bottom: 28px; }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); }
  .lede { margin-top: 20px; font-size: 15px; }
  .hero-actions { margin-top: 20px; }
  .button { min-height: 45px; padding-inline: 16px; }
  .trust-row { margin-top: 25px; gap: 7px 16px; }
  .verdict-band { padding: 66px 0; }
  .section { padding-top: 74px; padding-bottom: 74px; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2 { font-size: 46px; }
  .map-panel { padding: 7px; border-radius: 19px; }
  #location-map { height: 470px; border-radius: 13px; }
  .map-toolbar { top: 18px; left: 18px; right: 18px; justify-content: center; }
  .map-filter { flex: 1; padding-inline: 8px; }
  .map-legend { gap: 7px 12px; }
  .location-list { grid-template-columns: 1fr; }
  .location-callout, .central-verdict { grid-column: auto; }
  .location-row { min-height: 76px; padding-inline: 13px; }
  .location-row strong { font-size: 21px; }
  .recommendation { grid-template-columns: 44px 1fr; padding: 19px; }
  .recommendation-icon { width: 42px; height: 42px; }
  .recommendation > a { grid-column: 2; font-size: 12px; }
  .spa-card { margin-bottom: 44px; border-radius: 22px; }
  .gallery { min-height: 430px; }
  .gallery-side { left: 12px; bottom: 12px; }
  .gallery-thumb { width: 58px; height: 46px; }
  .photo-credit { right: 12px; bottom: 14px; max-width: 130px; text-align: right; }
  .spa-content { padding: 28px 20px 24px; }
  .spa-title-row h3 { font-size: 41px; }
  .score-ring { width: 59px; height: 59px; }
  .policy-callout { grid-template-columns: 28px 1fr; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact-grid > div { min-height: 98px; padding: 12px; }
  .details-columns { grid-template-columns: 1fr; gap: 17px; }
  .review-card { grid-template-columns: 1fr; }
  .review-card > div { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
  .review-card a { grid-column: 1; }
  .review-method-grid, .methodology, .source-columns { grid-template-columns: 1fr; }
  .method-card { min-height: 220px; }
  .booking-grid { gap: 38px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
