

@font-face { font-family: "Barlow Condensed"; font-weight: 500; font-style: normal; font-display: swap; src: url("/fonts/BarlowCondensed-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 600; font-style: normal; font-display: swap; src: url("/fonts/BarlowCondensed-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 700; font-style: normal; font-display: swap; src: url("/fonts/BarlowCondensed-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Source Serif 4"; font-weight: 400; font-style: normal; font-display: swap; src: url("/fonts/SourceSerif4-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Source Serif 4"; font-weight: 600; font-style: normal; font-display: swap; src: url("/fonts/SourceSerif4-600-normal.woff2") format("woff2"); }

@font-face { font-family: "Barlow Condensed Fallback"; src: local("Arial Narrow"), local("Liberation Sans Narrow"), local("Roboto Condensed"), local("Arial"), local("Roboto"), local("Helvetica Neue"); size-adjust: 80%; ascent-override: 95%; descent-override: 25%; line-gap-override: 0%; }
@font-face { font-family: "Source Serif 4 Fallback"; src: local("Georgia"), local("Times New Roman"), local("Noto Serif"); size-adjust: 95%; ascent-override: 93%; descent-override: 26%; line-gap-override: 0%; }
@font-face { font-family: "Source Serif 4"; font-weight: 400; font-style: italic; font-display: swap; src: url("/fonts/SourceSerif4-400-italic.woff2") format("woff2"); }

:root {
  --ink: #10161C;
  --ink-2: #1B232C;
  --ink-3: #2A343F;
  --paper: #F4F1EA;
  --paper-2: #E9E4D9;
  --paper-3: #D9D2C3;
  --line: #00A1DE;
  --sky: #7FD1F5;
  --blue: #005C8F;
  --blue-2: #004B75;
  --brick: #A83226;
  --muted: #4E5761;
  --display: "Barlow Condensed", "Barlow Condensed Fallback", "Arial Narrow", Arial, sans-serif;
  --serif: "Source Serif 4", "Source Serif 4 Fallback", Georgia, "Times New Roman", serif;
  
  --name-size: 1.25rem;
  --gutter: clamp(1.125rem, 4.5vw, 2.5rem);
  --max: 72rem;
  --measure: 36rem;
  --radius: 2px;
  --ctabar-h: 4.25rem;
}
@media (min-width: 60em) { :root { --name-size: 1.5rem; } }

@media (max-width: 40em) {
  
  :root { --name-size: 1.2rem; }
  .lockup { gap: 0.5rem; align-items: center; }
  .lockup-text { min-width: 0; }
  .lockup-brand, .lockup-broker { letter-spacing: 0.04em; }
  .lockup .lockup-broker, .footer-lockup .lockup-broker { white-space: normal; line-height: 0.95; min-width: 9.6em; max-width: 9.6em; }
  .nav-toggle-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .nav-toggle { padding: 0.55rem 0.7rem; }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.has-ctabar { padding-bottom: calc(var(--ctabar-h) + env(safe-area-inset-bottom)); }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--blue-2); }
:focus-visible { outline: 3px solid var(--line); outline-offset: 3px; }
::selection { background: var(--sky); color: var(--ink); }

.wrap { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }
.narrow { max-width: var(--measure); }
.skip { position: absolute; left: 0; top: -100%; background: var(--ink); color: var(--paper); padding: 0.75rem 1rem; z-index: 100; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; }
.skip:focus { top: 0; }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.95;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 10vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 6vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 3.5vw, 1.875rem); line-height: 1.05; }
p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
.lede { font-size: clamp(1.2rem, 2.2vw, 1.375rem); line-height: 1.45; }
.small, .fine { font-size: 0.9375rem; color: var(--muted); }
.sep { color: var(--muted); padding-inline: 0.2em; }
em { font-style: italic; }
strong { font-weight: 600; }

.tag, .sign {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  background: var(--blue);
  padding: 0.45em 0.7em 0.4em;
  margin: 0 0 1rem;
  border-radius: var(--radius);
}
.tag--brick { background: var(--brick); }
.tag--line { background: var(--line); color: var(--ink); }
.kicker { font-family: var(--display); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.9375rem; color: var(--muted); margin-bottom: 1.25rem; }
.kicker .sign { margin: 0 0.5rem 0.35rem 0; vertical-align: middle; }

