:root {
  --paper: #f4eddd;
  --paper-light: #f8f2e6;
  --paper-deep: #e8dcc3;
  --ink: #121914;
  --ink-soft: #39443d;
  --ink-faint: rgba(18, 25, 20, 0.64);
  --line: rgba(18, 25, 20, 0.22);
  --line-light: rgba(18, 25, 20, 0.12);
  --belmont-green-bright: #0b990e;
  --belmont-green-medium: #076109;
  --belmont-green-dark: #043e05;
  --belmont-green-deep: #011702;
  --belmont-black: #000000;
  --accent-action: var(--belmont-green-medium);
  --accent-action-hover: var(--belmont-green-dark);
  --accent-text: var(--belmont-green-medium);
  --accent-signal: var(--belmont-green-bright);
  --teal: #153f38;
  --olive: #64733f;
  --max-width: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(72px, 8vw, 120px);
  --sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background-color: var(--paper);
  background-image: linear-gradient(rgba(244, 237, 221, 0.78), rgba(244, 237, 221, 0.78)), url("assets/paper-texture.webp");
  background-repeat: repeat;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

::selection {
  background: var(--accent-action);
  color: white;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-shell {
  min-width: 320px;
  overflow: hidden;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max-width));
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--section-space);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(calc(100% - (var(--gutter) * 2)), var(--max-width));
  min-height: 92px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand-logo {
  display: block;
  width: clamp(180px, 15vw, 220px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  font-size: 14px;
}

.desktop-nav a,
.text-link,
.footer-column a {
  position: relative;
}

.desktop-nav a::after,
.text-link::after,
.footer-column a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: white;
  background: var(--accent-action);
  border: 1px solid var(--accent-action);
  border-radius: 0;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-action-hover);
  border-color: var(--accent-action-hover);
}

.button--small {
  min-height: 40px;
  padding-inline: 17px;
}

.register-corners::before,
.register-corners::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: var(--paper-light);
  pointer-events: none;
}

.register-corners::before {
  top: 3px;
  left: 3px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.register-corners::after {
  right: 3px;
  bottom: 3px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(1120px, 125vh, 1240px);
  isolation: isolate;
  overflow: hidden;
  background: var(--paper-light);
}

.hero-picture {
  display: contents;
}

.hero-art {
  position: absolute;
  z-index: -3;
  inset: 0 0 auto;
  height: 115%;
  object-fit: cover;
  object-position: center top;
}

.hero-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(248, 242, 230, 0.06) 0%, rgba(248, 242, 230, 0.02) 48%, rgba(18, 25, 20, 0.06) 100%),
    linear-gradient(to right, rgba(248, 242, 230, 0.13), transparent 25%, transparent 75%, rgba(248, 242, 230, 0.08));
}

.hero-content {
  width: min(calc(100% - (var(--gutter) * 2)), 980px);
  margin-inline: auto;
  padding-top: clamp(170px, 18vh, 225px);
  text-align: center;
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  justify-content: center;
}

.signal-square {
  flex: 0 0 auto;
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--accent-signal);
}

