/* ==========================================================================
   Lincoln Heritage Museum — site styles
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------
   Self-hosted, so a page load makes no request to fonts.googleapis.com or
   fonts.gstatic.com. Same files Google serves (Fraunces v38, Inter v20), same
   unicode-range split, so latin-ext is only fetched if a page ever needs it.

   Both are variable fonts. Fraunces carries opsz / wght / SOFT / WONK, which is
   what the `font-variation-settings` further down rely on; Inter carries wght,
   so one file covers weights 400, 500 and 600.

   To update: fetch the css2 URL from a modern browser UA, download the latin
   and latin-ext woff2 it names, and replace the files in /assets/fonts/. */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/assets/fonts/fraunces-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/assets/fonts/fraunces-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/assets/fonts/inter-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/assets/fonts/inter-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Tokens ------------------------------------------------------------- */
:root {
  --ink:        #12151a;
  --ink-2:      #1b1f26;
  --ink-3:      #2a2f38;
  --paper:      #faf7f1;
  --paper-2:    #f1ebe0;
  --line:       #ddd4c4;
  --line-dark:  rgba(255,255,255,.14);

  --brass:      #b3873c;
  --brass-lt:   #d9ae60;
  --brick:      #963722;

  --text:       #1a1d23;
  --text-mute:  #5c6270;
  --text-inv:   #f4f1ea;
  --text-inv-m: #b3b0a8;

  --ff-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --ff-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap:       1200px;
  --wrap-text:  68ch;
  --gutter:     clamp(1.25rem, 5vw, 4rem);
  --radius:     4px;
  --shadow:     0 1px 2px rgba(18,21,26,.06), 0 12px 32px -12px rgba(18,21,26,.18);
  --shadow-lg:  0 2px 4px rgba(18,21,26,.08), 0 30px 60px -24px rgba(18,21,26,.34);
  --ease:       cubic-bezier(.22,.61,.36,1);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--brass); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: .5rem; top: -4rem; z-index: 200;
  background: var(--ink); color: var(--text-inv);
  padding: .7rem 1.1rem; border-radius: var(--radius);
  text-decoration: none; font-weight: 600; font-size: .9rem;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: .5rem; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Anchor targets must clear the sticky header when jumped to. */
:target, section[id], [id^="reserve"], [id^="give"] { scroll-margin-top: 96px; }