.lockup, .footer-lockup { display: inline-flex; flex-direction: row; align-items: center; gap: 0.75rem; text-decoration: none; color: inherit; }
.lockup-text { display: inline-flex; flex-direction: column; gap: 0.3rem; }

.lockup-logo { height: calc(var(--name-size) * 2.55); width: auto; flex: none; }
.footer-lockup { align-items: flex-start; }
.lockup-logo--footer { height: calc(var(--name-size) * 3); }
.lockup-brand, .lockup-broker {
  font-family: var(--display);
  font-weight: 600;
  font-size: var(--name-size);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lockup-rule { display: block; width: 100%; height: 3px; background: var(--line); border-radius: 2px; }

.site-header { background: var(--paper); position: relative; z-index: 20; }
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1rem; }
.header-line { height: 4px; background: var(--line); }
.nav-toggle {
  appearance: none; background: none; border: 1.5px solid var(--ink); border-radius: var(--radius);
  color: var(--ink); font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.875rem; padding: 0.55rem 0.8rem; display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; min-height: 44px;
}
.nav-toggle-bars { width: 18px; height: 2px; background: currentColor; position: relative; display: block; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; }
.nav-toggle-bars::before { top: -6px; } .nav-toggle-bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }
.site-nav { display: none; }
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a {
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.125rem;
  color: var(--ink); text-decoration: none; display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--paper-3);
}
.site-nav a[aria-current="page"] { color: var(--blue); box-shadow: inset 4px 0 0 var(--line); padding-left: 0.75rem; }
body.nav-open .site-nav { display: block; position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-top: 4px solid var(--line); padding: 0.5rem var(--gutter) 1.25rem; box-shadow: 0 24px 40px -20px rgba(16, 22, 28, 0.35); }
@media (min-width: 60em) {
  .nav-toggle { display: none; }
  .site-nav, body.nav-open .site-nav { display: block; position: static; background: none; border: 0; padding: 0; box-shadow: none; }
  .site-nav ul { display: flex; gap: 0.25rem 1.5rem; }
  .site-nav a { border: 0; padding: 0.5rem 0; font-size: 1rem; }
  .site-nav a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--line); padding-left: 0; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 1.125rem; line-height: 1;
  min-height: 3.25rem; padding: 0.9rem 1.4rem; border-radius: var(--radius); text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-2); border-color: var(--blue-2); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.on-ink .btn-ghost { color: var(--paper); border-color: var(--paper); }
.on-ink .btn-ghost:hover { background: var(--paper); color: var(--ink); }
.btn-block { width: 100%; }
.actions { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.75rem 0; }
@media (min-width: 40em) { .actions { flex-direction: row; flex-wrap: wrap; } }

