    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--color-text);
      background: var(--color-bg);
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.55;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      top: 0;
      bottom: 0;
      z-index: 0;
      width: var(--rail-width);
      pointer-events: none;
    }

    body::before {
      left: 0;
      background: var(--red);
    }

    body::after {
      right: 0;
      background: var(--blue);
    }

    a {
      color: var(--color-link);
    }

    a:hover,
    a:focus-visible {
      color: var(--color-link-hover);
    }

    p,
    a,
    li,
    span {
      overflow-wrap: break-word;
    }

    h1,
    h2,
    h3 {
      overflow-wrap: normal;
      word-break: normal;
      hyphens: none;
    }

    .page {
      position: relative;
      z-index: 1;
      width: min(1180px, calc(100% - var(--rail-width) - var(--rail-width) - var(--page-gutter) - var(--page-gutter)));
      margin: 0 auto;
    }

    .site-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 28px 0 18px;
    }

    .site-header-controls {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
    }

    .navbar-toggler {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--button-outline-border);
      border-radius: 6px;
      background: var(--color-surface);
      color: var(--heading-color);
      cursor: pointer;
    }

    .navbar-toggler:focus-visible {
      outline: 3px solid rgba(93, 47, 134, .28);
      outline-offset: 2px;
    }

    .navbar-toggler-icon {
      position: relative;
      display: block;
      width: 22px;
      height: 2px;
      background: currentColor;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
      content: "";
      position: absolute;
      left: 0;
      width: 22px;
      height: 2px;
      background: currentColor;
    }

    .navbar-toggler-icon::before {
      top: -7px;
    }

    .navbar-toggler-icon::after {
      top: 7px;
    }

    .theme-toggle {
      display: inline-flex;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--color-border);
      border-radius: 999px;
      background: var(--color-surface);
      color: var(--heading-color);
      cursor: pointer;
      font: inherit;
      line-height: 1;
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .theme-toggle:hover,
    .theme-toggle:focus-visible {
      border-color: var(--accent-color);
      outline: none;
      box-shadow: 0 10px 24px rgba(93, 47, 134, .16);
      transform: translateY(-1px);
    }

    .theme-toggle-icon {
      font-size: 1.12rem;
      line-height: 1;
    }

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

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--heading-color);
      font-weight: 700;
      text-decoration: none;
    }

    .brand-mark {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border: 2px solid var(--button-outline-border);
      background: var(--color-surface);
      color: var(--accent-color);
      font-size: .88rem;
      font-weight: 800;
    }

    @media (prefers-color-scheme: dark) {
      .brand-mark {
        border-color: rgba(255, 255, 255, .65);
        background: #ffffff;
        color: var(--purple);
      }
    }

    html[data-theme="dark"] .brand-mark {
      border-color: rgba(255, 255, 255, .65);
      background: #ffffff;
      color: var(--purple);
    }

    html[data-theme="light"] .brand-mark {
      border-color: var(--button-outline-border);
      background: var(--color-surface);
      color: var(--accent-color);
    }

    .nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px 18px;
      color: var(--color-text);
      font-size: .95rem;
      font-weight: 700;
    }

    .nav a {
      color: inherit;
      text-decoration: none;
      border-bottom: 2px solid transparent;
      padding: 4px 0;
    }

    .nav a:hover,
    .nav a:focus-visible {
      border-color: var(--accent-color);
      outline: none;
    }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, .72fr);
      gap: clamp(34px, 6vw, 76px);
      align-items: center;
      min-height: 76vh;
      padding: clamp(38px, 6vw, 74px) 0 clamp(44px, 7vw, 86px);
    }

    .kicker,
    .section-label {
      margin: 0 0 14px;
      color: var(--eyebrow-color);
      font-size: .82rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .hero h1 {
      max-width: 760px;
      margin: 0;
      color: var(--heading-color);
      font-size: clamp(3rem, 6.8vw, 5.75rem);
      line-height: .95;
      font-weight: 800;
      overflow-wrap: normal;
      word-break: keep-all;
    }

    .hero-title-line {
      display: block;
      white-space: nowrap;
      overflow-wrap: normal;
      word-break: keep-all;
    }

    .lede {
      max-width: 650px;
      margin: 26px 0 0;
      color: var(--color-text);
      font-size: clamp(1.1rem, 2vw, 1.38rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 18px;
      border: 2px solid var(--button-outline-border);
      background: var(--button-outline-bg);
      color: var(--button-outline-text);
      font-weight: 800;
      text-decoration: none;
      border-radius: 6px;
      text-align: center;
    }

    .button.primary {
      background: var(--purple);
      border-color: var(--purple);
      color: var(--color-on-primary);
    }

    .button:disabled {
      border-color: var(--color-border);
      background: var(--color-border);
      color: var(--color-text);
      cursor: not-allowed;
    }

    .button:hover,
    .button:focus-visible {
      border-color: var(--button-outline-hover-border);
      background: var(--button-outline-hover-bg);
      color: var(--button-outline-hover-text);
      transform: translateY(-1px);
      outline: none;
      box-shadow: 0 12px 28px rgba(93, 47, 134, .18);
    }

    .button.primary:hover,
    .button.primary:focus-visible {
      border-color: var(--button-primary-hover-bg);
      background: var(--button-primary-hover-bg);
      color: var(--color-on-primary);
    }

    .reveal,
    .reveal-up {
      opacity: 1;
      transform: none;
    }

    .reveal-ready .reveal,
    .reveal-ready .reveal-up,
    .reveal-ready [data-reveal] {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .26s ease-out, transform .26s ease-out, box-shadow .2s ease-out;
      will-change: opacity, transform;
    }

    .reveal-ready .reveal.is-visible,
    .reveal-ready .reveal-up.is-visible,
    .reveal-ready [data-reveal].is-visible {
      opacity: 1;
      transform: none;
    }

    .reveal-ready .reveal-delay-1 {
      transition-delay: .06s;
    }

    .reveal-ready .reveal-delay-2 {
      transition-delay: .12s;
    }

    .reveal-ready .reveal-delay-3 {
      transition-delay: .18s;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 760px;
      margin: 36px 0 0;
      padding: 0;
      list-style: none;
    }

    .hero-points li {
      min-height: 82px;
      padding: 15px;
      border-left: 4px solid var(--accent-color);
      background: var(--color-surface);
      box-shadow: 0 10px 32px rgba(24, 21, 35, .07);
      font-size: .96rem;
      font-weight: 700;
    }

    .identity-panel {
      margin: 0;
      border: 1px solid rgba(93, 47, 134, .22);
      border-radius: 8px;
      background: var(--color-surface);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .identity-top {
      display: grid;
      grid-template-columns: 24px 1fr 24px;
      min-height: 420px;
    }

    .identity-rail-red {
      background: var(--red);
    }

    .identity-rail-blue {
      background: var(--blue);
    }

    .identity-center {
      display: grid;
      align-content: center;
      justify-items: center;
      gap: 24px;
      padding: 44px 28px;
      background: var(--accent-color);
      color: var(--color-on-primary);
      text-align: center;
    }

    .portrait-mark {
      display: grid;
      width: min(220px, 54vw);
      aspect-ratio: 1;
      place-items: center;
      border: 10px solid rgba(255, 255, 255, .26);
      background: var(--purple-dark);
      color: var(--color-on-primary);
      font-size: clamp(3rem, 9vw, 5.6rem);
      font-weight: 800;
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .38);
    }

    .portrait-photo {
      display: block;
      width: min(100%, 320px);
      aspect-ratio: 4 / 5;
      border: 10px solid rgba(255, 255, 255, .26);
      border-radius: 8px;
      object-fit: cover;
      object-position: center;
      box-shadow: 0 18px 42px rgba(24, 21, 35, .28);
    }

    .identity-name {
      margin: 0;
      font-size: clamp(1.45rem, 3vw, 2.3rem);
      line-height: 1.08;
      font-weight: 800;
      overflow-wrap: normal;
      word-break: keep-all;
    }

    .identity-role {
      margin: -12px 0 0;
      color: rgba(255, 255, 255, .82);
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
    }

    .identity-caption {
      margin: 0;
      padding: 18px 22px;
      color: var(--muted);
      font-size: .95rem;
    }

    .section {
      padding: clamp(52px, 7vw, 88px) 0;
      border-top: 1px solid var(--line);
    }

    .section-grid {
      display: grid;
      grid-template-columns: minmax(220px, .68fr) minmax(0, 1fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: start;
    }

    h2 {
      margin: 0;
      color: var(--heading-color);
      font-size: clamp(2rem, 4.2vw, 3.7rem);
      line-height: 1;
    }

    .section h1 {
      margin: 0;
      color: var(--heading-color);
      font-size: clamp(2.35rem, 5vw, 4rem);
      line-height: 1;
    }

    .section-copy {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .intro-panel {
      padding: clamp(28px, 5vw, 44px);
      border: 1px solid rgba(93, 47, 134, .22);
      border-left: 8px solid var(--red);
      border-radius: 8px;
      background: var(--color-surface);
      box-shadow: var(--shadow);
    }

    .intro-panel p {
      margin: 0;
      color: var(--color-text);
      font-size: clamp(1.05rem, 1.8vw, 1.22rem);
    }

    .intro-panel p + p {
      margin-top: 16px;
    }

    .quote-panel {
      margin: 0;
      padding: clamp(24px, 4vw, 34px);
      border-left: 8px solid var(--blue);
      border-radius: 8px;
      background: var(--purple-dark);
      color: var(--color-on-primary);
      box-shadow: var(--shadow);
    }

    .quote-panel p {
      margin: 0;
      font-size: clamp(1.18rem, 2vw, 1.48rem);
      line-height: 1.35;
      font-weight: 800;
    }

    .quote-panel cite {
      display: block;
      margin-top: 14px;
      color: rgba(255, 255, 255, .78);
      font-style: normal;
      font-weight: 700;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .card {
      min-height: 176px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--color-surface);
      box-shadow: 0 12px 34px rgba(24, 21, 35, .06);
      transition: transform .2s ease-out, box-shadow .2s ease-out, border-color .2s ease-out;
    }

    .card:hover,
    .card:focus-within {
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(24, 21, 35, .1);
    }

    .reveal-ready .card.reveal.is-visible:hover,
    .reveal-ready .card.reveal-up.is-visible:hover,
    .reveal-ready .card.reveal.is-visible:focus-within,
    .reveal-ready .card.reveal-up.is-visible:focus-within {
      transform: translateY(-2px);
    }

    .card h2,
    .card h3 {
      margin: 0 0 10px;
      color: var(--heading-color);
      font-size: clamp(1.25rem, 2.1vw, 1.7rem);
      line-height: 1.12;
      overflow-wrap: normal;
      word-break: normal;
      hyphens: none;
    }

    .card p {
      margin: 0;
      color: var(--muted);
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .video-card {
      display: grid;
      gap: 18px;
      padding: 0;
      overflow: hidden;
    }

    .video-card-body {
      padding: 0 24px 24px;
    }

    .video-embed {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 8px 8px 0 0;
      background: var(--color-surface-elevated);
    }

    .video-frame {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .video-link-card {
      display: grid;
      min-height: 220px;
      place-items: center;
      gap: 14px;
      padding: 28px;
      border-bottom: 1px solid var(--color-border);
      background: linear-gradient(135deg, var(--purple-dark), var(--blue));
      text-align: center;
    }

    .video-link-card .section-label {
      margin: 0;
      color: rgba(255, 255, 255, .78);
    }

    .video-description {
      white-space: pre-wrap;
    }

    .service-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .service-list li {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--color-surface);
    }

    .service-list .service-number {
      display: inline-flex;
      width: 38px;
      height: 38px;
      min-width: 38px;
      align-items: center;
      justify-content: center;
      margin-top: 0;
      background: var(--color-primary-soft);
      color: var(--accent-color);
      font-weight: 800;
      line-height: 1;
      text-align: center;
    }

    .service-list strong {
      display: block;
      color: var(--heading-color);
      line-height: 1.2;
    }

    .service-list span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
    }

    .detail-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .detail-list li {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--color-surface);
    }

    .detail-list strong {
      display: block;
      color: var(--heading-color);
      line-height: 1.25;
    }

    .detail-list span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
    }

    .split-copy {
      display: grid;
      gap: 16px;
    }

    .story-photo {
      margin: 0;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--color-surface);
      box-shadow: 0 12px 34px rgba(24, 21, 35, .06);
      overflow: hidden;
    }

    .story-photo img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      object-position: center 62%;
    }

    .story-photo figcaption {
      margin: 0;
      padding: 14px 16px;
      color: var(--muted);
      font-size: .95rem;
      font-weight: 700;
    }

    .contact-band {
      display: grid;
      grid-template-columns: minmax(240px, .72fr) minmax(320px, 1fr);
      gap: clamp(28px, 5vw, 56px);
      align-items: start;
      padding: clamp(34px, 6vw, 54px);
      border: 1px solid rgba(93, 47, 134, .2);
      border-left: 8px solid var(--red);
      border-right: 8px solid var(--blue);
      border-radius: 8px;
      background: var(--color-surface);
      box-shadow: var(--shadow);
    }

    .contact-band h1,
    .contact-band h2 {
      margin: 0;
      color: var(--heading-color);
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1;
    }

    .contact-band p {
      max-width: 710px;
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 1.06rem;
    }

    .contact-direct {
      margin-top: 22px;
      font-weight: 800;
      color: var(--heading-color);
    }

    .contact-direct a {
      color: var(--color-link);
    }

    .contact-direct a:hover,
    .contact-direct a:focus-visible {
      color: var(--color-link-hover);
    }

    .contact-form {
      display: grid;
      gap: 16px;
    }

    .contact-band-cta {
      align-items: center;
    }

    .contact-cta {
      display: grid;
      gap: 18px;
      align-self: center;
      justify-items: start;
      max-width: 430px;
    }

    .contact-cta p {
      margin-top: 0;
    }

    .contact-cta .button {
      width: auto;
      min-width: 0;
      max-width: 220px;
      padding-inline: 20px;
      justify-self: start;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      color: var(--heading-color);
      font-size: .92rem;
      font-weight: 800;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      min-height: 48px;
      border: 1px solid var(--color-border);
      border-radius: 6px;
      background: var(--color-surface);
      color: var(--ink);
      font: inherit;
      padding: 12px 13px;
    }

    .field textarea {
      min-height: 156px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--button-outline-hover-border);
      outline: 3px solid rgba(93, 47, 134, .16);
    }

    .form-status {
      margin: 0;
      padding: 14px 16px;
      border-left: 4px solid var(--accent-color);
      border-radius: 6px;
      background: var(--color-primary-soft);
      color: var(--heading-color);
      font-weight: 700;
    }

    .form-status.error {
      border-color: var(--red);
      background: var(--color-danger-bg);
      color: var(--color-danger);
    }

    .form-status ul {
      margin: 0;
      padding-left: 18px;
    }

    .turnstile-wrap {
      min-height: 68px;
      display: flex;
      align-items: center;
    }

    .form-note {
      margin: 0;
      color: var(--muted);
      font-size: .95rem;
    }

    .honeypot {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .site-footer {
      display: grid;
      grid-template-columns: minmax(220px, 1.25fr) minmax(0, 2fr);
      gap: 28px 44px;
      padding: 34px 0 42px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: .95rem;
      min-width: 0;
    }

    .footer-overview {
      display: grid;
      gap: 10px;
      align-content: start;
      min-width: 0;
    }

    .footer-overview strong {
      color: var(--heading-color);
    }

    .footer-overview p {
      margin: 0;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(3, minmax(140px, 1fr));
      gap: 20px 24px;
      min-width: 0;
    }

    .footer-group {
      display: grid;
      gap: 8px;
      align-content: start;
      min-width: 0;
    }

    .footer-group h2 {
      margin: 0 0 2px;
      color: var(--heading-color);
      font-size: .78rem;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .footer-group a {
      display: inline-flex;
      width: fit-content;
      max-width: 100%;
      min-height: 1.75rem;
      align-items: center;
      color: var(--color-link);
      text-decoration: none;
    }

    .footer-group a:hover,
    .footer-group a:focus-visible {
      color: var(--color-link-hover);
      text-decoration: underline;
    }

    .footer-admin {
      opacity: .72;
    }

    .footer-admin h2 {
      font-size: .72rem;
    }

    .footer-admin a {
      font-size: .82rem;
    }

    @media (max-width: 1120px) {
      .hero {
        grid-template-columns: minmax(0, 1fr) minmax(260px, .6fr);
        gap: clamp(28px, 4vw, 46px);
      }

      .hero h1 {
        font-size: clamp(3rem, 6.2vw, 4.95rem);
      }

      .identity-top {
        min-height: 380px;
      }

      .card {
        min-height: 0;
      }
    }

    @media (max-width: 1040px) {
      :root {
        --page-gutter: clamp(24px, 5vw, 48px);
      }

      .hero,
      .section-grid,
      .contact-band {
        grid-template-columns: 1fr;
      }

      .site-header {
        align-items: center;
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }

      .nav {
        justify-content: center;
      }

      .hero {
        min-height: auto;
        gap: 34px;
        padding-top: 32px;
      }

      .hero > div:first-child {
        width: min(100%, 760px);
        justify-self: center;
      }

      .identity-panel {
        width: min(100%, 560px);
        justify-self: center;
      }

      .identity-top {
        min-height: 0;
      }

      .identity-center {
        padding: 34px 24px;
      }

      .portrait-photo {
        width: min(100%, 280px);
      }

      .identity-name {
        font-size: clamp(1.65rem, 4vw, 2.2rem);
      }

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

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

    @media (max-width: 760px) {
      .site-header.navbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 14px;
        text-align: left;
      }

      .navbar-toggler {
        display: inline-flex;
        justify-self: end;
      }

      .site-header-controls {
        justify-self: end;
      }

      .navbar-collapse {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
      }

      .navbar-collapse.is-open {
        display: flex;
      }

      .nav.navbar-collapse {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--color-surface);
        box-shadow: 0 16px 42px rgba(24, 21, 35, .08);
      }

      .nav.navbar-collapse a {
        padding: 10px 12px;
        border-bottom: 0;
        border-radius: 6px;
      }

      .nav.navbar-collapse a:hover,
      .nav.navbar-collapse a:focus-visible {
        background: var(--color-primary-soft);
      }

      .site-footer {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 0 36px;
      }

      .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 18px;
      }

      .footer-group a {
        min-height: 2rem;
      }
    }

    @media (max-width: 620px) {
      :root {
        --rail-width: 9px;
        --page-gutter: 8px;
      }

      .hero h1 {
        font-size: clamp(2.55rem, 13vw, 3.45rem);
      }

      .site-header {
        align-items: flex-start;
        padding-top: 20px;
        text-align: left;
      }

      .nav {
        justify-content: flex-start;
      }

      .brand {
        align-items: flex-start;
      }

      .brand span:last-child {
        max-width: 190px;
      }

      .hero-points {
        grid-template-columns: 1fr;
      }

      .identity-top {
        min-height: 340px;
        grid-template-columns: 16px 1fr 16px;
      }

      .identity-center {
        padding: 34px 18px;
      }

      .portrait-mark {
        width: min(190px, 58vw);
        border-width: 8px;
      }

      .portrait-photo {
        width: min(100%, 240px);
        border-width: 8px;
      }

      .section {
        padding: 46px 0;
      }

      .card,
      .service-list li {
        padding: 18px;
      }

      .contact-band {
        padding: 28px 18px;
      }

      .contact-cta {
        max-width: none;
      }

      .contact-band h1,
      .contact-band h2 {
        font-size: clamp(1.85rem, 10vw, 2.45rem);
      }

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

    @media (max-width: 460px) {
      .hero h1 {
        font-size: clamp(2.4rem, 14vw, 3.12rem);
      }

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

      .contact-cta .button {
        max-width: none;
        justify-self: stretch;
      }

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

      .site-footer {
        gap: 20px;
        font-size: .92rem;
      }

      .footer-admin {
        padding-top: 4px;
        border-top: 1px solid var(--color-border);
      }
    }

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

      .reveal,
      .reveal-up,
      [data-reveal],
      .reveal-ready .reveal,
      .reveal-ready .reveal-up,
      .reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
      }

      .card:hover,
      .card:focus-within,
      .button:hover,
      .button:focus-visible {
        transform: none;
      }
    }