/* --- Layout helpers ----------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 880px; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark { background: var(--ink); color: var(--text-inv); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--text-inv); }
.section--tint { background: var(--paper-2); }

.eyebrow {
  font-family: var(--ff-body);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: currentColor; opacity: .3; max-width: 5rem; }
.section--dark .eyebrow { color: var(--brass-lt); }

.h-xl  { font-size: clamp(2.5rem, 6.5vw, 4.5rem); }
.h-lg  { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.h-md  { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.lede  { font-size: clamp(1.1rem, 1.6vw, 1.28rem); line-height: 1.6; color: var(--text-mute); max-width: var(--wrap-text); }
.section--dark .lede { color: var(--text-inv-m); }
.prose { max-width: var(--wrap-text); }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; font-size: 1.25rem; }
.prose ul { padding-left: 1.15em; margin: 0 0 1.15em; }
.prose li { margin-bottom: .45em; }
.prose a { color: var(--brick); text-underline-offset: 3px; }
.section--dark .prose a { color: var(--brass-lt); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.6rem;
  font-size: .92rem; font-weight: 600; letter-spacing: .02em;
  text-decoration: none; border: 1px solid transparent; border-radius: 2px;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--brass); color: #fff; }
.btn--primary:hover { background: #9d742f; }
.btn--dark { background: var(--ink); color: var(--text-inv); }
.btn--dark:hover { background: var(--ink-3); }
.btn--ghost { border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.section--tint .btn--ghost:hover, .section:not(.section--dark) .btn--ghost:hover { background: rgba(18,21,26,.06); }
.btn__arrow { transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.link-more {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .84rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brick); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: gap .22s var(--ease), color .22s var(--ease);
}
.link-more:hover { gap: .85rem; }
.section--dark .link-more { color: var(--brass-lt); }

/* --- Announcement bar --------------------------------------------------- */
.announce {
  background: var(--ink-2); color: var(--text-inv-m);
  font-size: .82rem; letter-spacing: .01em;
  border-bottom: 1px solid var(--line-dark);
}
.announce__inner {
  display: flex; flex-wrap: wrap; gap: .35rem 1.5rem;
  align-items: center; justify-content: center;
  padding-block: .55rem; text-align: center;
}
.announce p { margin: 0; }
.announce strong { color: var(--text-inv); font-weight: 600; }
.announce a { color: inherit; text-underline-offset: 2px; }
.announce a:hover { color: var(--text-inv); }
.announce__status { display: inline-flex; align-items: center; gap: .55rem; }
.announce__note { color: #8c8981; }

.announce__dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: #7c7f86; /* unknown: JS has not run */
}
.announce__status[data-state="open"]   .announce__dot { background: #4ea36a; box-shadow: 0 0 0 3px rgba(78,163,106,.18); }
.announce__status[data-state="soon"]   .announce__dot { background: var(--brass-lt); box-shadow: 0 0 0 3px rgba(217,174,96,.18); }
.announce__status[data-state="closed"] .announce__dot { background: #9a5a4c; }

/* --- Header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,241,.93);
  backdrop-filter: saturate(1.6) blur(14px);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 78px;
}

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex: none; }
.brand__mark { width: 42px; height: 42px; border-radius: 50%; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--ff-display); font-weight: 600;
  font-size: 1.02rem; letter-spacing: .01em;
}
.brand__sub {
  font-size: .62rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--text-mute); margin-top: .28rem;
}

.nav { display: flex; align-items: center; gap: .15rem; }
.nav__link {
  position: relative;
  padding: .55rem .72rem;
  font-size: .92rem; font-weight: 500;
  text-decoration: none; color: var(--text);
  border-radius: 3px;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: .72rem; right: .72rem; bottom: .28rem;
  height: 1.5px; background: var(--brass);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--brick); }
.header-cta { margin-left: .6rem; padding: .7rem 1.2rem; font-size: .85rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; position: relative;
  background: none; border: 1px solid var(--line); border-radius: 3px;
  cursor: pointer; align-items: center; justify-content: center; flex: none;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  display: block; width: 20px; height: 1.5px; background: var(--text);
  transition: transform .25s var(--ease), background-color .2s var(--ease);
}
.nav-toggle__bars::before, .nav-toggle__bars::after { content: ""; position: absolute; }
.nav-toggle__bars::before { transform: translateY(-6px); }
.nav-toggle__bars::after  { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: rotate(-45deg); }

.nav-scrim { display: none; }

@media (max-width: 1000px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); z-index: 101;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: 6.5rem 1.75rem 2rem;
    background: var(--paper); border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateX(101%); transition: transform .32s var(--ease);
    overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateX(0); }
  .nav__link { padding: .95rem .25rem; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .header-cta { margin: 1.5rem 0 0; justify-content: center; }
  .nav-scrim {
    display: block; position: fixed; inset: 0; background: rgba(18,21,26,.5);
    opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); z-index: 99;
  }
  .nav-scrim[data-open="true"] { opacity: 1; pointer-events: auto; }
}
body[data-nav-open="true"] { overflow: hidden; }

/* --- Hero --------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; color: var(--text-inv); background: var(--ink); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(10,12,15,.94) 2%, rgba(10,12,15,.55) 48%, rgba(10,12,15,.35) 100%),
    linear-gradient(to right, rgba(10,12,15,.78), rgba(10,12,15,.18) 68%);
}
.hero__inner { padding-block: clamp(5.5rem, 17vh, 10rem) clamp(3.5rem, 9vh, 6rem); position: relative; }
.hero__title { font-size: clamp(2.7rem, 7.2vw, 5.2rem); font-weight: 400; color: #fff; margin-bottom: .38em; }
.hero__title em {
  font-style: normal; display: block;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 100;
  color: var(--brass-lt);
}
.hero__lede { max-width: 48ch; color: rgba(244,241,234,.87); font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }

.hero--page { min-height: clamp(300px, 44vh, 460px); display: flex; align-items: flex-end; }
.hero--page .hero__inner { padding-block: clamp(4.5rem, 13vh, 7rem) clamp(2.5rem, 6vh, 4rem); width: 100%; }
.hero--page .hero__title { font-size: clamp(2.2rem, 5.2vw, 3.7rem); margin-bottom: .25em; }
.hero--page .hero__lede { max-width: 56ch; }

.breadcrumb { font-size: .8rem; letter-spacing: .06em; color: rgba(244,241,234,.72); margin-bottom: 1.1rem; }
.breadcrumb a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.28); }
.breadcrumb a:hover { color: #fff; border-color: #fff; }
.breadcrumb span { opacity: .5; padding-inline: .45rem; }

/* --- Quick facts strip -------------------------------------------------- */
.facts { background: var(--ink-2); color: var(--text-inv); }
.facts__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.facts__item { padding: 1.75rem 1.5rem; border-right: 1px solid var(--line-dark); }
.facts__item:last-child { border-right: 0; }
.facts__label {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brass-lt); margin-bottom: .5rem;
}
.facts__value { font-family: var(--ff-display); font-size: 1.15rem; line-height: 1.35; }
.facts__note { font-size: .82rem; color: var(--text-inv-m); margin-top: .3rem; }
@media (max-width: 760px) {
  .facts__item { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .facts__item:last-child { border-bottom: 0; }
}

/* --- Split (image + text) ----------------------------------------------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-text { grid-template-columns: 5fr 6fr; }
  .split--reverse .split__media { order: 2; }
}
.split__media { position: relative; margin: 0; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split__media figcaption { font-size: .8rem; color: var(--text-mute); margin-top: .8rem; font-style: italic; }
.section--dark .split__media figcaption { color: var(--text-inv-m); }

/* --- Cards -------------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr)); }

.card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #c9bda6; }
.card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--paper-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
a.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: 1.5rem 1.5rem 1.65rem; display: flex; flex-direction: column; flex: 1; }
.card__kicker {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass); margin-bottom: .6rem; font-weight: 600;
}
.card__title { font-size: 1.28rem; margin-bottom: .5rem; }
.card__text { font-size: .95rem; color: var(--text-mute); margin-bottom: 1.1rem; }
.card__foot { margin-top: auto; }
.section--dark .card { background: var(--ink-2); border-color: var(--line-dark); }
.section--dark .card__text { color: var(--text-inv-m); }
.section--dark a.card:hover { border-color: rgba(217,174,96,.5); }

/* --- Tour option -------------------------------------------------------- */
.tour {
  display: grid; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; background: #fff;
}
.tour + .tour { margin-top: 1.5rem; }
@media (min-width: 820px) { .tour { grid-template-columns: 330px 1fr; } }
.tour__media { background: var(--paper-2); }
.tour__media img { width: 100%; height: 100%; object-fit: cover; min-height: 230px; }
.tour__body { padding: clamp(1.5rem, 3vw, 2.25rem); }
.tour__meta { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.pill {
  display: inline-block; padding: .3rem .75rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 100px; color: var(--text-mute); background: var(--paper);
}
.pill--accent { border-color: var(--brass); color: #8a6425; background: rgba(179,135,60,.1); }

/* --- Schedule chips ----------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }
.chips li {
  padding: .45rem .9rem; background: var(--paper); border: 1px solid var(--line);
  border-radius: 2px; font-size: .9rem; font-variant-numeric: tabular-nums;
}
.section--dark .chips li { background: var(--ink-2); border-color: var(--line-dark); }

/* --- Definition rows ---------------------------------------------------- */
.rows { margin: 0; }
.rows div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .95rem 0; border-bottom: 1px solid var(--line);
}
.rows dt { color: var(--text-mute); font-size: .95rem; }
.rows dd { margin: 0; font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500; text-align: right; }
.section--dark .rows div { border-color: var(--line-dark); }
.section--dark .rows dt { color: var(--text-inv-m); }

/* --- Quotes ------------------------------------------------------------- */
.quotes { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.quote {
  padding: 2rem 1.75rem; background: var(--ink-2);
  border: 1px solid var(--line-dark); border-radius: var(--radius);
  display: flex; flex-direction: column;
}
.quote__mark { font-family: var(--ff-display); font-size: 3rem; line-height: .55; color: var(--brass); margin-bottom: 1rem; }
.quote__text { font-family: var(--ff-display); font-size: 1.1rem; line-height: 1.5; color: var(--text-inv); margin-bottom: 1.25rem; }
.quote__who { margin-top: auto; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-lt); }

/* --- Gallery strip ------------------------------------------------------ */
.strip { display: grid; gap: 4px; grid-template-columns: repeat(auto-fit, minmax(min(50%, 200px), 1fr)); }
.strip figure { margin: 0; overflow: hidden; }
.strip img {
  aspect-ratio: 1; object-fit: cover; width: 100%; filter: saturate(.92);
  transition: filter .4s var(--ease), transform .6s var(--ease);
}
.strip figure:hover img { filter: saturate(1.05); transform: scale(1.05); }

/* --- Callout ------------------------------------------------------------ */
.callout {
  border-left: 3px solid var(--brass);
  background: var(--paper-2); padding: 1.35rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .98rem;
}
.section--dark .callout { background: var(--ink-2); }

/* --- Upcoming closures --------------------------------------------------
   Rendered by site.js from the closure list; hidden until it has something to
   say, so a quiet stretch of the calendar shows nothing rather than an
   empty box. */
.closures {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.35rem; background: var(--paper-2);
}
.closures__title {
  font-family: var(--ff-body);
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--brick); margin-bottom: .75rem;
}
.closures__list { list-style: none; margin: 0 0 .8rem; padding: 0; }
.closures__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; flex-wrap: wrap;
  padding: .5rem 0; border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.closures__list li:last-child { border-bottom: 0; }
.closures__list strong { font-weight: 600; }
.closures__list span { color: var(--text-mute); text-align: right; }

/* --- Forms -------------------------------------------------------------- */
.form { display: grid; gap: 1.15rem; }
.form__row { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--text-mute); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--text);
  padding: .8rem .9rem; background: #fff;
  border: 1px solid var(--line); border-radius: 2px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(179,135,60,.16);
}
.field--hp { position: absolute; left: -9999px; }
.form__note { font-size: .85rem; color: var(--text-mute); }

