/* Auto-generated by scripts/sync-spafor-site-css.mjs — do not edit by hand.
 * Stack matches src/app/globals.css for PHP blog / shared hosting.
 */
:root {
  --font-dm-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-inter: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* —— src/app/spafor.css —— */
/* Fonts via next/font — see layout.js */

:root {
  --forest: #1E2A23;
  --forest-2: #2B3A31;
  --sage: #F2F3EE;
  --gold: #8A6E3D;
  --taupe: #A79B8C;
  --stone: #DAD5CC;
  --white: #FFFFFF;
  --ink: #17211B;
  --muted: #5E665F;
  --error: #8A3131;
  --shadow: 0 22px 70px rgba(30,42,35,.11);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1280px;
  --content: 1120px;
  --reading: 760px;
  --header-h: 82px;
  /* Side breathing room — padding-based so mobile never goes edge-flush */
  --page-gutter: clamp(20px, 4.5vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--sage);
  color: var(--forest);
  font-family: var(--font-inter), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: rgba(138,110,61,.2); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .display {
  font-family: var(--font-dm-serif), Georgia, serif;
  font-weight: 400;
  letter-spacing: -.025em;
}

h1 { font-size: clamp(3.2rem, 6.2vw, 5.75rem); line-height: .96; margin-bottom: 28px; }
h2 { font-size: clamp(2.45rem, 4.2vw, 4.25rem); line-height: 1.02; margin-bottom: 24px; }
h3 { font-size: clamp(1.7rem, 2.3vw, 2.45rem); line-height: 1.08; margin-bottom: 14px; }

p { color: var(--muted); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.31rem); line-height: 1.55; max-width: 680px; }
.small { font-size: .88rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: .74rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--forest);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.container,
.container--content {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--page-gutter) !important;
  box-sizing: border-box;
}
.container--content { max-width: var(--content); }
.section { padding: 116px 0; }
.section--tight { padding: 84px 0; }
.section--white { background: var(--white); }
.section--forest { background: var(--forest); color: var(--white); }
.section--forest p, .section--forest .muted { color: rgba(255,255,255,.72); }
.section--forest .eyebrow { color: var(--white); }
.section--forest .eyebrow::before { background: #C7A96D; }

.grid { display: grid; gap: 32px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.align-center { align-items: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9100;
  height: var(--header-h);
  background: rgba(242,243,238,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(218,213,204,.72);
}
.site-header--menu-open {
  visibility: hidden;
  pointer-events: none;
}
.nav {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-dm-serif), Georgia, serif;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  letter-spacing: 0.04em;
  text-decoration: none;
  color: inherit;
  line-height: 1.1;
  text-transform: uppercase;
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 10px;
  padding: 4px;
  flex-shrink: 0;
}
.brand-logo--footer {
  width: 64px;
  height: 64px;
}
.brand-text { display: inline-flex; align-items: baseline; }
.brand .dot { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: .91rem;
  font-weight: 500;
}
.nav-links a { position: relative; padding: 28px 0; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 21px;
  height: 1px;
  background: var(--gold);
  transition: right .22s ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; justify-self: end; }
.menu-toggle {
  display: none;
  position: relative;
  z-index: 220;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--forest);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
  padding: 0;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(30, 42, 35, 0.06);
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--gold);
  color: var(--forest);
  outline: 2px solid rgba(138, 110, 61, 0.35);
  outline-offset: 2px;
}
.menu-toggle.is-open {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.menu-toggle__icon {
  display: block;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: .78rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--forest); color: var(--white); }
.btn--primary:hover { background: #142019; }
.btn--secondary { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn--light { background: var(--white); color: var(--forest); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .025em;
}
.text-link .arrow { transition: transform .2s ease; }
.text-link:hover .arrow { transform: translateX(5px); }

/* Hero */
.hero { min-height: calc(100vh - var(--header-h)); display: flex; align-items: stretch; }
.hero-grid { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); min-height: calc(100vh - var(--header-h)); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 84px 68px 84px 0; }
.hero-copy p { max-width: 610px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.hero-meta { margin-top: 28px; font-size: .78rem; letter-spacing: .04em; color: var(--muted); }
.hero-media { position: relative; min-height: 620px; overflow: hidden; background: var(--stone); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; filter: saturate(.78) contrast(.96); }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,42,35,.08), rgba(30,42,35,0) 28%, rgba(30,42,35,.04));
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  left: 28px; bottom: 28px;
  width: 156px; aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(242,243,238,.92);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--font-dm-serif), Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.1;
  border: 1px solid rgba(255,255,255,.7);
}
.hero-badge span { display: block; font-family: var(--font-inter), sans-serif; font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; margin-top: 7px; }

