:root {
      --bg: #ffffff;
      --surface: #f8fafc;
      --surface-strong: #ffffff;
      --text: #0f172a;
      --muted: #475569;
      --line: rgba(15, 23, 42, 0.08);
      --brand: #cc4749;
      --brand-deep: #9e2d30;
      --accent: #cc4749;
      --parent: #24333a;
      --parent-soft: #31464f;
      --ink-invert: #f8fafc;
      --slate: #0f172a;
      --shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
      --radius-lg: 32px;
      --radius-md: 22px;
      --radius-sm: 16px;
      --max: 1320px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "PT Sans", "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(204, 71, 73, 0.12), transparent 32%),
        radial-gradient(circle at 78% 8%, rgba(100, 116, 139, 0.06), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
      line-height: 1.5;
    }

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

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-shell {
      overflow-x: hidden;
    }

    .page-shell.breakdance {
      overflow-y: visible;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(6px);
      pointer-events: none;
      opacity: 0.6;
      animation: float 10s ease-in-out infinite;
    }

    .orb-a {
      width: 260px;
      height: 260px;
      right: -60px;
      top: 110px;
      background: radial-gradient(circle, rgba(204, 71, 73, 0.26), transparent 68%);
    }

    .orb-b {
      width: 320px;
      height: 320px;
      left: -90px;
      bottom: -80px;
      background: radial-gradient(circle, rgba(204, 71, 73, 0.1), transparent 72%);
      animation-duration: 14s;
    }

    .section-inner,
    .footer-inner {
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: var(--ink-invert);
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #4a5660, #323c44);
      color: var(--brand);
      font-weight: 700;
      letter-spacing: 0.08em;
    }

    .brand-copy small,
    .eyebrow,
    .stat-label,
    .section-label {
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.76rem;
    }

    .brand-copy strong {
      display: block;
      font-size: 1rem;
    }

    .brand-copy small {
      color: rgba(241, 245, 249, 0.66);
    }

    .ghost-link:hover {
      color: #fff;
    }

    .hero {
      position: relative;
      box-sizing: border-box;
      padding: clamp(2.75rem, 4.5vw, 4rem) 0 clamp(2.25rem, 3.8vw, 3.25rem);
      background:
        linear-gradient(125deg, rgba(44, 58, 66, 0.72), rgba(58, 74, 84, 0.58)),
        linear-gradient(45deg, rgba(204, 71, 73, 0.11), rgba(36, 51, 58, 0.06));
      color: var(--ink-invert);
    }

    .hero.hero--immersive {
      padding: 0;
      min-height: clamp(520px, 82vh, 880px);
      background: none;
      display: flex;
      flex-direction: column;
      isolation: isolate;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      min-height: 100%;
      object-fit: cover;
      object-position: 50% 38%;
      transform: scale(1.04);
    }

    .page-dynamic-towing .hero.hero--immersive .hero-media img {
      object-position: 48% 42%;
      transform: scale(1.03);
    }

    .hero-scrim {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        linear-gradient(
          100deg,
          rgba(15, 23, 42, 0.78) 0%,
          rgba(15, 23, 42, 0.38) 32%,
          rgba(15, 23, 42, 0.08) 55%,
          transparent 72%
        ),
        linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.12) 0%,
          transparent 35%,
          transparent 52%,
          rgba(0, 0, 0, 0.45) 100%
        );
    }

    .hero-immersive-inner {
      position: relative;
      z-index: 2;
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
      padding: clamp(4.75rem, 10vh, 6.75rem) 0 clamp(4.75rem, 10vh, 6.75rem);
      box-sizing: border-box;
    }

    .hero-grid,
    .hero-immersive-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
      gap: clamp(1.15rem, 2.8vw, 2rem);
      align-items: center;
    }

    .hero.hero--immersive .hero-copy {
      padding-bottom: 0;
      align-self: center;
      justify-content: center;
      height: auto;
      min-height: 0;
      gap: clamp(0.75rem, 2vh, 1.1rem);
    }

    .hero.hero--immersive .hero-copy-body {
      flex: 0 1 auto;
    }

    .hero.hero--immersive .hero-panel {
      align-self: center;
      grid-template-rows: auto;
    }

    .hero.hero--immersive .page-shell .hero-copy h1 {
      text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 8px 32px rgba(0, 0, 0, 0.25);
    }

    .hero.hero--immersive .hero-copy p,
    .hero.hero--immersive .hero-copy-body p {
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    }

    .hero.hero--immersive .eyebrow {
      color: rgba(255, 214, 214, 0.95);
    }

    .hero-panel--glass {
      background: rgba(255, 255, 255, 0.14) !important;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.28) !important;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    }

    .hero:not(.hero--immersive)::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 90%);
      pointer-events: none;
    }

    .hero:not(.hero--immersive)::after {
      content: "";
      position: absolute;
      inset: auto -10% -4rem 50%;
      height: 220px;
      background: radial-gradient(circle, rgba(204, 71, 73, 0.16), transparent 62%);
      filter: blur(10px);
      pointer-events: none;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
      gap: clamp(0.55rem, 1.6vh, 0.95rem);
      padding: 0.25rem 0 0;
      max-width: min(36rem, 100%);
      min-height: 0;
      height: 100%;
      text-align: left;
    }

    .hero-copy-lead {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.55rem;
      width: 100%;
      text-align: left;
      flex-shrink: 0;
    }

    .hero-brand-mark {
      display: block;
      width: min(280px, 76vw);
      max-height: clamp(2.65rem, 6.5vw, 3.85rem);
      height: auto;
      object-fit: contain;
      object-position: left center;
      margin: 0 0 0.15rem;
      filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.4));
    }

    .section-brand-mark {
      display: block;
      width: min(240px, 58vw);
      max-height: 3rem;
      height: auto;
      object-fit: contain;
      object-position: left center;
      margin: 0 0 0.65rem;
    }

    .section-header .section-brand-mark {
      padding: 0.4rem 0.85rem;
      margin-bottom: 0.7rem;
      background: rgba(15, 23, 42, 0.92);
      border-radius: 0.5rem;
      box-sizing: border-box;
      max-width: min(260px, 70vw);
    }

    .split-copy .section-brand-mark {
      padding: 0;
      margin-bottom: 0.65rem;
      background: none;
      border-radius: 0;
      filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.35));
    }

    .hero-copy-body {
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: clamp(0.45rem, 1.4vh, 0.75rem);
      width: 100%;
      min-height: 0;
      padding: 0.15rem 0 0;
    }

    .hero-copy .hero-actions {
      justify-content: flex-start;
      width: 100%;
      margin-top: 0;
      padding-top: 0;
      flex-shrink: 0;
    }

    .eyebrow {
      color: var(--accent);
      margin-bottom: 0;
      display: inline-block;
      font-weight: 700;
    }

    .hero-copy .eyebrow {
      letter-spacing: 0.16em;
    }

    h1,
    h2,
    h3,
    h4 {
      margin: 0;
      font-family: "Oswald", Impact, sans-serif;
      line-height: 0.96;
      letter-spacing: 0.01em;
    }

    h1 {
      font-size: clamp(2.35rem, 4.2vw, 3.85rem);
      max-width: 12ch;
    }

    .page-shell .hero-copy h1 {
      color: #ffffff;
      font-weight: 600;
      max-width: 17ch;
      line-height: 1.04;
      text-wrap: balance;
      text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.32),
        0 4px 18px rgba(0, 0, 0, 0.2);
    }

    .hero-copy p,
    .hero-copy-body p {
      margin: 0;
      max-width: 52ch;
      width: 100%;
      text-align: left;
      color: rgba(255, 255, 255, 0.9);
      font-size: clamp(0.94rem, 1.35vw, 1.02rem);
      line-height: 1.58;
    }

    .page-shell.breakdance .hero .hero-copy,
    .page-shell.breakdance .hero .hero-copy p,
    .page-shell.breakdance .hero .hero-copy-body p {
      text-align: left;
    }

    .page-shell.breakdance .hero .hero-copy {
      align-items: flex-start;
    }

    .page-shell.breakdance .hero .hero-copy .hero-actions {
      justify-content: flex-start;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-top: 0;
      padding-top: 0.2rem;
    }

    .button,
    .button-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 1.25rem;
      border-radius: 999px;
      font-weight: 700;
      transition: transform 200ms ease, background 160ms ease, color 160ms ease, box-shadow 200ms ease;
    }

    .button {
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      color: #ffffff;
      box-shadow: 0 12px 28px rgba(158, 45, 48, 0.28);
    }

    .button-secondary {
      border: 1px solid rgba(241, 245, 249, 0.32);
      color: var(--ink-invert);
      background: rgba(255, 255, 255, 0.1);
    }

    .button:hover,
    .button-secondary:hover {
      transform: translateY(-2px);
    }

    .hero .hero-actions .button,
    .hero .hero-actions .button-secondary,
    .breakdance .hero .hero-actions .button,
    .breakdance .hero .hero-actions .button-secondary {
      color: #ffffff;
    }

    .hero-panel {
      display: grid;
      grid-template-rows: auto auto;
      gap: 0.75rem;
      padding: 1.05rem 1.1rem 1.15rem;
      min-height: 0;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.07);
      box-shadow: var(--shadow);
      transform: translateY(0);
      transition: transform 280ms ease, border-color 280ms ease;
    }

    .hero-panel:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.22);
    }

    .coverage-list {
      display: grid;
      gap: 0.55rem;
    }

    .coverage-item {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      padding: 0.72rem 0.85rem;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: inherit;
      text-decoration: none;
      text-align: left;
      cursor: pointer;
      transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
    }


    .coverage-item:hover,
    .coverage-item:focus-visible {
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid var(--brand);
      transform: translateY(-1px);
    }


    .coverage-item:focus,
    .coverage-item:focus-visible {
      outline: none;
    }

    .coverage-number {
      flex: none;
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(204, 71, 73, 0.14);
      color: #181818;
      font-size: 0.85rem;
      font-weight: 700;
      transition: background 180ms ease;
    }

    .coverage-item:hover .coverage-number,
    .coverage-item:focus-visible .coverage-number {
      background: var(--brand);
    }

    .coverage-item strong {
      display: block;
      margin-bottom: 0.2rem;
      font-size: 1rem;
    }

    .coverage-item span {
      color: rgba(241, 245, 249, 0.7);
      line-height: 1.6;
    }

    .hero.hero--immersive .hero-panel .coverage-item span {
      color: #000000;
    }

    .hero.hero--immersive .hero-panel .coverage-item {
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      color: #0f172a;
      box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.06),
        0 12px 28px rgba(15, 23, 42, 0.12);
      transition:
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
    }

    .hero.hero--immersive .hero-panel .coverage-item:hover,
    .hero.hero--immersive .hero-panel .coverage-item:focus-visible {
      background: #ffffff;
      border: 1px solid var(--brand);
      box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.08),
        0 16px 38px rgba(15, 23, 42, 0.16);
      transform: translateY(-1px);
    }

    .hero.hero--immersive .hero-panel .coverage-item:focus-visible {
      outline: 2px solid var(--brand);
      outline-offset: 2px;
    }

    .hero.hero--immersive .hero-panel .coverage-item strong {
      color: #0f172a;
    }

    .stats {
      margin-top: clamp(1.5rem, 4vw, 2.75rem);
      position: relative;
      z-index: 2;
      padding-bottom: 0.25rem;
    }

    .stats::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 100vw;
      height: clamp(6.5rem, 20vw, 10.5rem);
      z-index: 0;
      pointer-events: none;
      background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
    }

    .stats-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: clamp(1.75rem, 4.5vw, 3rem);
      min-height: 0;
      align-content: end;
      align-items: stretch;
    }

    .page-shell .section-inner.stats-grid {
      height: auto;
      min-height: 0;
    }

    .split-panel,
    .location-card {
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(25, 33, 38, 0.08);
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
    }

    .stat-card {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      align-self: stretch;
      min-height: clamp(17.5rem, 20vw, 21.5rem);
      padding: 1.6rem 1.5rem 1.5rem;
      border-radius: var(--radius-md);
      background: linear-gradient(
        155deg,
        #ffffff 0%,
        #f8fafc 42%,
        #f1f5f9 100%
      );
      border: 2px solid var(--brand);
      box-shadow:
        0 14px 44px rgba(20, 25, 28, 0.12),
        0 6px 18px rgba(20, 25, 28, 0.07),
        0 1px 0 rgba(255, 255, 255, 0.92) inset;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
    }

    .stat-card-intro {
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      min-height: 0;
    }

    .stat-card-intro > p {
      margin: 0;
    }

    .stat-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.62;
      font-size: 0.98rem;
    }

    .stat-card .stat-detail {
      flex: 0 0 auto;
      margin-top: 0;
      padding-top: 1rem;
      border-top: 1px solid rgba(24, 24, 24, 0.08);
      font-size: 0.88rem;
      line-height: 1.65;
      color: rgba(36, 40, 38, 0.78);
      /* Match the tallest SEO block so divider lines align across the row */
      min-height: clamp(10.5rem, 16vw, 13.5rem);
    }

    .stat-card strong {
      display: block;
      margin-top: 0.3rem;
      font-family: "Oswald", Impact, sans-serif;
      font-size: 1.7rem;
      color: var(--slate);
    }

    .stat-label,
    .section-label {
      color: var(--brand);
      font-weight: 700;
    }

    .stat-card .stat-label {
      font-size: 0.84rem;
    }

    .coverage-box:hover,
    .coverage-box:focus-visible,
    .stat-card:hover,
    .location-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 70px rgba(20, 25, 28, 0.14);
    }

    .coverage-box:hover,
    .coverage-box:focus-visible {
      border-color: var(--brand);
    }

    .coverage-box:focus-visible {
      outline: 2px solid var(--brand);
      outline-offset: 2px;
    }

    .location-card:hover {
      border-color: var(--brand);
    }

    .stat-card:hover {
      border-color: var(--brand-deep);
      box-shadow:
        0 32px 72px rgba(20, 25, 28, 0.16),
        0 12px 28px rgba(20, 25, 28, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.82) inset;
    }

    .section {
      padding: 7rem 0;
    }

    section#locations {
      padding-top: clamp(1.5rem, 2.8vw, 2.35rem);
      padding-bottom: clamp(1.5rem, 2.8vw, 2.35rem);
    }

    section#locations .section-header {
      margin-bottom: clamp(1.1rem, 2.2vw, 1.65rem);
    }

    section#coverage-dynamic-trucks {
      padding-top: clamp(1.5rem, 4vw, 2.75rem);
      padding-bottom: clamp(1.75rem, 3vw, 2.75rem);
      background: transparent;
    }

    #coverage-dynamic-trucks .section-header {
      align-items: start;
    }

    #coverage-dynamic-trucks .section-header > p {
      align-self: start;
      padding-top: calc(0.76rem * 1.4 + 0.65rem);
    }

    .section-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      column-gap: clamp(2rem, 4vw, 3.5rem);
      row-gap: 0.75rem;
      align-items: stretch;
      margin-bottom: 2.75rem;
    }

    .section-header > div:first-child {
      min-width: 0;
    }

    .section-header .section-label {
      margin-bottom: 0.65rem;
    }

    .section-header h2 {
      font-size: clamp(2.1rem, 4vw, 3.25rem);
      max-width: 22ch;
      line-height: 1.08;
      margin: 0;
    }

    .section-header p {
      max-width: 52ch;
      justify-self: start;
      color: var(--muted);
      line-height: 1.82;
      margin: 0;
      align-self: center;
    }

    .support-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem 1.15rem;
      margin-bottom: 1.5rem;
    }

    .support-card {
      position: relative;
      margin: 0;
      padding: 1.45rem 1.5rem 1.4rem;
      border-radius: clamp(22px, 3vw, 28px);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background:
        linear-gradient(168deg, rgba(64, 80, 90, 0.68) 0%, rgba(50, 64, 74, 0.76) 48%, rgba(42, 56, 66, 0.82) 100%);
      box-shadow:
        0 16px 40px rgba(10, 14, 18, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .support-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: linear-gradient(145deg, rgba(0, 0, 0, 0.22), transparent 62%);
      pointer-events: none;
      z-index: 0;
    }

    .support-card::after {
      content: "";
      position: absolute;
      width: min(240px, 70%);
      height: min(240px, 70%);
      right: -18%;
      top: -20%;
      background: radial-gradient(circle, rgba(204, 71, 73, 0.12) 0%, transparent 64%);
      pointer-events: none;
      z-index: 0;
    }

    .support-card:hover {
      transform: translateY(-5px);
      border-color: rgba(204, 71, 73, 0.38);
      box-shadow:
        0 22px 48px rgba(8, 12, 16, 0.18),
        0 0 0 1px rgba(204, 71, 73, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .support-card > * {
      position: relative;
      z-index: 1;
    }

    .support-card-eyebrow {
      display: block;
      margin-bottom: 0.55rem;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(226, 232, 240, 0.78);
    }

    .support-card h3 {
      font-family: "Oswald", Impact, sans-serif;
      font-size: clamp(1.32rem, 2.4vw, 1.68rem);
      margin: 0 0 0.6rem;
      color: #f8fafc;
      font-weight: 600;
      line-height: 1.12;
      letter-spacing: 0.02em;
    }

    .support-card p {
      margin: 0 0 1.05rem;
      color: rgba(255, 255, 255, 0.84);
      font-size: 0.93rem;
      line-height: 1.62;
      max-width: 46ch;
    }

    .page-shell.breakdance #support a.support-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.52rem 1.15rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff;
      text-shadow: 0 1px 2px rgba(24, 24, 24, 0.35);
      text-decoration: none !important;
      box-shadow: 0 8px 22px rgba(158, 45, 48, 0.28);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .page-shell.breakdance #support a.support-card-link:hover,
    .page-shell.breakdance #support a.support-card-link:focus,
    .page-shell.breakdance #support a.support-card-link:focus-visible {
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(158, 45, 48, 0.34);
    }

    .page-shell.breakdance #support a.support-card-link:focus-visible {
      outline: 2px solid var(--brand);
      outline-offset: 3px;
    }

    .split-copy h3,
    .newsletter-copy h3 {
      font-size: 1.45rem;
      margin-bottom: 0.85rem;
    }

    .newsletter-copy p {
      margin: 0;
    }

    .split {
      color: var(--ink-invert);
    }

    .section.split {
      position: relative;
      padding: clamp(3.25rem, 6vw, 5rem) 0;
      background-color: #3a4d5a;
      background-image: url("asset/continental-cover-graphic.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .section.split.dynamic-split {
      background-image: url("asset/20170421-112204-resized%20(1).jpg");
      background-position: center 38%;
    }

    .split-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: clamp(1rem, 2.5vw, 1.35rem);
      align-items: stretch;
    }

    .split-layout > .split-panel {
      height: 100%;
      min-height: 100%;
      display: flex;
      flex-direction: column;
    }

    .split-unified-inner {
      box-sizing: border-box;
      max-width: min(56rem, 100%);
      margin-left: 0;
      margin-right: auto;
      padding-left: clamp(2.25rem, 7vw, 4.5rem);
      padding-right: clamp(1.15rem, 2.8vw, 2rem);
    }

    .split-panel.split-unified {
      display: flex;
      flex-direction: column;
      gap: clamp(1rem, 2.2vw, 1.35rem);
    }

    .split-panel.split-unified .brand-stack {
      min-height: 0;
    }

    .split-panel {
      border-radius: var(--radius-md);
      padding: 1.65rem 1.55rem 1.7rem;
      min-height: 0;
      box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.22),
        0 2px 8px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
      background:
        linear-gradient(
          155deg,
          rgba(255, 255, 255, 0.38) 0%,
          rgba(255, 255, 255, 0.14) 38%,
          rgba(15, 23, 42, 0.22) 100%
        ),
        rgba(12, 22, 32, 0.42);
      border: 1px solid rgba(255, 255, 255, 0.32);
      backdrop-filter: blur(18px) saturate(150%);
      -webkit-backdrop-filter: blur(18px) saturate(150%);
    }

    .split-panel.split-unified .split-copy {
      min-height: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.7rem;
    }

    .split-copy .section-label {
      margin-bottom: 0;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-shadow: none;
      color: var(--brand);
      background: #ffffff;
      padding: 0.35rem 0.85rem;
      border-radius: 0.35rem;
      display: inline-block;
      border: 1px solid rgba(15, 23, 42, 0.06);
    }

    .split-copy h2 {
      font-size: clamp(1.85rem, 3.2vw, 2.65rem);
      max-width: 16ch;
      margin-bottom: 0;
      line-height: 1.08;
    }

    .page-shell .split-copy h2 {
      color: #ffffff;
      font-weight: 700;
      text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.42),
        0 4px 18px rgba(0, 0, 0, 0.32),
        0 12px 40px rgba(0, 0, 0, 0.22);
    }

    .split-copy p {
      color: rgba(255, 255, 255, 0.96);
      max-width: 52ch;
      margin: 0;
      line-height: 1.68;
      font-size: 1.04rem;
      font-weight: 600;
      text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.55),
        0 2px 14px rgba(0, 0, 0, 0.4),
        0 6px 28px rgba(0, 0, 0, 0.25);
    }

    .quote-band {
      margin: 0;
      padding: 0.95rem 1rem 1rem;
      border: none;
      border-bottom: 3px solid var(--accent);
      background: rgba(255, 255, 255, 0.16);
      border-radius: 12px;
      color: rgba(255, 255, 255, 0.96);
      font-size: 0.98rem;
      line-height: 1.58;
      font-weight: 600;
      text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 2px 12px rgba(0, 0, 0, 0.35);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .brand-stack {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      min-height: 0;
      height: 100%;
      align-self: stretch;
    }

    .brand-accordion-item {
      display: flex;
      flex-direction: column;
      min-height: 0;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.06) 100%),
        rgba(8, 16, 24, 0.28);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      overflow: hidden;
      transition: flex 320ms ease, border-color 200ms ease, box-shadow 200ms ease;
      flex: 0 0 auto;
    }

    .brand-accordion-item.is-open {
      flex: 1 1 0%;
      border-color: rgba(204, 71, 73, 0.45);
      box-shadow:
        inset 3px 0 0 var(--brand),
        0 0 28px rgba(204, 71, 73, 0.12);
    }

    .brand-accordion-item:not(.is-open):hover {
      border-color: rgba(204, 71, 73, 0.42);
      box-shadow:
        0 0 0 1px rgba(204, 71, 73, 0.22),
        0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .brand-accordion-item.is-open:hover {
      border-color: rgba(204, 71, 73, 0.55);
      box-shadow:
        inset 3px 0 0 var(--brand),
        0 0 32px rgba(204, 71, 73, 0.16);
    }

    .brand-accordion-trigger {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.85rem 1rem;
      margin: 0;
      border: none;
      background: transparent;
      color: inherit;
      font: inherit;
      text-align: left;
      cursor: pointer;
      flex-shrink: 0;
    }

    .brand-accordion-trigger strong {
      font-size: 1.02rem;
      color: #ffffff;
      font-weight: 700;
      text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.45),
        0 2px 12px rgba(0, 0, 0, 0.32);
    }

    .brand-accordion-trigger::after {
      content: "";
      width: 8px;
      height: 8px;
      border-right: 2px solid rgba(255, 255, 255, 0.45);
      border-bottom: 2px solid rgba(255, 255, 255, 0.45);
      transform: rotate(-45deg);
      flex-shrink: 0;
      transition: transform 200ms ease, border-color 200ms ease;
    }

    .brand-accordion-item.is-open .brand-accordion-trigger::after {
      transform: rotate(135deg);
      border-color: rgba(204, 71, 73, 0.85);
    }

    .brand-accordion-item:not(.is-open) .brand-accordion-trigger:hover::after {
      border-color: rgba(204, 71, 73, 0.75);
    }

    .brand-accordion-trigger:focus-visible {
      outline: 2px solid var(--brand);
      outline-offset: 2px;
    }

    .brand-accordion-panel {
      flex: 1 1 auto;
      min-height: 0;
      overflow-y: auto;
      padding: 0 1rem 0.95rem;
      -webkit-overflow-scrolling: touch;
    }

    .brand-accordion-item:not(.is-open) .brand-accordion-panel {
      display: none;
    }

    .brand-accordion-panel p {
      margin: 0;
      color: rgba(255, 255, 255, 0.94);
      font-size: 0.93rem;
      line-height: 1.58;
      font-weight: 600;
      text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.5),
        0 2px 10px rgba(0, 0, 0, 0.35);
    }

    .brand-accordion-panel p + p {
      margin-top: 0.65rem;
    }

    .brand-accordion-panel ul {
      margin: 0.55rem 0 0;
      padding: 0 0 0 1.15rem;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.9rem;
      line-height: 1.55;
      font-weight: 600;
      text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .brand-accordion-panel li + li {
      margin-top: 0.4rem;
    }

    .brand-accordion-panel strong {
      color: rgba(255, 255, 255, 0.95);
      font-weight: 700;
    }

    .coverage {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.4rem;
      align-items: stretch;
    }

    .coverage > .coverage-box {
      min-height: 0;
      display: flex;
      flex-direction: column;
    }

    .coverage-box {
      padding: 2rem;
      border-radius: var(--radius-md);
      background: var(--surface-strong);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      transition:
        transform 240ms ease,
        box-shadow 240ms ease,
        border-color 240ms ease;
    }

    .coverage-box h3 {
      font-size: 1.45rem;
      margin-bottom: 0.6rem;
    }

    .coverage-box p {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
    }

    .coverage.coverage--media-rows {
      display: grid;
      grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
      column-gap: 1.35rem;
      row-gap: clamp(1.25rem, 2.8vw, 1.75rem);
    }

    .coverage.coverage--media-rows > .coverage-row {
      display: grid;
      grid-template-columns: subgrid;
      grid-column: 1 / -1;
      min-width: 0;
      align-items: stretch;
    }

    .coverage.coverage--media-rows .coverage-row-media {
      display: flex;
      flex-direction: column;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: #0f172a;
      min-width: 0;
      width: 100%;
      min-height: 0;
      align-self: stretch;
    }

    .coverage.coverage--media-rows .coverage-row-media img {
      flex: 1 1 0;
      width: 100%;
      min-width: 0;
      min-height: 0;
      align-self: stretch;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .coverage.coverage--media-rows .coverage-row-body.coverage-box {
      min-height: 0;
      min-width: 0;
      display: flex;
      flex-direction: column;
    }

    @media (max-width: 900px) {
      .coverage.coverage--media-rows {
        display: flex;
        flex-direction: column;
        gap: clamp(1.25rem, 2.8vw, 1.75rem);
      }

      .coverage.coverage--media-rows > .coverage-row {
        display: grid;
        grid-template-columns: 1fr;
        grid-column: auto;
        gap: 1.35rem;
      }
    }

    .image-strip-wrap {
      position: relative;
      margin: 1.6rem 0 1.75rem;
    }

    .image-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.35rem;
      overflow: visible;
      padding: 0;
      box-sizing: border-box;
    }

    .image-strip::-webkit-scrollbar {
      display: none;
    }

    .image-strip .image-panel {
      min-width: 0;
    }

    .image-panel {
      --image-panel-pad: 1.2rem;
      min-height: 300px;
      padding: 0;
      border-radius: var(--radius-md);
      background: #0f172a;
      color: #ffffff;
      box-shadow: none;
      position: relative;
      overflow: hidden;
      transition: transform 0.32s cubic-bezier(.4,0,.2,1), box-shadow 0.32s ease;
      cursor: pointer;
      border: none;
      outline: none;
    }

    .image-panel:hover {
      transform: scale(1.045);
      box-shadow:
        0 0 0 2px var(--brand),
        0 22px 48px rgba(20, 25, 28, 0.14);
    }

    .image-panel:active,
    .image-panel.is-pressed {
      box-shadow: 0 0 0 3px var(--brand), 0 22px 48px rgba(20, 25, 28, 0.14);
    }

    .image-panel-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      min-width: 100%;
      min-height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
      pointer-events: none;
    }

    .image-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.08) 0%,
        rgba(15, 23, 42, 0.02) 38%,
        rgba(15, 23, 42, 0.55) 100%
      );
      pointer-events: none;
    }

    .image-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.35) 42%,
        transparent 72%
      );
      pointer-events: none;
    }

    .image-panel-inner {
      position: absolute;
      inset: var(--image-panel-pad);
      z-index: 3;
      box-sizing: border-box;
      border: none;
      border-bottom: 3px solid var(--brand);
      box-shadow: none;
      background: transparent;
      border-radius: max(0.65rem, calc(var(--radius-md) - var(--image-panel-pad)));
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.25rem 1.35rem 1.4rem;
      pointer-events: none;
    }

    .image-panel strong {
      display: block;
      margin-bottom: 0.45rem;
      font-family: "Oswald", Impact, sans-serif;
      font-size: clamp(1rem, 1.9vw, 1.45rem);
      font-weight: 600;
      line-height: 1.08;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #ffffff;
      text-shadow:
        0 2px 16px rgba(0, 0, 0, 0.55),
        0 1px 3px rgba(0, 0, 0, 0.45);
    }

    .image-panel span {
      max-width: 36ch;
      line-height: 1.5;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: rgba(255, 255, 255, 0.92);
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    }

    .location-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.35rem;
      align-items: stretch;
    }

    .location-card {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      height: 100%;
      min-height: 0;
      border-radius: var(--radius-md);
      padding: 1.9rem;
      transition:
        transform 240ms ease,
        box-shadow 240ms ease,
        border-color 240ms ease;
    }

    .location-card strong {
      color: var(--brand);
      display: block;
      margin: 0;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.82rem;
      line-height: 1.35;
    }

    .location-card h3 {
      margin: 0;
      font-size: 1.28rem;
      font-weight: 600;
      line-height: 1.22;
      font-family: "Oswald", Impact, sans-serif;
    }

    .location-card p {
      margin: 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.65;
    }

    .location-card p:first-of-type {
      flex: 1 1 auto;
    }

    .location-card p + p {
      flex: 0 0 auto;
    }

    .newsletter-panel {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: clamp(1.35rem, 3.2vw, 1.85rem) clamp(1.5rem, 4vw, 2.5rem);
      padding: clamp(1.9rem, 4.2vw, 2.9rem) clamp(1.65rem, 4vw, 2.85rem);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-bottom: 3px solid var(--accent);
      background: linear-gradient(148deg, rgba(62, 78, 88, 0.78) 0%, rgba(50, 64, 74, 0.84) 45%, rgba(46, 60, 70, 0.88) 100%);
      box-shadow:
        0 22px 52px rgba(6, 10, 14, 0.2),
        0 12px 28px rgba(204, 71, 73, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
      color: var(--ink-invert);
      overflow: hidden;
      isolation: isolate;
    }

    .newsletter-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(125deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.12) 45%, transparent 78%);
      pointer-events: none;
      z-index: 0;
    }

    .newsletter-panel::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 72px;
      background: linear-gradient(180deg, transparent, rgba(204, 71, 73, 0.06));
      pointer-events: none;
      z-index: 0;
      border-radius: 0 0 calc(var(--radius-lg) - 4px) calc(var(--radius-lg) - 4px);
    }

    .newsletter-copy,
    .newsletter-actions {
      position: relative;
      z-index: 1;
    }

    .newsletter-copy {
      min-width: 0;
      max-width: 42rem;
    }

    .newsletter-panel .section-label {
      margin-bottom: 0.5rem;
      color: var(--brand);
      text-shadow: none;
      background: #ffffff;
      padding: 0.35rem 0.85rem;
      border-radius: 0.35rem;
      display: inline-block;
      border: 1px solid rgba(15, 23, 42, 0.06);
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.76rem;
    }

    .breakdance .newsletter-panel .newsletter-copy h2 {
      font-family: "Oswald", Impact, sans-serif;
      font-size: clamp(1.85rem, 3.4vw, 2.75rem);
      line-height: 1.08;
      margin: 0 0 0.75rem;
      max-width: none;
      color: #ffffff;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-wrap: balance;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.22);
    }

    .newsletter-copy p {
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
      max-width: 54ch;
      line-height: 1.72;
      font-size: 1.05rem;
    }

    .newsletter-perks {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 0.65rem;
      margin: 1.15rem 0 0;
      padding: 0;
      list-style: none;
    }

    .newsletter-perks li {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.8125rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.96);
      padding: 0.4rem 0.8rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(6px);
    }

    .newsletter-perks li::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand), var(--brand-deep));
      flex-shrink: 0;
      box-shadow: 0 0 10px rgba(204, 71, 73, 0.45);
    }

    .breakdance .newsletter-panel .newsletter-perks li {
      color: rgba(255, 255, 255, 0.96);
    }

    .newsletter-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.65rem;
      flex-shrink: 0;
      min-width: min(100%, 240px);
    }

    .newsletter-actions-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0.75rem 0.85rem;
    }

    .newsletter-actions-note {
      margin: 0;
      font-size: 0.8125rem;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.68);
      text-align: right;
      max-width: 15rem;
    }

    .page-shell.breakdance #contact .newsletter-panel a.button {
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff;
      text-shadow: 0 1px 2px rgba(24, 24, 24, 0.35);
      text-decoration: none !important;
      letter-spacing: 0.05em;
      box-shadow:
        0 12px 28px rgba(158, 45, 48, 0.35),
        0 0 36px rgba(204, 71, 73, 0.22),
        0 0 0 1px rgba(0, 0, 0, 0.06) !important;
    }

    .page-shell.breakdance #contact .newsletter-panel a.button:hover,
    .page-shell.breakdance #contact .newsletter-panel a.button:focus,
    .page-shell.breakdance #contact .newsletter-panel a.button:focus-visible {
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff;
      box-shadow:
        0 16px 36px rgba(158, 45, 48, 0.42),
        0 0 48px rgba(204, 71, 73, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.06) !important;
    }

    .page-shell.breakdance #contact .newsletter-panel a.button-secondary {
      color: rgba(255, 255, 255, 0.95) !important;
      -webkit-text-fill-color: rgba(255, 255, 255, 0.95);
      text-shadow: none;
      letter-spacing: 0.02em;
    }

    .page-shell.breakdance #contact .newsletter-panel a.button-secondary:hover,
    .page-shell.breakdance #contact .newsletter-panel a.button-secondary:focus,
    .page-shell.breakdance #contact .newsletter-panel a.button-secondary:focus-visible {
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff;
    }

    .newsletter-panel .button {
      box-shadow:
        0 12px 28px rgba(158, 45, 48, 0.35),
        0 0 36px rgba(204, 71, 73, 0.22),
        0 0 0 1px rgba(0, 0, 0, 0.06);
    }

    .newsletter-panel .button:hover {
      box-shadow:
        0 16px 36px rgba(158, 45, 48, 0.42),
        0 0 48px rgba(204, 71, 73, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.06);
    }

    .newsletter-panel .button:focus-visible,
    .newsletter-panel .button-secondary:focus-visible {
      outline: 2px solid var(--brand);
      outline-offset: 3px;
    }

    .newsletter-panel .button-secondary {
      border-color: rgba(255, 255, 255, 0.28);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(4px);
    }

    .newsletter-panel .button-secondary:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.38);
    }

    .footer {
      padding: 3.75rem 0 3.5rem;
      color: #ffffff;
      background: #222222;
      font-family: "Maven Pro", "PT Sans", "Segoe UI", sans-serif;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
      gap: 2rem 2.25rem;
    }

    .footer-copy {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer-copy p {
      max-width: 20rem;
      margin: 0;
      color: #c9d4db;
      font-size: 1rem;
      line-height: 1.65;
    }

    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 0;
    }

    .social-icon {
      box-sizing: border-box;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      padding: 0;
      border: none;
      flex-shrink: 0;
      background: rgba(255, 255, 255, 0.92);
      color: #334858;
      opacity: 0.5;
    }

    a.social-icon {
      text-decoration: none;
      transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    }

    a.social-icon:hover {
      opacity: 0.9;
      transform: scale(1.1);
      background: #ffffff;
    }

    .social-icon svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .footer-copy {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer-logo {
      display: inline-block;
      margin-bottom: 0;
      line-height: 0;
    }

    .footer-logo img {
      width: 200px;
      max-width: 100%;
      height: auto;
      display: block;
    }

    .footer-legal {
      grid-column: 1 / -1;
      padding-top: 1.5rem;
      margin-top: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      font-size: 0.9375rem;
      line-height: 1.5;
      color: #a8b8c4;
      text-align: center;
    }

    .footer-links {
      display: grid;
      gap: 0;
      align-content: start;
    }

    .footer-links .ghost-link {
      margin-bottom: 12px;
    }

    .footer-links .ghost-link:last-child {
      margin-bottom: 0;
    }

    .footer-title {
      margin: 0 0 12px;
      font-family: "Maven Pro", "PT Sans", "Segoe UI", sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: #ffffff;
      letter-spacing: 0.01em;
    }

    .footer-inner a.ghost-link {
      color: #ffffff;
      font-size: 1rem;
      line-height: 1.5;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 0.22em;
      transition: color 0.15s ease, text-decoration-color 0.15s ease;
    }

    .footer-inner a.ghost-link:hover {
      color: #ffffff;
      text-decoration-color: var(--brand);
    }

    @media (max-width: 1080px) {
      .footer-inner {
        width: min(calc(100% - 2rem), var(--max));
      }

      .hero-grid,
      .hero-immersive-grid,
      .coverage,
      .split-layout,
      .footer-inner {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .newsletter-panel {
        grid-template-columns: 1fr;
        padding-left: clamp(1.65rem, 4vw, 2.85rem);
      }

      .newsletter-actions {
        align-items: stretch;
        min-width: 0;
      }

      .newsletter-actions-row {
        justify-content: flex-start;
      }

      .newsletter-actions-note {
        text-align: left;
        max-width: none;
      }

      .section-header {
        grid-template-columns: 1fr;
        row-gap: 1rem;
      }

      .section-header p {
        justify-self: start;
        max-width: none;
        align-self: start;
      }

      #coverage-dynamic-trucks .section-header > p {
        padding-top: 0;
      }

      .section-header h2 {
        max-width: none;
      }

      .split-panel.split-unified .brand-stack {
        height: auto;
        min-height: 0;
      }

      .image-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 720px) {
      .section-inner,
      .footer-inner {
        width: min(calc(100% - 1.2rem), var(--max));
      }

      .hero:not(.hero--immersive) {
        padding-top: 5rem;
      }

      .hero.hero--immersive {
        min-height: clamp(460px, 90vh, 800px);
      }

      .hero-immersive-inner {
        width: min(calc(100% - 1.2rem), var(--max));
        padding: clamp(5.25rem, 16vw, 6.75rem) 0 clamp(2.5rem, 10vw, 3.75rem);
      }

      .hero-scrim {
        background:
          linear-gradient(
            165deg,
            rgba(15, 23, 42, 0.82) 0%,
            rgba(15, 23, 42, 0.5) 40%,
            rgba(15, 23, 42, 0.2) 70%,
            transparent 100%
          ),
          linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.18) 0%,
            transparent 30%,
            transparent 48%,
            rgba(0, 0, 0, 0.5) 100%
          );
      }

      .stats {
        margin-top: -0.35rem;
      }

      .stat-card {
        min-height: 0;
      }

      .stat-card .stat-detail {
        min-height: 0;
      }

      .stats-grid,
      .location-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        margin-top: clamp(1.25rem, 4vw, 2.25rem);
      }

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

      .image-strip {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 5rem 0;
      }

      section#locations {
        padding-top: 1.35rem;
        padding-bottom: 1.35rem;
      }

      section#locations .section-header {
        margin-bottom: 1.1rem;
      }

      section#coverage-dynamic-trucks {
        padding-bottom: 1.75rem;
      }

      .section.split {
        padding: 3.25rem 0;
      }

      .section-header {
        grid-template-columns: 1fr;
        row-gap: 1rem;
      }

      .newsletter-actions-row {
        flex-direction: column;
      }

      .newsletter-actions-row .button,
      .newsletter-actions-row .button-secondary {
        width: 100%;
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translate3d(0, 0, 0);
      }
      50% {
        transform: translate3d(0, -18px, 0);
      }
    }

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

      .orb,
      .image-panel {
        animation: none;
      }

      .button,
      .button-secondary,
      .coverage-box,
      .coverage-item,
      .stat-card,
      .location-card,
      .hero-panel,
      .image-panel,
      .support-card,
      .support-card-link,
      .brand-accordion-item,
      .brand-accordion-trigger::after {
        transition: none;
      }

      .coverage-item:hover {
        transform: none;
      }

      .image-panel:hover {
        transform: none;
      }

      .support-card:hover {
        transform: none;
      }

      .page-shell.breakdance #support a.support-card-link:hover,
      .page-shell.breakdance #support a.support-card-link:focus,
      .page-shell.breakdance #support a.support-card-link:focus-visible {
        transform: none;
      }
    }
