:root {
    --ink: #07111f;
    --navy: #0a192f;
    --navy-2: #10233d;
    --black-blue: #040a13;
    --paper: #f6f8fb;
    --surface: #ffffff;
    --line: #dce3ec;
    --muted: #687383;
    --text: #162033;
    --steel: #8fa3bb;
    --sky: #4fb4ff;
    --copper: #bc7651;
    --teal: #27b3a7;
    --green: #65c97a;
    --indigo: #7287ff;
    --slate: #93a4b7;
    --radius: 8px;
    --shadow: 0 24px 80px rgba(7, 17, 31, .12);
    --font-sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: "Source Serif 4", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: var(--font-sans);
    line-height: 1.6;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

section[id] {
    scroll-margin-top: 86px;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 18px clamp(20px, 4vw, 64px);
    color: white;
    background: rgba(4, 10, 19, .82);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    transition: padding .2s ease, background .2s ease;
}

.site-header.scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(4, 10, 19, .94);
}

.brand img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.desktop-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.4vw, 36px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.desktop-nav a {
    color: rgba(255, 255, 255, .78);
    transition: color .2s ease;
}

.desktop-nav a:hover,
.nav-dropdown:hover > button {
    color: white;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > button {
    border: 0;
    padding: 20px 0;
    color: rgba(255, 255, 255, .78);
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-dropdown > button::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
}

.dropdown-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    z-index: 30;
    min-width: 360px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(4, 10, 19, .96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-panel a {
    display: grid;
    gap: 3px;
    padding: 12px;
    border-radius: 6px;
    color: white;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-panel a:hover {
    background: rgba(255, 255, 255, .08);
}

.dropdown-panel span {
    color: white;
    font-size: 13px;
    font-weight: 800;
}

.dropdown-panel small {
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-weight: 600;
}

.brand-panel {
    min-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.brand-panel a {
    grid-template-columns: 88px 1fr;
    align-items: center;
    column-gap: 12px;
}

.brand-panel img {
    grid-row: span 2;
    max-width: 84px;
    max-height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.corporate-panel {
    min-width: 430px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 3px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
}

.lang-switch a {
    min-width: 34px;
    padding: 5px 9px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.lang-switch a.active {
    color: var(--ink);
    background: white;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: white;
    transition: transform .2s ease;
}

.menu-toggle.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
    display: none;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
    padding: 132px clamp(20px, 5vw, 76px) 72px;
    color: white;
    background:
        linear-gradient(120deg, rgba(4, 10, 19, .98), rgba(10, 25, 47, .93) 48%, rgba(16, 35, 61, .78)),
        radial-gradient(circle at 78% 16%, rgba(79, 180, 255, .18), transparent 34%);
    overflow: hidden;
}

.hero-copy {
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--sky);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.hero h1 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(3.55rem, 5.9vw, 4.75rem);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
}

.section-heading h2,
.sustainability h2,
.contact-copy h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 5.25rem;
    line-height: .95;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.125rem;
}

.hero-brand-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 680px;
    margin-top: 28px;
}

.hero-brand-link {
    --accent: var(--sky);
    min-height: 74px;
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .07);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-brand-link:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--accent) 60%, rgba(255, 255, 255, .14));
    background: rgba(255, 255, 255, .12);
}

.hero-brand-link.accent-copper { --accent: var(--copper); }
.hero-brand-link.accent-teal { --accent: var(--teal); }
.hero-brand-link.accent-green { --accent: var(--green); }
.hero-brand-link.accent-indigo { --accent: var(--indigo); }
.hero-brand-link.accent-slate { --accent: var(--slate); }

.hero-brand-link img {
    max-width: 68px;
    max-height: 26px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-brand-link span {
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
}

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

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

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

.button.primary {
    color: var(--ink);
    background: white;
}

.button.ghost {
    color: white;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .08);
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy);
    box-shadow: var(--shadow);
}

.image-frame::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 5px;
    pointer-events: none;
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(4, 10, 19, .08), rgba(4, 10, 19, .42));
    pointer-events: none;
}

.hero-frame {
    aspect-ratio: 5 / 6;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .65s ease, transform 1.2s ease;
}

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

