:root {
  --ink: #101826;
  --ink-2: #1d2a3b;
  --paper: #ffffff;
  --cream: #f5f1eb;
  --cream-2: #ece5dc;
  --muted: #5c6673;
  --muted-light: #c7ced7;
  --line: #dfe3e8;
  --red: #df171d;
  --red-dark: #bd0e14;
  --gold: #8a6233;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 18px 55px rgba(16, 24, 38, .10);
  --shadow-soft: 0 10px 32px rgba(16, 24, 38, .07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid #67a6ff; outline-offset: 4px; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
section[id] { scroll-margin-top: 76px; }

.shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { max-width: 840px; }
.section-pad { padding: 92px 0; }
.soft-section { background: var(--cream); }
.dark-section { background: var(--ink); color: #fff; }
.section-head { margin-bottom: 48px; }
.section-head.centered { max-width: 800px; margin-inline: auto; text-align: center; margin-bottom: 52px; }
.section-head p { color: var(--muted); margin: 16px 0 0; }
.section-head.light-copy p { color: rgba(255,255,255,.72); }
.section-head h2,
.early-cta h2,
.final-cta h2,
.faq-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.08;
  font-size: clamp(2rem, 4vw, 3.5rem);
}
.eyebrow {
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.light { color: #e1c99f; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: .96rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button-primary { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(223,23,29,.25); }
.button-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 14px 28px rgba(223,23,29,.30); }

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 2000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(11, 17, 27, .76);
  border-bottom: 1px solid rgba(255,255,255,.11);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { background: rgba(16,24,38,.96); box-shadow: 0 8px 28px rgba(0,0,0,.16); }
.nav-shell { width: min(calc(100% - 36px), var(--max)); height: 68px; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { color: #fff; text-decoration: none; line-height: 1; display: flex; flex-direction: column; gap: 4px; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; font-weight: 700; }
.brand-place { font-size: .66rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; color: rgba(255,255,255,.60); }
.primary-nav { display: flex; align-items: center; gap: 24px; }
.primary-nav > a { color: rgba(255,255,255,.85); text-decoration: none; font-size: 1rem; font-weight: 700; }
.primary-nav > a:not(.nav-availability):hover { color: #fff; }
.nav-availability { background: var(--red); color: #fff !important; padding: 10px 16px; border-radius: 7px; }
.nav-availability:hover { background: var(--red-dark); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; min-height: 650px; height: min(84vh, 820px); overflow: hidden; display: flex; align-items: flex-end; color: #fff; }
.hero-slider, .hero-slide, .hero-overlay { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity .35s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5,10,18,.42) 0%, rgba(5,10,18,.31) 39%, rgba(5,10,18,.10) 70%, rgba(5,10,18,.06) 100%),
    linear-gradient(0deg, rgba(5,10,18,.33) 0%, rgba(5,10,18,.04) 52%);
}
.hero-content { position: relative; z-index: 3; padding-bottom: 92px; max-width: 760px; margin-left: max(20px, calc((100vw - var(--max)) / 2)); margin-right: 20px; }
.hero-eyebrow { color: #f1d5a5; text-shadow: 0 2px 10px rgba(0,0,0,.35); }
.hero h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 7vw, 5.7rem); line-height: .96; letter-spacing: -.045em; max-width: 720px; text-shadow: 0 4px 22px rgba(0,0,0,.50); }
.hero-lead { margin: 22px 0 28px; max-width: 660px; font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.55; color: rgba(255,255,255,.94); text-shadow: 0 2px 16px rgba(0,0,0,.48); }
.hero-micro { margin: 10px 0 0; font-size: .86rem; color: rgba(255,255,255,.75); }
.slider-arrow { position: absolute; z-index: 5; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); background: rgba(7,12,20,.36); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; backdrop-filter: blur(5px); }
.slider-arrow:hover { background: rgba(7,12,20,.62); }
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.slider-dots { position: absolute; z-index: 5; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; gap: 9px; padding: 8px 10px; border-radius: 999px; background: rgba(7,12,20,.28); }
.slider-dot { width: 9px; height: 9px; padding: 0; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(255,255,255,.22); cursor: pointer; }
.slider-dot.is-active { background: #fff; transform: scale(1.18); }

.quick-facts { background: var(--ink); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.quick-facts-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.quick-fact { padding: 22px 18px; display: flex; gap: 12px; align-items: flex-start; border-right: 1px solid rgba(255,255,255,.10); min-width: 0; }
.quick-fact:last-child { border-right: 0; }
.quick-icon { width: 26px; height: 26px; flex: 0 0 26px; color: #e3c69b; }
.quick-icon svg { width: 100%; height: 100%; }
.quick-fact strong { display: block; font-size: .93rem; line-height: 1.25; }
.quick-fact span:not(.quick-icon) { display: block; color: rgba(255,255,255,.62); font-size: .78rem; line-height: 1.35; margin-top: 3px; }

.decision { background: var(--cream); }
.decision .section-head { text-align: center; margin-bottom: 0; }
.decision .section-head h2 { max-width: 800px; margin-inline: auto; }
.decision .section-head p:not(.eyebrow) { font-size: 1.05rem; line-height: 1.78; color: #374151; }

.early-cta { background: var(--ink-2); color: #fff; padding: 54px 0; }
.early-cta-inner {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.early-cta h2 { font-size: clamp(1.8rem, 3.2vw, 2.75rem); }
.early-cta p:not(.eyebrow) { margin: 12px auto 26px; color: rgba(255,255,255,.72); max-width: 690px; }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.room-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
}
.room-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 420px;
}
.room-card:last-child:nth-child(odd):not(.room-card-featured) {
  grid-column: auto;
  width: auto;
  justify-self: stretch;
}
.room-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-2);
  flex-shrink: 0;
}
.room-card-featured .room-image-wrap {
  aspect-ratio: auto;
  min-height: 420px;
  height: 100%;
}
.room-card-featured .room-image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.room-card-featured .room-body {
  padding: 30px 30px 28px;
}
.room-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}
.room-card:hover .room-image-wrap img {
  transform: scale(1.02);
}
.room-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(16,24,38,.92);
  color: #fff;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.room-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.room-body h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
}
.room-body p {
  color: var(--muted);
  margin: 14px 0 18px;
}
.room-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.room-specs li {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .75rem;
  font-weight: 750;
  color: #3e4650;
}
.text-cta {
  margin-top: auto;
  color: var(--red);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid transparent;
}
.text-cta:hover {
  border-color: var(--red);
}
.section-note { margin: 24px 0 0; color: var(--muted); font-size: .86rem; }
.centered-note { text-align: center; }

.facilities-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; }
.facility-card { padding: 30px 26px; border-right: 1px solid rgba(255,255,255,.10); border-bottom: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.025); }
.facility-card:nth-child(4n) { border-right: 0; }
.facility-card:nth-last-child(-n+4) { border-bottom: 0; }
.facility-card svg { width: 31px; height: 31px; color: #e4c99f; margin-bottom: 18px; }
.facility-card h3 { margin: 0 0 9px; font-size: 1.03rem; }
.facility-card p { margin: 0; color: rgba(255,255,255,.66); font-size: .88rem; }
.dark-note { margin: 22px 0 0; color: rgba(255,255,255,.58); font-size: .82rem; text-align: center; }

.location-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.location-copy { padding-top: 8px; }
.location-copy p { margin: 0 0 18px; color: #3d4652; font-size: 1.02rem; line-height: 1.75; }
.map-link { display: inline-block; margin-top: 10px; color: var(--ink); font-weight: 800; text-underline-offset: 4px; }
.location-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.location-card { background: var(--cream); border: 1px solid #e5ddd3; border-radius: 14px; padding: 24px; }
.location-kicker { display: block; color: var(--gold); text-transform: uppercase; font-size: .72rem; font-weight: 850; letter-spacing: .14em; margin-bottom: 10px; }
.location-card h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.location-card p { margin: 10px 0 0; color: var(--muted); }
.location-cta { margin-top: 46px; padding: 34px 32px; border-radius: var(--radius); background: var(--ink); color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; text-align: center; }
.location-cta p { margin: 0 auto; max-width: 720px; color: rgba(255,255,255,.77); }

.rating-sources { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-width: 620px; margin: 0 auto 18px; }
.rating-source-card { background: var(--ink); color: #fff; border-radius: 14px; padding: 20px 24px; display: flex; align-items: baseline; justify-content: space-between; gap: 18px; box-shadow: 0 8px 24px rgba(16,24,38,.10); }
.rating-source-value { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; line-height: 1; font-weight: 700; }
.rating-source-name { font-weight: 800; color: rgba(255,255,255,.72); }
.score-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.score-card { background: #fff; border: 1px solid #e3ddd5; border-radius: 14px; padding: 24px 18px; text-align: center; min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(16,24,38,.05); }
.score-main { background: var(--ink); color: #fff; border-color: var(--ink); }
.score-value { font-family: Georgia, "Times New Roman", serif; font-size: 2.4rem; line-height: 1; font-weight: 700; }
.score-label { margin-top: 9px; font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.score-source { margin-top: 5px; font-size: .72rem; color: rgba(255,255,255,.65); }
.review-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 30px; }
.review-summary > div { background: #fff; border-radius: 14px; padding: 28px; border: 1px solid #e3ddd5; }
.review-summary h3 { margin: 0 0 10px; font-size: 1.08rem; }
.review-summary p { margin: 0; color: var(--muted); }

.faq-shell { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.faq-intro { position: sticky; top: 100px; }
.faq-intro h2 { font-size: clamp(2rem, 3.4vw, 3.1rem); }
.faq-intro p:not(.eyebrow) { color: var(--muted); margin-top: 16px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding: 21px 42px 21px 0; font-weight: 800; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 6px; top: 17px; font-size: 1.5rem; font-weight: 400; color: var(--muted); }
details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 42px 22px 0; color: var(--muted); }
.faq-answer p { margin: 0; }
.faq-cta { display: inline-block; margin-top: 12px; color: var(--red); font-weight: 800; text-decoration: none; }

.final-cta { background: linear-gradient(135deg, #111b2b 0%, #1f3047 100%); color: #fff; padding: 88px 0; text-align: center; }
.final-cta-inner { max-width: 790px; }
.final-cta h2 { font-size: clamp(2.1rem, 4.4vw, 3.7rem); }
.final-cta p:not(.eyebrow) { margin: 18px auto 28px; max-width: 680px; color: rgba(255,255,255,.73); font-size: 1.02rem; }

.site-footer { background: #09101a; color: rgba(255,255,255,.72); padding: 58px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr; gap: 50px; }
.footer-brand { margin: 0 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-weight: 700; color: #fff; }
.footer-copy { margin: 0; max-width: 440px; }
.footer-heading { margin: 0 0 12px; color: #fff; font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.10); display: grid; gap: 7px; }
.footer-bottom p { margin: 0; font-size: 1rem; color: rgba(255,255,255,.58); }

.mobile-cta { display: none; }

@media (max-width: 1050px) {
  .quick-facts-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-fact:nth-child(3) { border-right: 0; }
  .quick-fact:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.10); }
  .facilities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .facility-card:nth-child(4n) { border-right: 1px solid rgba(255,255,255,.10); }
  .facility-card:nth-child(2n) { border-right: 0; }
  .facility-card:nth-last-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.10); }
  .facility-card:nth-last-child(-n+2) { border-bottom: 0; }
  .score-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .section-pad { padding: 76px 0; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    padding: 18px 22px 24px;
    background: #101826;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-130%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .22s ease, visibility .22s ease;
    box-shadow: 0 12px 28px rgba(0,0,0,.25);
  }
  .primary-nav.is-open { transform: translateY(0); visibility: visible; pointer-events: auto; }
  .primary-nav > a { padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .primary-nav .nav-availability { text-align: center; margin-top: 12px; border-bottom: 0; padding: 13px 16px; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { height: 78svh; min-height: 610px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(5,10,18,.44) 0%, rgba(5,10,18,.235) 52%, rgba(5,10,18,.125) 100%); }
  .hero-content { margin-inline: 20px; padding-bottom: 82px; }
  .hero h1 { font-size: clamp(2.8rem, 10vw, 4.7rem); }
  .slider-arrow { top: 47%; width: 42px; height: 42px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }

  .rooms-grid { grid-template-columns: 1fr; }
  .room-card,
  .room-card-featured,
  .room-card:last-child:nth-child(odd):not(.room-card-featured) {
    grid-column: auto;
    width: 100%;
    min-height: 0;
  }
  .room-card-featured {
    display: flex;
    flex-direction: column;
  }
  .room-image-wrap,
  .room-card-featured .room-image-wrap {
    aspect-ratio: 4 / 3;
    min-height: 0;
    height: auto;
  }
  .location-layout { grid-template-columns: 1fr; gap: 34px; }
  .faq-shell { grid-template-columns: 1fr; gap: 34px; }
  .faq-intro {
    position: static;
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
  }
  .faq-intro p:not(.eyebrow) {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .shell { width: min(calc(100% - 30px), var(--max)); }
  .section-pad { padding: 66px 0; }
  .hero { height: 76svh; min-height: 580px; }
  .hero-content { margin-inline: 16px; padding-bottom: 74px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero-lead { font-size: 1rem; line-height: 1.52; margin-top: 18px; }
  .hero .button { width: 100%; max-width: 320px; }
  .slider-arrow { display: block; top: 35%; width: 38px; height: 38px; font-size: 1.65rem; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  .slider-dots { bottom: 16px; gap: 7px; }
  .slider-dot { width: 8px; height: 8px; }

  .quick-facts-grid { grid-template-columns: 1fr 1fr; }
  .quick-fact { padding: 17px 12px; border-right: 1px solid rgba(255,255,255,.10); border-top: 1px solid rgba(255,255,255,.10); }
  .quick-fact:nth-child(1), .quick-fact:nth-child(2) { border-top: 0; }
  .quick-fact:nth-child(2n) { border-right: 0; }
  .quick-fact:nth-child(3) { border-right: 1px solid rgba(255,255,255,.10); }
  .quick-fact:last-child { grid-column: 1 / -1; border-right: 0; }
  .quick-icon { width: 23px; height: 23px; flex-basis: 23px; }

  .room-card,
  .room-card-featured,
  .room-card:last-child:nth-child(odd):not(.room-card-featured) {
    display: flex;
    width: 100%;
    min-height: 0;
  }
  .room-card-featured {
    flex-direction: column;
  }
  .room-image-wrap,
  .room-card-featured .room-image-wrap {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .room-body,
  .room-card-featured .room-body { padding: 22px; }
  .room-body h3 { font-size: 1.42rem; }
  .room-specs { gap: 6px; }

  .facilities-grid { grid-template-columns: 1fr; }
  .facility-card, .facility-card:nth-child(4n), .facility-card:nth-child(2n), .facility-card:nth-last-child(-n+4) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .facility-card:last-child { border-bottom: 0; }
  .facility-card { padding: 25px 22px; }

  .location-cards { grid-template-columns: 1fr; }
  .location-cta { padding: 24px; }
  .rating-sources { grid-template-columns: 1fr; max-width: none; }
  .rating-source-card { padding: 18px 20px; }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .score-card { min-height: 130px; padding: 20px 12px; }
  .review-summary { grid-template-columns: 1fr; }
  .review-summary > div { padding: 22px; }
  .faq-answer { padding-right: 0; }
  summary { padding-right: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .mobile-cta {
    position: fixed;
    z-index: 900;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .mobile-cta.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-cta a { display: block; background: var(--red); color: #fff; text-align: center; text-decoration: none; font-weight: 850; padding: 14px 18px; border-radius: 10px; box-shadow: 0 12px 32px rgba(0,0,0,.24); }
  .site-footer { padding-bottom: 94px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
