:root {
    --orange: #ff5f05;
    --orange-dark: #cf4a00;
    --orange-soft: rgba(255, 95, 5, 0.14);
    --blue: #13294b;
    --blue-deep: #0a1730;
    --blue-soft: #223f73;
    --ink: #0f1b31;
    --text: #20304d;
    --muted: #67768f;
    --line: rgba(19, 41, 75, 0.12);
    --line-strong: rgba(255, 255, 255, 0.12);
    --surface: #ffffff;
    --surface-alt: #f3f6fb;
    --surface-soft: rgba(255, 255, 255, 0.72);
    --dark-surface: #0e1b34;
    --dark-surface-2: #13294b;
    --dark-card: rgba(255, 255, 255, 0.06);
    --shadow-lg: 0 32px 72px rgba(15, 27, 49, 0.16);
    --shadow-md: 0 18px 40px rgba(19, 41, 75, 0.1);
    --radius: 24px;
    --radius-sm: 18px;
    --shell: min(1200px, calc(100% - 2rem));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(255, 95, 5, 0.08), transparent 30%),
        linear-gradient(180deg, #fdfefe 0%, #f4f7fb 100%);
    line-height: 1.6;
}

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

a {
    color: var(--blue);
    text-decoration-thickness: 0.12em;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--orange-dark);
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    background: var(--blue);
    color: #fff;
    border-radius: 0 0 0.75rem 0.75rem;
}

.skip-link:focus {
    top: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: transparent;
    backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
    transition:
        background-color 0.25s ease,
        border-bottom-color 0.25s ease,
        backdrop-filter 0.25s ease;
}

.site-header::before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff914d 35%, var(--blue) 100%);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 0.8rem;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: inherit;
    text-decoration: none;
}

.brand-logo {
    width: 3.25rem;
    height: 3.25rem;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-copy {
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-kicker,
.eyebrow,
.card-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-kicker,
.eyebrow {
    color: rgba(255, 179, 135, 0.9);
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
}

.site-nav {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a.is-active,
.site-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.page-home .site-header.is-stuck {
    background: rgba(19, 41, 75, 0.94);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-team .site-header,
.page-cars .site-header,
.page-sponsors .site-header,
.page-get-involved .site-header,
.page-contact .site-header,
.page-404 .site-header {
    background: rgba(19, 41, 75, 0.94);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-home .site-header {
    margin-bottom: -5.5rem;
    background: transparent;
    backdrop-filter: blur(0);
    border-bottom-color: transparent;
}

.site-header::before {
    opacity: 0.9;
}

.hero,
.page-intro {
    position: relative;
}

.hero {
    min-height: calc(100vh - 86px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    padding: 10.5rem 0 3rem;
    overflow: clip;
    background: #081120;
}

.hero-grid,
.grid,
.footer-grid,
.cta-band,
.feature-split {
    display: grid;
    gap: 1.5rem;
}

.hero-grid-home {
    position: relative;
    z-index: 2;
    align-items: end;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 30rem);
    gap: 2rem;
}

.hero-copy {
    max-width: 46rem;
}

.hero-media-full {
    position: absolute;
    inset: 0;
}

.hero-media-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 17, 32, 0.82) 0%, rgba(8, 17, 32, 0.44) 42%, rgba(8, 17, 32, 0.74) 100%),
        linear-gradient(180deg, rgba(8, 17, 32, 0.18), rgba(8, 17, 32, 0.8));
}

.hero-grid-immersive {
    min-height: calc(100vh - 12rem);
}

.hero-copy-immersive {
    align-self: end;
    padding: 0 0 1rem;
    max-width: 52rem;
}

.hero-copy-immersive .eyebrow {
    color: #ffb387;
}

.hero-copy-immersive h1 {
    color: #fff;
    max-width: 8ch;
    text-transform: uppercase;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

.hero-copy-immersive .lede {
    color: rgba(255, 255, 255, 0.86);
    max-width: 38rem;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.hero-slider {
    align-self: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 0;
    background: rgba(10, 18, 34, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
}

.section-slider {
    align-self: stretch;
    max-width: none;
}

.hero-slider-header,
.hero-slider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem 0;
}

.hero-slider-window {
    position: relative;
    margin: 1rem;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.06);
}

.hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide figcaption {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(8, 17, 32, 0), rgba(8, 17, 32, 0.9));
    color: #fff;
}

.hero-slide figcaption strong,
.hero-slide figcaption span {
    color: inherit;
}

.hero-slider-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.hero-slider-dots-shell {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.hero-slider-dots {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.45rem;
    width: max-content;
}

.hero-slider-dot {
    width: 0.8rem;
    height: 0.8rem;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.hero-slider-dot.is-active {
    background: var(--orange);
}

.hero-slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    flex: 0 0 auto;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 179, 135, 0.36);
    transform: translateY(-1px);
}

.hero-scroll {
    display: inline-flex;
    margin-top: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
}

.hero-scroll-light {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-scroll-light:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.hero-slider-link {
    flex: 0 0 auto;
    white-space: nowrap;
    margin-bottom: 0.25rem;
}

.card,
.person-card,
.year-section,
.feature-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(19, 41, 75, 0.08);
    border-radius: 0;
    box-shadow: var(--shadow-md);
    background: #fff;
}

.card-media img,
.person-card img,
.spotlight-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.card-copy {
    padding: 1.4rem 1.5rem;
}

.section-dark h2,
.section-contrast h2,
.cta-band h2,
.site-footer h2 {
    color: #fff;
}

.section-dark p,
.section-contrast p,
.cta-band p,
.site-footer p,
.site-footer li {
    color: rgba(255, 255, 255, 0.78);
}

.grid-2,
.footer-grid,
.cta-band,
.feature-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

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

h1,
h2,
h3 {
    margin: 0 0 0.75rem;
    color: var(--ink);
    line-height: 1.02;
}

h1 {
    font-size: clamp(3rem, 6vw, 6.25rem);
    letter-spacing: -0.05em;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.35rem);
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

p,
ul,
ol {
    margin-top: 0;
}

.lede {
    max-width: 62ch;
    font-size: 1.15rem;
    color: var(--muted);
}

.actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.85rem 0 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, #ff7b2f, var(--orange));
    color: #fff;
    box-shadow: 0 16px 28px rgba(255, 95, 5, 0.24);
}

.button-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff8e4c, var(--orange-dark));
}