/* --- Contact ------------------------------------------------------------ */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.6rem; }
.contact-list h3 {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass);
  margin: 0 0 .35rem; font-family: var(--ff-body); font-weight: 600;
}
.contact-list a { color: inherit; text-underline-offset: 3px; }
.map-embed { border: 0; width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius); }

/* --- CTA band ----------------------------------------------------------- */
.cta-band { position: relative; isolation: isolate; color: var(--text-inv); overflow: hidden; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(12,14,18,.96) 24%, rgba(12,14,18,.74) 64%, rgba(12,14,18,.55));
}

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--text-inv-m); font-size: .92rem; }
.site-footer a { color: var(--text-inv-m); text-decoration: none; }
.site-footer a:hover { color: var(--text-inv); }
/* Footer "finding us" band: directions summary + map, above the link columns. */
.footer__find {
  display: grid; gap: clamp(1.75rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 900px) { .footer__find { grid-template-columns: 1fr 1fr; align-items: start; } }
.footer__find p { margin-bottom: .9rem; }
.footer__find strong { color: var(--text-inv); font-weight: 600; }
.footer__addr {
  font-family: var(--ff-display); font-size: 1.15rem; line-height: 1.4;
  color: var(--text-inv); margin-bottom: 1.1rem;
}
.footer__routes { display: grid; gap: .85rem; margin-bottom: 1.3rem; font-size: .89rem; }
.footer__route { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: baseline; }
.footer__badge {
  font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); background: var(--brass-lt);
  padding: .25rem .5rem; border-radius: 2px; white-space: nowrap;
}
.footer__badge--66 { background: var(--brick); color: #fff; }
.footer__actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.footer__map {
  width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--line-dark); border-radius: var(--radius);
}
@media (min-width: 900px) { .footer__map { aspect-ratio: 4 / 3; } }