/* Manifesto */
.manifesto { text-align: center; }
.manifesto .display { max-width: 980px; margin: 0 auto; font-size: clamp(2.6rem, 5.2vw, 5.3rem); line-height: 1; }
.ornament { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; }
.ornament::before, .ornament::after { content:''; width: 94px; height: 1px; background: var(--gold); }
.ornament i { width: 7px; height: 7px; transform: rotate(45deg); background: var(--gold); }

/* Editorial split */
.editorial-split { display: grid; grid-template-columns: 1.08fr .92fr; gap: 84px; align-items: center; }
.editorial-image { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius); background: var(--stone); }
.editorial-image img { width:100%; height:100%; object-fit: cover; position:absolute; inset:0; filter:saturate(.78); }
.kicker-list { display: grid; gap: 22px; margin: 34px 0 0; }
.kicker { display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start; }
.kicker .num { color: var(--gold); font-family: var(--font-dm-serif), Georgia, serif; font-size: 1.5rem; line-height: 1; }
.kicker strong { display:block; font-size: .94rem; margin-bottom: 4px; }
.kicker p { margin-bottom: 0; font-size: .93rem; }

/* Service panels */
.service-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.service-card { position: relative; min-height: 520px; overflow:hidden; border-radius: var(--radius); background: var(--forest); color: var(--white); }
.service-card img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(.68) brightness(.74); transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.service-card::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 30%, rgba(15,25,19,.82) 100%); }
.service-card:hover img { transform: scale(1.035); }
.service-card__copy { position:absolute; z-index:2; left:28px; right:28px; bottom:28px; }
.service-card__copy h3 { color: var(--white); margin-bottom: 8px; }
.service-card__copy p { color: rgba(255,255,255,.72); margin-bottom: 18px; font-size:.93rem; }
.service-card__label { font-size:.67rem; letter-spacing:.16em; text-transform:uppercase; margin-bottom:12px; color:#E0CDA8; }

/* Forest section */
.roster-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap: 96px; align-items:end; }
.roster-stat { border-top:1px solid rgba(255,255,255,.24); padding-top: 24px; }
.roster-stat .display { font-size: clamp(3.7rem,8vw,7.3rem); color:#E9E4D8; line-height:.9; }
.roster-stat p { max-width:420px; margin-top:20px; }

/* For hounds */
.principles { display:grid; gap: 2px; margin-top: 32px; }
.principle { padding: 20px 0; border-top:1px solid var(--stone); display:grid; grid-template-columns: 44px 1fr; gap:18px; }
.principle:last-child { border-bottom:1px solid var(--stone); }
.principle b { font-family:var(--font-dm-serif), Georgia, serif; font-weight:400; font-size:2rem; color:var(--gold); }
.principle strong { display:block; margin-bottom:4px; }
.principle p { margin-bottom:0; font-size:.92rem; }

/* Ritual */
.ritual { position:relative; overflow:hidden; border-radius: var(--radius-lg); min-height: 630px; display:flex; align-items:flex-end; padding: 56px; background: var(--forest); color: var(--white); }
.ritual img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(.64) brightness(.64); }
.ritual::after { content:''; position:absolute; inset:0; background: linear-gradient(90deg, rgba(19,30,23,.88), rgba(19,30,23,.36) 58%, rgba(19,30,23,.12)); }
.ritual-copy { position:relative; z-index:2; max-width:640px; }
.ritual-copy p { color: rgba(255,255,255,.75); }