.button-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue);
    border: 1px solid var(--line);
}

.button-secondary.light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.26);
}

.button-secondary.light:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.hero-copy-immersive .button {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-md);
}

.hero-copy-immersive .button-primary {
    background: linear-gradient(135deg, rgba(255, 123, 47, 0.88), rgba(255, 95, 5, 0.78));
    border-color: rgba(255, 179, 135, 0.36);
}

.hero-copy-immersive .button-primary:hover {
    background: linear-gradient(135deg, rgba(255, 142, 76, 0.94), rgba(207, 74, 0, 0.84));
}

.hero-copy-immersive .button-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.hero-copy-immersive .button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.stat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
    margin: 2rem 0 0;
    list-style: none;
}

.stat-list li {
    min-width: 11rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.stat-list strong {
    display: block;
    font-size: 1.85rem;
    color: #fff;
}

.stat-list span {
    color: rgba(255, 255, 255, 0.74);
}

.page-intro {
    padding: 5rem 0 2.25rem;
    background:
        linear-gradient(180deg, rgba(255, 95, 5, 0.08), rgba(255, 255, 255, 0)),
        radial-gradient(circle at right top, rgba(19, 41, 75, 0.1), transparent 32%);
}

.page-intro h1 {
    max-width: 14ch;
}

.page-interior {
    background:
        radial-gradient(circle at top left, rgba(255, 95, 5, 0.12), transparent 24%),
        linear-gradient(180deg, var(--blue-deep), var(--dark-surface));
}

.page-interior .page-intro,
.page-interior .section,
.page-interior .section-alt,
.page-interior .section-contrast {
    background: transparent;
    border-color: transparent;
}

.page-interior .page-intro h1,
.page-interior .page-intro h2,
.page-interior .page-intro .lede,
.page-interior .section-heading h2,
.page-interior .section-heading p,
.page-interior .year-heading h2,
.page-interior .year-heading p,
.page-interior .steps,
.page-interior .steps li {
    color: #fff;
}

.page-interior .page-intro .eyebrow,
.page-interior .section-heading .eyebrow,
.page-interior .year-heading .eyebrow {
    color: rgba(255, 179, 135, 0.9);
}

.page-interior .year-section,
.page-interior .card,
.page-interior .panel-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.page-cars .page-intro {
    padding-bottom: 0.4rem;
}

.page-cars .section:first-of-type {
    padding-top: 0.5rem;
}

.page-interior .card h2,
.page-interior .card h3,
.page-interior .card p,
.page-interior .card li,
.page-interior .panel-card h2,
.page-interior .panel-card h3,
.page-interior .panel-card p,
.page-interior .panel-card li,
.page-interior .clean-list,
.page-interior .clean-list li {
    color: rgba(255, 255, 255, 0.84);
}

.page-interior .card h2,
.page-interior .card h3,
.page-interior .panel-card h2,
.page-interior .panel-card h3 {
    color: #fff;
}

main a:not(.button):not(.cta-link):not(.sponsor-link) {
    color: var(--orange);
}

main a:not(.button):not(.cta-link):not(.sponsor-link):hover,
main a:not(.button):not(.cta-link):not(.sponsor-link):focus-visible {
    color: #ffb387;
}

.section {
    padding: 2.5rem 0 5rem;
}

.instagram-section {
    background: #fff;
}

.section-tight {
    padding: 0 0 2rem;
}

.section-alt {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(243, 246, 251, 0.92)),
        var(--surface-alt);
    border-top: 1px solid rgba(19, 41, 75, 0.06);
    border-bottom: 1px solid rgba(19, 41, 75, 0.06);
}