.frame-label {
    position: absolute;
    left: 32px;
    bottom: 30px;
    z-index: 3;
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-controls {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.hero-controls button {
    width: 42px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .28);
    cursor: pointer;
}

.hero-controls button.active {
    background: white;
}

.stats-band {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: clamp(22px, 4vw, 54px) clamp(20px, 5vw, 76px);
    background:
        linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%),
        radial-gradient(circle at 16% 0%, rgba(79, 180, 255, .16), transparent 36%);
    border-bottom: 1px solid var(--line);
}

.stats-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 25, 47, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 25, 47, .05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, .75), transparent);
    pointer-events: none;
}

.stats-band div {
    position: relative;
    min-height: 190px;
    display: grid;
    align-content: end;
    padding: clamp(22px, 3vw, 34px);
    overflow: hidden;
    border: 1px solid rgba(10, 25, 47, .12);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(244, 248, 253, .88)),
        linear-gradient(120deg, rgba(79, 180, 255, .1), transparent);
    box-shadow: 0 24px 70px rgba(7, 17, 31, .09);
    isolation: isolate;
}

.stats-band div::before {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(10, 25, 47, .12);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .8), rgba(79, 180, 255, .14)),
        radial-gradient(circle at 65% 35%, rgba(79, 180, 255, .34), transparent 34%);
}

.stats-band div::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--sky), var(--navy));
}

.stats-band div:nth-child(2)::after { background: linear-gradient(180deg, var(--copper), var(--navy)); }
.stats-band div:nth-child(3)::after { background: linear-gradient(180deg, var(--teal), var(--navy)); }
.stats-band div:nth-child(4)::after { background: linear-gradient(180deg, var(--green), var(--navy)); }

.stats-band strong {
    display: block;
    color: var(--navy);
    font-family: var(--font-serif);
    font-size: 3.45rem;
    line-height: .9;
    letter-spacing: 0;
}

.stats-band span {
    display: block;
    max-width: 210px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section {
    padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 76px);
}

.intro {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(280px, .62fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: end;
    background: white;
}

.section-heading {
    max-width: 920px;
}

.section-heading.compact h2 {
    font-size: 4rem;
}

.section-heading h2,
.sustainability h2,
.contact-copy h2 {
    color: var(--navy);
    font-size: 4.25rem;
}

.lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.125rem;
}

