:root {
    --ink: #161616;
    --muted: #666b73;
    --paper: #fffdf8;
    --soft: #f6f0e7;
    --line: #eadfce;
    --red: #be1522;
    --gold: #d99a26;
    --green: #12604a;
    --shadow: 0 18px 45px rgba(30, 20, 10, 0.12);
    --deep-shadow: 0 26px 65px rgba(12, 10, 8, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(190, 21, 34, 0.05), transparent 34%),
        linear-gradient(300deg, rgba(18, 96, 74, 0.06), transparent 35%);
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 253, 248, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand img {
    width: 64px;
    height: auto;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
    line-height: 1.1;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 12px;
    border-radius: 6px;
    color: #343434;
    font-weight: 700;
    font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--red);
    background: #fff2ed;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 6px;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #111;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 700ms ease;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.36) 48%, rgba(0, 0, 0, 0.12));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1160px;
    padding: 88px 0;
    color: #fff;
}

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

h1, h2, h3 {
    margin: 0;
    line-height: 1.08;
}

h1 {
    max-width: 610px;
    font-size: clamp(2.1rem, 4.2vw, 3.65rem);
    font-weight: 800;
}

.hero-content p {
    max-width: 560px;
    margin: 18px 0 0;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-kicker-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-pill {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.86rem;
    font-weight: 700;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 6px;
    border: 1px solid transparent;
    background: var(--red);
    color: #fff;
    font-weight: 800;
}

.button.alt {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.42);
}

.section {
    padding: 82px 0;
}

.section.soft {
    background: var(--soft);
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head h2 {
    font-size: clamp(1.85rem, 3.5vw, 3rem);
}

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

.grid {
    display: grid;
    gap: 22px;
}

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

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(40, 25, 10, 0.06);
    overflow: hidden;
}

.card.featured {
    box-shadow: var(--deep-shadow);
}

.card .meta {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-body {
    padding: 24px;
}

.card h3 {
    font-size: 1.22rem;
}

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

.card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.photo-stack {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 16px;
    align-items: end;
}

.photo-stack img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.photo-stack img:first-child {
    transform: translateY(26px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.stat {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.stat strong {
    display: block;
    color: var(--red);
    font-size: 1.5rem;
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--line);
    box-shadow: var(--shadow);
}

.service-item {
    min-height: 210px;
    padding: 26px;
    background: #fff;
}

.service-item strong {
    display: block;
    margin-bottom: 40px;
    color: var(--gold);
    font-size: 2rem;
}

.service-item h3 {
    margin-bottom: 10px;
}

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

.feature-band {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #17120f;
}

.feature-band img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.26;
}

.feature-band .container {
    position: relative;
    z-index: 1;
}

.feature-band .card,
.feature-band .stat {
    color: var(--ink);
}

.logo-banner {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.logo-banner img {
    width: 100%;
}

.news-list {
    display: grid;
    gap: 14px;
}

.news-row {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 18px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.news-date {
    display: grid;
    place-items: center;
    min-height: 70px;
    border-radius: 8px;
    background: #fff2ed;
    color: var(--red);
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
}

.news-date span {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
}

.credit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.credit {
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.credit strong {
    display: block;
    color: var(--red);
}

.page-hero.media {
    position: relative;
    overflow: hidden;
}

.page-hero.media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
}

.page-hero.media .container {
    position: relative;
    z-index: 1;
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.date-box {
    color: var(--red);
    font-weight: 800;
}

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

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
}

.gallery-item::after {
    content: "View";
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #fff;
    background: rgba(0, 0, 0, 0.58);
    font-size: 0.78rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.04);
    filter: brightness(0.9);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.86);
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 84vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, 0.34);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
}

.video-frame {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-frame video,
.video-frame iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}

.page-hero {
    padding: 78px 0;
    background: #181511;
    color: #fff;
}

.page-hero p {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.82);
}

.contact-panel {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.contact-panel a {
    color: var(--red);
    font-weight: 800;
}

form {
    display: grid;
    gap: 14px;
}

input, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px 14px;
    font: inherit;
    background: #fff;
}

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

.site-footer {
    background: #151515;
    color: #fff;
    padding: 52px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 36px;
}

.footer-logo {
    width: 82px;
    margin-bottom: 16px;
}

.site-footer p {
    max-width: 480px;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 1rem;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

@media (max-width: 860px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

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

    .hero {
        min-height: 520px;
        align-items: end;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.78));
    }

    .hero-content {
        max-width: 100%;
        padding: 92px 0 54px;
    }

    h1 {
        max-width: 520px;
        font-size: clamp(1.95rem, 7.4vw, 2.85rem);
    }

    .hero-content p {
        max-width: 540px;
        font-size: 1rem;
    }

    .split,
    .split.reverse,
    .grid.two,
    .grid.three,
    .footer-grid,
    .service-strip,
    .credit-grid {
        grid-template-columns: 1fr;
    }

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

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

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .news-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .brand span {
        display: none;
    }

    .hero-content {
        padding-top: 72px;
        padding-bottom: 42px;
    }

    h1 {
        font-size: clamp(1.85rem, 8.8vw, 2.32rem);
    }

    .hero-content p {
        font-size: 0.98rem;
    }

    .hero-kicker-row {
        gap: 8px;
        margin-top: 18px;
    }

    .hero-pill {
        padding: 7px 9px;
        font-size: 0.78rem;
    }

    .section {
        padding: 58px 0;
    }

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

    .gallery-grid img {
        height: 300px;
    }
}
