:root {
    --color-ink: #17191d;
    --color-charcoal: #24272d;
    --color-charcoal-soft: #343941;
    --color-muted: #66707c;
    --color-line: #e4e7eb;
    --color-bg: #f6f7f9;
    --color-white: #ffffff;
    --color-red: #b31924;
    --color-red-dark: #82131b;
    --color-sand: #c9a46a;
    --shadow-soft: 0 18px 45px rgba(23, 25, 29, 0.12);
    --radius: 8px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-white);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    max-width: 920px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 30;
    padding: 10px 14px;
    color: var(--color-white);
    background: var(--color-red);
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 10px 30px rgba(23, 25, 29, 0.06);
    backdrop-filter: blur(12px);
}

.top-bar {
    color: rgba(255, 255, 255, 0.84);
    background: var(--color-charcoal);
    font-size: 0.82rem;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 78px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--color-charcoal);
    font-weight: 900;
    text-decoration: none;
}

.site-brand__mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: var(--radius);
    letter-spacing: 0;
}

.site-brand__logo {
    width: 78px;
    max-width: 22vw;
    height: auto;
    flex: 0 0 auto;
}

.site-brand__text {
    display: grid;
    line-height: 1.08;
}

.site-brand__text small {
    color: var(--color-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.site-nav__list,
.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav__list a,
.footer-links a {
    display: inline-flex;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--color-ink);
    font-weight: 800;
    text-decoration: none;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
    color: var(--color-red);
    background: #fff1f2;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-charcoal);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(36, 39, 45, 0.98), rgba(36, 39, 45, 0.88) 50%, rgba(130, 19, 27, 0.72)),
        linear-gradient(0deg, rgba(179, 25, 36, 0.22), transparent 52%);
}

.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 46px;
    align-items: center;
    min-height: 650px;
    padding: 76px 0;
}

.hero h1,
.page-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.35rem, 5vw, 4.55rem);
    line-height: 1.01;
}

.lead {
    max-width: 660px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.16rem;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--color-red);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero .eyebrow,
.cta-section .eyebrow,
.page-hero .eyebrow {
    color: #ffbcc1;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    text-decoration: none;
}

.button-primary {
    color: var(--color-white);
    background: var(--color-red);
    box-shadow: 0 10px 24px rgba(179, 25, 36, 0.22);
}

.button-primary:hover {
    background: var(--color-red-dark);
}

.button-secondary,
.button-light {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.44);
}

.button-secondary-dark {
    color: var(--color-charcoal);
    border-color: #cfd5dc;
}

.button-secondary:hover,
.button-light:hover {
    background: rgba(255, 255, 255, 0.12);
}

.button-secondary-dark:hover {
    color: var(--color-red);
    background: #fff1f2;
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.hero__panel {
    align-self: end;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

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

.hero__panel-copy {
    display: grid;
    gap: 4px;
    padding: 22px;
    color: var(--color-ink);
    border-top: 5px solid var(--color-red);
}

.hero__panel-copy strong {
    color: var(--color-charcoal);
    font-size: 1.1rem;
}

.hero__panel-copy span {
    color: var(--color-muted);
}

.page-hero.compact {
    padding: 88px 0;
}

.stats-section {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-line);
}

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

.stats-grid div {
    min-height: 132px;
    padding: 26px;
    border-left: 1px solid var(--color-line);
    background: linear-gradient(180deg, var(--color-white), #fbfbfc);
}

.stats-grid div:last-child {
    border-right: 1px solid var(--color-line);
}

.stats-grid strong {
    display: block;
    color: var(--color-red);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.05;
}

.stats-grid span {
    display: block;
    margin-top: 8px;
    color: var(--color-charcoal);
    font-weight: 800;
}

.content-section {
    padding: 88px 0;
}

.content-section.muted {
    background: var(--color-bg);
}

.intro-section {
    background: var(--color-white);
}

.two-column,
.split-panel,
.fleet-layout,
.form-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: 48px;
    align-items: start;
}

.wide-form-layout {
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
    margin: 14px 0 0;
    color: var(--color-muted);
}

h2 {
    margin: 0;
    color: var(--color-charcoal);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
}

h3 {
    margin: 0;
    color: var(--color-charcoal);
    font-size: 1.18rem;
    line-height: 1.25;
}

.prose p {
    margin: 0 0 16px;
    color: var(--color-muted);
}

.prose h2 {
    margin-bottom: 16px;
}

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

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

.service-card {
    position: relative;
    min-height: 230px;
    padding: 28px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(23, 25, 29, 0.06);
}

.service-card::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    content: "";
    background: var(--color-red);
    border-radius: var(--radius) 0 0 var(--radius);
}

.service-card__index {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--color-red);
    font-weight: 950;
}

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

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-detail-card {
    overflow: hidden;
    min-width: 0;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(23, 25, 29, 0.08);
}

.service-detail-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.service-detail-card div {
    display: grid;
    gap: 12px;
    padding: 24px;
}

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