.brand-system {
    background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.division-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.brand-link-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.brand-slide {
    --accent: var(--sky);
    min-height: 438px;
    display: grid;
    grid-template-rows: 218px 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 14px 48px rgba(7, 17, 31, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.brand-slide:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
    box-shadow: 0 22px 70px rgba(7, 17, 31, .12);
}

.brand-slide.accent-copper,
.mini-brand.accent-copper { --accent: var(--copper); }
.brand-slide.accent-teal,
.mini-brand.accent-teal { --accent: var(--teal); }
.brand-slide.accent-green,
.mini-brand.accent-green { --accent: var(--green); }
.brand-slide.accent-indigo,
.mini-brand.accent-indigo { --accent: var(--indigo); }
.brand-slide.accent-slate,
.mini-brand.accent-slate { --accent: var(--slate); }

.brand-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 4px solid var(--accent);
}

.brand-slide > div {
    display: grid;
    align-content: start;
    padding: 22px 24px 24px;
}

.brand-slide span,
.mini-brand span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.brand-slide h3 {
    margin: 9px 0 10px;
    color: var(--navy);
    font-size: 25px;
    line-height: 1.1;
}

.brand-slide p {
    margin: 0;
    color: var(--muted);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 15px;
    line-height: 1.55;
}

.brand-slide em {
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    padding-top: 12px;
    border-top: 2px solid var(--accent);
    color: var(--navy);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.division-card {
    --accent: var(--sky);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 12px 40px rgba(7, 17, 31, .06);
}

.division-card.accent-copper { --accent: var(--copper); }
.division-card.accent-teal { --accent: var(--teal); }
.division-card.accent-green { --accent: var(--green); }
.division-card.accent-indigo { --accent: var(--indigo); }
.division-card.accent-slate { --accent: var(--slate); }

.division-media {
    aspect-ratio: 16 / 10;
    border-radius: 0;
    box-shadow: none;
}

.division-media img,
.field-card img,
.sustainability-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.division-card:hover .division-media img,
.field-card:hover img {
    transform: scale(1.05);
}

.division-body {
    position: relative;
    min-height: 280px;
    padding: 26px;
    border-top: 4px solid var(--accent);
}

.division-logo {
    height: 28px;
    width: auto;
    max-width: 148px;
    object-fit: contain;
    margin-bottom: 20px;
}

.division-body span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.division-body h3 {
    margin: 8px 0 10px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.15;
}

.division-body p,
.field-card p,
.sustainability p,
.contact-copy p {
    margin: 0;
    color: var(--muted);
}

.brand-page {
    --brand-accent: var(--sky);
}

.theme-copper { --brand-accent: var(--copper); }
.theme-teal { --brand-accent: var(--teal); }
.theme-green { --brand-accent: var(--green); }
.theme-indigo { --brand-accent: var(--indigo); }
.theme-slate { --brand-accent: var(--slate); }

.brand-page .eyebrow,
.brand-page .desktop-nav a:hover {
    color: var(--brand-accent);
}

.brand-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: center;
    padding: 132px clamp(20px, 5vw, 76px) 72px;
    color: white;
    background:
        linear-gradient(120deg, rgba(4, 10, 19, .98), rgba(10, 25, 47, .94) 50%, rgba(16, 35, 61, .82)),
        linear-gradient(90deg, color-mix(in srgb, var(--brand-accent) 24%, transparent), transparent 44%);
}

.info-hero {
    min-height: 76vh;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, .82fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: center;
    padding: 132px clamp(20px, 5vw, 76px) 72px;
    color: white;
    background:
        linear-gradient(120deg, rgba(4, 10, 19, .98), rgba(10, 25, 47, .92)),
        radial-gradient(circle at 72% 10%, rgba(79, 180, 255, .16), transparent 36%);
}

.info-hero-copy {
    min-width: 0;
}

.info-hero h1 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 5.3vw, 4.45rem);
    line-height: 1;
    text-wrap: balance;
}

.info-hero p {
    max-width: 760px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.125rem;
}

.info-frame {
    aspect-ratio: 4 / 3;
}

.info-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awards-hero {
    background:
        linear-gradient(120deg, rgba(4, 10, 19, .98), rgba(10, 25, 47, .92)),
        radial-gradient(circle at 18% 18%, rgba(190, 138, 79, .2), transparent 34%),
        radial-gradient(circle at 82% 16%, rgba(79, 180, 255, .16), transparent 34%);
}

.awards-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%),
        linear-gradient(90deg, rgba(10, 25, 47, .04) 1px, transparent 1px);
    background-size: auto, 44px 44px;
}

.awards-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(79, 180, 255, .08), transparent),
        linear-gradient(180deg, rgba(190, 138, 79, .08), transparent 34%);
    pointer-events: none;
}

.awards-heading {
    position: relative;
    max-width: 980px;
    margin-bottom: 54px;
}

.awards-heading h2 {
    margin: 0;
    color: var(--navy);
    font-family: var(--font-serif);
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: .98;
    text-wrap: balance;
}

.awards-heading p {
    max-width: 780px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.awards-timeline {
    position: relative;
    display: grid;
    gap: 22px;
    max-width: 1120px;
    margin: 0 auto;
}

.awards-timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 132px;
    width: 2px;
    background: linear-gradient(180deg, var(--sky), var(--copper), var(--navy));
}

.award-item {
    position: relative;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
}

.award-year {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-top: 24px;
}

.award-year::after {
    content: "";
    position: absolute;
    top: 34px;
    right: 39px;
    width: 14px;
    height: 14px;
    border: 3px solid white;
    border-radius: 50%;
    background: var(--copper);
    box-shadow: 0 0 0 7px rgba(190, 138, 79, .16), 0 14px 34px rgba(7, 17, 31, .22);
    z-index: 1;
}

.award-year span {
    display: inline-grid;
    min-width: 112px;
    min-height: 64px;
    place-items: center;
    border: 1px solid rgba(10, 25, 47, .12);
    border-radius: var(--radius);
    background: var(--navy);
    color: white;
    font-family: var(--font-serif);
    font-size: 2.1rem;
    line-height: 1;
    box-shadow: 0 18px 45px rgba(7, 17, 31, .2);
}

