/* ============================================================
   McCormick Ranch Assisted Living — editorial-luxury system
   Fraunces + Figtree · warm near-monochrome · photography-led.
   Motion: hero parallax, scroll reveals, collapsing MENU, carousel.
   ============================================================ */

:root {
  --paper: #F5F1E8; --paper-2: #FBF8F1; --white: #FFFFFF;
  --ink: #1A1611; --body: #2E2A22; --label: #6B6154;
  --line: #D6CDBB; --line-soft: #E6DFD0;
  --clay: #A85C3C; --avail: #5E7D5A;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1240px; --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(3.25rem, 2.5rem + 3vw, 5.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-body: 1.1875rem; --label-ls: 0.2em;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; background: var(--paper); color: var(--body);
  font-family: var(--sans); font-size: var(--t-body); line-height: 1.72; -webkit-font-smoothing: antialiased; }
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { font-family: var(--serif); font-optical-sizing: auto; color: var(--ink); font-weight: 500; line-height: 1.08; margin: 0; }
p { margin: 0; }
a { color: var(--ink); }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 840px; margin-inline: auto; padding-inline: var(--gutter); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Labels ---------- */
.label { font-family: var(--sans); font-weight: 600; font-size: .72rem;
  letter-spacing: var(--label-ls); text-transform: uppercase; color: var(--label); }
.label-line { display: inline-flex; align-items: center; gap: .8rem; }
.label-line::before { content: ""; width: 30px; height: 1px; background: var(--clay); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 52px; padding: .85em 1.9em; font-family: var(--sans); font-size: .82rem;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase; border: 1px solid transparent;
  border-radius: 0; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-sm { min-height: 44px; padding: .6em 1.3em; }
.btn-block { width: 100%; }
.btn-onphoto-solid { background: var(--paper); color: var(--ink); }
.btn-onphoto-solid:hover { background: #fff; }
.btn-onphoto-outline { background: rgba(0,0,0,.12); color: #fff; border-color: rgba(255,255,255,.75); }
.btn-onphoto-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- Status ---------- */
.status { display: inline-flex; align-items: center; gap: .55em; font-family: var(--sans);
  font-weight: 600; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .5em 1em; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: var(--white); }
.status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--avail); box-shadow: 0 0 0 3px rgba(94,125,90,.18); }
.status-onphoto { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(0,0,0,.14); backdrop-filter: blur(3px); }

/* ---------- Header ---------- */
.hdr { position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 86%, transparent); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .3s ease; }
.hdr.scrolled { border-bottom-color: var(--line); }
.hdr-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 78px; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); transition: min-height .3s var(--ease); }
.hdr.scrolled .hdr-inner { min-height: 64px; }
.brand img { height: 44px; width: auto; transition: height .25s var(--ease); }
.hdr.scrolled .brand img { height: 38px; }
.nav-inline { display: flex; gap: 1.6rem; margin-left: auto; transition: opacity .28s var(--ease), transform .28s var(--ease); }
.nav-inline a { font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink); text-decoration: none; opacity: .82; }
.nav-inline a:hover { opacity: 1; }
.hdr-right { display: flex; align-items: center; gap: 1.1rem; margin-left: auto; }
.hdr-phone { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); text-decoration: none; }
.hdr-phone:hover { color: var(--clay); }
.menu-btn { display: inline-flex; opacity: 1; pointer-events: auto; align-items: center; gap: .5em; background: none; border: 0; cursor: pointer;
  font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); padding: .5em .2em; transition: opacity .28s var(--ease); }
.menu-btn .bars { display: inline-flex; flex-direction: column; gap: 3px; }
.menu-btn .bars i { width: 20px; height: 1.5px; background: var(--ink); display: block; }
/* Coherent collapse: nav fades out, MENU fades in (space reserved, no jump) */
.hdr.scrolled .nav-inline { opacity: 0; transform: translateY(-6px); pointer-events: none; }
.hdr.scrolled .menu-btn { opacity: 1; pointer-events: auto; }
@media (max-width: 860px) {
  .nav-inline { display: none; }
  .hdr-phone { display: none; }
  .menu-btn { opacity: 1; pointer-events: auto; }
}

