:root {
  --forest-950: #182019;
  --forest-900: #263127;
  --forest-800: #354237;
  --olive: #66705a;
  --cream: #f4eee5;
  --paper: #fbf8f2;
  --clay: #a76645;
  --ink: #1f241f;
  --muted: #62665f;
  --line: rgba(31, 36, 31, 0.16);
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(24, 32, 25, 0.18);
  --radius: 3px;
}

*, *::before, *::after { 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);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; touch-action: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #d59b74; outline-offset: 4px; }

.skip-link {
  position: fixed; z-index: 2000; left: 16px; top: 12px;
  padding: 12px 18px; background: var(--paper); color: var(--ink);
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 128px 0; }
.eyebrow {
  margin: 0 0 22px; color: var(--clay); font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; line-height: 1.2; text-transform: uppercase;
}
.eyebrow--light { color: #dfc8b6; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: .98; }
h2 { margin-bottom: 28px; font-size: clamp(3rem, 5vw, 5.25rem); letter-spacing: -.035em; }
.section-lead { color: var(--muted); font-size: 1.03rem; line-height: 1.9; }

.button {
  align-items: center; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; display: inline-flex; justify-content: center; min-height: 54px;
  padding: 0 28px; font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; line-height: 1; text-align: center; text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--cream { background: var(--cream); color: var(--forest-950); }
.button--cream:hover { background: var(--white); }
.button--ghost, .button--line { border-color: rgba(255,255,255,.55); color: var(--white); }
.button--ghost:hover, .button--line:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.text-link {
  align-items: center; display: inline-flex; gap: 12px; padding-bottom: 5px;
  border-bottom: 1px solid currentColor; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.site-header {
  position: fixed; z-index: 1000; inset: 0 0 auto; height: 92px; color: var(--white);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  height: 76px; background: rgba(24,32,25,.96); box-shadow: 0 10px 40px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}
.header-inner { align-items: center; display: grid; grid-template-columns: 220px 1fr auto; height: 100%; gap: 32px; }
.brand img { width: 175px; height: auto; }
.main-nav { display: flex; justify-content: center; gap: 32px; }
.main-nav a, .header-phone { font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.main-nav a { position: relative; padding: 12px 0; }
.main-nav a::after {
  position: absolute; right: 100%; bottom: 5px; left: 0; height: 1px;
  background: currentColor; content: ""; transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }
.header-actions { align-items: center; display: flex; gap: 24px; }
.header-actions .button { min-height: 44px; padding-inline: 22px; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: 870px; background: var(--forest-950); color: var(--white); }
.hero-media, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { object-fit: cover; object-position: 52% 48%; }
.hero-shade {
  background: linear-gradient(90deg,rgba(13,20,14,.86) 0%,rgba(13,20,14,.46) 48%,rgba(13,20,14,.12) 78%),
    linear-gradient(0deg,rgba(13,20,14,.64) 0%,transparent 42%);
}
.hero-content { position: relative; z-index: 2; padding-top: 196px; }
.hero-content h1 { max-width: 870px; margin-bottom: 30px; font-size: clamp(4rem,7.6vw,7.3rem); letter-spacing: -.045em; }
.hero-content h1 em { display: block; color: #f0d8c4; font-weight: 500; }
.hero-lead { max-width: 660px; margin-bottom: 34px; color: rgba(255,255,255,.86); font-size: 1.03rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.booking-wrap { position: absolute; z-index: 4; right: 0; bottom: -76px; left: 0; }
.booking-card {
  display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr 1.25fr;
  min-height: 150px; background: var(--paper); color: var(--ink); box-shadow: var(--shadow);
}
.booking-heading, .booking-field { display: flex; flex-direction: column; justify-content: center; padding: 25px 28px; border-right: 1px solid var(--line); }
.booking-heading span, .booking-field span { margin-bottom: 7px; color: var(--clay); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.booking-heading strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; line-height: 1.05; }
.booking-field input { width: 100%; padding: 6px 0; border: 0; border-bottom: 1px solid rgba(31,36,31,.3); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: .83rem; }
.booking-field input:focus { border-color: var(--clay); }
.button--booking { height: 100%; border-radius: 0; background: var(--forest-900); color: var(--white); }
.button--booking:hover { background: var(--clay); transform: none; }
.booking-note { margin: 12px 0 0; color: rgba(255,255,255,.72); font-size: .68rem; text-align: right; }

.welcome { padding-top: 210px; background: var(--paper); }
.welcome-grid { display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 100px; }
.welcome-copy h2, .welcome-copy .section-lead { max-width: 540px; }
.welcome-copy .section-lead { margin-bottom: 36px; }
.welcome-visual { position: relative; min-height: 600px; }
.welcome-image { object-fit: cover; }
.welcome-image--main { width: 76%; height: 530px; margin-left: auto; }
.welcome-image--accent { position: absolute; bottom: 0; left: 0; width: 43%; height: 285px; border: 12px solid var(--paper); }
.visual-seal {
  position: absolute; top: 48px; left: 5%; align-items: center; display: flex;
  flex-direction: column; justify-content: center; width: 130px; height: 130px;
  border-radius: 50%; background: var(--clay); color: var(--white); text-align: center;
}
.visual-seal strong { font-family: var(--serif); font-size: 2.8rem; line-height: .8; }
.visual-seal span { margin-top: 8px; font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.benefits { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 110px; border-top: 1px solid var(--line); }
.benefit { min-height: 200px; padding: 32px 28px 24px 0; border-right: 1px solid var(--line); }
.benefit:not(:first-child) { padding-left: 28px; }
.benefit:last-child { border-right: 0; }
.benefit > span { color: var(--clay); font-size: .64rem; font-weight: 700; }
.benefit h3 { margin: 28px 0 12px; font-size: 1.7rem; }
.benefit p { margin-bottom: 0; color: var(--muted); font-size: .82rem; line-height: 1.7; }

.rooms { overflow: hidden; background: var(--cream); }
.section-head--split { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 90px; margin-bottom: 58px; }
.section-head h2 { max-width: 720px; margin-bottom: 0; }
.section-head--split > p { margin-bottom: 10px; color: var(--muted); font-size: .93rem; line-height: 1.8; }
.room-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 440px; gap: 18px; }
.room-card { position: relative; grid-column: span 4; overflow: hidden; background: var(--forest-900); color: var(--white); }
.room-card--large { grid-column: span 5; }
.room-card--large + .room-card { grid-column: span 7; }
.room-card--wide { grid-column: span 8; }
.room-card img, .room-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.room-card img { object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.room-card:hover img { transform: scale(1.04); }
.room-overlay { background: linear-gradient(0deg,rgba(15,22,16,.92) 0%,rgba(15,22,16,.05) 74%); }
.room-content { position: absolute; z-index: 2; right: 32px; bottom: 30px; left: 32px; }
.room-content > p { margin-bottom: 6px; color: #e9cbb6; font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.room-content h3 { margin-bottom: 14px; font-size: 2.65rem; }
.room-content ul { display: flex; flex-wrap: wrap; gap: 7px 22px; margin: 0 0 18px; padding: 0; color: rgba(255,255,255,.77); font-size: .7rem; list-style: none; }
.room-content li:not(:last-child)::after { margin-left: 22px; color: rgba(255,255,255,.4); content: "·"; }
.room-content a { display: inline-flex; gap: 10px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.7); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.swipe-hint { display: none; }

.seasonal { padding: 0; background: var(--forest-900); color: var(--white); }
.seasonal-grid { display: grid; grid-template-columns: 1fr 1fr; width: 100%; max-width: none; }
.seasonal-image { min-height: 700px; }
.seasonal-image img { width: 100%; height: 100%; object-fit: cover; }
.seasonal-copy { align-self: center; max-width: 630px; padding: 90px 80px; }
.seasonal-copy h2 { color: var(--cream); }
.seasonal-copy > p:not(.eyebrow) { max-width: 540px; margin-bottom: 38px; color: rgba(255,255,255,.72); line-height: 1.85; }
.seasonal-actions { align-items: center; display: flex; gap: 20px; }
.seasonal-actions small { max-width: 190px; color: rgba(255,255,255,.58); font-size: .64rem; line-height: 1.5; }

.breakfast { background: var(--paper); }
.breakfast-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 100px; }
.breakfast-copy h2 { max-width: 570px; }
.breakfast-copy .section-lead { max-width: 555px; }
.breakfast-facts { display: grid; grid-template-columns: repeat(3,1fr); margin: 42px 0 0; padding-top: 28px; border-top: 1px solid var(--line); }
.breakfast-facts div { padding-right: 18px; }
.breakfast-facts dt { margin-bottom: 8px; color: var(--clay); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.breakfast-facts dd { margin: 0; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; line-height: 1.25; }
.breakfast-gallery { position: relative; min-height: 620px; }
.breakfast-gallery__main { width: 82%; height: 580px; margin-left: auto; object-fit: cover; }
.breakfast-gallery__small { position: absolute; bottom: -35px; left: 0; width: 48%; height: 245px; border: 12px solid var(--paper); object-fit: cover; }

.reviews { background: #ddd4c6; }
.reviews-head { position: relative; padding-right: 260px; }
.reviews-head h2 { max-width: 700px; }
.reviews-source { position: absolute; top: 0; right: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.reviews-source strong { color: var(--clay); font-size: .9rem; letter-spacing: .18em; }
.reviews-source span { color: var(--muted); font-size: .7rem; line-height: 1.5; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 55px; }
.review-card { min-height: 310px; padding: 38px; background: var(--paper); }
.quote-mark { color: var(--clay); font-family: var(--serif); font-size: 5rem; line-height: .55; }
.review-card h3 { margin: 36px 0 20px; font-size: 2rem; }
.review-card p { color: var(--muted); font-size: .84rem; line-height: 1.85; }
.reviews-note { max-width: 720px; margin-top: 38px; margin-bottom: 0; color: var(--muted); font-size: .76rem; line-height: 1.75; }

.location { padding: 0; background: var(--forest-950); color: var(--white); }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; width: 100%; max-width: none; }
.location-copy { align-self: center; max-width: 650px; margin-left: auto; padding: 100px 80px 100px 48px; }
.location-copy h2 { max-width: 560px; }
.location-copy > p:not(.eyebrow) { max-width: 545px; color: rgba(255,255,255,.7); line-height: 1.85; }
.distance-list { display: grid; gap: 0; margin: 40px 0; padding: 0; border-top: 1px solid rgba(255,255,255,.18); list-style: none; }
.distance-list li { align-items: center; display: grid; grid-template-columns: 115px 1fr; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.distance-list strong { color: #edcbb3; font-family: var(--serif); font-size: 1.75rem; }
.distance-list span { color: rgba(255,255,255,.75); font-size: .8rem; }
.map-wrap, .map-wrap iframe { min-height: 790px; width: 100%; height: 100%; border: 0; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro h2 { font-size: clamp(3rem,4.5vw,4.8rem); }
.faq-intro > p:not(.eyebrow) { max-width: 340px; margin-bottom: 32px; color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 28px 54px 28px 0; cursor: pointer; font-family: var(--serif); font-size: 1.65rem; font-weight: 600; line-height: 1.2; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 50%; right: 10px; color: var(--clay); content: "+"; font-family: var(--sans); font-size: 1.6rem; font-weight: 400; transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 680px; margin-bottom: 30px; color: var(--muted); font-size: .88rem; line-height: 1.85; }

.final-cta { position: relative; min-height: 620px; color: var(--white); }
.final-cta > img, .final-cta__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta > img { object-fit: cover; }
.final-cta__shade { background: rgba(17,26,18,.7); }
.final-cta__content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; min-height: 620px; text-align: center; }
.final-cta__content h2 { max-width: 760px; margin: 0 auto 38px; }
.final-cta__content > div { display: flex; justify-content: center; gap: 12px; }

.site-footer { padding: 90px 0 30px; background: var(--cream); }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr .85fr 1fr; gap: 65px; padding-bottom: 60px; }
.footer-brand img { width: 185px; height: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 280px; color: var(--muted); font-size: .78rem; }
.footer-main h2 { margin-bottom: 22px; font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.footer-main address, .footer-main a { display: block; margin-bottom: 9px; color: var(--muted); font-size: .76rem; font-style: normal; }
.footer-main a:hover { color: var(--clay); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: var(--muted); font-size: .66rem; }
.mobile-actions { display: none; }

.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 190px 1fr auto; }
  .header-phone { display: none; }
  .main-nav { gap: 20px; }
  .booking-card { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .booking-heading { display: none; }
  .welcome-grid, .breakfast-grid { gap: 60px; }
  .room-content li:not(:last-child)::after { display: none; }
  .seasonal-copy { padding-inline: 55px; }
}

@media (max-width: 900px) {
  .section { padding: 96px 0; }
  .site-header, .site-header.scrolled {
    z-index: 1300; height: 76px; background: var(--forest-950);
    box-shadow: 0 8px 28px rgba(0,0,0,.2); backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .header-inner { grid-template-columns: 1fr auto; }
  .main-nav {
    position: fixed; z-index: 1; top: 76px; right: 0; bottom: 0; left: 0;
    align-items: center; width: 100%; min-height: calc(100vh - 76px);
    min-height: calc(100dvh - 76px); overflow-y: auto; overscroll-behavior: contain;
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    background-color: #182019; opacity: 0; pointer-events: none; visibility: hidden;
    transform: translateY(-10px); transition: opacity .25s ease, transform .25s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(0); }
  .main-nav a { font-family: var(--serif); font-size: 2.4rem; font-weight: 500; letter-spacing: -.02em; text-transform: none; }
  .header-actions { display: none; }
  .menu-toggle { display: block; color: var(--white); }
  .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 { min-height: 900px; }
  .hero-content { padding-top: 170px; }
  .booking-wrap { bottom: -118px; }
  .booking-card { grid-template-columns: 1fr 1fr; min-height: auto; }
  .booking-field, .button--booking { min-height: 94px; }
  .booking-field--promo { display: none; }
  .welcome { padding-top: 215px; }
  .welcome-grid, .breakfast-grid { grid-template-columns: 1fr; }
  .welcome-visual, .breakfast-gallery { width: min(680px,100%); margin-left: auto; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .benefit:nth-child(2) { border-right: 0; }
  .benefit:nth-child(3), .benefit:nth-child(4) { border-top: 1px solid var(--line); }
  .section-head--split { grid-template-columns: 1fr; gap: 24px; }
  .room-grid { grid-auto-rows: 400px; }
  .room-card, .room-card--large, .room-card--large + .room-card, .room-card--wide { grid-column: span 6; }
  .seasonal-grid, .location-grid { grid-template-columns: 1fr; }
  .seasonal-image { min-height: 520px; }
  .seasonal-copy { max-width: none; padding: 90px 48px; }
  .reviews-head { padding-right: 0; }
  .reviews-source { position: static; margin-top: 35px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: auto; }
  .location-copy { max-width: none; margin: 0; padding: 96px 48px; }
  .map-wrap, .map-wrap iframe { min-height: 520px; }
  .faq-grid { grid-template-columns: 1fr; gap: 60px; }
  .faq-intro { position: static; }
  .footer-main { grid-template-columns: 1.4fr 1fr; }
  body.menu-open .mobile-actions { opacity: 0; pointer-events: none; visibility: hidden; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 32px),1180px); }
  .section { padding: 78px 0; }
  h2 { font-size: clamp(2.85rem,13vw,4rem); }
  .brand img { width: 154px; }
  .hero { min-height: 820px; }
  .hero-media { object-position: 67% center; }
  .hero-shade { background: linear-gradient(90deg,rgba(13,20,14,.86) 0%,rgba(13,20,14,.35) 100%),linear-gradient(0deg,rgba(13,20,14,.66) 0%,transparent 55%); }
  .hero-content { padding-top: 136px; }
  .hero-content h1 { max-width: 520px; margin-bottom: 22px; font-size: clamp(3.5rem,17vw,5.2rem); }
  .hero-lead { font-size: .9rem; line-height: 1.72; }
  .hero-actions .button { flex: 1 1 100%; }
  .booking-wrap { bottom: -126px; }
  .booking-card { grid-template-columns: 1fr 1fr; }
  .booking-field { min-width: 0; padding: 18px 16px; }
  .booking-field span { font-size: .57rem; }
  .booking-field input { font-size: .74rem; }
  .button--booking { grid-column: 1 / -1; min-height: 64px; }
  .booking-note { display: none; }
  .welcome { padding-top: 200px; }
  .welcome-grid { gap: 55px; }
  .welcome-visual { min-height: 430px; }
  .welcome-image--main { width: 90%; height: 390px; }
  .welcome-image--accent { width: 50%; height: 190px; border-width: 7px; }
  .visual-seal { top: 20px; width: 98px; height: 98px; }
  .visual-seal strong { font-size: 2.2rem; }
  .benefits { grid-template-columns: 1fr; margin-top: 70px; }
  .benefit, .benefit:not(:first-child) { min-height: 0; padding: 26px 0; border-top: 1px solid var(--line); border-right: 0; }
  .benefit h3 { margin-top: 15px; }
  .room-grid { display: flex; width: auto; margin-right: -16px; padding-right: 16px; overflow-x: auto; gap: 12px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .room-grid::-webkit-scrollbar { display: none; }
  .room-card, .room-card--large, .room-card--large + .room-card, .room-card--wide { flex: 0 0 84vw; height: 470px; scroll-snap-align: start; }
  .room-content { right: 24px; bottom: 26px; left: 24px; }
  .room-content h3 { font-size: 2.45rem; }
  .swipe-hint { display: block; margin-top: 20px; color: var(--muted); font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
  .seasonal-image { min-height: 410px; }
  .seasonal-copy, .location-copy { padding: 75px 16px; }
  .seasonal-actions { align-items: stretch; flex-direction: column; }
  .seasonal-actions small { max-width: none; }
  .breakfast-grid { gap: 55px; }
  .breakfast-facts { grid-template-columns: 1fr; gap: 18px; }
  .breakfast-facts div { display: grid; grid-template-columns: 100px 1fr; align-items: baseline; }
  .breakfast-gallery { min-height: 430px; }
  .breakfast-gallery__main { width: 90%; height: 400px; }
  .breakfast-gallery__small { width: 50%; height: 170px; border-width: 7px; }
  .review-card { padding: 30px; }
  .reviews-note { margin-top: 30px; }
  .distance-list li { grid-template-columns: 90px 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 420px; }
  .faq-list summary { padding-block: 23px; font-size: 1.45rem; }
  .final-cta, .final-cta__content { min-height: 610px; }
  .final-cta__content > div { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .site-footer { padding-bottom: 92px; }
  .mobile-actions { position: fixed; z-index: 1100; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: .85fr 1.15fr; min-height: 66px; box-shadow: 0 -10px 30px rgba(0,0,0,.15); }
  .mobile-actions a { align-items: center; display: flex; justify-content: center; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-actions__whatsapp { background: #e9e0d3; color: var(--forest-950); }
  .mobile-actions__book { background: var(--forest-900); color: var(--white); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