.award-card {
    position: relative;
    min-height: 210px;
    padding: clamp(24px, 4vw, 38px);
    overflow: hidden;
    border: 1px solid rgba(10, 25, 47, .12);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 248, 251, .9)),
        linear-gradient(120deg, rgba(79, 180, 255, .12), transparent 44%);
    box-shadow: 0 22px 70px rgba(7, 17, 31, .1);
}

.award-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--sky), var(--copper));
}

.award-card::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(10, 25, 47, .08);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(190, 138, 79, .18), transparent 42%);
    pointer-events: none;
}

.award-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    margin-bottom: 18px;
}

.award-card-top span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(79, 180, 255, .12);
    color: var(--navy);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.award-card-top small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.award-card h3 {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 0 14px;
    color: var(--navy);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.08;
}

.award-card p {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

.brand-hero-copy {
    min-width: 0;
}

.brand-hero-logo {
    width: auto;
    height: 42px;
    max-width: 210px;
    margin-bottom: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.brand-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(3.25rem, 5.4vw, 4.55rem);
    line-height: 1;
    text-wrap: balance;
}

.brand-hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 1.125rem;
}

.brand-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    border-bottom: 1px solid var(--line);
}

.brand-quick div {
    min-height: 126px;
    display: flex;
    align-items: center;
    padding: clamp(20px, 3vw, 34px);
    border-right: 1px solid var(--line);
    color: var(--navy);
    font-weight: 800;
}

.brand-quick div::before {
    content: "";
    width: 8px;
    height: 42px;
    margin-right: 16px;
    border-radius: 999px;
    background: var(--brand-accent);
}

.brand-detail {
    background: var(--paper);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.detail-grid article {
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--line);
    border-top: 4px solid var(--brand-accent);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 12px 38px rgba(7, 17, 31, .06);
}

.detail-grid h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 26px;
}

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

.brand-switcher {
    background: white;
}

.mini-brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.mini-brand {
    --accent: var(--sky);
    min-height: 210px;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 22px;
    border: 1px solid var(--line);
    border-bottom: 4px solid var(--accent);
    border-radius: var(--radius);
    background: #fbfcfe;
    transition: transform .2s ease, box-shadow .2s ease;
}

.mini-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(7, 17, 31, .1);
}

.mini-brand img {
    height: 28px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: 12px;
}

.mini-brand strong {
    color: var(--navy);
    font-size: 19px;
}

.used-hero,
.vehicle-detail-hero {
    min-height: 82vh;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(380px, 1fr);
    gap: clamp(30px, 5vw, 78px);
    align-items: center;
    padding: 132px clamp(20px, 5vw, 76px) 72px;
    color: white;
    background:
        linear-gradient(120deg, rgba(4, 10, 19, .98), rgba(10, 25, 47, .92)),
        radial-gradient(circle at 78% 16%, rgba(147, 164, 183, .22), transparent 34%);
}

.used-hero {
    min-height: 76vh;
    padding-bottom: 48px;
}

.used-hero h1,
.vehicle-detail-hero h1 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 4.85rem;
    line-height: .98;
    text-wrap: balance;
}

.used-hero p,
.vehicle-detail-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.125rem;
}

.used-hero-frame,
.vehicle-detail-frame {
    aspect-ratio: 4 / 3;
}

.used-hero-frame img,
.vehicle-detail-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inventory-search {
    width: fit-content;
    display: grid;
    gap: 2px;
    margin-top: 28px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-left: 4px solid var(--slate);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
}

.inventory-search span {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.inventory-search strong {
    color: white;
    font-size: 22px;
}

.inventory-section {
    padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 76px);
    background: #f6f8fb;
}

.inventory-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}

.inventory-toolbar h2 {
    max-width: 760px;
    margin: 0;
    color: var(--navy);
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
}

.inventory-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.inventory-chips span {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.vehicle-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 14px 48px rgba(7, 17, 31, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.vehicle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 78px rgba(7, 17, 31, .14);
}

.vehicle-media {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: var(--navy);
}

.vehicle-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.vehicle-card:hover .vehicle-media img {
    transform: scale(1.05);
}

.vehicle-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 10, 19, .04), rgba(4, 10, 19, .32));
}