/* Journal */
.journal-layout { display:grid; grid-template-columns: 1.28fr .72fr; gap: 28px; margin-top:44px; }
.story { background: var(--white); border-radius: var(--radius); overflow:hidden; border:1px solid rgba(218,213,204,.75); }
.story__image { aspect-ratio: 16/10; overflow:hidden; background:var(--stone); display:block; }
.story__image img { width:100%; height:100%; object-fit:cover; filter:saturate(.72); transition:transform .5s ease; }
.story:hover .story__image img { transform: scale(1.03); }
.story__body h3 a { color: inherit; text-decoration: none; }
.story__body h3 a:hover { color: var(--gold); }
.story__body { padding: 28px; }
.story__meta { font-size:.68rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.story__body h3 { margin-bottom:10px; }
.story__body p { margin-bottom:0; font-size:.93rem; }
.story-stack { display:grid; gap:28px; }
.story-stack .story { display:grid; grid-template-columns: 140px 1fr; min-height: 170px; }
.story-stack .story__image { aspect-ratio:auto; height:100%; }
.story-stack .story__body { padding:20px; }
.story-stack h3 { font-size:1.6rem; }

/* Area */
.area-card { background: var(--white); border-radius:var(--radius-lg); padding:38px; border:1px solid var(--stone); box-shadow:0 8px 35px rgba(30,42,35,.05); }
.area-list { display:flex; flex-wrap:wrap; gap:10px; margin:26px 0 30px; }
.chip { padding:8px 12px; border:1px solid var(--stone); border-radius:999px; font-size:.8rem; background:var(--sage); }
.zip-checker { display:flex; gap:10px; margin-top:20px; }
.input { width:100%; min-height:52px; padding:0 14px; border:1px solid var(--stone); border-radius:var(--radius-sm); background:var(--white); color:var(--forest); outline:none; }
.input:focus { border-color:var(--forest); box-shadow:0 0 0 3px rgba(138,110,61,.18); }

/* Faux map */
.map-visual { position:relative; min-height:420px; border-radius:var(--radius-lg); overflow:hidden; background:
 radial-gradient(circle at 42% 46%, rgba(138,110,61,.14), transparent 12%),
 linear-gradient(145deg, #E7E7DF, #F7F7F2); border:1px solid var(--stone); }
.map-visual::before { content:''; position:absolute; inset:0; opacity:.55; background-image:
 linear-gradient(24deg, transparent 46%, rgba(30,42,35,.08) 47%, rgba(30,42,35,.08) 49%, transparent 50%),
 linear-gradient(114deg, transparent 46%, rgba(30,42,35,.06) 47%, rgba(30,42,35,.06) 49%, transparent 50%);
 background-size: 66px 66px; }
.map-pin { position:absolute; width:14px; height:14px; background:var(--forest); border:3px solid var(--white); border-radius:50%; box-shadow:0 0 0 1px rgba(30,42,35,.2); }
.map-pin::after { content:attr(data-label); position:absolute; left:16px; top:-5px; white-space:nowrap; font-size:.72rem; font-weight:600; color:var(--forest); background:rgba(255,255,255,.84); padding:3px 6px; border-radius:4px; }

/* FAQ */
.faq { max-width: 920px; margin: 42px auto 0; border-top:1px solid var(--stone); }
.faq-item { border-bottom:1px solid var(--stone); }
.faq-button { width:100%; border:0; background:transparent; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:22px 0; text-align:left; font-weight:500; cursor:pointer; }
.faq-icon { width:28px; height:28px; border:1px solid var(--stone); border-radius:50%; display:grid; place-items:center; flex:0 0 auto; transition:transform .2s ease; }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .32s ease; }
.faq-answer p { padding:0 48px 22px 0; margin:0; }
.faq-item.open .faq-icon { transform:rotate(45deg); }

/* Final CTA */
.final-cta { text-align:center; }
.final-cta h2 { max-width:820px; margin-left:auto; margin-right:auto; }
.final-cta p { max-width:620px; margin:0 auto 30px; }

/* Footer */
.site-footer { background:#142019; color:var(--white); padding:76px 0 26px; }
.footer-grid {
  display:grid;
  grid-template-columns:minmax(0,1.5fr) repeat(3,minmax(0,1fr));
  gap:48px;
  align-items:start;
}
.footer-brand .brand { font-size:clamp(1.55rem, 4vw, 2.2rem); flex-wrap:wrap; }
.footer-brand p { color:rgba(255,255,255,.65); max-width:320px; margin:14px 0 0; }
.footer-tagline {
  font-family: var(--font-dm-serif), Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  margin: 20px 0 0;
  color: var(--white);
}
.footer-title { font-size:.72rem; text-transform:uppercase; letter-spacing:.15em; margin-bottom:16px; color:#CDB786; }
.footer-links { display:grid; gap:4px; font-size:.88rem; color:rgba(255,255,255,.76); }
.footer-links a,
.footer-links button {
  display:inline-flex;
  align-items:center;
  min-height:44px;
  color:inherit;
  text-decoration:none;
  text-align:left;
  background:none;
  border:0;
  padding:0;
  cursor:pointer;
  font:inherit;
}
.footer-links a:hover,
.footer-links button:hover,
.footer-links a:focus-visible,
.footer-links button:focus-visible {
  color: #CDB786;
  outline: none;
}
.footer-bottom {
  margin-top:56px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.14);
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px 24px;
  font-size:.76rem;
  color:rgba(255,255,255,.56);
  flex-wrap:wrap;
}
.footer-stage { max-width:42rem; line-height:1.5; }

/* Design system page */
.ds-hero { padding:90px 0 64px; border-bottom:1px solid var(--stone); }
.ds-section { padding:64px 0; border-bottom:1px solid var(--stone); }
.swatches { display:grid; grid-template-columns: repeat(6,1fr); gap:16px; margin-top:30px; }
.swatch { background:var(--white); border:1px solid var(--stone); border-radius:var(--radius); overflow:hidden; }
.swatch-color { height:120px; }
.swatch-info { padding:14px; font-size:.78rem; }
.swatch-info strong { display:block; margin-bottom:2px; }
.type-samples > * { margin-bottom:26px; }
.component-row { display:flex; flex-wrap:wrap; gap:14px; align-items:center; }
.demo-card { background:var(--white); border:1px solid var(--stone); border-radius:var(--radius); padding:28px; max-width:380px; }
.form-demo { display:grid; gap:16px; max-width:600px; }
.field label { display:block; font-size:.8rem; font-weight:500; margin-bottom:7px; }
.field textarea.input { min-height:120px; padding-top:12px; resize:vertical; }

/* Mobile menu — full-viewport stylish drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(20, 32, 25, 0.58);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav.is-open .mobile-backdrop {
  opacity: 1;
}
.mobile-panel {
  position: absolute;
  inset: 0;
  width: min(100%, 440px);
  max-width: 100%;
  margin-inline: auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 140px),
    var(--sage);
  padding:
    max(12px, env(safe-area-inset-top, 0px))
    var(--page-gutter)
    calc(24px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-sizing: border-box;
}
.mobile-nav.is-open .mobile-panel {
  transform: translateY(0);
  opacity: 1;
}
.mobile-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  margin-bottom: 8px;
}
.mobile-panel__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-dm-serif), Georgia, serif;
  font-size: clamp(1.2rem, 4.5vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--forest);
  text-decoration: none;
  min-width: 0;
}
.mobile-panel__brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 3px;
  flex-shrink: 0;
}
.mobile-panel__brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-panel__brand .dot { color: var(--gold); }
.mobile-panel__close {
  display: grid !important;
  flex-shrink: 0;
}
.mobile-panel__eyebrow {
  margin: 8px 0 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.mobile-links {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--stone);
  margin-bottom: 20px;
}
.mobile-links a {
  --i: 0;
  padding: 14px 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--stone);
  font-family: var(--font-dm-serif), Georgia, serif;
  font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  line-height: 1.15;
  text-decoration: none;
  color: var(--forest);
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.mobile-nav.is-open .mobile-links a {
  animation: mobileLinkIn 0.35s ease both;
  animation-delay: calc(0.04s * var(--i));
}
.mobile-links__label {
  min-width: 0;
}
.mobile-links__arrow {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.55;
  font-size: 1rem;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.mobile-links a:hover,
.mobile-links a:focus-visible {
  color: var(--forest);
  padding-left: 4px;
  outline: none;
}
.mobile-links a:hover .mobile-links__arrow,
.mobile-links a:focus-visible .mobile-links__arrow {
  opacity: 1;
  transform: translateX(3px);
}
.mobile-panel__footer {
  margin-top: auto;
  padding-top: 12px;
  display: grid;
  gap: 14px;
}
.mobile-panel__cta {
  width: 100%;
  max-width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
  font-size: clamp(0.82rem, 3.4vw, 0.95rem);
  letter-spacing: 0.04em;
  word-break: break-word;
  hyphens: auto;
}
.mobile-panel__note {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}
@keyframes mobileLinkIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-nav.is-open .mobile-links a {
    animation: none;
  }
  .mobile-panel,
  .mobile-backdrop {
    transition: none;
  }
}
html.nav-menu-open,
html.nav-menu-open body {
  overflow: hidden;
  touch-action: none;
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .nav-actions .nav-cta { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-right: 40px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 430px; }
  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
  }
  .footer-col:last-child { grid-column: 2 / -1; }
  .swatches { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  :root {
    --header-h: 72px;
    --page-gutter: 24px;
  }
  .brand { font-size: clamp(0.95rem, 3.6vw, 1.15rem); gap: 0.5rem; }
  .brand-logo { width: 40px; height: 40px; }
  .section { padding: 76px 0; }
  .section--tight { padding: 64px 0; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 68px 0 44px; }
  /* Full-bleed media: cancel container gutter only */
  .hero-media {
    min-height: 540px;
    width: calc(100% + (var(--page-gutter) * 2));
    max-width: none;
    margin-inline: calc(var(--page-gutter) * -1);
  }
  .hero-badge { width: 132px; left: var(--page-gutter); bottom: 20px; }
  .editorial-split, .roster-grid, .journal-layout, .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .editorial-split { gap: 42px; }
  .editorial-image { min-height: 460px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 460px; }
  .roster-grid { gap: 44px; }
  .ritual { padding: 34px 24px; min-height: 560px; }
  .story-stack .story { grid-template-columns: 1fr; }
  .story-stack .story__image { aspect-ratio: 16 / 9; }
  .zip-checker { flex-direction: column; }
  .site-footer { padding: 56px 0 32px; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; margin-top: 40px; }
  .footer-links a,
  .footer-links button { min-height: 40px; }
  .swatches { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  :root { --page-gutter: 20px; }
  h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); }
  h2 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .mobile-panel {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
  }
  .mobile-panel__cta {
    font-size: 0.8rem;
    padding-inline: 14px;
  }
  .hero-media { min-height: 470px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .manifesto .display { font-size: 2.65rem; }
  .service-card { min-height: 420px; }
  .ritual { min-height: 520px; padding: 28px 20px; }
  .area-card { padding: 26px 20px; }
  /* Keep footer link columns at 2 on phones; brand still full width */
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
  .footer-brand .brand { font-size: 1.55rem; }
  .brand-logo--footer { width: 52px; height: 52px; }
  .footer-title { margin-bottom: 10px; }
  .swatches { grid-template-columns: 1fr; }
  .final-cta .btn { width: 100%; }
  .page-hero__copy { padding: 48px 0 40px; }
}

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


/* Skip link + cookie consent */
.skip{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip:focus{position:fixed;left:16px;top:16px;z-index:10000;width:auto;height:auto;padding:12px 16px;background:var(--forest);color:var(--white);border-radius:var(--radius-sm)}
.field.invalid .input{border-color:var(--error)}
.confirm{display:none}
.confirm.shown{display:block}

.spafor-cookie-consent{position:fixed;left:0;right:0;bottom:0;z-index:9999;padding:16px;pointer-events:none}
.spafor-cookie-consent__panel{pointer-events:auto;max-width:720px;margin:0 auto;display:flex;gap:20px;align-items:flex-end;justify-content:space-between;flex-wrap:wrap;padding:20px 22px;background:var(--white);border:1px solid var(--stone);border-radius:var(--radius);box-shadow:var(--shadow)}
.spafor-cookie-consent__title{margin:0 0 6px;font-weight:600;color:var(--forest)}
.spafor-cookie-consent__text{margin:0;color:var(--muted);font-size:.92rem;max-width:46ch}
.spafor-cookie-consent__text a{text-decoration:underline}
.spafor-cookie-consent__actions{display:flex;gap:10px;flex-wrap:wrap}
.spafor-cookie-consent__btn{min-height:44px;padding:0 16px;border-radius:999px;border:1px solid var(--forest);cursor:pointer;font-weight:600}
.spafor-cookie-consent__btn--ghost{background:transparent;color:var(--forest)}
.spafor-cookie-consent__btn--solid{background:var(--forest);color:var(--white)}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(30, 42, 35, 0.08);
}
.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--forest);
}
.blog-card__media img,
.blog-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.blog-card__placeholder {
  background:
    linear-gradient(135deg, rgba(138, 110, 61, 0.35), transparent 55%),
    linear-gradient(180deg, #2B3A31, #1E2A23);
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.04);
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 28px;
  flex: 1;
}
.blog-card__meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.blog-card h2 {
  font-size: 1.45rem;
  margin: 0;
  line-height: 1.25;
}
.blog-card h2 a {
  color: inherit;
  text-decoration: none;
}
.blog-card h2 a:hover {
  color: var(--gold);
}
.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.blog-card__link {
  margin-top: auto;
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.blog-card__link:hover {
  color: var(--gold);
}
.blog-back {
  margin: 0 0 18px;
  font-size: 0.92rem;
}
.blog-back a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.blog-post-meta {
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 28px;
}
.blog-post-hero {
  margin: 0 0 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--forest);
  aspect-ratio: 21 / 9;
}
.blog-post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-post-content p {
  margin: 0 0 1.15em;
}
@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-hero { aspect-ratio: 16 / 10; }
}

