/* Site Factory — skeleton v2 ("hybrid", approved 14 Aug 2026)
   Apple layout system under the theme's own voice. One skeleton, themed only
   via the 12 CSS custom properties in sitefactory/themes/*.css — zero
   per-theme rules here. Every extra color is DERIVED from the 12 tokens via
   color-mix, so the theme schema is unchanged.
   Spec reference: experiments/apple-hybrid/ (approved by Bora, 14 Aug 2026).
   Pure CSS + minimal vanilla JS (skeleton.js). No dependencies. */

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--base);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }

:root {
  --pad: clamp(1.25rem, 4vw, 3rem);
  /* derived palette — every value computed from the 12 theme tokens */
  --hairline: color-mix(in srgb, var(--ink) 14%, transparent);
  --card: color-mix(in srgb, var(--base) 35%, white);
  --base-alt: color-mix(in srgb, var(--surface-2nd) 55%, var(--base));
  --ink-faint: color-mix(in srgb, var(--ink-soft) 62%, var(--base));
  --dark-1: color-mix(in srgb, var(--ink) 88%, black);
  --dark-2: color-mix(in srgb, var(--ink) 55%, black);
  --on-dark: var(--base);
  --on-dark-soft: color-mix(in srgb, var(--base) 78%, var(--ink));
  --accent-fill: color-mix(in srgb, var(--accent) 78%, var(--ink));
  --accent-hover: var(--accent);
  --shadow-card: 0 2px 8px color-mix(in srgb, var(--ink) 7%, transparent),
                 0 8px 24px color-mix(in srgb, var(--ink) 11%, transparent);
  --shadow-hover: 0 4px 12px color-mix(in srgb, var(--ink) 9%, transparent),
                  0 12px 32px color-mix(in srgb, var(--ink) 15%, transparent);
  --shadow-sm: 0 1px 4px color-mix(in srgb, var(--ink) 6%, transparent),
               0 4px 12px color-mix(in srgb, var(--ink) 8%, transparent);
  --radius-card: 18px;
  --radius-card-lg: 20px;
  --monument-font: var(--font-monument, var(--font-display));
}

/* ---------- reveal system ----------
   Hiding is gated on body.js (added by skeleton.js line 1): if JS ever fails,
   the whole page stays visible. Observer adds .in (same contract as v1).
   Reveals animate opacity + `translate`; hover lifts animate `transform`,
   so the two never fight. The shared transition rule lives at the end of
   the components section (cascade order matters for the shorthand). */
/* v1 kinetic line machinery retired: lines render as plain stacked text */
.lines .line { display: block; }

/* ---------- type scale ---------- */
.eyebrow {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint);
}
h1, h2, .display, .statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-synthesis: none; /* themes without a 500 file fall back to real 400 */
}
.section-title {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.12;
  margin-bottom: clamp(1.6rem, 4vh, 2.8rem);
}

/* ---------- sticky local nav ---------- */
.localnav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--base) 85%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}
.localnav-inner {
  max-width: 74rem; margin: 0 auto; height: 54px;
  padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.localnav-title {
  font-family: var(--font-display); font-weight: 500; font-synthesis: none;
  font-size: 1.25rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-width: 0; flex: 0 1 auto;
}
.btn-nav { font-size: 0.88rem; padding: 0.42rem 1.05rem; flex: none; white-space: nowrap; }

/* ---------- hero ---------- */
.hero {
  padding: clamp(4rem, 10vh, 6.5rem) var(--pad) clamp(2.5rem, 6vh, 4rem);
  display: flex; flex-direction: column; align-items: center;
  gap: 1.1rem; text-align: center;
}
.hero-title {
  font-size: clamp(3rem, 7.5vw, 5.75rem);
  line-height: 1.05; letter-spacing: -0.005em;
}
.hero-tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.35;
  color: var(--ink-soft); max-width: 40rem;
}
.hero-cta { display: flex; gap: 2rem; margin-top: 0.5rem; flex-wrap: wrap; justify-content: center; }
.hero-cta a {
  font-size: 1.1rem; font-weight: 600; text-decoration: none;
  color: var(--accent-fill);
}
@media (hover: hover) { .hero-cta a:hover { text-decoration: underline; } }

/* hero photo: rounded card, natural ratio, content width */
.hero-photo { padding: 0 var(--pad) clamp(1.5rem, 4vh, 2.5rem); }
.hero-photo .strip { max-width: 74rem; margin: 0 auto; }

/* ---------- sections & rhythm ---------- */
section { padding: clamp(4.5rem, 11vh, 7rem) var(--pad); }
.narrow { max-width: 46rem; margin: 0 auto; }
.wide { max-width: 74rem; margin: 0 auto; }
.divider { display: none; }