.vehicle-media span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--ink);
    background: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vehicle-body {
    padding: 22px;
}

.vehicle-price {
    color: var(--slate);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vehicle-body h3 {
    margin: 8px 0 10px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.16;
}

.vehicle-body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.vehicle-body dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 18px 0 0;
}

.vehicle-body dl div {
    padding: 10px;
    border-radius: 6px;
    background: #f4f7fb;
}

.vehicle-body dt {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vehicle-body dd {
    margin: 2px 0 0;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.vehicle-body em {
    display: inline-flex;
    margin-top: 18px;
    padding-top: 12px;
    border-top: 2px solid var(--slate);
    color: var(--navy);
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.used-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 1px;
    background: rgba(255, 255, 255, .14);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.used-trust div {
    min-height: 280px;
    padding: clamp(26px, 4vw, 46px);
    background: var(--black-blue);
}

.used-trust span {
    color: var(--slate);
    font-size: 12px;
    font-weight: 800;
}

.used-trust h3 {
    margin: 54px 0 12px;
    font-size: 26px;
}

.used-trust p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
}

.back-link {
    display: inline-flex;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 800;
}

.vehicle-detail-price {
    width: fit-content;
    margin-top: 26px;
    padding: 13px 16px;
    border-left: 4px solid var(--slate);
    border-radius: var(--radius);
    color: white;
    background: rgba(255, 255, 255, .1);
    font-size: 20px;
    font-weight: 800;
}

.vehicle-spec-section {
    padding: clamp(72px, 8vw, 118px) clamp(20px, 5vw, 76px);
    background: white;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 34px;
}

.vehicle-specs div {
    min-height: 120px;
    display: grid;
    align-content: end;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f7f9fc;
}

.vehicle-specs span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.vehicle-specs strong {
    margin-top: 6px;
    color: var(--navy);
    font-size: 20px;
}

.vehicle-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.vehicle-detail-grid article {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.vehicle-detail-grid h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: 28px;
}

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

.vehicle-detail-grid li {
    padding: 12px 14px;
    border-left: 3px solid var(--slate);
    background: #f6f8fb;
    color: var(--navy);
    font-weight: 700;
}

.fields {
    color: white;
    background: var(--black-blue);
}

.fields .section-heading h2 {
    color: white;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 38px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .16);
}

.field-card {
    min-height: 420px;
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
    background: var(--navy);
}

.field-card img {
    height: 290px;
}

.field-card div {
    padding: 24px;
}

.field-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
}

.field-card p {
    color: rgba(255, 255, 255, .66);
}

.sustainability {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(320px, .9fr);
    gap: clamp(30px, 6vw, 90px);
    align-items: center;
    padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 76px);
    background: #eef3f0;
}

.sustainability ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.sustainability li {
    padding: 13px 14px;
    border-left: 3px solid var(--green);
    background: rgba(255, 255, 255, .8);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.sustainability-frame {
    aspect-ratio: 4 / 3;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(320px, .82fr);
    gap: clamp(28px, 6vw, 84px);
    padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 76px);
    color: white;
    background: linear-gradient(135deg, var(--navy), var(--black-blue));
}

.contact-copy h2 {
    color: white;
}

.contact-lines {
    display: grid;
    gap: 10px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .76);
    font-weight: 800;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: clamp(20px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
}

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

.contact-form .full {
    grid-column: 1 / -1;
}

.contact-form span {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: white;
    background: rgba(4, 10, 19, .42);
    outline: 0;
}

.contact-form select option {
    color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--sky);
}