.footer__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
@media (min-width: 940px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.3fr; } }
.footer__title {
  font-family: var(--ff-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase; color: var(--brass-lt);
  margin: 0 0 1.1rem;
}
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.footer__brand { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.1rem; }
.footer__brand img { width: 52px; height: 52px; border-radius: 50%; }
.footer__brand span { font-family: var(--ff-display); font-size: 1.15rem; color: var(--text-inv); line-height: 1.15; }
.social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line-dark); border-radius: 50%;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}
.social a:hover { background: var(--brass); border-color: var(--brass); color: #fff; transform: translateY(-2px); }
.social svg { width: 17px; height: 17px; fill: currentColor; }
.footer__bar {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: .82rem;
}
.footer__bar p { margin: 0; }
.partners { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; font-size: .82rem; }

/* --- Reveal --------------------------------------------------------------
   Scoped to .js (set by an inline script in <head>) so that content is never
   left invisible if scripting is unavailable or blocked. */
.js [data-reveal] { opacity: 0; transform: translateY(18px); }
.js [data-reveal].is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn:hover, a.card:hover { transform: none; }
  .card__media img, .strip img { transition: none; }
}

/* --- Utility ------------------------------------------------------------ */
.stack > * + * { margin-top: 1.5rem; }
.mt-lg { margin-top: clamp(2rem, 4vw, 3rem); }
.mt-md { margin-top: 1.75rem; }
.center { text-align: center; margin-inline: auto; }
.rule { border: 0; border-top: 1px solid var(--line); margin-block: clamp(2.5rem, 5vw, 4rem); }
.section--dark .rule { border-color: var(--line-dark); }