/* ---------- stat counters ---------- */
.counters-section { padding-top: clamp(3rem, 7vh, 4.5rem); }
.counters {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 1.5rem; text-align: center;
}
.counter .num {
  font-family: var(--font-display); font-weight: 500; font-synthesis: none;
  font-size: clamp(2.6rem, 4.6vw, 3.9rem);
  color: var(--ink); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.counter .label {
  margin-top: 0.5rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint);
}

/* ---------- about: statement left, body right ---------- */
.about { background: var(--base-alt); }
.about .eyebrow { display: none; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1068px) {
  .about-grid { grid-template-columns: 5fr 6fr; gap: 4rem; align-items: start; }
}
.about .statement {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2; letter-spacing: -0.005em;
}
.about .statement em { font-style: italic; }
.about-body p { color: var(--ink-soft); font-size: 1.17rem; }
.about-body p + p { margin-top: 1.2rem; }

/* ---------- gallery: feature card + two-up grid ---------- */
.gallery-section { padding-left: var(--pad); padding-right: var(--pad); }
.gallery-section .section-title { text-align: center; }
.gallery {
  max-width: 74rem; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.gallery .strip:first-child { grid-column: 1 / -1; }
.strip {
  margin: 0; overflow: hidden;
  border-radius: var(--radius-card-lg);
  background: var(--card);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
@media (hover: hover) {
  .gallery .strip:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
}
.strip img {
  width: 100%; height: auto; min-height: 0; flex: 1 1 auto;
  aspect-ratio: 3 / 2; object-fit: cover;
  filter: var(--img-filter);
}
.hero-photo .strip img { aspect-ratio: auto; }
.strip figcaption {
  padding: 1rem 1.25rem; text-align: center;
  font-size: 0.85rem; color: var(--ink-soft);
  background: var(--card);
}

/* ---------- highlights: the compressed dark beat ---------- */
.story {
  background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 130%);
  color: var(--on-dark); text-align: center;
}
.story-stage { max-width: 60rem; margin: 0 auto; }
.story-title {
  font-size: clamp(2.6rem, 5.5vw, 4.25rem);
  line-height: 1.08; color: var(--on-dark);
  margin-bottom: clamp(2rem, 5vh, 3rem);
}
.story-facts { display: flex; flex-direction: column; gap: 1.1rem; }
.story-fact {
  font-family: var(--font-display); font-weight: 500; font-synthesis: none;
  font-size: clamp(1.4rem, 2.6vw, 1.95rem); line-height: 1.25;
  color: var(--on-dark-soft);
}
.story-progress { display: none; }

/* ---------- amenities: card grid ---------- */
.amenities { background: var(--base-alt); }
.amenities .eyebrow { display: none; }
.amenities .section-title { text-align: center; }
.amenity-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(12.5rem, 1fr));
  gap: 1.25rem;
}
.amenity {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  min-height: 6rem; padding: 1.5rem 1.25rem;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
@media (hover: hover) {
  .amenity:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
}
.amenity .dot { display: none; }
.amenity span { color: var(--ink); font-weight: 600; font-size: 0.98rem; }
/* fallback: sparse amenities → one centered row of cards */
.amenities.compact .amenity-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem;
}
.amenities.compact .amenity { min-width: 12.5rem; }

/* ---------- map ---------- */
.map .eyebrow { display: none; }
.map-wrap { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .map-wrap { grid-template-columns: 1.6fr 1fr; } }
/* No walk times: the map earns the full width, note centered beneath */
.map-wrap.solo { grid-template-columns: 1fr; }
.map-wrap.solo .map-note { margin-top: 0; text-align: center; }
.map-canvas {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: var(--radius-card-lg);
  box-shadow: var(--shadow-card);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface-2nd) 70%, var(--base)) 0%, var(--surface-2nd) 100%);
}
.map-static {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: var(--img-filter) saturate(0.85);
}
.map-live { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
.map-canvas.live-on .map-live { opacity: 1; }
.map-pin { display: none; } /* the translucent area circle is the only marker */
.map-attrib {
  position: absolute; right: 10px; bottom: 8px; z-index: 3;
  font-size: 0.66rem; color: var(--ink-soft);
  background: color-mix(in srgb, var(--card) 80%, transparent);
  padding: 2px 8px; border-radius: 6px; pointer-events: none;
}
.map-canvas.live-on .map-attrib { display: none; } /* MapLibre control takes over */
.walk-times li {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--hairline);
  color: var(--ink-soft); font-size: 0.98rem;
}
.walk-times li b { color: var(--ink); font-weight: 600; white-space: nowrap; }
.map-note { margin-top: 1rem; font-size: 0.85rem; color: var(--ink-faint); }