.form-status {
    grid-column: 1 / -1;
    margin: 0;
    padding: 12px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-status.success {
    color: #10351d;
    background: #dff7e5;
}

.form-status.error {
    color: #461313;
    background: #ffe1e1;
}

.footer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 26px clamp(20px, 5vw, 76px);
    color: rgba(255, 255, 255, .66);
    background: var(--black-blue);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer img {
    filter: brightness(0) invert(1);
}

.footer p {
    margin: 0;
    font-size: 13px;
}

.footer span {
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav.active {
        display: grid;
        grid-column: 1 / -1;
        gap: 6px;
        padding: 14px 0 4px;
    }

    .mobile-nav a {
        padding: 12px 0;
        border-top: 1px solid rgba(255, 255, 255, .12);
        color: rgba(255, 255, 255, .82);
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .hero,
    .intro,
    .sustainability,
    .contact-section,
    .brand-hero,
    .info-hero,
    .used-hero,
    .vehicle-detail-hero {
        grid-template-columns: 1fr;
    }

    .hero,
    .brand-hero,
    .info-hero,
    .used-hero,
    .vehicle-detail-hero {
        padding-top: 118px;
    }

    .hero h1,
    .brand-hero h1,
    .info-hero h1,
    .used-hero h1,
    .vehicle-detail-hero h1 {
        font-size: 3.4rem;
    }

    .section-heading h2,
    .section-heading.compact h2,
    .sustainability h2,
    .contact-copy h2 {
        font-size: 3.25rem;
    }

    .hero-frame {
        aspect-ratio: 16 / 11;
    }

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

    .division-grid,
    .detail-grid,
    .mini-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .field-grid,
    .stats-band,
    .brand-quick,
    .vehicle-grid,
    .vehicle-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .inventory-toolbar,
    .vehicle-detail-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .awards-timeline::before {
        left: 92px;
    }

    .award-item {
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 24px;
    }

    .award-year::after {
        right: 31px;
    }

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

@media (max-width: 720px) {
    .site-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .brand img {
        height: 34px;
    }

    .hero,
    .brand-hero,
    .info-hero,
    .used-hero,
    .vehicle-detail-hero {
        min-height: auto;
        padding: 110px 16px 54px;
    }

    .hero h1,
    .brand-hero h1,
    .info-hero h1,
    .used-hero h1,
    .vehicle-detail-hero h1 {
        font-size: 2.35rem;
        line-height: 1;
    }

    .hero p,
    .brand-hero p,
    .info-hero p,
    .used-hero p,
    .vehicle-detail-hero p,
    .lead {
        font-size: 1rem;
    }

    .section-heading h2,
    .section-heading.compact h2,
    .sustainability h2,
    .contact-copy h2 {
        font-size: 2.45rem;
        line-height: 1.02;
    }

    .stats-band strong {
        font-size: 2.25rem;
    }

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

    .hero-brand-nav {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .hero-brand-link {
        min-height: 66px;
        grid-template-columns: 1fr;
        gap: 8px;
        align-content: center;
        padding: 11px;
    }

    .hero-brand-link img {
        max-width: 80px;
        max-height: 22px;
    }

    .stats-band,
    .division-grid,
    .field-grid,
    .sustainability ul,
    .contact-form,
    .footer,
    .brand-quick,
    .detail-grid,
    .mini-brand-grid,
    .vehicle-grid,
    .vehicle-specs,
    .vehicle-detail-grid,
    .used-trust {
        grid-template-columns: 1fr;
    }

    .awards-timeline {
        gap: 18px;
    }

    .awards-timeline::before {
        left: 26px;
    }

    .award-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-left: 48px;
    }

    .award-year {
        justify-content: flex-start;
        padding-top: 0;
    }

    .award-year::after {
        top: 24px;
        right: auto;
        left: -29px;
    }

    .award-year span {
        min-width: 96px;
        min-height: 52px;
        font-size: 1.7rem;
    }

    .award-card {
        min-height: auto;
    }

    .section,
    .sustainability,
    .contact-section,
    .brand-detail,
    .brand-switcher,
    .info-hero,
    .inventory-section,
    .vehicle-spec-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .inventory-toolbar h2 {
        font-size: 2.45rem;
        line-height: 1.02;
    }

    .vehicle-media {
        height: 220px;
    }

    .brand-link-carousel {
        grid-template-columns: 1fr;
    }

    .brand-slide {
        min-height: auto;
    }

    .brand-hero-logo {
        height: 34px;
        margin-bottom: 24px;
    }

    .field-card {
        min-height: 340px;
    }

    .field-card img {
        height: 230px;
    }

    .division-body {
        min-height: auto;
    }

    .footer {
        align-items: start;
    }
}
