:root {
    --ink: #141414;
    --muted: #5e6470;
    --line: #e7e8ec;
    --soft: #f5f6f8;
    --brand: #d92828;
    --brand-dark: #a81717;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 0 40px;
    color: var(--white);
    background: rgba(12, 13, 15, 0.72);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.94);
    padding: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.main-nav a:hover {
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
}

.hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 9, 12, 0.86) 0%, rgba(8, 9, 12, 0.56) 38%, rgba(8, 9, 12, 0.08) 78%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 150px 0 165px;
}

.intro-image {
    width: 100%;
    max-height: 320px;
    margin-bottom: 18px;
    border-radius: 8px;
    object-fit: cover;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 7vw, 78px);
    line-height: 1;
}

.hero p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 900;
}

.button.primary {
    color: var(--white);
    border-color: var(--brand);
    background: var(--brand);
}

.button.primary:hover {
    background: var(--brand-dark);
}

.button.light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
    position: absolute;
    right: max(18px, calc((100vw - 1120px) / 2));
    bottom: 34px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 150px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(16, 17, 20, 0.74);
    backdrop-filter: blur(12px);
}

.hero-stats div {
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div:last-child {
    border-right: 0;
}

.hero-stats strong {
    display: block;
    font-size: 28px;
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.section {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 86px 0;
}

.intro {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    align-items: start;
}

.section h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
}

.intro > p,
.split p,
.contact p,
.process p,
.service-card p,
.text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 34px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 270px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.service-card span {
    display: inline-flex;
    margin-bottom: 32px;
    color: var(--brand);
    font-weight: 900;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.band {
    background: #111317;
    color: var(--white);
}

.band .section {
    padding: 88px 0;
}

.band h2 {
    color: var(--white);
}

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process div {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process b {
    color: var(--brand);
}

.process h3 {
    margin: 18px 0 6px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
}

.quote {
    padding: 34px;
    border-left: 5px solid var(--brand);
    border-radius: 8px;
    background: var(--soft);
}

.quote p {
    margin-top: 0;
    color: var(--ink);
    font-size: 22px;
    line-height: 1.45;
}

.contact {
    background: var(--soft);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 54px;
}

.contact ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    font-weight: 800;
}

.contact-form {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--muted);
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    min-height: 44px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

textarea {
    resize: vertical;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 26px 40px;
    color: rgba(255, 255, 255, 0.68);
    background: #111317;
}

@media (max-width: 900px) {
    .site-header {
        padding: 14px 18px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 76px;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        border-radius: 8px;
        background: #15171c;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 14px;
    }

    .hero {
        min-height: 820px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(8, 9, 12, 0.82), rgba(8, 9, 12, 0.56));
    }

    .hero-content {
        padding: 128px 0 250px;
    }

    .hero-stats {
        right: 18px;
        left: 18px;
        grid-template-columns: 1fr;
    }

    .hero-stats div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .hero-stats div:last-child {
        border-bottom: 0;
    }

    .intro,
    .service-grid,
    .process,
    .split,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .site-footer {
        flex-direction: column;
        padding: 24px 18px;
    }
}