/* --- Print ---------------------------------------------------------------
   Visitors print the hours, prices and directions. Give them a clean sheet:
   drop the chrome and decorative imagery, expose link targets. */
@media print {
  :root { --paper: #fff; }
  body { background: #fff; color: #000; font-size: 11pt; }

  .announce, .site-header, .nav-scrim, .site-footer,
  .hero__media, .cta-band__media, .strip, .map-embed,
  .btn, .link-more, .skip-link, .quotes, form { display: none !important; }

  .hero, .cta-band, .section--dark { background: #fff !important; color: #000 !important; }
  .hero::after, .cta-band::after { display: none; }
  .hero__title, .hero__lede, .section--dark h1, .section--dark h2,
  .section--dark h3, .section--dark p, .lede { color: #000 !important; }

  .section { padding-block: 1.2rem; }
  .hero__inner { padding-block: 0 1rem; }
  .split, .grid, .tour { display: block; }
  .card, .tour, .callout { border: 1px solid #bbb; page-break-inside: avoid; margin-bottom: .75rem; }
  .card__media, .tour__media { display: none; }
  [data-reveal], .js [data-reveal] { opacity: 1 !important; transform: none !important; }

  /* Spell out link destinations that a printed page would otherwise lose. */
  .prose a[href^="http"]::after,
  .contact-list a[href^="mailto"]::after { content: " (" attr(href) ")"; font-size: 9pt; word-break: break-all; }
}