/* ---------- reviews: monument quote + cards ---------- */
.monument {
  background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 130%);
  color: var(--on-dark);
  padding-top: clamp(6rem, 14vh, 9rem); padding-bottom: clamp(6rem, 14vh, 9rem);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.monument blockquote {
  font-family: var(--monument-font); font-weight: 500; font-synthesis: none;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem); line-height: 1.25;
  max-width: 56rem; letter-spacing: -0.005em;
}
.monument blockquote::before { content: "\201C"; }
.monument blockquote::after { content: "\201D"; }
.monument cite {
  display: block; margin-top: 2rem; font-style: normal;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--on-dark-soft);
}
.reviews .eyebrow { display: none; }
.reviews .section-title { text-align: center; }
.review-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
}
.review-card p { font-size: 0.98rem; color: var(--ink-soft); }
.review-card footer {
  margin-top: 1.1rem; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint);
}

/* fallback: no/few reviews → host welcome statement */
.host-welcome { background: var(--base-alt); text-align: center; }
.host-welcome .statement {
  font-style: italic;
  font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.2;
  max-width: 46rem; margin: 0 auto;
}
.host-welcome .who { margin-top: 1.4rem; font-size: 1.1rem; color: var(--ink-soft); }

/* ---------- contact finale: dark, short, direct ---------- */
.contact {
  background: linear-gradient(180deg, var(--dark-1) 0%, color-mix(in srgb, var(--dark-2) 60%, black) 100%);
  color: var(--on-dark);
  padding-top: clamp(6rem, 14vh, 9rem); padding-bottom: clamp(6rem, 14vh, 9rem);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.contact .eyebrow { color: var(--on-dark-soft); }
.contact h2 {
  margin-top: 1rem;
  font-size: clamp(3rem, 6.5vw, 5.4rem); line-height: 1.05;
  letter-spacing: -0.005em; max-width: 56rem;
}
.contact .sub {
  margin-top: 1.2rem; font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  color: var(--on-dark-soft);
}
.contact-actions {
  margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.contact .direct-note { margin-top: 1.8rem; font-size: 0.85rem; color: var(--on-dark-soft); }

/* ---------- pill buttons ----------
   Base look (light context: nav, dock panel): accent-filled primary,
   quiet outlined secondary. The dark finale swaps primary to a light fill. */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  padding: 0.8rem 1.7rem; border-radius: 999px;
  border: 0; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--ink) 30%, transparent);
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease,
              box-shadow 0.25s ease, filter 0.25s ease;
}
.btn.primary {
  background: var(--accent-fill); color: var(--card); box-shadow: none;
}
@media (hover: hover) {
  .btn:hover { background: color-mix(in srgb, var(--ink) 6%, transparent); }
  .btn.primary:hover { background: var(--accent-hover); }
}
.btn:active { transform: scale(0.985); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
/* dark finale context */
.contact .btn { color: var(--on-dark); box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--base) 45%, transparent); }
.contact .btn.primary { background: var(--base); color: var(--dark-1); box-shadow: none; }
@media (hover: hover) {
  .contact .btn:hover { background: color-mix(in srgb, var(--base) 10%, transparent); }
  .contact .btn.primary:hover { background: color-mix(in srgb, var(--base) 85%, white); }
}

/* ---------- sticky contact dock ---------- */
.contact-dock {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 60;
  display: flex; flex-direction: column; align-items: flex-end;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.contact-dock[hidden] { display: none; }
.contact-dock.on { opacity: 1; transform: none; pointer-events: auto; }
.dock-toggle {
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  background: var(--accent-fill); color: var(--card);
  border: 0; border-radius: 999px; padding: 0.9rem 1.6rem; cursor: pointer;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--ink) 25%, transparent);
  transition: transform 0.25s ease, background 0.25s ease;
}
@media (hover: hover) {
  .dock-toggle:hover { transform: translateY(-2px); background: var(--accent-hover); }
}
.dock-toggle:active { transform: scale(0.97); }
.dock-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.dock-panel {
  display: flex; flex-direction: column; gap: 0.65rem;
  margin-bottom: 0.8rem; padding: 1rem;
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 50px color-mix(in srgb, var(--ink) 18%, transparent);
  min-width: 15rem; max-width: min(80vw, 19rem);
  opacity: 0; transform: translateY(8px); visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}