.service-summary {
    margin-top: 34px;
}

.split-panel,
.fleet-card {
    padding: 34px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-left: 6px solid var(--color-red);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(23, 25, 29, 0.05);
}

.fleet-card p:not(.eyebrow) {
    color: var(--color-muted);
}

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

.media-card {
    overflow: hidden;
    min-width: 0;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(23, 25, 29, 0.08);
}

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

.media-card figcaption {
    padding: 14px 16px;
    color: var(--color-charcoal);
    font-weight: 900;
}

.media-card--wide {
    grid-column: 1 / -1;
}

.visual-note {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.visual-note img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.gallery-card {
    overflow: hidden;
    min-width: 0;
    margin: 0;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: 0 10px 24px rgba(23, 25, 29, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(23, 25, 29, 0.12);
}

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

.gallery-card figcaption {
    min-height: 58px;
    padding: 15px 16px;
    color: var(--color-charcoal);
    font-weight: 900;
}

.cta-section {
    padding: 76px 0;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-charcoal), var(--color-red-dark));
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-box h2 {
    color: var(--color-white);
}

.cta-box p:not(.eyebrow) {
    max-width: 700px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.notice-box {
    padding: 18px 20px;
    margin-bottom: 26px;
    color: var(--color-charcoal);
    background: #fff5f6;
    border: 1px solid #f0c6ca;
    border-left: 5px solid var(--color-red);
    border-radius: var(--radius);
    font-weight: 800;
}

.prepared-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 26px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.prepared-form label {
    display: grid;
    gap: 8px;
    color: var(--color-charcoal);
    font-size: 0.92rem;
    font-weight: 900;
}

.prepared-form input,
.prepared-form textarea,
.prepared-form select {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    color: var(--color-muted);
    background: #f5f6f8;
    border: 1px solid #d8dde3;
    border-radius: var(--radius);
    font: inherit;
}

.prepared-form textarea {
    min-height: 130px;
    resize: vertical;
}

.prepared-form :disabled {
    opacity: 1;
}

.form-full,
.prepared-form .button {
    grid-column: 1 / -1;
}

.upload-placeholder {
    padding: 16px;
    color: var(--color-muted);
    background: #f7f8fa;
    border: 1px dashed #c4c9d0;
    border-radius: var(--radius);
}

.page-content-after {
    margin-top: 34px;
}

.legal-document {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.legal-status,
.legal-section {
    min-width: 0;
    padding: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: 0 10px 26px rgba(23, 25, 29, 0.05);
}

.legal-status {
    background: #fff5f6;
    border-left: 5px solid var(--color-red);
    font-weight: 800;
}

.legal-section h2 {
    margin-bottom: 14px;
    font-size: clamp(1.35rem, 2vw, 2rem);
}

.legal-section h3 {
    margin-top: 18px;
}

.legal-section p,
.legal-section address {
    margin: 0 0 10px;
    color: var(--color-muted);
    font-style: normal;
    overflow-wrap: anywhere;
}

.legal-section p:last-child,
.legal-section address:last-child {
    margin-bottom: 0;
}

.legal-section--optional {
    background: #fbfbfc;
    border-style: dashed;
}

.legal-placeholder {
    display: inline-flex;
    max-width: 100%;
    padding: 2px 7px;
    color: var(--color-red-dark);
    background: #fff1f2;
    border: 1px solid #f0c6ca;
    border-radius: 6px;
    font-weight: 900;
    line-height: 1.35;
    overflow-wrap: anywhere;
    vertical-align: baseline;
}

.optional-note {
    color: var(--color-charcoal);
    font-weight: 800;
}

.site-footer {
    color: rgba(255, 255, 255, 0.82);
    background: #181b20;
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 38px 0;
}

.site-footer strong,
.site-footer a {
    color: var(--color-white);
}

.site-footer p {
    margin: 6px 0 0;
}

.footer-placeholder {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

@media (max-width: 980px) {
    .top-bar__inner,
    .site-header__inner,
    .site-footer__inner,
    .cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .top-bar__inner {
        gap: 4px;
    }

    .site-nav__list {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero__inner,
    .two-column,
    .split-panel,
    .fleet-layout,
    .form-layout,
    .wide-form-layout {
        grid-template-columns: 1fr;
    }

    .hero__inner {
        min-height: auto;
    }

    .stats-grid,
    .card-grid,
    .service-detail-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero__inner,
    .content-section {
        padding: 58px 0;
    }

    .page-hero.compact {
        padding: 58px 0;
    }

    .stats-grid,
    .card-grid,
    .compact-grid,
    .service-detail-grid,
    .gallery-grid,
    .prepared-form {
        grid-template-columns: 1fr;
    }

    .stats-grid div {
        min-height: auto;
        border-right: 1px solid var(--color-line);
        border-bottom: 1px solid var(--color-line);
    }

    .site-brand__text span {
        font-size: 0.94rem;
    }

    .site-brand__logo {
        width: 62px;
    }

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

    .button {
        width: 100%;
    }
}