/* ---------- Slide-out MENU ---------- */
.menu-scrim { position: fixed; inset: 0; background: rgba(20,18,15,.5); opacity: 0; z-index: 60; transition: opacity .4s var(--ease); }
.menu-scrim.show { opacity: 1; }
.menu-panel { position: fixed; top: 0; right: 0; height: 100%; width: min(440px, 88vw); z-index: 70;
  background: var(--ink); color: var(--paper); padding: clamp(1.75rem, 4vw, 3rem);
  transform: translateX(100%); transition: transform .5s var(--ease); display: flex; flex-direction: column; }
.menu-panel.open { transform: translateX(0); }
.menu-close { align-self: flex-end; background: none; border: 0; cursor: pointer; color: var(--paper);
  font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .6em; padding: .4em; }
.menu-links { margin-block: auto; display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; text-align: right; }
.menu-links a { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 500;
  color: var(--paper); text-decoration: none; line-height: 1.28; transition: color .25s ease, padding .3s var(--ease); }
.menu-links a:hover { color: #C9A87F; padding-right: .35rem; }
.menu-foot { border-top: 1px solid rgba(245,241,232,.16); padding-top: 1.4rem; }
.menu-foot a { color: var(--paper); text-decoration: none; font-family: var(--serif); font-size: 1.4rem; }
.menu-foot .label { color: #A79C88; margin-bottom: .4rem; }

/* ---------- Hero ---------- */
/* subtract the in-flow sticky header so the full hero fits in the first screen */
.hero { position: relative; min-height: max(560px, calc(100svh - 80px)); overflow: hidden; }
.hero-bg { position: absolute; left: 0; right: 0; top: -15%; height: 130%; will-change: transform; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background:
  linear-gradient(to top, rgba(20,18,15,.74) 0%, rgba(20,18,15,.30) 34%, rgba(20,18,15,.08) 60%, rgba(20,18,15,.26) 100%); }
.hero-inner { position: relative; z-index: 2; min-height: inherit; max-width: var(--wrap); margin-inline: auto;
  padding: clamp(5rem, 3.5rem + 3vw, 6.5rem) var(--gutter) clamp(2.5rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; }
.hero .eyebrow { color: #F3EEE2; margin-bottom: 1.1rem; }
.hero .eyebrow::before { background: #D8B98C; }
.hero h1 { color: #fff; font-weight: 500; letter-spacing: -0.005em; max-width: 40ch; text-shadow: 0 1px 30px rgba(0,0,0,.28); }
.hero h1 .h1-name { display: block; font-size: clamp(2.6rem, 1.8rem + 3.4vw, 4.6rem); max-width: 15ch; }
.hero h1 .h1-desc { display: block; font-family: var(--sans); font-weight: 400; letter-spacing: 0; color: #F0EBE0;
  font-size: clamp(1.05rem, 1rem + .6vw, 1.4rem); line-height: 1.45; margin-top: .9rem; max-width: 44ch; }
.hero-sub { color: #F0EBE0; font-size: clamp(1.02rem, 1rem + .45vw, 1.2rem); max-width: 50ch; margin: 1rem 0 0; }
.hero-status { margin: 1.2rem 0 1.3rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; }
.scroll-cue { position: absolute; right: var(--gutter); bottom: clamp(1.5rem, 4vw, 2.5rem); z-index: 3;
  width: 74px; height: 74px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; display: grid; place-items: center;
  color: #fff; text-decoration: none; transition: opacity .4s ease, background-color .3s ease; }
.scroll-cue:hover { background: rgba(255,255,255,.12); }
.scroll-cue svg { width: 20px; height: 20px; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(-3px); } 50% { transform: translateY(4px); } }
@media (max-width: 560px) { .scroll-cue { display: none; } }

/* ---------- Decorative ---------- */
.divider { display: flex; justify-content: center; padding-block: clamp(2rem, 4vw, 3.25rem); }
.divider svg { color: var(--line); width: 90px; height: 20px; }
.scribble-wrap { position: relative; display: inline-block; }
.scribble-wrap .scribble { position: absolute; left: -8%; top: -14%; width: 116%; height: 128%; color: var(--clay); pointer-events: none; overflow: visible; }
.scribble-wrap .scribble path { stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; }

/* ---------- Care stat bar ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--wrap); margin-inline: auto; }
.stat { padding: clamp(2rem, 4vw, 3.25rem) 1.5rem; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .big { font-family: var(--sans); font-size: clamp(1.6rem, 1.25rem + 1.4vw, 2.5rem); font-weight: 600; letter-spacing: -0.01em; color: var(--ink); line-height: 1.1; margin-bottom: .7rem; }
.stat .lbl { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--label); }
@media (max-width: 720px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Subtle in-page section nav (under the stat bar) ---------- */
.section-nav { background: var(--paper); border-bottom: 1px solid var(--line); }
.section-nav-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.1rem, 3vw, 2.6rem); padding-block: 1rem; }
.section-nav a { font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--label); text-decoration: none; white-space: nowrap; padding: .2em 0; transition: color .2s var(--ease); }
.section-nav a:hover, .section-nav a:focus-visible { color: var(--clay); }

/* ---------- Section scaffolding ---------- */
.section { padding-block: var(--section); }
.section-alt { background: var(--paper-2); }
.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head .label { margin-bottom: 1rem; }
.section-head h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem); max-width: 20ch; }
.lede { font-size: clamp(1.2rem, 1.1rem + .5vw, 1.45rem); color: var(--body); max-width: 62ch; }
.prose p { max-width: 68ch; }
.prose p + p { margin-top: 1.2rem; }

/* ---------- Editorial split (text beside photo) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.75rem, 4vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: -1; }
.split-media { position: relative; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform 1.2s var(--ease); }
.split-media:hover img { transform: scale(1.04); }
.split-media .cap { position: absolute; left: 0; bottom: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding: .55em .9em; }
.split-duo { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.split-duo img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* ---------- Care services ---------- */
.care-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.care-list li { padding: 1.6rem 1.5rem 1.7rem; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.care-list li:nth-child(3n) { border-right: 0; }
.care-list h3 { font-size: 1.4rem; margin-bottom: .35rem; display: flex; align-items: center; gap: .6rem; }
.care-list h3 .n { font-size: .72rem; font-family: var(--sans); font-weight: 600; letter-spacing: .1em; color: var(--clay); }
.care-list p { font-size: 1rem; color: var(--body); }
@media (max-width: 780px) { .care-list { grid-template-columns: 1fr 1fr; } .care-list li:nth-child(3n) { border-right: 1px solid var(--line); } .care-list li:nth-child(2n) { border-right: 0; } }
@media (max-width: 520px) { .care-list { grid-template-columns: 1fr; } .care-list li { border-right: 0 !important; } }

/* ---------- Pull-quote (Directed Care editorial) ---------- */
.pullquote { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--ink);
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.3rem); line-height: 1.3; max-width: 22ch; }
.pullquote .label { display: block; font-style: normal; margin-bottom: 1rem; }

/* ---------- Amenities ---------- */
.amenity-cols { columns: 2; column-gap: 3rem; max-width: 720px; }
.amenity-cols li { list-style: none; padding: .85rem 0; border-bottom: 1px solid var(--line); break-inside: avoid;
  font-size: 1.1rem; color: var(--ink); display: flex; align-items: center; gap: .8rem; }
.amenity-cols li::before { content: ""; width: 6px; height: 6px; background: var(--clay); border-radius: 50%; flex: none; }
.amenity-cols { padding: 0; margin: 0; }
@media (max-width: 560px) { .amenity-cols { columns: 1; } }

/* ---------- Photo marquee (continuous, calm auto-scroll) ---------- */
.marquee { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 55s linear infinite; }
.marquee:hover .marquee-track, .marquee.paused .marquee-track { animation-play-state: paused; }
.marquee-item { flex: none; width: clamp(280px, 34vw, 460px); margin-right: 16px; }
.marquee-item figure { margin: 0; overflow: hidden; border-radius: 4px; background: var(--line-soft); }
.marquee-item img { width: 100%; height: clamp(210px, 24vw, 320px); object-fit: cover; display: block; transition: transform 1.4s var(--ease); }
.marquee-item:hover img { transform: scale(1.04); }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  /* No auto-scroll: fall back to a static, manually swipeable row */
  .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; -webkit-mask-image: none; mask-image: none; }
  .marquee-track { animation: none; }
}
.gallery-cta { text-align: center; margin-top: 2.25rem; }