.section { padding-block: clamp(3rem, 8vw, 6rem); }
.section + .section { padding-top: 0; }
.section-head { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.section-head h2 { margin-bottom: 0.25em; }
.on-ink { background: var(--ink); color: var(--paper); }
.on-ink a:not(.btn) { color: var(--sky); }
.on-ink .kicker, .hero .kicker { color: #A9B4BF; }
.on-ink .small { color: #A9B4BF; }
.on-ink .tag { background: var(--line); color: var(--ink); }
.on-paper-2 { background: var(--paper-2); }
.rule { height: 4px; background: var(--line); border: 0; margin: 0; }

.hero { background: var(--ink); color: var(--paper); overflow: hidden; }
.hero-grid { display: grid; gap: 2rem; padding-block: clamp(2rem, 6vw, 4rem) 0; }
.hero h1 { color: var(--paper); }
.hero h1 .accent { color: var(--sky); }
.hero .lede { color: #D8DCE0; }
.hero-name { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.9375rem; color: #A9B4BF; margin-top: 1.5rem; }
.hero-name [data-name] { font-size: var(--name-size); color: var(--paper); }
.hero-name .sep { color: var(--line); }
.hero-portrait { order: -1; margin-inline: calc(-1 * var(--gutter)); }
.hero-portrait .portrait { width: 100%; aspect-ratio: 4 / 5; max-height: 44vh; object-position: 50% 20%; }
.hero-map { padding-block: 1.5rem 0; }
@media (min-width: 60em) {
  .hero-portrait .portrait { aspect-ratio: 3 / 4; max-height: none; }
  .hero-grid { grid-template-columns: 7fr 5fr; align-items: end; gap: 3rem; }
  .hero-portrait { order: 0; margin: 0; align-self: end; }
  .hero-copy { padding-bottom: 3rem; }
}

.portrait { aspect-ratio: 3 / 4; object-fit: cover; background: var(--ink-2); }
.portrait--slot {
  position: relative; display: grid; place-items: end start; padding: 1rem;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(244, 241, 234, 0.07) 14px 16px),
    linear-gradient(180deg, var(--ink-3), var(--ink-2));
  outline: 1px solid rgba(244, 241, 234, 0.25); outline-offset: -1px;
}
.portrait--slot::before { content: ""; position: absolute; inset: 12% 18% 30%; border: 1px dashed rgba(127, 209, 245, 0.6); border-radius: 50% 50% 46% 46% / 60% 60% 40% 40%; }
.portrait-slot-label { display: grid; gap: 0.2rem; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8125rem; color: var(--sky); }
.portrait-slot-label span:first-child { font-size: 1.25rem; color: var(--paper); }

.linemap { position: relative; overflow-x: auto; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--line) transparent; padding-block: 1.5rem 1.75rem; }
.linemap::-webkit-scrollbar { height: 4px; }
.linemap::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
.stations { min-width: 92rem; width: 100%; height: auto; }

@media (min-width: 75em) {
  .linemap { overflow: visible; width: min(100% - 2 * var(--gutter), 90rem); margin-inline: auto; }
  
  .wrap .linemap { width: min(100vw - 2 * var(--gutter) - 8px, 90rem); margin-inline: calc(50% - min(100vw - 2 * var(--gutter) - 8px, 90rem) / 2); }
  .stations { min-width: 0; }
}

.linemap::after { content: "Scroll for more stops"; display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; color: var(--muted); margin-top: 0.5rem; }
.on-ink .linemap::after, .hero .linemap::after { color: #A9B4BF; }
@media (min-width: 75em) { .linemap::after { display: none; } }
@media (max-width: 47.99em) { .linemap::after { display: none; } }
.stations text { font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: 0.08em; fill: var(--paper); }
.on-paper .stations text { fill: var(--ink); }
.on-paper .stations circle { fill: var(--paper); }

.cards { display: grid; gap: 1.25rem; }
@media (min-width: 48em) { .cards { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.card {
  position: relative; background: #fff; border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.25rem);
  border-top: 4px solid var(--line); display: flex; flex-direction: column; gap: 0.5rem;
  box-shadow: 0 1px 0 var(--paper-3);
}
.card::before { content: ""; position: absolute; top: -10px; left: clamp(1.5rem, 4vw, 2.25rem); width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 4px solid var(--line); }
.card h3 { margin-top: 0.5rem; }
.card p { flex: 1; }
.card .btn { align-self: flex-start; margin-top: 0.75rem; }
.card--ink { background: var(--ink); color: var(--paper); }
.card--ink::before { background: var(--ink); }

.closings-grid { display: grid; gap: 1.5rem; }
@media (min-width: 40em) { .closings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .closings-grid { grid-template-columns: repeat(3, 1fr); } }
.closing { display: flex; flex-direction: column; gap: 0.35rem; }
.closing h3 { margin: 0.25rem 0 0; }
.closing-meta { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.9375rem; color: var(--muted); }
.closing-media { margin-bottom: 0.75rem; }
.closing-media img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; border-radius: var(--radius); }
.closing .tag { background: var(--brick); margin: 0; align-self: flex-start; }
.frame--empty {
  aspect-ratio: 3 / 2; border-radius: var(--radius); background-color: var(--paper-2);
  background-image: radial-gradient(circle, var(--paper-3) 2px, transparent 2.5px); background-size: 14px 14px;
  outline: 1px solid var(--paper-3); outline-offset: -1px;
}
.empty { background: #fff; border-left: 4px solid var(--line); padding: clamp(1.5rem, 4vw, 2.25rem); max-width: var(--measure); }
.empty-title { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 1.5rem; line-height: 1.05; margin-bottom: 0.5rem; }
.empty .btn { margin-top: 0.5rem; }

.stars { list-style: none; padding: 0; margin: 0 0 1.5rem; max-width: var(--measure); }
.stars li { position: relative; padding-left: 1.9rem; margin-bottom: 0.65rem; }
.stars li::before {
  content: ""; position: absolute; left: 0; top: 0.28em; width: 1.1rem; height: 1.1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon fill='%23A83226' points='12,2 14.3,8.02 20.66,7 16.6,12 20.66,17 14.3,15.98 12,22 9.7,15.98 3.34,17 7.4,12 3.34,7 9.7,8.02'/%3E%3C/svg%3E") center / contain no-repeat;
}
.on-ink .stars li::before { filter: brightness(1.35); }
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; gap: 1.25rem; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 3rem 1fr; gap: 0.75rem; align-items: start; }
.steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--display); font-weight: 700; font-size: 2rem; line-height: 1; color: var(--line); }
.step-title { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 1.375rem; line-height: 1.05; margin: 0 0 0.2em; }
.steps p { font-size: 1rem; color: var(--muted); }

.split { display: grid; gap: 2.5rem; }
.split > * { min-width: 0; }
@media (min-width: 60em) { .split { grid-template-columns: 7fr 5fr; gap: 4rem; align-items: start; } .split > aside { position: sticky; top: 1.5rem; } }
.aside-panel { background: var(--paper-2); padding: clamp(1.5rem, 4vw, 2.25rem); border-top: 4px solid var(--line); }

form { max-width: var(--measure); }
fieldset { border: 0; padding: 0; margin: 0 0 2rem; min-width: 0; }
legend { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.5rem; line-height: 1; margin-bottom: 1rem; padding: 0; }
.field { margin-bottom: 1.1rem; }
.field label, .field > .label { display: block; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.9375rem; margin-bottom: 0.35rem; }
.field .hint { display: block; font-size: 0.9375rem; color: var(--muted); margin-top: 0.3rem; }
.field .opt { font-weight: 500; color: var(--muted); letter-spacing: 0.04em; }
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%; font: inherit; font-size: 1.0625rem; color: var(--ink); background: #fff;
  border: 1.5px solid var(--paper-3); border-radius: var(--radius); padding: 0.8rem 0.9rem; min-height: 3.25rem;
}
textarea { min-height: 8rem; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2310161C' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); outline: 3px solid var(--sky); outline-offset: 0; }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: var(--brick); }
.row { display: grid; gap: 1.1rem 1rem; }
@media (min-width: 30em) { .row-2 { grid-template-columns: 1fr 1fr; } .row-3 { grid-template-columns: repeat(3, 1fr); } }
.choices { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.choices label { position: relative; display: inline-flex; align-items: center; min-height: 2.75rem; padding: 0.5rem 0.9rem; border: 1.5px solid var(--paper-3); border-radius: var(--radius); background: #fff; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9375rem; cursor: pointer; margin: 0; }
.choices input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choices input:checked + span { color: var(--blue); }
.choices label:has(input:checked) { border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.choices label:has(input:focus-visible) { outline: 3px solid var(--sky); }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9375rem; color: var(--muted); }
.consent input { margin-top: 0.3rem; width: 1.1rem; height: 1.1rem; }
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.9375rem; color: var(--muted); margin-top: 1rem; }

.blb-msg { margin-top: 1rem; font-size: 0.9375rem; }
.blb-msg:not(:empty) { border-left: 4px solid var(--line); background: #fff; padding: 0.75rem 1rem; }
.blb-msg.is-error { border-color: var(--brick); }
.blb-result:not(.is-visible), .blb-teaser:empty { display: none; }
.blb-result { margin-top: 1.5rem; border-top: 4px solid var(--line); background: #fff; padding: clamp(1.25rem, 3vw, 1.75rem); }
.blb-result h3 { margin-top: 0.25rem; }
.blb-teaser { margin: -0.25rem 0 1.1rem; font-size: 0.9375rem; color: var(--muted); }

.contact-strip { display: grid; gap: 1.5rem; }
@media (min-width: 48em) { .contact-strip { grid-template-columns: 1fr 1fr; } }
.contact-big { font-family: var(--display); font-weight: 600; font-size: clamp(1.75rem, 5vw, 2.5rem); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; text-decoration: none; display: inline-block; margin-top: 0.25rem; word-break: break-word; }
.contact-big:hover { text-decoration: underline; }

.site-footer { background: var(--ink); color: #D8DCE0; border-top: 4px solid var(--line); padding-block: clamp(2.5rem, 6vw, 4rem); font-size: 0.9375rem; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 60em) { .footer-grid { grid-template-columns: auto 1fr 1.4fr; gap: 3rem; } }
.footer-lockup { color: var(--paper); }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.footer-nav a { color: var(--paper); font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; font-size: 1rem; }
.footer-nav a:hover, .footer-nav a[aria-current="page"] { color: var(--sky); }
.footer-legal p { max-width: none; }
.footer-legal [data-name] { color: var(--paper); }

.ctabar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
  padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(16, 22, 28, 0.96); border-top: 3px solid var(--line);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.ctabar .btn { font-size: 1rem; min-height: 2.9rem; padding-inline: 0.6rem; }

body.hero-cta-visible .ctabar { transform: translateY(110%); pointer-events: none; }
.ctabar { transition: transform 0.2s ease; }
.ctabar .btn-ghost { color: var(--paper); border-color: var(--paper); }
.ctabar .btn-ghost:hover { background: var(--paper); color: var(--ink); }
body:has(.ctabar) { padding-bottom: calc(var(--ctabar-h) + env(safe-area-inset-bottom)); }
@media (min-width: 60em) { .ctabar { display: none; } body:has(.ctabar) { padding-bottom: 0; } }

.hero { position: relative; }
.hero-art { position: absolute; inset: 0; overflow: hidden; }
.hero-art .hero-bg { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; }
.hero-wash { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(16, 22, 28, 0.96) 0%, rgba(16, 22, 28, 0.9) 38%, rgba(16, 22, 28, 0.62) 58%, rgba(16, 22, 28, 0.28) 100%),
  linear-gradient(180deg, rgba(16, 22, 28, 0.25) 0%, rgba(16, 22, 28, 0) 35%, rgba(16, 22, 28, 0.85) 92%); }
.hero.has-art .hero-grid, .hero.has-art .linemap { position: relative; }
.hero.has-art .portrait--slot { background:
  repeating-linear-gradient(135deg, transparent 0 14px, rgba(244, 241, 234, 0.08) 14px 16px),
  linear-gradient(180deg, rgba(42, 52, 63, 0.72), rgba(27, 35, 44, 0.9)); outline-color: rgba(244, 241, 234, 0.45); }
@media (max-width: 59.99em) {
  .hero.has-art .hero-art .hero-bg { object-position: 34% 60%; }
  .hero.has-art .hero-wash { background: linear-gradient(180deg, rgba(16, 22, 28, 0.2) 0%, rgba(16, 22, 28, 0.3) 30%, rgba(16, 22, 28, 0.94) 52%, rgba(16, 22, 28, 0.97) 100%); }
  .hero.has-art .hero-portrait { margin: 0 0 0 auto; width: 72%; }
  .hero.has-art .hero-portrait .portrait { max-height: 46vh; }
}
@media (min-width: 60em) { .hero.has-art .hero-art .hero-bg { object-position: 70% 45%; } .hero.has-art .hero-grid { grid-template-columns: 7fr 4fr; gap: 4rem; } }

.band { position: relative; overflow: hidden; }
.band-art { position: absolute; inset: 0; }
.band-art .band-bg { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.band-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16, 22, 28, 0.95) 0%, rgba(16, 22, 28, 0.8) 55%, rgba(16, 22, 28, 0.6) 100%); }
.band > .wrap { position: relative; }

.wrap--bleed { width: auto; margin-inline: 0; padding-inline: var(--gutter); }
.nh-grid { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 0.5rem; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); }
.nh-grid::-webkit-scrollbar { display: none; }
.nh-card { flex: 0 0 78vw; max-width: 22rem; scroll-snap-align: start; display: flex; flex-direction: column; gap: 0.35rem; text-decoration: none; color: inherit; background: #fff; border-radius: var(--radius); box-shadow: 0 1px 0 var(--paper-3); padding-bottom: 1.1rem; }
.nh-card:hover .nh-name, .nh-card:focus-visible .nh-name { color: var(--blue); }
.nh-media { aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: var(--paper-2); }
.nh-media .nh-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.nh-card:hover .nh-img { transform: scale(1.03); }
.nh-media .frame--empty { aspect-ratio: auto; height: 100%; border-radius: 0; }
.nh-stops { margin: 0.9rem 1rem 0; }
.nh-stops .sign { margin: 0; font-size: 0.75rem; }
.nh-name { margin: 0.35rem 1rem 0; font-size: 1.5rem; }
.nh-blurb { margin: 0.25rem 1rem 0; font-size: 0.9375rem; color: var(--muted); }
@media (min-width: 40em) {
  .wrap--bleed { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; padding-inline: 0; }
  .nh-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; overflow: visible; margin-inline: 0; padding-inline: 0; }
  .nh-card { flex: none; max-width: none; }
}
@media (min-width: 64em) { .nh-grid { grid-template-columns: repeat(4, 1fr); } .nh-grid .nh-card:nth-child(n+5) { grid-column: span 1; } }
.page-guide .nh-grid { margin-top: 1rem; }
@media (min-width: 64em) { .page-guide .nh-grid { grid-template-columns: repeat(2, 1fr); } }

.frame--tile { aspect-ratio: 3 / 2; border-radius: var(--radius); background: var(--blue); overflow: hidden; position: relative; }
.frame--tile .tile-img { width: 100%; height: 100%; object-fit: cover; }
.closing:nth-child(3n+2) .tile-img { object-position: 20% 50%; transform: scaleX(-1); }
.closing:nth-child(3n) .tile-img { object-position: 80% 40%; transform: scale(1.15); }
.closing:nth-child(4n+1) .tile-img { object-position: 50% 30%; }
.frame--tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 22, 28, 0) 60%, rgba(16, 22, 28, 0.5) 100%); }