/* Interior page hero */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}
.page-hero__media {
  position: absolute;
  inset: 0;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.55);
}
.page-hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px 0 64px;
  background: linear-gradient(180deg, transparent 0%, rgba(19, 30, 23, 0.72) 55%, rgba(19, 30, 23, 0.92) 100%);
}
.page-hero__copy .eyebrow { color: var(--white); }
.page-hero__copy .eyebrow::before { background: #C7A96D; }
.page-hero__copy h1 { color: var(--white); margin-bottom: 18px; }
.page-hero__copy .lead { color: rgba(255, 255, 255, 0.78); }

/* Service card detail list */
.service-card__list {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.service-card__list li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 14px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #CDB786;
}
.service-card:has(.service-card__list) {
  min-height: 600px;
}

/* Service area city cards */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.city-card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.city-card h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.city-card p {
  margin: 0;
  font-size: 0.94rem;
}

/* Contact pages */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.contact-aside {
  display: grid;
  gap: 16px;
}
.contact-aside__card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-aside__card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}
.contact-aside__card p {
  margin: 0 0 14px;
  font-size: 0.94rem;
}
.contact-aside__card .text-link { margin-top: 4px; }
select.input {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%),
    linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

/* Policies */
.policy-list {
  margin-top: 48px;
  display: grid;
  gap: 8px;
}
.policy-block {
  padding: 28px 0;
  border-top: 1px solid var(--stone);
}
.policy-block:last-child {
  border-bottom: 1px solid var(--stone);
}
.policy-block h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  margin-bottom: 14px;
}
.policy-block p:last-child {
  margin-bottom: 0;
}
.legal-list {
  margin: 0 0 8px;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.legal-list li {
  padding-left: 4px;
}

/* Experience page steps */
.experience-steps {
  display: grid;
  gap: 0;
}
.experience-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--stone);
}
.experience-step:last-child {
  border-bottom: 1px solid var(--stone);
}
.experience-step__num {
  font-family: var(--font-dm-serif), Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gold);
}
.experience-step h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}
.experience-step p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .page-hero { min-height: 360px; }
  .page-hero__copy { padding: 56px 0 44px; }
  .city-grid { grid-template-columns: 1fr; }
}