/* ---------- Full gallery modal ---------- */
.gallery-modal { position: fixed; inset: 0; z-index: 80; background: var(--paper); overflow-y: auto; }
.gallery-modal[hidden] { display: none; }
.gallery-modal-head { position: sticky; top: 0; z-index: 2; background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 1.1rem var(--gutter); }
.gallery-close { grid-column: 1; justify-self: start; background: none; border: 0; cursor: pointer; display: inline-flex;
  align-items: center; gap: .5em; font-family: var(--sans); font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.gallery-modal-title { grid-column: 2; font-family: var(--serif); font-size: 1.6rem; color: var(--ink); }
.gallery-modal-body { max-width: var(--wrap); margin-inline: auto; padding: clamp(1.5rem,4vw,3rem) var(--gutter) 5rem;
  display: grid; grid-template-columns: minmax(200px, 260px) 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
.gallery-modal-name { font-family: var(--serif); font-size: clamp(1.5rem,1.2rem+1vw,2.1rem); color: var(--ink); position: sticky; top: 100px; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.g-item { border: 0; padding: 0; margin: 0; background: var(--line-soft); cursor: pointer; overflow: hidden; border-radius: 4px; display: block; }
.g-item.wide { grid-column: 1 / -1; }
.g-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; display: block; transition: transform .6s var(--ease); }
.g-item.wide img { aspect-ratio: 16/9; }
.g-item:hover img, .g-item:focus-visible img { transform: scale(1.03); }
@media (max-width: 760px) {
  .gallery-modal-body { grid-template-columns: 1fr; }
  .gallery-modal-name { position: static; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item.wide img { aspect-ratio: 3/2; }
}

/* ---------- Lightbox (full photo view) ---------- */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(20,18,15,.94); display: grid; place-items: center; }
.lightbox[hidden] { display: none; }
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: .9rem; padding: 0 1rem; }
.lb-figure img { max-width: 92vw; max-height: 80vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.lb-figure figcaption { color: #E7DFCF; font-family: var(--sans); font-size: .85rem; letter-spacing: .04em; text-align: center; max-width: 60ch; }
.lb-close { position: absolute; top: 1.1rem; right: 1.3rem; background: none; border: 0; color: #fff; cursor: pointer; padding: .5em; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.4); color: #fff; width: 56px; height: 56px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background-color .25s var(--ease); }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: clamp(.75rem, 3vw, 2rem); }
.lb-next { right: clamp(.75rem, 3vw, 2rem); }
.lb-close svg { width: 26px; height: 26px; }
.lb-prev svg, .lb-next svg { width: 24px; height: 24px; }
.lb-counter { position: absolute; bottom: 1.3rem; left: 50%; transform: translateX(-50%); color: #E7DFCF;
  font-family: var(--serif); font-size: 1.1rem; font-variant-numeric: tabular-nums; }
@media (max-width: 560px) { .lb-prev, .lb-next { width: 46px; height: 46px; } }

/* ---------- Why small home ---------- */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.reasons li { list-style: none; padding: 2rem 1.75rem; border-right: 1px solid var(--line); }
.reasons li:last-child { border-right: 0; }
.reasons .r-num { font-family: var(--serif); font-size: 1.4rem; color: var(--clay); display: block; margin-bottom: .8rem; }
.reasons h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.reasons p { font-size: 1.02rem; color: var(--body); }
@media (max-width: 780px) { .reasons { grid-template-columns: 1fr; } .reasons li { border-right: 0; border-bottom: 1px solid var(--line); } .reasons li:last-child { border-bottom: 0; } }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.price-figure { font-family: var(--serif); font-weight: 500; color: var(--ink); line-height: .9; }
.price-figure .amt { display: block; font-family: var(--sans); font-weight: 700; font-size: clamp(3.25rem, 2rem + 6vw, 6rem); letter-spacing: -0.03em; }
.price-figure .per { font-family: var(--sans); font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--label); display: block; margin-top: 1rem; }
.included { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.included li { padding: .8rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; color: var(--ink); display: flex; align-items: center; gap: .8rem; }
.included li::before { content: ""; width: 6px; height: 6px; background: var(--clay); border-radius: 50%; flex: none; }
@media (max-width: 820px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---------- Location + on-demand map ---------- */
.loc-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: stretch; }
.landmarks { list-style: none; margin: 1.4rem 0; padding: 0; }
.landmarks li { padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; color: var(--ink); }
.nap-card { font-style: normal; margin-top: 1.6rem; }
.nap-card .label { margin-bottom: .6rem; }
.nap-card .addr { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); line-height: 1.4; }
.nap-card a { font-family: var(--serif); color: var(--ink); text-decoration: none; }
.nap-card a:hover { color: var(--clay); }
.map-panel { position: relative; min-height: 380px; border: 1px solid var(--line); overflow: hidden; background: var(--paper-2); }
.map-topo { position: absolute; inset: 0; opacity: .5; }
.map-cta { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem; text-align: center; padding: 2rem; }
.map-pin { width: 20px; height: 20px; border-radius: 50% 50% 50% 0; background: var(--clay); transform: rotate(-45deg); position: relative; }
.map-pin::after { content: ""; position: absolute; inset: 5px; background: var(--paper-2); border-radius: 50%; }
.map-pin-wrap { position: relative; }
.map-pin-wrap::before { content: ""; position: absolute; left: 50%; top: 60%; width: 40px; height: 40px; transform: translate(-50%,-50%);
  border-radius: 50%; background: rgba(168,92,60,.3); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0% { transform: translate(-50%,-50%) scale(.5); opacity: .8; } 100% { transform: translate(-50%,-50%) scale(2.4); opacity: 0; } }
.map-addr { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); }
.map-panel iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- Full-bleed address banner ---------- */
.banner { position: relative; min-height: 60vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner .scrim { position: absolute; inset: 0; background: rgba(20,18,15,.5); }
.banner-inner { position: relative; z-index: 2; color: #fff; padding: var(--gutter); }
.banner-inner .label { color: #E7DFCF; margin-bottom: 1rem; justify-content: center; }
.banner-inner h2 { color: #fff; font-size: clamp(2rem, 1.4rem + 3vw, 3.6rem); }
.banner-inner .addr { font-family: var(--serif); font-size: clamp(1.2rem, 1rem + 1vw, 1.7rem); margin-top: .8rem; color: #F0EBE0; }
.banner-inner .btn { margin-top: 1.8rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 { font-size: clamp(1.2rem, 1rem + .7vw, 1.6rem); font-weight: 500; }
.faq summary .ico { flex: none; width: 26px; height: 26px; position: relative; }
.faq summary .ico::before, .faq summary .ico::after { content: ""; position: absolute; background: var(--clay); transition: transform .3s var(--ease); }
.faq summary .ico::before { top: 12px; left: 3px; width: 20px; height: 1.5px; }
.faq summary .ico::after { left: 12px; top: 3px; width: 1.5px; height: 20px; }
.faq details[open] summary .ico::after { transform: scaleY(0); }
.faq details > p { padding: 0 0 1.6rem; max-width: 70ch; color: var(--body); }

/* ---------- Reviews (hidden placeholder) ---------- */
.review-card { border-left: 2px solid var(--clay); padding-left: 1.5rem; }
.review-card .stars { color: var(--clay); letter-spacing: .2em; margin-bottom: .6rem; }
.review-card blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--ink); }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-call { margin-top: 1.8rem; }
.contact-call a { font-family: var(--serif); font-size: 1.9rem; color: var(--ink); text-decoration: none; }
.contact-call a:hover { color: var(--clay); }
.contact-hours { color: var(--label); font-size: .95rem; margin-top: .3rem; }
.info-form { background: var(--paper-2); border: 1px solid var(--line); padding: clamp(1.5rem, 3vw, 2.5rem); }
.info-form .form-note { color: var(--label); font-size: .95rem; margin-bottom: 1.6rem; }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: var(--sans); font-weight: 600; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: .5rem; }
.field .opt { color: var(--label); text-transform: none; letter-spacing: 0; font-weight: 400; }
.info-form input, .info-form select, .info-form textarea { width: 100%; font-family: var(--sans); font-size: 1.0625rem;
  color: var(--ink); background: var(--white); border: 1.6px solid #8C8171; border-radius: 2px; padding: .8em .9em; min-height: 52px; }
.info-form input::placeholder, .info-form textarea::placeholder { color: #8C8272; }
.info-form textarea { min-height: 120px; resize: vertical; }
.info-form input:focus, .info-form select:focus, .info-form textarea:focus { outline: 2px solid var(--ink); outline-offset: 0; border-color: var(--ink); }
.tour-fields { border: 1px dashed var(--line); padding: 1rem 1.1rem .2rem; margin-bottom: 1.15rem; }
.tour-fields legend { font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--label); padding-inline: .4em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field-check { display: flex; align-items: flex-start; gap: .7rem; }
.field-check input { width: 24px; height: 24px; min-height: 0; margin-top: .1em; accent-color: var(--clay); flex: none; border: 1.6px solid #8C8171; }
.field-check label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: .98rem; color: var(--body); margin: 0; }
.field-check a { color: var(--ink); }
.form-error { color: #9A2A1E; font-weight: 600; font-size: .98rem; margin-top: .8rem; }
.form-success { margin-top: 1.2rem; border-left: 2px solid var(--avail); background: var(--paper-2); padding: 1.1rem 1.3rem; }
.form-success p { margin-bottom: .4em; } .form-success p:last-child { margin-bottom: 0; }
/* On success, hide the fields and leave only the confirmation message */
.info-form.sent > :not(.form-success) { display: none; }
.info-form.sent .form-success { margin-top: 0; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding-block: clamp(3rem, 5vw, 5rem) 6rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-brand img { height: 52px; width: auto; background: var(--paper); padding: 8px 12px; }
.footer-brand p { margin-top: 1.2rem; color: #C4BAA6; font-size: .98rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #A79C88; margin: 0 0 1rem; }
.footer-col a, .footer-col address { display: block; color: var(--paper); text-decoration: none; font-style: normal; line-height: 1.9; }
.footer-col a:hover { color: #C9A87F; }
.footer-col .big { font-family: var(--serif); font-size: 1.6rem; }
.footer-bottom { border-top: 1px solid rgba(245,241,232,.14); margin-top: 3rem; padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; color: #A79C88; font-size: .85rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Sticky mobile call bar ---------- */
.call-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; display: none; }
.call-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: .5em; min-height: 58px;
  font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }
.call-bar .cb-call { background: var(--clay); color: #fff; }
.call-bar .cb-info { background: var(--ink); color: var(--paper); }
@media (max-width: 860px) { .call-bar { display: flex; } .site-footer { padding-bottom: 6rem; } }

/* ---------- Scroll reveal (JS-gated so content is never stuck hidden) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
.stat[data-reveal].in:nth-child(2) { transition-delay: .08s; }
.stat[data-reveal].in:nth-child(3) { transition-delay: .16s; }
.stat[data-reveal].in:nth-child(4) { transition-delay: .24s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], .js [data-reveal] { opacity: 1 !important; transform: none !important; }
}