.nh-figure { margin: 0; }
.nh-figure .nh-hero { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; object-position: 50% 45%; }
@media (max-width: 40em) { .nh-figure .nh-hero { aspect-ratio: 4 / 3; } }
.nh-body h2 { margin-top: 2.5rem; }
.nh-sources { padding-left: 1.1rem; }
.nh-sources li { margin-bottom: 0.4rem; overflow-wrap: anywhere; }
.nh-prevnext { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 40em) { .nh-prevnext { grid-template-columns: 1fr 1fr; } .nh-next { text-align: right; } }
.nh-prevnext a { display: flex; flex-direction: column; gap: 0.2rem; text-decoration: none; color: inherit; padding: 1rem 1.25rem; background: #fff; border-top: 4px solid var(--line); border-radius: var(--radius); }
.nh-prevnext a .display { font-size: 1.375rem; }
.nh-prevnext a:hover .display { color: var(--blue); }
.page-neighborhood .portrait { display: none; }

.nh-cta { background: var(--paper-2); padding-block: clamp(3rem, 8vw, 6rem); }
.nh-cta .aside-panel { background: #fff; }

.legal-line [data-name] { color: var(--paper); }
.nowrap { white-space: nowrap; }
@media (max-width: 40em) { .footer-legal .legal-line { font-size: 0.875rem; } }

.closings-note { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.875rem; color: var(--muted); margin: -0.5rem 0 1.5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.prose h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-top: 2rem; }
.prose ul { padding-left: 1.25rem; max-width: var(--measure); }
.prose li { margin-bottom: 0.4rem; }
.pull { border-left: 4px solid var(--line); padding-left: 1.25rem; font-style: italic; font-size: 1.25rem; max-width: var(--measure); margin: 2rem 0; }
.pull cite { display: block; font-style: normal; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; }
.page-head { padding-block: clamp(2.5rem, 7vw, 5rem) clamp(1.5rem, 4vw, 2.5rem); }
.page-head h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); }

.testimonials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 40em) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial { margin: 0; padding: 1.25rem 1.25rem 1rem; background: var(--paper-2); border-top: 4px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; gap: 0.75rem; }
.testimonial blockquote { margin: 0; }
.testimonial blockquote p { margin: 0; font-size: 1.0625rem; line-height: 1.5; }
.testimonial figcaption { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8125rem; color: var(--muted, #55607a); }
.testimonial figcaption .small { text-transform: none; letter-spacing: 0; font-family: inherit; display: block; margin-top: 0.25rem; }
