  @font-face {
    font-family: 'Futura New Demi';
    src: url('/fonts/FuturaNewDemi.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  /* ── Reset & Base ── */
  :root {
    --navbar-height: 0px;
    --layout-max-width: 90rem;
    --layout-gutter: 2.5rem;
    --font-family-base: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-display: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-heading: 'Futura New Demi', 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --page-bg: #fff;
    --surface-base: #fff;
    --surface-subtle: #f8f9fa;
    --surface-card: #f8f9fa;
    --surface-hero: linear-gradient(180deg, #081F2C 0%, #17394b 100%);
    --surface-marquee: #081F2C;
    --surface-cta: #081F2C;
    --surface-nav: #081F2C;
    --surface-footer: #081F2C;

    --text-primary: #081F2C;
    --text-strong: #081F2C;
    --text-secondary: rgba(8, 31, 44, 0.82);
    --text-tertiary: rgba(8, 31, 44, 0.72);
    --text-muted: rgba(8, 31, 44, 0.68);
    --text-subtle: rgba(8, 31, 44, 0.6);
    --text-faint: rgba(8, 31, 44, 0.42);
    --text-inverse: #f8f9fa;
    --text-inverse-muted: rgba(248, 249, 250, 0.82);
    --text-on-dark-soft: rgba(196, 206, 212, 0.28);
    --text-ghost: rgba(8, 31, 44, 0.08);
    --text-placeholder: rgba(8, 31, 44, 0.55);

    --border-light: rgba(8, 31, 44, 0.08);
    --border-subtle: rgba(8, 31, 44, 0.12);
    --border-muted: rgba(8, 31, 44, 0.16);
    --border-strong: rgba(8, 31, 44, 0.2);
    --border-control: #081F2C;
    --border-placeholder: rgba(8, 31, 44, 0.24);

    --placeholder-text: rgba(8, 31, 44, 0.58);

    --btn-primary-bg: #081F2C;
    --btn-primary-text: #f8f9fa;
    --btn-secondary-border: #081F2C;
    --btn-secondary-text: #081F2C;
    --btn-inverse-bg: transparent;
    --btn-inverse-border: #f8f9fa;
    --btn-inverse-text: #f8f9fa;
    --btn-light-bg: #FFFFFF;
    --btn-light-text: #081F2C;

    --nav-text: #f8f9fa;
    --nav-text-muted: rgba(248, 249, 250, 0.78);
    --nav-panel-bg: rgba(0, 0, 0, 0.25);
    --nav-panel-bg-strong: rgba(0, 0, 0, 0.25);
    --nav-panel-line: rgba(248, 249, 250, 0.1);
    --nav-panel-shadow: transparent;
    --nav-message-text: rgba(248, 249, 250, 0.82);
    --hero-note-border: rgba(196, 206, 212, 0.56);
    --hero-note-text: #C4CED4;
    --cta-note-border: rgba(196, 206, 212, 0.56);
    --cta-note-text: rgba(196, 206, 212, 0.9);
    --marker-color: #081F2C;
    --link-accent: #081F2C;
    --footer-primary: #f8f9fa;
    --footer-strong: #f8f9fa;
    --footer-muted: rgba(248, 249, 250, 0.76);
    --footer-subtle: rgba(248, 249, 250, 0.62);
    --footer-ghost: rgba(248, 249, 250, 0.08);
    --footer-control: rgba(196, 206, 212, 0.3);
    --footer-placeholder: rgba(196, 206, 212, 0.64);
    --footer-border: rgba(196, 206, 212, 0.22);
    --footer-marker: #C4CED4;
    --badge-bg: rgba(196, 206, 212, 0.14);
    --badge-border: rgba(196, 206, 212, 0.4);
    --badge-text: #C4CED4;
    --radius-control: 1rem;
    --radius-card: 14px;
    --radius-media: 10px;
    --radius-note: 6px;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-family-base);
    color: var(--text-primary);
    background: var(--page-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3 {
    font-family: var(--font-family-heading);
    font-optical-sizing: auto;
  }
  .navbar__logo,
  .method__step-number,
  .staff__name,
  .footer__wordmark {
    font-family: var(--font-family-display);
    font-optical-sizing: auto;
  }
  a { color: inherit; text-decoration: none; }
  ul, ol { list-style: none; }
  img { max-width: 100%; display: block; }

  /* ── Utility ── */
  .container { max-width: var(--layout-max-width); margin: 0 auto; padding: 0 var(--layout-gutter); }
  .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .text-center { text-align: center; }
  .text-upper { text-transform: uppercase; letter-spacing: 0.06em; }
  .text-small { font-size: 0.8125rem; }
  .text-muted { color: var(--text-muted); }

  /* ── Placeholder Boxes ── */
  .placeholder {
    border: 2px dashed var(--border-placeholder);
    border-radius: var(--radius-media);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--placeholder-text);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 1rem;
  }
  .placeholder--video { min-height: 500px; }
  .placeholder--image { min-height: 320px; }
  .placeholder--image-sm { min-height: 200px; }
  .placeholder--map { min-height: 360px; }

  /* ── Buttons ── */
  .btn.btn--white { background: var(--btn-inverse-bg); color: var(--btn-inverse-text); border-color: var(--btn-inverse-border); }

  /* ── 1. TOP BANNER ── */
  .banner {
    background: var(--surface-subtle);
    border-bottom: 1px solid var(--border-light);
    padding: 0.625rem 0;
    font-size: 0.8125rem;
  }
  .banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .banner__msg { font-weight: 500; }
  .banner__msg a {
    color: var(--link-accent);
    text-decoration: underline;
    margin-left: 0.5rem;
  }
  .banner__mobile-links { display: none; white-space: nowrap; }
  .banner__mobile-links a { margin-left: 0.25rem; }
  .banner__mobile-separator {
    display: inline-block;
    margin-left: 0.5rem;
    color: var(--link-accent);
  }
  .banner__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
  .banner__location { color: var(--link-accent); }

  /* ── 2. NAV HEADER ── */
  .navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    margin-bottom: calc(-1 * var(--navbar-height));
    padding: 1rem 0;
    transform: translateY(0);
    transition: none;
  }
  .navbar.is-ready {
    transition:
      transform 240ms ease,
      background-color 240ms ease,
      border-color 240ms ease,
      backdrop-filter 240ms ease;
  }
  .navbar.is-overlay {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: none;
  }
  .navbar.is-surfaced {
    top: 0;
    background: var(--surface-base);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
  }
  .navbar.is-hidden {
    transform: translateY(calc(-100% - 0.75rem));
  }
  .navbar.is-hero-hidden {
    transition: none;
  }
  .navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 0;
  }
  .navbar__logo {
    display: grid;
    width: clamp(9.5rem, 14vw, 11.75rem);
    flex: 0 0 auto;
    line-height: 0;
  }
  .navbar__logo-image {
    grid-area: 1 / 1;
    display: block;
    width: 100%;
    height: auto;
    transition: opacity 240ms ease;
  }
  .navbar__logo-image--surfaced {
    opacity: 0;
  }
  .navbar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .navbar__group {
    display: flex;
    align-items: center;
    gap: 0.95rem;
  }
  .navbar__links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }
  .navbar__link {
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    text-underline-offset: 0.14em;
    color: var(--nav-text);
    transition: color 240ms ease, opacity 240ms ease;
  }
  .navbar__link:hover,
  .navbar__link:focus-visible {
    text-decoration: underline;
    opacity: 0.82;
  }
  .navbar__link[aria-current="page"] {
    text-decoration: underline;
    text-decoration-thickness: 2px;
  }
  .navbar.is-surfaced .navbar__link {
    color: var(--text-primary);
  }
  .navbar__logo,
  .navbar .btn {
    transition: color 240ms ease, border-color 240ms ease, background-color 240ms ease;
  }
  .navbar .btn.btn--white {
    min-width: 11rem;
    text-align: center;
    color: var(--btn-inverse-text);
    border-color: var(--btn-inverse-border);
  }
  .navbar .btn.btn--white:hover,
  .navbar .btn.btn--white:focus-visible {
    background: var(--text-primary);
    color: var(--text-inverse);
    border-color: var(--text-primary);
  }
  .hero .btn.btn--white:hover,
  .hero .btn.btn--white:focus-visible {
    background: var(--text-primary);
    color: var(--text-inverse);
    border-color: var(--text-primary);
  }
  .navbar.is-surfaced .navbar__logo-image--overlay {
    opacity: 0;
  }
  .navbar.is-surfaced .navbar__logo-image--surfaced {
    opacity: 1;
  }
  .navbar.is-surfaced .btn.btn--white {
    background: var(--text-primary);
    color: var(--text-inverse);
    border-color: var(--text-primary);
  }
  .navbar.is-surfaced .btn.btn--white:hover,
  .navbar.is-surfaced .btn.btn--white:focus-visible {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
  }

  /* ── 3. HERO ── */
  .hero {
    position: relative;
    background: var(--surface-hero);
    color: var(--text-inverse);
    padding: calc(4.75rem + var(--navbar-height)) 0 5rem;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(4, 11, 19, 0.78) 0%, rgba(7, 14, 23, 0.52) 28%, rgba(10, 12, 18, 0.42) 100%); */
    background: rgba(10, 12, 18, 0.42);
    /* background: rgba(0, 0, 0, 0.1); */
    z-index: 1;
  }
  .hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero__bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(-0.75rem);
  }
  .hero h1 {
    font-size: clamp(2.35rem, 5.4vw, 4.4rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 auto;
  }
  .hero h1 sup { font-size: 0.4em; vertical-align: super; }
  .hero__tagline {
    margin: 1.25rem auto 0;
    max-width: 44rem;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-inverse);
  }
  .hero__cta {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
  }
  .hero__logo-mark {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-inverse);
    opacity: 0.5;
  }

  /* ── 4 + 5. MARQUEE + TREATMENT KEYWORDS ── */
  .marquee-band {
    --marquee-keyword-size: 3.85rem;
    background: var(--surface-marquee);
    color: var(--text-inverse);
    padding: 4.5rem 0 4rem;
    overflow: hidden;
  }
  .marquee-band__intro {
    text-align: center;
    font-family: var(--font-family-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-inverse-muted);
    margin-bottom: 2rem;
  }
  .marquee-band__reveal {
    position: relative;
    max-width: 74rem;
    margin: 0 auto 3.25rem;
    text-align: center;
  }
  .marquee-band__stage {
    margin-bottom: 3.25rem;
  }
  .marquee-band__window {
    position: relative;
    width: min(100%, 74rem);
    margin: 0 auto;
    overflow: hidden;
    padding-top: 0.14em;
    padding-bottom: 0.24em;
  }
  .marquee-band__replace-rows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
  }
  .marquee-band__row {
    width: 100%;
    font-family: var(--font-family-heading);
    font-size: var(--marquee-keyword-size);
    font-weight: 400;
    line-height: 1.02;
    color: var(--text-on-dark-soft);
    text-align: center;
    white-space: nowrap;
    padding-bottom: 0.08em;
  }
  .marquee-band__row--measure {
    position: absolute;
    left: -9999px;
    top: 0;
    width: auto;
    visibility: hidden;
    pointer-events: none;
  }
  .marquee-band__row .word,
  .marquee-band__row .sep {
    display: inline-block;
    transition:
      opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
      transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
      color 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .marquee-band__row .word {
    opacity: 0.05;
    transform: translateY(8px);
  }
  .marquee-band__row .sep {
    margin: 0 0.16em;
    opacity: 0.24;
  }
  .marquee-band__row.is-visible .word {
    opacity: 1;
    transform: translateY(0);
    color: var(--text-inverse);
  }
  .marquee-band__row.is-visible .sep {
    opacity: 0.5;
  }
  .marquee-band__cta {
    display: flex;
    justify-content: center;
  }
  .marquee-band__cta .btn {
    min-width: min(100%, 20rem);
    text-align: center;
  }
  @media (prefers-reduced-motion: reduce) {
    .marquee-band__row .word,
    .marquee-band__row .sep {
      transition: none;
    }
  }

  /* ── 6. TREATMENT SERVICES ── */
  .services { padding: 5rem 0; }
  .services__header { margin-bottom: 3rem; }
  .services__header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
  }
  .services__header-line {
    display: block;
    white-space: nowrap;
  }
  .services__card {
    background: var(--surface-card);
    border-radius: var(--radius-card);
    padding: 1.5rem;
  }
  .services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
  }
  .services__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .services__image {
    width: 100%;
    aspect-ratio: 15 / 11;
    border-radius: var(--radius-media);
    overflow: hidden;
    background: var(--surface-subtle);
  }
  .services__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .services__content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .services__content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  .services__desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }
  .services__includes h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-subtle);
    margin-bottom: 0.75rem;
  }
  .services__includes li {
    font-size: 0.9375rem;
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
  }
  .services__includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--marker-color);
  }
  .services__includes li.services__includes-spacer {
    visibility: hidden;
  }
  .services__actions { display: flex; gap: 0.75rem; margin-top: auto; padding-top: 1.75rem; flex-wrap: wrap; }

  /* ── 7. KINESIS APPROACH ── */
  .method { padding: 5rem 0; }
  .method__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .method__content h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }
  .method__content h2 sup { font-size: 0.4em; vertical-align: super; }
  .method__subtitle {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
  }
  .method__accordion { border-top: 1px solid var(--border-muted); }
  .method__step {
    border-bottom: 1px solid var(--border-muted);
    padding: 1.25rem 0;
  }
  .method__step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  .method__step-title {
    font-size: 1.0625rem;
    font-weight: 500;
  }
  .method__step-number {
    color: var(--marker-color);
    font-size: 0.8125rem;
    margin-right: 0.75rem;
  }
  .method__step-toggle { color: var(--text-subtle); font-size: 1.25rem; }
  .method__step-body {
    display: none;
    padding-top: 1rem;
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    max-width: 460px;
  }
  .method__step.is-open .method__step-body { display: block; }
  .method__step.is-open .method__step-toggle::after { content: '▲'; }
  .method__step:not(.is-open) .method__step-toggle::after { content: '▼'; }
  .method__media {
    position: relative;
    min-height: 34rem;
    border-radius: var(--radius-media);
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(14, 44, 66, 0.16) 0%, rgba(14, 44, 66, 0.08) 100%),
      #dce6ec;
    box-shadow: 0 20px 50px rgba(7, 20, 31, 0.12);
  }
  .method__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 31, 45, 0.02) 0%, rgba(13, 31, 45, 0.18) 100%);
    pointer-events: none;
  }
  .method__media-asset {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 34rem;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.96) contrast(1.02);
  }

  /* ── 8. LOCATIONS ── */
  .locations {
    padding: 5rem 0;
    background: var(--surface-subtle);
  }
  .locations__header {
    margin-bottom: 2.5rem;
  }
  .locations__header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
  }
  .locations__header p {
    font-size: 0.9375rem;
    color: var(--text-muted);
  }
  .locations__list {
    margin-top: 2.75rem;
  }
  .locations__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 2.25rem;
  }
  .locations__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .locations__card-image {
    position: relative;
    width: 100%;
    min-height: 240px;
    aspect-ratio: 16 / 9;
    margin-bottom: 1.75rem;
    border-radius: var(--radius-media);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(8, 31, 44, 0.08) 0%, rgba(196, 206, 212, 0.14) 100%);
  }
  .locations__card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8, 31, 44, 0.12) 0%, rgba(8, 31, 44, 0.04) 38%, rgba(8, 31, 44, 0) 100%);
  }
  .locations__map-embed {
    display: block;
    width: 100%;
    min-height: 240px;
    height: 100%;
    border: 0;
    filter: grayscale(1) brightness(1.01) contrast(0.98);
  }
  .locations__card-name {
    font-family: var(--font-family-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
  }
  .locations__card-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    align-items: start;
  }
  .locations__card-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
  }
  .locations__card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-subtle);
  }
  .locations__card-address {
    font-size: 0.9375rem;
    color: var(--text-primary);
    line-height: 1.55;
  }
  .locations__card-link {
    width: fit-content;
    font-size: 0.9375rem;
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 0.14em;
  }
  .locations__card .btn {
    width: auto;
    text-align: center;
    align-self: flex-start;
  }

  /* ── 9. STAFF ── */
  .staff {
    padding: 3rem 0;
    background: var(--surface-base);
  }
  .staff__card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 600px;
    background: var(--surface-base);
  }
  .staff__image {
    display: flex;
    align-items: stretch;
    padding: 0;
    min-height: 600px;
  }
  .staff__image-frame {
    position: relative;
    flex: 1 1 auto;
    border-radius: var(--radius-media);
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(14, 44, 66, 0.16) 0%, rgba(14, 44, 66, 0.08) 100%),
      #dce6ec;
  }
  .staff__portrait {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .staff__panel {
    min-height: 600px;
    display: grid;
    grid-template-rows: 1fr auto;
  }
  .staff__body {
    padding: 3.5rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .staff__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .staff__label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--marker-color);
  }
  .staff__name {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 1.75rem;
    color: var(--text-strong);
  }
  .staff__quote {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    max-width: 34rem;
  }
  .staff__attr {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
  }

  /* ── 10. FINAL CTA ── */
  .final-cta {
    --final-cta-parallax-offset: 0px;
    --final-cta-parallax-max-offset: 52px;
    --final-cta-media-overscan: calc(var(--final-cta-parallax-max-offset) + 40px);
    position: relative;
    background-color: var(--surface-cta);
    color: var(--text-inverse);
    padding: clamp(5rem, 8vw, 7rem) 0;
    text-align: center;
    overflow: hidden;
  }
  .final-cta__media {
    position: absolute;
    top: calc(-1 * var(--final-cta-media-overscan));
    right: 0;
    bottom: calc(-1 * var(--final-cta-media-overscan));
    left: 0;
    z-index: 0;
    pointer-events: none;
    transform: translate3d(0, var(--final-cta-parallax-offset), 0);
    will-change: transform;
    background-image:
      linear-gradient(180deg, rgba(4, 11, 19, 0.18) 0%, rgba(4, 11, 19, 0.3) 46%, rgba(4, 11, 19, 0.44) 100%),
      url('/textures/concrete_shutterstock_2494334407.webp');
    background-position: center, center 42%;
    background-size: auto, cover;
    background-repeat: no-repeat, no-repeat;
  }
  .final-cta__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 11, 19, 0.08) 0%, rgba(4, 11, 19, 0.16) 46%, rgba(4, 11, 19, 0.28) 100%);
  }
  .final-cta .container {
    position: relative;
    z-index: 1;
  }
  .final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.24);
  }

  .home-team {
    padding: 5rem 0;
  }
  .home-team__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .home-team__header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
  .home-team__all-link {
    display: inline-flex;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.14em;
  }
  .home-team__controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .home-team__arrow {
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
  }
  .home-team__arrow:disabled {
    opacity: 0.4;
    cursor: default;
  }
  .home-team__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(20rem, 33rem);
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    padding-bottom: 0.25rem;
  }
  .home-team__track::-webkit-scrollbar {
    display: none;
  }
  .home-team__slide {
    scroll-snap-align: start;
  }

  /* ── Responsive ── */
  @media (max-width: 768px) {
    :root {
      --layout-gutter: 1.25rem;
    }
    .services__header-line {
      white-space: normal;
    }
    .services__grid,
    .method__grid,
    .locations__cards,
    .locations__card-meta {
      grid-template-columns: 1fr;
    }
    .services__card {
      padding: 1rem;
    }
    .staff__card {
      grid-template-columns: 1fr;
    }
    .staff__image {
      min-height: 350px;
      padding: 0;
    }
    .staff__panel { min-height: auto; }
    .staff__body { padding: 2rem 1.5rem; }
    .marquee-band {
      --marquee-keyword-size: clamp(2rem, 6vw, 3rem);
      padding: 3.5rem 0 3rem;
    }
    .marquee-band__reveal {
      margin-bottom: 2.5rem;
    }
    .marquee-band__stage {
      margin-bottom: 2.5rem;
    }
    .banner__inner { justify-content: center; text-align: center; }
    .banner__mobile-links { display: inline; }
    .banner__right { display: none; }
    .navbar {
      padding: 1rem 0;
    }
    .navbar__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      column-gap: 0.75rem;
      row-gap: 0.75rem;
    }
    .navbar__logo {
      grid-column: 1;
      grid-row: 1;
      width: clamp(9rem, 44vw, 11rem);
    }
    .navbar__group {
      display: contents;
    }
    .navbar__links {
      display: flex;
      grid-column: 1 / -1;
      grid-row: 2;
      justify-content: center;
      gap: 0.85rem;
      flex-wrap: wrap;
      width: 100%;
    }
    .navbar__actions {
      grid-column: 2;
      grid-row: 1;
      flex-wrap: nowrap;
      justify-content: flex-end;
    }
    .navbar__actions .btn {
      min-width: auto;
      padding-left: 1rem;
      padding-right: 1rem;
      white-space: nowrap;
    }
    .hero__cta {
      width: 100%;
      justify-content: center;
    }
    .hero__cta .btn {
      width: 100%;
      max-width: 18rem;
    }
    .hero { min-height: 560px; padding: calc(3.25rem + var(--navbar-height)) 0 3rem; }
    .hero__bg-video {
      transform: scale(1.16);
      transform-origin: center center;
    }
    .hero .container { transform: translateY(0); }
    .final-cta {
      --final-cta-media-overscan: calc(var(--final-cta-parallax-max-offset) + 72px);
    }
    .method__media,
    .method__media-asset {
      min-height: 22rem;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .final-cta__media {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      transform: none;
    }
  }
  @media (max-width: 560px) {
    .method__media,
    .method__media-asset {
      min-height: 18rem;
    }
    .navbar__inner {
      gap: 1rem;
    }
    .navbar__logo {
      width: clamp(8rem, 42vw, 9.75rem);
    }
    .marquee-band {
      --marquee-keyword-size: clamp(1.55rem, 7.5vw, 2.15rem);
    }
    .navbar__actions {
      flex: 0 0 auto;
      margin-left: 0;
      gap: 0.5rem;
    }
    .marquee-band__cta .btn {
      min-width: 100%;
    }
  }