.hero h1 {
  max-width: 980px;
  margin: 28px auto 24px;
  font-size: clamp(68px, 9.3vw, 142px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.hero-copy {
  max-width: 570px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 30px;
}

.underlined-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 500;
  transition: gap 180ms ease;
}

.underlined-link:hover,
.underlined-link:focus-visible {
  gap: 15px;
}

.hero-meta {
  position: absolute;
  right: var(--gutter);
  bottom: 26px;
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  color: rgba(18, 25, 20, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-meta span {
  padding: 7px 9px;
  color: var(--ink);
  background: rgba(248, 242, 230, 0.84);
  box-shadow: 0 0 0 1px rgba(18, 25, 20, 0.08);
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(2px);
}

.section-label {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.section-label span:nth-child(2) {
  color: var(--accent-text);
}

.section-label--compact {
  width: 100%;
  padding-bottom: 14px;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
  padding-top: clamp(48px, 6vw, 80px);
}

.statement h2,
.principles-head h2,
.process-intro h2,
.closing h2 {
  margin: 0;
  font-size: clamp(48px, 6.7vw, 92px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.statement-copy {
  padding-top: 8px;
  color: var(--ink-soft);
  font-size: 18px;
}

.statement-copy p {
  margin: 0;
}

.statement-copy p + p {
  margin-top: 22px;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(64px, 9vw, 148px);
  align-items: center;
}

.portrait-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper-light);
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.portrait-frame::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--accent-signal);
  border-left: 3px solid var(--accent-signal);
}

.portrait-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--accent-signal);
  border-bottom: 3px solid var(--accent-signal);
}

.portrait-frame img {
  height: auto;
  aspect-ratio: 0.69;
  object-fit: cover;
}

.portrait-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px 15px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feature-copy h2 {
  max-width: 720px;
  margin: 44px 0 30px;
  font-size: clamp(48px, 5.7vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.feature-copy > p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 17px;
}

.feature-copy .lede {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.35;
}

.feature-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 62px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-index > div {
  min-height: 132px;
  padding: 18px 18px 18px 0;
}

.feature-index > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.feature-index span {
  display: block;
}

.index-number {
  margin-bottom: 24px;
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 700;
}

.index-title {
  font-size: 14px;
  font-weight: 600;
}

.index-note {
  margin-top: 3px;
  color: var(--ink-faint);
  font-size: 12px;
}

.principles-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.principles-head h2 {
  max-width: 820px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(70px, 9vw, 122px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 330px;
  padding: 24px clamp(24px, 3vw, 46px) 38px 0;
}

.principle + .principle {
  padding-left: clamp(24px, 3vw, 46px);
  border-left: 1px solid var(--line);
}

.principle-number {
  display: block;
  margin-bottom: 92px;
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 700;
}

.principle h3 {
  margin: 0 0 14px;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.principle p {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.panorama {
  padding-top: 0;
}

.panorama-frame {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--teal);
}

.panorama-frame > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.panorama-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 32, 28, 0.12), transparent 55%);
  pointer-events: none;
}

.panorama-card {
  position: absolute;
  z-index: 2;
  bottom: 36px;
  left: 36px;
  width: min(500px, calc(100% - 72px));
  padding: clamp(24px, 3vw, 36px);
  background-color: rgba(248, 242, 230, 0.96);
  background-image: linear-gradient(rgba(248, 242, 230, 0.85), rgba(248, 242, 230, 0.85)), url("assets/paper-texture.webp");
  border: 1px solid rgba(18, 25, 20, 0.26);
}

.panorama-card h2 {
  margin: 18px 0 14px;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.panorama-card p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--ink-soft);
}

.panorama-caption {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: flex;
  gap: 18px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(248, 242, 230, 0.86);
  border: 1px solid rgba(18, 25, 20, 0.18);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 52px;
}

.process-intro h2 {
  margin-top: 32px;
  font-size: clamp(52px, 5.4vw, 78px);
}

.process-intro > p {
  max-width: 560px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 17px;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 30px;
  padding: 24px 0 26px;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 700;
}

.process-list h3 {
  margin: -4px 0 8px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
}

.closing {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--paper-light);
  isolation: isolate;
}

.closing > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.closing-wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(to bottom, rgba(248, 242, 230, 0.04), rgba(248, 242, 230, 0.02) 52%, rgba(18, 25, 20, 0.07));
}

.closing-content {
  width: min(calc(100% - (var(--gutter) * 2)), 920px);
  margin-inline: auto;
  padding-top: clamp(120px, 14vw, 180px);
  text-align: center;
}

.closing-content .eyebrow {
  justify-content: center;
}

.closing h2 {
  margin: 26px 0 24px;
  font-size: clamp(62px, 7.5vw, 106px);
}

.closing-content > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  font-size: 18px;
}

.site-footer {
  padding-top: clamp(78px, 9vw, 118px);
  background-color: var(--paper);
  background-image: linear-gradient(rgba(244, 237, 221, 0.8), rgba(244, 237, 221, 0.8)), url("assets/paper-texture.webp");
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr 0.65fr 1.25fr;
  gap: clamp(38px, 6vw, 88px);
  padding-bottom: 76px;
}

.footer-brand p {
  max-width: 310px;
  margin: 20px 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.footer-column h3,
.newsletter h3 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
}

.footer-column h3 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-column .signal-square {
  width: 8px;
  height: 8px;
}