.section-dark {
    background:
        radial-gradient(circle at top left, rgba(255, 95, 5, 0.16), transparent 28%),
        linear-gradient(180deg, var(--blue-deep), var(--dark-surface));
}

.section-contrast {
    background: linear-gradient(180deg, rgba(19, 41, 75, 0), rgba(19, 41, 75, 0.04));
}

.section-heading {
    max-width: 56rem;
    margin-bottom: 1.75rem;
}

.page-sponsors .section-heading {
    max-width: 72rem;
}

.sponsor-layout {
    align-items: start;
}

.sponsor-copy {
    margin-bottom: 0;
}

.contact-form-card .section-heading {
    max-width: none;
}

.contact-form-card .section-heading h2 {
    margin-bottom: 0;
}

.social-card {
    text-align: center;
}

.social-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.social-card-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-card p:first-of-type a {
    font-size: 1.15rem;
    font-weight: 700;
}

.sponsor-packet {
    min-height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-md);
}

.sponsor-packet iframe {
    display: block;
    width: 100%;
    height: 46rem;
    border: 0;
    background: #fff;
}

.page-sponsors .sponsor-tiers-intro {
    padding-bottom: 1rem;
}

.page-sponsors .sponsor-tiers-intro .section-heading {
    margin-bottom: 0;
}

.sponsor-tier-section {
    padding-top: 0;
}

.sponsor-tier-title {
    margin-bottom: 1rem;
    color: #fff;
}

.sponsor-logo-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.sponsor-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.sponsor-logo-card {
    margin: 0;
}

.sponsor-name-card {
    margin: 0;
}

.sponsor-logo-card img,
.sponsor-name-pill {
    display: block;
    width: 100%;
    min-height: 150px;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid rgba(19, 41, 75, 0.08);
}

.sponsor-logo-card img {
    height: 150px;
    object-fit: contain;
}

.sponsor-logo-card figcaption {
    margin-top: 0.6rem;
    text-align: center;
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
}

.sponsor-name-card figcaption {
    margin-top: 0.6rem;
    text-align: center;
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
}

.sponsor-name-pill {
    align-items: center;
    justify-content: center;
    min-height: 150px;
    display: flex;
    color: var(--blue-deep);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.section-heading h2 {
    font-size: clamp(1.75rem, 2.3vw, 2.5rem);
}

.legacy-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

.legacy-feature .section-heading {
    margin-bottom: 0;
}

.legacy-feature-card {
    align-self: start;
}

.legacy-feature-card img {
    height: auto;
    aspect-ratio: 16 / 10;
}

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

.work-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: start;
}

.work-photo {
    margin: 0;
    margin-top: 2.4rem;
    overflow: hidden;
    border-radius: 0;
    background: #fff;
    border: 1px solid rgba(19, 41, 75, 0.08);
    box-shadow: var(--shadow-md);
}

.work-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.work-photo figcaption {
    padding: 0.9rem 1rem 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.feature-stack {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.feature-row {
    margin-top: 1.5rem;
}

.feature-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-md);
}

.feature-photo img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.feature-photo figcaption {
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--line-strong);
    box-shadow: none;
}

.feature-card h3,
.feature-card p {
    color: #fff;
    padding: 0 1.4rem;
}

.feature-card .card-label {
    display: block;
    color: #ffb387;
    padding: 1.35rem 1.4rem 0.25rem;
}

.feature-grid .panel-card {
    min-height: 100%;
}

.card,
.panel-card {
    padding: 1.45rem;
}

.card-media,
.spotlight-card,
.person-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card-media:hover,
.spotlight-card:hover,
.person-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 95, 5, 0.18);
}

.card-label {
    color: var(--orange);
}

.person-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #fff);
}

.person-card img {
    aspect-ratio: 3 / 3.6;
}

.person-card h3 {
    margin: 0;
    padding: 1rem 1.1rem 1.2rem;
    text-align: center;
}

.leadership-band .person-card {
    box-shadow: 0 16px 32px rgba(19, 41, 75, 0.08);
}

.year-section {
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
}

.stack {
    display: grid;
    gap: 2rem;
}

.year-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: 0 0 1rem;
}