/* —— src/app/fonts-bridge.css —— */
/* Bridge next/font CSS variables into spafor type stack */
:root {
  --spafor-sans: var(--font-inter), ui-sans-serif, system-ui, sans-serif;
  --spafor-display: var(--font-dm-serif), Georgia, serif;
}

body {
  font-family: var(--spafor-sans);
}

h1,
h2,
h3,
.display,
.brand {
  font-family: var(--spafor-display);
}


/* —— src/app/responsive.css —— */
/**
 * Responsive + scale hardenings for the Evidence Dossier system.
 * Complements dossier base styles without changing brand structure.
 *
 * Goals:
 * - Comfortable gutters from 320px up (and under common browser zooms)
 * - No edge-hugging text / CTAs / footer links
 * - Stack multi-column layouts and button rows before they overflow
 * - Keep touch targets ≥44px
 */

:root {
  /* Keep in sync with spafor.css — mobile overrides live in media queries below */
  --page-gutter: clamp(20px, 4.5vw, 48px);
}

@media (max-width: 800px) {
  :root { --page-gutter: 24px; }
}

@media (max-width: 520px) {
  :root { --page-gutter: 20px; }
}

/* ——— Base containment ——— */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  overflow-x: clip;
  min-width: 0;
}

img,
svg,
video,
canvas,
iframe,
.graph-traversal,
.bandviz svg,
.symbolpanel svg {
  max-width: 100%;
  height: auto;
}