.newsletter p {
  max-width: 360px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 44px;
  min-height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.newsletter input {
  min-width: 0;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
}

.newsletter input::placeholder {
  color: rgba(18, 25, 20, 0.52);
}

.newsletter button {
  color: white;
  background: var(--accent-action);
  border: 0;
  cursor: pointer;
  font-size: 20px;
  transition: background 180ms ease;
}

.newsletter button:hover,
.newsletter button:focus-visible {
  background: var(--accent-action-hover);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px 30px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 11px;
}

.footer-bottom span:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom .signal-square {
  width: 8px;
  height: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--accent-action);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    gap: 7px;
    background: transparent;
    border: 1px solid var(--line);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    padding: 120px var(--gutter) 48px;
    background-color: var(--paper-light);
    background-image: linear-gradient(rgba(248, 242, 230, 0.86), rgba(248, 242, 230, 0.86)), url("assets/paper-texture.webp");
  }

  .mobile-menu:not([hidden]) {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-menu a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(34px, 8vw, 56px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .statement-grid,
  .principles-head,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .statement-copy {
    max-width: 650px;
  }

  .feature-grid {
    gap: 70px;
  }

  .feature-index {
    grid-template-columns: 1fr;
  }

  .feature-index > div {
    min-height: 0;
    padding: 18px 0;
  }

  .feature-index > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .index-number {
    margin-bottom: 12px;
  }

  .principles-head .section-label {
    max-width: 420px;
  }

  .process-intro {
    position: static;
  }

  .process-list {
    margin-top: 40px;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.7fr 0.7fr;
  }

  .newsletter {
    grid-column: 1 / -1;
    padding-top: 48px;
    border-top: 1px solid var(--line);
  }

  .newsletter form {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  :root {
    --section-space: 72px;
  }

  .site-header {
    min-height: 78px;
  }

  .brand-logo {
    width: 160px;
  }

  .hero {
    min-height: 1100px;
  }

  .hero-art {
    height: 122%;
    object-position: 65% top;
  }

  .hero-content {
    padding-top: 144px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(59px, 18vw, 82px);
  }

  .hero-copy {
    max-width: 440px;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 310px;
  }

  .hero-meta {
    right: 20px;
    left: 20px;
  }

  .hero-meta span:last-child {
    display: none;
  }

  .statement-grid {
    gap: 42px;
    padding-top: 46px;
  }

  .statement h2,
  .principles-head h2,
  .process-intro h2,
  .closing h2 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .statement-copy {
    font-size: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .portrait-frame {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .feature-copy h2 {
    margin-top: 34px;
    font-size: clamp(46px, 13vw, 66px);
  }

  .feature-copy .lede {
    font-size: 20px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .principle {
    min-height: 0;
    padding: 22px 0 44px;
  }

  .principle + .principle {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle-number {
    margin-bottom: 48px;
  }

  .panorama-frame {
    min-height: 700px;
  }

  .panorama-frame > img {
    height: 58%;
    object-position: center;
  }

  .panorama-frame::after {
    display: none;
  }

  .panorama-card {
    top: 58%;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .panorama-caption {
    top: 16px;
    right: 16px;
  }

  .process-list li {
    grid-template-columns: 44px 1fr;
    gap: 18px;
  }

  .closing {
    min-height: 720px;
  }

  .closing > img {
    object-position: 57% bottom;
  }

  .closing-content {
    padding-top: 100px;
  }

  .closing h2 {
    font-size: clamp(54px, 14vw, 76px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px 32px;
  }

  .footer-brand,
  .newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-art {
    object-position: center top;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 58px;
  }

  .section-label {
    gap: 8px;
    font-size: 10px;
  }

  .panorama-card {
    padding: 22px 20px;
  }

  .panorama-card h2 {
    font-size: 40px;
  }

  .panorama-caption span:last-child {
    display: none;
  }
}


/* --------------------------------------------------------------------------
   Belmont Finance content pass
   -------------------------------------------------------------------------- */

.site-utility {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  min-height: 36px;
  color: var(--paper-light);
  background: var(--teal);
  border-bottom: 1px solid rgba(248, 242, 230, 0.18);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.utility-account,
.utility-logins {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-account > span {
  color: rgba(248, 242, 230, 0.68);
  font-weight: 400;
}

.site-utility a {
  position: relative;
}

.site-utility a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-utility a:hover::after,
.site-utility a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header {
  top: 36px;
  min-height: 88px;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 3vw, 44px);
}

.desktop-nav {
  justify-self: center;
  gap: clamp(17px, 1.7vw, 28px);
  font-size: 12px;
}

.header-actions {
  gap: 18px;
  font-size: 12px;
}

.hero {
  min-height: clamp(1120px, 125vh, 1240px);
}

.hero-content {
  width: min(calc(100% - (var(--gutter) * 2)), 1080px);
}

.hero-content .eyebrow {
  max-width: 780px;
  margin-inline: auto;
}

.hero h1 {
  max-width: 1080px;
  margin-top: 30px;
  font-size: clamp(64px, 8.2vw, 126px);
}

.hero-copy {
  max-width: 720px;
  font-size: clamp(16px, 1.35vw, 19px);
}

.hero-meta {
  font-size: 10px;
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--paper-light);
  background: var(--ink);
  border-color: var(--ink);
}

.audience {
  padding-bottom: clamp(80px, 8vw, 120px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.audience-panel {
  min-height: 360px;
}

.audience-panel + .audience-panel {
  border-left: 1px solid var(--line);
}

.audience-panel__link {
  display: flex;
  height: 100%;
  padding: clamp(28px, 3vw, 40px) clamp(30px, 5vw, 72px) 36px 0;
  flex-direction: column;
  transition: background-color 180ms ease;
}

.audience-panel + .audience-panel .audience-panel__link {
  padding-right: 0;
  padding-left: clamp(30px, 5vw, 72px);
}

.audience-kicker {
  margin: 0 0 52px;
  color: var(--accent-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-panel h2 {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: clamp(38px, 3.8vw, 56px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.audience-panel p:not(.audience-kicker) {
  max-width: 520px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 16px;
}

.audience-panel__link > .underlined-link {
  align-self: flex-start;
  margin-top: auto;
}

.audience-panel__link:focus-visible,
.audience-panel__link:active {
  background-color: rgba(11, 153, 14, 0.05);
}

.audience-panel__link:focus-visible {
  outline-offset: -2px;
}

.audience-panel__link:focus-visible .underlined-link,
.audience-panel__link:active .underlined-link {
  gap: 15px;
}

@media (hover: hover) {
  .audience-panel__link:hover {
    background-color: rgba(11, 153, 14, 0.05);
  }

  .audience-panel__link:hover .underlined-link {
    gap: 15px;
  }
}

.feature-grid {
  align-items: start;
}

.feature-copy h2 {
  max-width: 760px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.benefit-grid article {
  min-height: 210px;
  padding: 18px 28px 24px 0;
}

.benefit-grid article:nth-child(even) {
  padding-right: 0;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.benefit-grid article:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.benefit-grid h3 {
  max-width: 280px;
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.benefit-grid p {
  max-width: 330px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.benefit-grid .index-number {
  display: block;
  margin-bottom: 30px;
}

.feature-link,
.process-cta {
  margin-top: 22px;
}

#dealers.section-pad {
  padding-block: clamp(72px, 7vw, 104px);
}

#dealers .feature-grid {
  gap: clamp(48px, 5.5vw, 80px);
}

#dealers .feature-copy h2 {
  margin: 24px 0 18px;
}

#dealers .feature-copy .lede {
  font-size: 21px;
}

#dealers .benefit-grid {
  margin-top: 28px;
}

#dealers .benefit-grid article {
  min-height: 190px;
  padding: 16px 24px 20px 0;
}

#dealers .benefit-grid article:nth-child(even) {
  padding-right: 0;
  padding-left: 24px;
}

#dealers .benefit-grid .index-number {
  margin-bottom: 18px;
}

#dealers .feature-link {
  margin-top: 20px;
}

@media (min-width: 1001px) {
  #dealers .feature-grid {
    grid-template-columns: minmax(460px, 0.95fr) minmax(0, 1.05fr);
  }

  #dealers .portrait-frame img {
    aspect-ratio: 4 / 5;
    object-position: center;
  }
}

.industries-head .section-label {
  max-width: 430px;
}

.industries-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: end;
  margin-top: clamp(36px, 4.5vw, 56px);
}

.industries-heading-row h2,
.about-grid h2 {
  margin: 0;
  font-size: clamp(50px, 6.2vw, 88px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.industries-heading-row p {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 16px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(52px, 6vw, 80px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.industry-item {
  min-height: 210px;
  padding: 18px 24px 24px 0;
}

.industry-item + .industry-item {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.industry-item span {
  display: block;
  margin-bottom: 60px;
  color: var(--accent-text);
  font-size: 11px;
  font-weight: 700;
}

.industry-item h3 {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.industry-item p {
  max-width: 21ch;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.industries-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.panorama-card--account {
  width: min(610px, calc(100% - 72px));
}

.panorama-card--account h2 {
  font-size: clamp(43px, 4.25vw, 66px);
}

.panorama-card--account p {
  font-size: 15px;
}

.panorama-card--account .account-note {
  margin-top: -8px;
  font-size: 13px;
}

.panorama-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  margin-top: clamp(40px, 5vw, 60px);
}

.about-grid h2 {
  max-width: 720px;
  font-size: clamp(52px, 5.25vw, 76px);
}

.about-copy {
  width: 100%;
  max-width: 520px;
  padding-top: 6px;
  color: var(--ink-soft);
  font-size: 17px;
}

.about-copy p {
  margin: 0 0 18px;
}

.about-copy .lede {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.4;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(52px, 6vw, 84px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.fact-row > div {
  min-height: 126px;
  padding: 18px 28px 22px 0;
}

.fact-row > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.fact-row span,
.fact-row strong {
  display: block;
}

.fact-row span {
  margin-bottom: 32px;
  color: var(--accent-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-row strong {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.fact-row > div:last-child strong {
  font-size: clamp(21px, 2vw, 30px);
}

.closing-content {
  width: min(calc(100% - (var(--gutter) * 2)), 1040px);
  padding-top: clamp(110px, 12vw, 160px);
}

.closing h2 {
  font-size: clamp(58px, 7vw, 98px);
}

.closing-content > p:not(.eyebrow) {
  max-width: 670px;
}

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-grid {
  grid-template-columns: 1.35fr 0.65fr 0.68fr 0.68fr 1.1fr;
  gap: clamp(28px, 4.5vw, 66px);
}

.support-block h3 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
}

.support-block p {
  margin: 0 0 17px;
  color: var(--ink-soft);
  font-size: 13px;
}

.support-phone {
  display: block;
  margin-bottom: 17px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.support-phone span {
  display: block;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-qualification {
  padding: 24px 0 28px;
  border-top: 1px solid var(--line);
}

.footer-qualification p {
  max-width: 1040px;
  margin: 0;
  color: var(--ink-faint);
  font-size: 10px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    gap: 7px;
    background: rgba(248, 242, 230, 0.35);
    border: 1px solid var(--line);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    top: 36px;
    z-index: -1;
    padding-top: 104px;
    overflow-y: auto;
  }

  .mobile-menu:not([hidden]) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.4fr);
    gap: 52px;
  }

  .mobile-menu__primary,
  .mobile-menu__utility {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu__primary a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .mobile-menu__utility {
    padding-top: 8px;
  }

  .mobile-menu__utility a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0;
  }

  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industry-item:nth-child(4),
  .industry-item:nth-child(5) {
    border-top: 1px solid var(--line);
  }

  .industry-item:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1.1fr repeat(3, 0.65fr);
  }

  .support-block {
    grid-column: 1 / -1;
    max-width: 560px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 1000px) {
  .audience-grid,
  .industries-heading-row,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .audience-panel {
    min-height: 0;
  }

  .audience-panel + .audience-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .audience-panel__link,
  .audience-panel + .audience-panel .audience-panel__link {
    padding-right: 0;
    padding-left: 0;
  }

  .audience-kicker {
    margin-bottom: 40px;
  }

  .industries-heading-row p {
    max-width: 620px;
  }

  .about-copy {
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  #dealers.section-pad {
    padding-block: 72px;
  }

  #dealers .feature-grid {
    gap: 32px;
  }

  #dealers .benefit-grid article,
  #dealers .benefit-grid article:nth-child(even) {
    min-height: 0;
    padding: 16px 0 20px;
    border-left: 0;
  }

  .site-utility {
    min-height: 36px;
  }

  .utility-inner {
    min-height: 36px;
  }

  .utility-account > span,
  .utility-logins {
    display: none;
  }

  .utility-account {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .utility-account a {
    font-size: 10px;
  }

  .site-header {
    top: 36px;
    min-height: 76px;
  }

  .mobile-menu {
    top: 36px;
    padding: 104px var(--gutter) 42px;
  }

  .mobile-menu:not([hidden]) {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .mobile-menu__primary a {
    padding: 12px 0;
    font-size: clamp(28px, 8.7vw, 42px);
  }

  .mobile-menu__utility {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    padding-top: 0;
  }

  .mobile-menu__utility a {
    font-size: 12px;
  }

  .hero {
    min-height: 1100px;
  }

  .hero-content .eyebrow {
    max-width: 330px;
    line-height: 1.45;
  }

  .hero h1 {
    font-size: clamp(53px, 15.5vw, 76px);
    line-height: 0.92;
  }

  .hero-copy {
    max-width: 460px;
    font-size: 15px;
  }

  .audience-panel__link {
    padding-block: 28px 36px;
  }

  .audience-panel h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .industries-heading-row h2,
  .about-grid h2 {
    font-size: clamp(43px, 12vw, 62px);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article,
  .benefit-grid article:nth-child(even) {
    min-height: 0;
    padding: 16px 0 20px;
    border-left: 0;
  }

  .benefit-grid article + article {
    border-top: 1px solid var(--line);
  }

  .benefit-grid .index-number {
    margin-bottom: 24px;
  }

  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industry-item {
    min-height: 180px;
    padding: 16px 20px 22px 0;
  }

  .industry-item + .industry-item {
    padding-left: 20px;
  }

  .industry-item:nth-child(3),
  .industry-item:nth-child(5) {
    padding-left: 0;
    border-left: 0;
  }

  .industry-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .industry-item span {
    margin-bottom: 36px;
  }

  .industry-item h3 {
    font-size: 21px;
  }

  .industries-action {
    justify-content: flex-start;
  }

  .panorama-frame {
    min-height: 930px;
  }

  .panorama-frame > img {
    height: 45%;
  }

  .panorama-card {
    top: 45%;
  }

  .panorama-card--account {
    width: 100%;
  }

  .panorama-actions,
  .closing-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .panorama-actions .button,
  .closing-actions .button {
    width: 100%;
  }

  .panorama-actions .underlined-link,
  .closing-actions .underlined-link {
    align-self: center;
  }

  .about-grid {
    gap: 32px;
  }

  .fact-row {
    grid-template-columns: 1fr;
  }

  .fact-row > div {
    min-height: 0;
    padding: 16px 0 22px;
  }

  .fact-row > div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fact-row span {
    margin-bottom: 18px;
  }

  .closing {
    min-height: 850px;
  }

  .closing-content {
    padding-top: 105px;
  }

  .closing h2 {
    font-size: clamp(49px, 13vw, 70px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .support-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 52px;
  }

  .industries-heading-row h2,
  .about-grid h2 {
    font-size: 42px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-item,
  .industry-item + .industry-item,
  .industry-item:nth-child(3),
  .industry-item:nth-child(5) {
    min-height: 0;
    padding: 18px 0 28px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .industry-item:first-child {
    border-top: 0;
  }

  .industry-item span {
    margin-bottom: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .support-block {
    grid-column: auto;
  }
}

/* Full-scene landscape footer */
.closing {
  min-height: auto;
  padding-bottom: clamp(64px, 6.5vw, 92px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background-color: var(--paper);
  background-image: linear-gradient(rgba(244, 237, 221, 0.8), rgba(244, 237, 221, 0.8)), url("assets/paper-texture.webp");
  isolation: isolate;
}

.closing-content {
  padding-top: clamp(72px, 7vw, 96px);
}

.site-footer {
  --footer-horizon-compensation: 18.1vw;
  --footer-bottom-crop: 8.4vw;
  --footer-aspect-horizon-shift: 7.16vw;
  --footer-content-horizon-adjust: 1.8vw;
  position: relative;
  z-index: 0;
  display: flex;
  min-height: max(
    calc(860px + var(--footer-horizon-compensation) - var(--footer-bottom-crop)),
    calc(66.78vw + var(--footer-horizon-compensation) - var(--footer-bottom-crop))
  );
  padding-top: clamp(72px, 8vw, 104px);
  flex-direction: column;
  overflow: hidden;
  border-top: 0;
  background-color: var(--paper);
  background-image: linear-gradient(rgba(244, 237, 221, 0.8), rgba(244, 237, 221, 0.8)), url("assets/paper-texture.webp");
  isolation: isolate;
}

.site-footer > .container,
.footer-legal {
  position: relative;
  z-index: 3;
}

.footer-grid {
  padding-bottom: 0;
  transform: translateY(calc(clamp(110px, 9.8vw, 185px) - 16px));
}

.footer-legal {
  transform: translateY(clamp(110px, 9.8vw, 185px));
}

@media (min-width: 1441px) {
  .footer-grid {
    transform: translateY(calc(clamp(140px, calc(22.62vw - 186px), 235px) - 20px));
  }

  .footer-legal {
    transform: translateY(clamp(140px, calc(22.62vw - 186px), 235px));
  }
}

.footer-art {
  --footer-treeline: calc(100% - 40.5vw);
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.04) calc(var(--footer-treeline) - 56px),
    rgba(0, 0, 0, 0.14) calc(var(--footer-treeline) - 40px),
    rgba(0, 0, 0, 0.34) calc(var(--footer-treeline) - 26px),
    rgba(0, 0, 0, 0.62) calc(var(--footer-treeline) - 13px),
    rgba(0, 0, 0, 0.85) calc(var(--footer-treeline) - 5px),
    #000 var(--footer-treeline)
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.04) calc(var(--footer-treeline) - 56px),
    rgba(0, 0, 0, 0.14) calc(var(--footer-treeline) - 40px),
    rgba(0, 0, 0, 0.34) calc(var(--footer-treeline) - 26px),
    rgba(0, 0, 0, 0.62) calc(var(--footer-treeline) - 13px),
    rgba(0, 0, 0, 0.85) calc(var(--footer-treeline) - 5px),
    #000 var(--footer-treeline)
  );
  transform: translateY(calc(var(--footer-bottom-crop) - var(--footer-aspect-horizon-shift) + var(--footer-content-horizon-adjust)));
  pointer-events: none;
}

.footer-art img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}

.footer-art::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: url("assets/paper-texture.webp");
  opacity: 0.12;
  content: "";
}

.footer-legal {
  margin-top: 4px;
  padding-top: 0;
  background: none;
}

.footer-qualification {
  padding: 0 0 4px;
  border-top: 0;
}

.footer-qualification p,
.footer-bottom {
  color: rgba(18, 25, 20, 0.84);
}

.footer-qualification p {
  font-size: 10px;
  line-height: 1.3;
}

.footer-bottom {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border-top: 0;
  line-height: 1.3;
}

.footer-bottom span:last-child {
  gap: 6px;
}

@media (max-width: 1180px) {
  .site-footer {
    min-height: calc(980px + var(--footer-horizon-compensation) - var(--footer-bottom-crop));
  }

  .footer-grid {
    transform: translateY(43px);
  }

  .footer-legal {
    transform: translateY(55px);
  }
}

@media (max-width: 820px) {
  .site-footer {
    min-height: calc(1260px + var(--footer-horizon-compensation) - var(--footer-bottom-crop));
    padding-top: 72px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px 32px;
  }

  .footer-brand,
  .support-block {
    grid-column: 1 / -1;
  }

  .footer-grid {
    transform: translateY(22px);
  }

  .footer-legal {
    transform: translateY(30px);
  }
}

@media (max-width: 430px) {
  .site-footer {
    min-height: calc(1380px + var(--footer-horizon-compensation) - var(--footer-bottom-crop));
    padding-top: 64px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    transform: none;
  }

  .footer-legal {
    transform: none;
  }

  .footer-brand,
  .support-block {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
  }
}

/* Intentional typography and spacing pass */
:root {
  --section-top: clamp(60px, 5.2vw, 80px);
  --section-bottom: clamp(48px, 4vw, 60px);
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.line-break--mobile {
  display: none;
}

.line-break--wide,
.line-break--all,
.line-break--card {
  display: initial;
}

.hero h1 {
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.statement h2,
.principles-head h2,
.process-intro h2,
.closing h2,
.feature-copy h2,
.industries-heading-row h2,
.about-grid h2,
.panorama-card h2 {
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.audience-panel h2 {
  line-height: 0.98;
}

.site-utility {
  font-size: 12px;
}

.desktop-nav {
  font-size: 14px;
}

.header-actions {
  font-size: 13px;
}

.audience-kicker {
  font-size: 12px;
}

.benefit-grid p,
.industry-item p,
.support-block p {
  font-size: 15px;
}

.mobile-menu__utility a {
  font-size: 14px;
}

.hero-copy {
  max-width: 74ch;
}

.feature-copy .lede {
  max-width: 55ch;
}

.process-intro > p {
  max-width: 56ch;
}

.industries-heading-row p {
  max-width: 52ch;
}

.about-copy {
  max-width: 54ch;
}

.closing-content > p:not(.eyebrow) {
  max-width: 62ch;
}

.benefit-grid p {
  max-width: 36ch;
}

.industry-item p {
  max-width: 32ch;
}

.section-pad {
  padding-top: var(--section-top);
  padding-bottom: var(--section-bottom);
}

.audience {
  padding-bottom: var(--section-bottom);
}

#dealers.section-pad {
  padding-top: var(--section-top);
  padding-bottom: var(--section-bottom);
}

.panorama.section-pad {
  padding-top: 0;
}

.audience-panel {
  min-height: 340px;
}

.benefit-grid article {
  min-height: 180px;
}

#dealers .benefit-grid article {
  min-height: 170px;
}

.industry-item {
  min-height: 180px;
}

.industry-item span {
  margin-bottom: 42px;
}

.site-footer {
  position: relative;
  display: block;
  min-height: 0;
  padding-top: clamp(64px, 6vw, 88px);
  overflow: hidden;
}

.footer-grid {
  padding-bottom: 0;
  transform: none;
}

.footer-legal {
  margin-top: clamp(52px, 6vw, 80px);
  transform: none;
}

.footer-art {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  width: 100%;
  height: max(clamp(420px, 48vw, 680px), calc(40.5vw + 72px));
  margin-top: clamp(32px, 4vw, 56px);
  overflow: hidden;
  transform: none;
}

.footer-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

@media (max-width: 760px) {
  :root {
    --section-top: 48px;
    --section-bottom: 40px;
  }

  .line-break--wide {
    display: none;
  }

  .line-break--mobile {
    display: initial;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.96;
  }

  .feature-copy h2,
  .process-intro h2,
  .industries-heading-row h2,
  .about-grid h2 {
    font-size: clamp(35px, 10.5vw, 50px);
    line-height: 0.96;
  }

  .panorama-card--account h2 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 0.96;
  }

  .closing h2 {
    font-size: clamp(34px, 10vw, 50px);
    line-height: 0.96;
  }

  .hero-copy {
    max-width: 36ch;
    font-size: 16px;
  }

  .section-pad,
  #dealers.section-pad {
    padding-top: var(--section-top);
    padding-bottom: var(--section-bottom);
  }

  .panorama.section-pad {
    padding-top: 0;
  }

  .audience-panel,
  .benefit-grid article,
  #dealers .benefit-grid article,
  .industry-item {
    min-height: 0;
  }

  .industry-item span {
    margin-bottom: 28px;
  }

  .utility-account a {
    font-size: 12px;
  }

  .site-footer {
    min-height: 0;
    padding-top: 64px;
  }

  .footer-grid,
  .footer-legal {
    transform: none;
  }

  .footer-art {
    --footer-treeline: 28%;
    height: clamp(300px, 75vw, 520px);
    margin-top: 36px;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.04) 6%,
      rgba(0, 0, 0, 0.14) 12%,
      rgba(0, 0, 0, 0.34) 18%,
      rgba(0, 0, 0, 0.62) 23%,
      rgba(0, 0, 0, 0.85) 26%,
      #000 var(--footer-treeline)
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.04) 6%,
      rgba(0, 0, 0, 0.14) 12%,
      rgba(0, 0, 0, 0.34) 18%,
      rgba(0, 0, 0, 0.62) 23%,
      rgba(0, 0, 0, 0.85) 26%,
      #000 var(--footer-treeline)
    );
  }
}

@media (max-width: 430px) {
  .line-break--card {
    display: none;
  }

  .footer-art {
    height: 280px;
    margin-top: 28px;
  }
}

/* Tablet composition safeguards */
@media (min-width: 761px) and (max-width: 1180px) {
  #dealers .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  #dealers .portrait-frame {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  #dealers .feature-copy,
  .process-intro,
  .process-list {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .process-intro {
    position: static;
  }

  .process-list {
    margin-top: 0;
  }
}

/* Final composition corrections */
@media (min-width: 1181px) {
  #dealers .feature-copy h2 {
    font-size: clamp(48px, 5.2vw, 74px);
  }
}

@media (min-width: 761px) {
  .industries.section-pad {
    padding-top: clamp(48px, 4vw, 60px);
  }
}

@media (max-width: 760px) {
  .industries.section-pad {
    padding-top: 32px;
  }
}

/* Mobile navigation and touch UX repairs */
html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 1180px) {
  .site-header {
    right: var(--gutter);
    left: var(--gutter);
    width: auto;
    transform: none;
  }

  .mobile-menu {
    position: fixed;
    top: 36px;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu a {
    min-height: 44px;
  }

  .mobile-menu__primary a,
  .mobile-menu__utility a {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 760px) {
  .site-utility {
    display: none;
  }

  .site-header {
    top: 0;
    min-height: calc(76px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
  }

  .mobile-menu {
    top: 0;
    padding:
      calc(92px + env(safe-area-inset-top))
      var(--gutter)
      max(20px, env(safe-area-inset-bottom));
  }

  .mobile-menu:not([hidden]) {
    gap: 18px;
  }

  .mobile-menu__primary a {
    min-height: 44px;
    padding: 6px 0;
    font-size: clamp(24px, 7.4vw, 32px);
  }

  .mobile-menu__utility {
    grid-auto-rows: minmax(44px, auto);
  }

  .mobile-menu__utility a {
    min-height: 44px;
    padding: 6px 0;
    font-size: 12px;
  }

  .underlined-link {
    min-height: 44px;
  }
}

@media (max-width: 760px) and (max-height: 620px) {
  .mobile-menu {
    padding-top: calc(80px + env(safe-area-inset-top));
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .mobile-menu:not([hidden]) {
    gap: 10px;
  }

  .mobile-menu__primary a {
    padding-block: 4px;
    font-size: 22px;
  }

  .mobile-menu__utility a {
    padding-block: 4px;
    font-size: 11px;
  }
}

/* Standalone 404 layout */
.not-found-page .site-shell {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
}

.not-found-main {
  display: flex;
  min-height: 100svh;
  padding: clamp(190px, 18vw, 260px) 0 clamp(80px, 9vw, 130px);
  align-items: center;
}

.not-found-main h1 {
  max-width: 900px;
  margin: 34px 0 24px;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.not-found-main .container > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.not-found-main .hero-actions {
  justify-content: flex-start;
}

@media (max-width: 760px) {
  .not-found-main {
    min-height: 100svh;
    padding: 132px 0 64px;
  }

  .not-found-main h1 {
    margin-top: 28px;