.cta-band {
    align-items: center;
    padding: 2.2rem;
    background:
        radial-gradient(circle at top left, rgba(255, 95, 5, 0.3), transparent 24%),
        linear-gradient(135deg, var(--blue-deep), var(--dark-surface-2));
    color: #fff;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.clean-list,
.steps {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.steps li + li {
    margin-top: 0.4rem;
}

.section-link {
    margin-top: 1.4rem;
    font-weight: 700;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.1rem;
    border: 1px solid rgba(19, 41, 75, 0.7);
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cta-link::after {
    content: "\2192";
    font-size: 1rem;
    line-height: 1;
}

.cta-link:hover,
.cta-link:focus-visible {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 95, 5, 0.22);
    background: #1b3b6d;
    color: #fff;
}

.car-card {
    display: flex;
    flex-direction: column;
}

.car-card .card-copy {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.65rem;
}

.car-card .card-copy .car-card-year {
    margin: 0;
    color: #ff5f05;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.car-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.car-card .card-copy h2 {
    margin-bottom: 0;
}

.car-card-actions {
    margin: 0;
    flex: 0 0 auto;
}

.car-card-actions .cta-link {
    white-space: nowrap;
}

.car-gallery-items {
    display: none;
}

.newsletter-card {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.newsletter-card-image {
    width: 100%;
    aspect-ratio: 8.5 / 11;
    object-fit: cover;
    object-position: top;
    background: #e9eef5;
}

.newsletter-card-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.85rem;
}

.newsletter-card-copy h3 {
    margin-bottom: 0;
}

.newsletter-card-copy p {
    margin-bottom: 0;
}

.newsletter-link {
    margin-top: auto;
    font-weight: 700;
}

.newsletter-link-muted {
    color: var(--muted);
}

.photo-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.photo-strip-hero {
    margin-top: 2rem;
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.hero-strip-shell {
    position: relative;
    z-index: 2;
}

.photo-strip-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    min-height: 14.5rem;
    border-radius: 0;
    background: #fff;
    border: 1px solid rgba(19, 41, 75, 0.08);
    box-shadow: var(--shadow-md);
}

.photo-strip-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.photo-strip-hero .photo-strip-card {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.photo-strip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-strip-card figcaption {
    position: absolute;
    inset: auto 0 0;
    min-height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.9rem 1rem 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    background: rgba(54, 60, 77, 0.92);
}

.photo-strip-card-title {
    position: absolute;
    inset: auto 0 0;
    min-height: 4.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.9rem 1rem 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    background: rgba(54, 60, 77, 0.92);
}

.photo-strip-hero .photo-strip-card figcaption {
    color: rgba(255, 255, 255, 0.88);
}

.photo-strip-hero .photo-strip-card-title {
    color: rgba(255, 255, 255, 0.88);
}

.site-footer {
    padding: 4rem 0;
    background:
        radial-gradient(circle at top left, rgba(255, 95, 5, 0.2), transparent 24%),
        linear-gradient(180deg, var(--blue-deep), #081120);
    color: rgba(255, 255, 255, 0.9);
}

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

.site-footer .clean-list {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
    color: #fff;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #ffb387;
}

@media (max-width: 1100px) {
    .hero-grid-home,
    .legacy-feature,
    .work-section,
    .feature-split,
    .grid-3,
    .grid-4,
    .grid-5,
    .footer-grid,
    .cta-band,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 9rem;
    }

    .hero-grid-home,
    .photo-strip {
        grid-template-columns: 1fr;
    }

    .photo-strip-hero {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-grid-immersive {
        min-height: auto;
    }

    .hero-slider {
        max-width: 32rem;
    }

    .section-slider {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        flex-direction: column;
        padding-bottom: 0;
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero,
    .page-intro {
        padding-top: 3rem;
    }

    .header-controls {
        position: relative;
    }

    .header-controls .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 0;
        min-width: 14rem;
        z-index: 50;
        background: rgba(8, 17, 32, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        box-shadow: var(--shadow-md);
        padding: 0.5rem;
    }

    .header-controls .site-nav a {
        width: 100%;
    }

    .hero {
        padding-top: 8.5rem;
        padding-bottom: 2rem;
    }

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

    .brand {
        gap: 0.6rem;
    }

    .brand-logo {
        width: 2.6rem;
        height: 2.6rem;
    }

    .hero-grid-immersive {
        gap: 1.25rem;
    }

    .hero-copy-immersive h1 {
        max-width: none;
    }

    .hero-stats-overlay {
        display: grid;
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(2.7rem, 14vw, 4.25rem);
    }

    .hero-slider-header,
    .hero-slider-footer,
    .hero-slide figcaption {
        flex-direction: column;
        align-items: start;
    }
}