table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

pre,
.codeblock pre,
.surfaces,
.chainline,
.tree {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

/* Prefer wrapping over clipping at high zoom */
h1,
h2,
h3,
.lede,
.proof,
.crumbs,
.kicker,
.exhibit,
.pathpanel summary h2,
.uc-card h3,
.pn a {
  overflow-wrap: break-word;
  word-break: normal;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  box-sizing: border-box;
  min-width: 0;
  /* Prefer physical props — Tailwind/LightningCSS preserves these reliably */
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (min-width: 480px) {
  .wrap {
    padding-left: max(20px, min(5.5vw, 28px)) !important;
    padding-right: max(20px, min(5.5vw, 28px)) !important;
  }
}

main,
main > *,
.exh-body,
.heroText,
.bandtext,
.toc-main,
.layout-with-toc,
.sitefooter .wrap {
  min-width: 0;
}

/* Fluid body type — hangs together under zoom better than fixed 17.5px alone */
body {
  font-size: clamp(15.5px, 0.28vw + 15px, 17.5px);
}

h1 {
  font-size: clamp(1.9rem, 4.2vw + 0.55rem, 4.8rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.4rem, 2vw + 0.7rem, 2.5rem);
  line-height: 1.15;
}

/* ——— Nav ——— */
.nav {
  gap: 12px;
  row-gap: 10px;
}

/* Never reset horizontal padding on .container.nav — that causes edge-flush logos */
.container.nav {
  padding-inline: var(--page-gutter) !important;
}

.nav > a:first-child {
  flex-shrink: 0;
}

.nav img {
  max-width: 48px;
  height: auto;
}

.ctas {
  width: 100%;
}

.ctas .btn {
  text-align: center;
}

/* ——— Grids that overflow under ~360px / high zoom ——— */
.bandgrid {
  grid-template-columns: minmax(0, 44ch) minmax(0, 1fr);
}

.scalegrid {
  grid-template-columns: auto minmax(0, 1fr);
}

.card-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 14px;
}

.sitefooter .cols {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
}

.doors a {
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
}

.checks li {
  grid-template-columns: 28px minmax(0, 1fr);
}

.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* TOC layouts that sit inside an existing .wrap already inherit the gutter */
.wrap > .layout-with-toc:not(.wrap),
.wrap .layout-with-toc.wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

/* Top-level TOC body (About, Research, Careers, Mission, Economic Development, etc.) */
main > .layout-with-toc,
main > .wrap.layout-with-toc {
  width: 100%;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (min-width: 480px) {
  main > .layout-with-toc,
  main > .wrap.layout-with-toc {
    padding-left: max(20px, min(5.5vw, 28px)) !important;
    padding-right: max(20px, min(5.5vw, 28px)) !important;
  }
}

@media (max-width: 760px) {
  main > .layout-with-toc,
  main > .wrap.layout-with-toc {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Audience narrative TOC: keep available on small screens (was hidden) */
@media (max-width: 900px) {
  .layout-with-toc {
    display: block !important;
  }

  .toc-pane {
    display: block !important;
    position: static;
    margin: 0 0 20px;
    max-width: none;
    width: 100%;
  }

  .toc-pane details {
    border: 1.5px solid var(--ink, var(--inkk));
    border-radius: 4px;
    background: #fff;
  }

  .toc-pane summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 14px;
    font-family: var(--dossier-mono), "Spline Sans Mono", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-text, var(--tealtxt));
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
  }

  .toc-pane summary::-webkit-details-marker {
    display: none;
  }

  .toc-pane summary::after {
    content: "Expand";
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: var(--gray);
  }

  .toc-pane details[open] summary::after {
    content: "Collapse";
  }

  .toc-pane .toc {
    border: 0;
    max-width: none;
    padding: 4px 14px 14px;
    border-radius: 0;
  }

  .toc-main {
    min-width: 0;
    width: 100%;
  }
}

/* ——— Tablet / small laptop ——— */
@media (max-width: 900px) {
  .hero {
    padding: 40px 0 32px;
  }

  .ucHero {
    padding: 32px 0 20px;
  }

  .hero h1,
  .ucHero h1 {
    max-width: 100%;
  }

  .hero .lede,
  .ucHero .lede {
    font-size: clamp(1rem, 0.4vw + 0.95rem, 1.15rem);
  }

  .estateband {
    padding: 40px 0;
  }

  .bandgrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bandviz {
    max-width: min(560px, 100%);
    margin-inline: auto;
    width: 100%;
  }

  .pullq p {
    font-size: clamp(1.2rem, 2.5vw + 0.6rem, 1.5rem);
  }

  .verdict {
    font-size: clamp(1.2rem, 2vw + 0.7rem, 1.5rem);
    max-width: 100%;
  }

  .pathpanel summary {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .pathpanel summary .cue {
    white-space: normal;
  }

  .timeline h2,
  .timeline h3 {
    font-size: clamp(1.2rem, 2vw + 0.7rem, 1.45rem);
  }

  .symbolpanel {
    padding: 16px;
    border-radius: 12px;
  }

  .card-grid {
    gap: 14px;
  }

  .uc-card {
    padding: 20px 18px;
  }
}

/* ——— Phone ——— */
@media (max-width: 760px) {
  .wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  body {
    font-size: 16px;
    line-height: 1.65;
  }

  .nav {
    /* Keep horizontal gutters from .container; only avoid extra vertical padding */
    padding-block: 0;
  }

  section {
    padding: 40px 0;
  }

  .exh {
    padding: 24px 0;
  }

  .two {
    grid-template-columns: 1fr;
  }

  .two > div {
    padding: 20px;
  }

  .two > div:first-child {
    border-right: 0;
    border-bottom: 1.5px solid var(--inkk);
  }

  .doors a {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .scalegrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bignum {
    font-size: clamp(2.75rem, 18vw, 5rem);
  }

  .ctas .btn,
  .ctas .btn-solid {
    flex: 1 1 100%;
    width: 100%;
  }

  /* Keep primary CTA full-width friendly in hero */
  .hero .ctas,
  .ucHero .ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* HTML content often uses flex/wrap CTAs inline — force stack on phones */
  p:has(> .btn),
  p:has(> .btn-solid),
  div:has(> .btn + .btn),
  div:has(> .btn-solid + .btn),
  .ucHero > p:has(.btn),
  .exh-body > p:has(.btn) {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    width: 100%;
    max-width: 100%;
  }

  p:has(> .btn) > .btn,
  p:has(> .btn) > .btn-solid,
  p:has(> .btn-solid) > .btn,
  p:has(> .btn-solid) > .btn-solid,
  div:has(> .btn + .btn) > .btn,
  div:has(> .btn + .btn) > .btn-solid {
    width: 100% !important;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin: 0 !important;
  }

  .btn,
  .btn-solid {
    min-height: 48px;
  }

  .callout,
  .confirm,
  .quoteblock,
  .chainline,
  .proofline,
  .toc {
    max-width: 100%;
    box-sizing: border-box;
  }

  .callout {
    padding: 16px 16px 16px 18px;
  }

  .uc-card {
    padding: 18px 16px;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Footer: gutters come from nested .wrap — don't double-shrink */
  .sitefooter {
    padding: 32px 0 48px;
  }

  .sitefooter .cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .sitefooter .stage {
    margin-top: 28px;
    padding-top: 20px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .form {
    max-width: 100%;
  }

  .pathpanel summary {
    padding: 14px 16px;
  }

  .pathpanel summary h2 {
    font-size: clamp(1.05rem, 3.5vw + 0.4rem, 1.3rem);
  }

  .pathpanel .panelbody {
    padding: 0 16px 18px;
  }

  .vidph {
    max-width: 100%;
    border-radius: 12px;
  }

  .pn {
    flex-direction: column;
  }

  .kicker {
    letter-spacing: 0.1em;
    font-size: 0.85rem;
  }

  .exhibit {
    letter-spacing: 0.12em;
  }

  .announcement-banner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .spafor-cookie-consent {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ——— Narrow phones ——— */
@media (max-width: 480px) {
  .sitefooter .cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav img {
    max-width: 40px;
    height: auto;
  }

  .mnav .cta {
    margin-inline: 12px;
  }

  .checks li {
    gap: 10px;
  }

  h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.35rem);
  }
}

/* ——— Very small phones ——— */
@media (max-width: 360px) {
  .wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .btn,
  .btn-solid {
    padding: 12px 14px;
  }
}

/**
 * Zoom / dense layout safety:
 * At high browser zoom, CSS px media queries still use CSS pixels,
 * but content boxes grow. Prefer minmax(0, …) and wrapping.
 */
@media (max-width: 1100px) and (min-resolution: 1.25dppx) {
  .bandgrid {
    gap: clamp(20px, 4vw, 40px);
  }
}

/* Landscape phones: don't hide nav menu if extremely short vertically */
@media (max-height: 420px) and (orientation: landscape) {
  .hero {
    padding: 28px 0 24px;
  }

  .estateband {
    padding: 28px 0;
  }

  section {
    padding: 32px 0;
  }
}

/* Print / PDF export friendliness */
@media print {
  .mnav,
  .skip {
    display: none !important;
  }

  .nav > ul,
  .nav > .btn,
  .nav > .btn-solid {
    display: flex !important;
  }

  .estateband {
    background: #111 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  a {
    color: inherit;
  }
}

.site-footer__social a {
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

.site-footer .sitefooter,
.site-footer--minimal .wrap {
  border-top: none !important;
}

.site-footer__rule {
  display: block !important;
  width: 100%;
  height: 3px;
  background: var(--rule, #00857f) !important;
  border: 0 !important;
}

@media (max-width: 760px) {
  .site-footer--minimal .site-footer__inner {
    padding: 28px 0 48px;
  }
}