.contact-dock.open .dock-panel {
  opacity: 1; transform: none; visibility: visible;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.dock-panel .btn { padding: 0.8rem 1.4rem; font-size: 0.95rem; text-align: center; }

/* ---------- shared reveal + hover transitions ----------
   One rule, late in the cascade: opacity/translate carry the staggered
   reveal (delay --d), box-shadow/transform carry instant hover lifts. */
.reveal, .lines, .strip, .story-fact {
  transition: opacity var(--reveal-duration) cubic-bezier(.25,.1,.25,1) var(--d, 0s),
              translate var(--reveal-duration) cubic-bezier(.25,.1,.25,1) var(--d, 0s),
              box-shadow 0.3s ease,
              transform 0.3s ease;
}
body.js .reveal:not(.in), body.js .lines:not(.in),
body.js .strip:not(.in), body.js .story-fact:not(.in) {
  opacity: 0; translate: 0 14px;
}

/* ---------- footer ---------- */
footer.site {
  background: var(--base-alt);
  border-top: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  padding: 1.6rem var(--pad); text-align: center;
  font-size: 0.85rem; color: var(--ink-soft);
}

/* ---------- expandable map + photo lightbox (JS-built overlays) ---------- */
html.no-scroll, html.no-scroll body { overflow: hidden; }
.strip img { cursor: zoom-in; }
.map-canvas { cursor: pointer; }
.map-expand {
  position: absolute; right: 10px; bottom: 28px; z-index: 3;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  color: var(--ink); border: 1px solid var(--hairline); border-radius: 999px;
  padding: 0.5rem 1rem; cursor: pointer;
}
@media (hover: hover) { .map-expand:hover { background: var(--card); } }

.map-overlay, .lightbox {
  position: fixed; inset: 0; z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.map-overlay.open, .lightbox.open { opacity: 1; pointer-events: auto; }

.map-overlay { background: var(--base); }
.map-overlay-body {
  position: absolute; inset: 0;
  transform: scale(0.97);
  transition: transform 0.35s cubic-bezier(.25,.1,.25,1);
}
.map-overlay.open .map-overlay-body { transform: none; }
.map-overlay-body .map-live { position: absolute; inset: 0; opacity: 1; transition: none; }
.map-overlay-static {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: var(--img-filter) saturate(0.85);
}

.map-overlay-close, .lb-close {
  position: fixed; top: 0.9rem; right: 0.9rem; z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--base); border: 0;
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.lightbox { background: color-mix(in srgb, var(--dark-1) 96%, black); }
.lb-stage {
  position: absolute; inset: 0; margin: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.9rem; padding: clamp(1rem, 4vw, 3rem);
  transform: scale(0.94) translateY(14px);
  transition: transform 0.35s cubic-bezier(.25,.1,.25,1);
}
.lightbox.open .lb-stage { transform: none; }
.lb-stage img {
  max-width: 100%; max-height: 82svh; width: auto; height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: default;
}
.lb-stage figcaption {
  color: var(--on-dark-soft);
  font-size: 0.85rem; min-height: 1em; text-align: center;
}
.lb-count {
  position: fixed; bottom: 1.1rem; left: 50%; transform: translateX(-50%);
  color: color-mix(in srgb, var(--base) 60%, transparent);
  font-size: 0.78rem; letter-spacing: 0.1em;
}
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  background: color-mix(in srgb, var(--base) 12%, transparent);
  color: var(--base); border: 0; font-size: 1.7rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lb-prev { left: 0.9rem; }
.lb-next { right: 0.9rem; }
@media (hover: hover) {
  .lb-prev:hover, .lb-next:hover { background: color-mix(in srgb, var(--base) 24%, transparent); }
}
.lightbox.single .lb-prev, .lightbox.single .lb-next, .lightbox.single .lb-count { display: none; }
.map-overlay-close:focus-visible, .lb-close:focus-visible,
.lb-prev:focus-visible, .lb-next:focus-visible,
.map-expand:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- small screens ---------- */
@media (max-width: 700px) {
  .hero { padding-top: clamp(3rem, 8vh, 4.5rem); }
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero-cta { gap: 1.3rem; }
  section { padding: clamp(3.5rem, 9vh, 5rem) var(--pad); }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
  .strip img { aspect-ratio: 4 / 3; }
  .hero-photo .strip img { aspect-ratio: auto; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  .amenity { min-height: 5rem; padding: 1.1rem 0.9rem; }
  .amenity span { font-size: 0.9rem; }
  .contact-actions {
    flex-direction: column; align-items: stretch;
    width: min(100%, 21rem); margin-left: auto; margin-right: auto;
  }
  .btn { text-align: center; }
  .localnav-title { font-size: 1.1rem; }
  /* lightbox arrows drop to the bottom corners, out of the photo's way */
  .lb-prev, .lb-next { top: auto; bottom: 1rem; transform: none; width: 42px; height: 42px; }
  .lb-prev { left: 1rem; }
  .lb-next { right: 1rem; }
  .lb-count { bottom: 1.55rem; }
}

/* ---------- reduced motion: everything visible, nothing moves ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .lines, .strip, .story-fact { transition: none; }
  body.js .reveal:not(.in), body.js .lines:not(.in),
  body.js .strip:not(.in), body.js .story-fact:not(.in) { opacity: 1; translate: none; }
  .amenity, .btn, .dock-toggle { transition: none; }
  .contact-dock, .dock-panel { transition: none; }
  .map-overlay, .lightbox, .map-overlay-body, .lb-stage, .lb-stage img { transition: none; }
}
