:root {
    --color-primary: #a4161a;
    --color-primary-dark: #7c0f14;
    --color-secondary: #111111;
    --color-surface: #ffffff;
    --color-surface-soft: #f4f0ea;
    --color-text: #161616;
    --color-muted: #5f5a57;
    --color-border: #ded7cf;
    --shadow-strong: 0 18px 40px rgba(17, 17, 17, 0.18);
    --shadow-soft: 0 10px 25px rgba(17, 17, 17, 0.1);
    --container: min(1180px, calc(100% - 2rem));
    --font-heading: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    --font-body: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
    --radius: 20px;
    --radius-sm: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background:
        radial-gradient(circle at top right, rgba(164, 22, 26, 0.16), transparent 28%),
        linear-gradient(180deg, #f6f2ec 0%, #f1ece6 100%);
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.94)),
        url("../images/texture-top.svg") center/cover no-repeat;
    border-bottom: 4px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-inner,
.section-inner,
.footer-inner,
.banner-inner,
.contact-grid,
.hero-inner,
.split-section,
.page-intro {
    width: var(--container);
    margin: 0 auto;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 88px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.brand-mark img {
    width: 118px;
    height: auto;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.32));
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #fff;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
}

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

.site-nav a {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: var(--color-primary);
}

.header-cta {
    padding: 0.7rem 1rem;
    background: linear-gradient(180deg, #db2f34, var(--color-primary));
    color: #fff;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero {
    position: relative;
    isolation: isolate;
    padding: 2rem 0 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 1.5rem 0 auto;
    height: 440px;
    background:
        linear-gradient(180deg, rgba(164, 22, 26, 0.25), rgba(17, 17, 17, 0.3)),
        url("../images/texture-top.svg") center/cover;
    z-index: -1;
}

.hero-card,
.page-banner-card {
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    box-shadow: var(--shadow-strong);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1.15fr;
    gap: 0;
}

.hero-copy {
    position: relative;
    padding: 3.25rem 2.6rem 2.6rem;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(18, 18, 18, 0.75)),
        linear-gradient(135deg, rgba(164, 22, 26, 0.6), transparent 46%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: #f3dbdc;
}

.eyebrow::before {
    content: "";
    width: 56px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fff, var(--color-primary));
}

.hero h1,
.page-banner h1,
.section-title,
.card-title,
.split-copy h2,
.contact-panel h2,
.footer-cta h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 0.95;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 1rem;
    font-size: clamp(2.7rem, 6vw, 4.9rem);
}

.hero p {
    max-width: 36rem;
    margin: 1rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.3rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    font-size: 0.86rem;
    border: 0;
    cursor: pointer;
}

.btn {
    background: linear-gradient(180deg, #d5272d 0%, var(--color-primary) 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(164, 22, 26, 0.28);
}

.btn:hover {
    background: linear-gradient(180deg, #eb373d 0%, var(--color-primary-dark) 100%);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-media {
    min-height: 450px;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
        linear-gradient(180deg, rgba(164, 22, 26, 0.05), rgba(164, 22, 26, 0.22));
}

.hero-media img,
.split-media img,
.service-media img,
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-panel {
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
}

.summary-card {
    width: min(880px, calc(100% - 2rem));
    margin: 0 auto;
    background: var(--color-surface);
    border-radius: 24px;
    padding: 1.4rem 1.7rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border-top: 6px solid var(--color-primary);
}

.summary-card h2 {
    margin: 0 0 0.45rem;
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    text-transform: uppercase;
    line-height: 1.05;
}

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

.section {
    padding: 4.75rem 0;
}

.section-dark {
    color: #fff;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.96)),
        url("../images/texture-top.svg") center/cover;
}

.section-title-wrap {
    margin-bottom: 2rem;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.78rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-lead {
    width: min(780px, 100%);
    margin: 1rem auto 0;
    color: var(--color-muted);
}

.section-dark .section-lead,
.section-dark .section-kicker {
    color: rgba(255, 255, 255, 0.75);
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.section-media-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.section-side-image {
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.08);
}

.section-side-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.section-side-image-light {
    background: #fff;
}

.service-card,
.feature-card,
.testimonial-card,
.gallery-card,
.value-card {
    background: var(--color-surface);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-card {
    border-bottom: 5px solid var(--color-primary);
}

.service-card img {
    aspect-ratio: 1.2 / 1;
    object-fit: cover;
}

.card-body,
.feature-card,
.testimonial-card,
.value-card {
    padding: 1.25rem;
}

.card-title,
.feature-card h3,
.testimonial-card h3,
.value-card h3 {
    font-size: 1.1rem;
}

.card-body p,
.feature-card p,
.testimonial-card p,
.value-card p {
    margin: 0.6rem 0 0;
    color: var(--color-muted);
}

.feature-card {
    position: relative;
    text-align: center;
    border-top: 6px solid var(--color-primary);
}

.feature-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 1rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(164, 22, 26, 0.18), rgba(164, 22, 26, 0.06));
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.25rem;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
}

.split-copy,
.contact-panel,
.contact-form-wrap,
.page-copy,
.footer-cta-card {
    background: var(--color-surface);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.split-copy {
    padding: 2rem;
    border-top: 7px solid var(--color-primary);
}

.split-copy h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.split-copy p {
    color: var(--color-muted);
}

.split-media {
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-list {
    display: grid;
    gap: 1.35rem;
}

.service-row {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 1.3rem;
    align-items: stretch;
    background: var(--color-surface);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.service-media {
    min-height: 200px;
}

.service-copy {
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.service-copy h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    text-transform: uppercase;
    line-height: 1;
}

.service-copy p {
    color: var(--color-muted);
}

.page-banner {
    padding: 2rem 0 0;
}

.page-banner-card {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.86), rgba(164, 22, 26, 0.78)),
        url("../images/texture-top.svg") center/cover;
}

.banner-inner {
    padding: 2.8rem 2rem;
}

.page-banner h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.page-banner p {
    width: min(720px, 100%);
    margin: 0.8rem 0 0;
    color: rgba(255, 255, 255, 0.88);
}

.page-intro {
    padding-top: 2rem;
}

.page-copy {
    padding: 1.6rem 1.7rem;
}

.page-copy p {
    margin: 0;
    color: var(--color-muted);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.testimonial-card {
    border-top: 6px solid var(--color-primary);
}

.testimonial-role {
    margin-top: 1rem;
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.cta-band {
    position: relative;
    color: #fff;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(164, 22, 26, 0.88), rgba(17, 17, 17, 0.9)),
        url("../images/texture-top.svg") center/cover;
    border-radius: 28px;
}

.cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
}

.cta-inner-has-image {
    display: grid;
    grid-template-columns: 1fr 280px auto;
    align-items: center;
}

.cta-image {
    border-radius: 20px;
    overflow: hidden;
    min-height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.cta-image img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
}

.cta-inner h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    text-transform: uppercase;
}

.cta-inner p {
    margin: 0.65rem 0 0;
    color: rgba(255, 255, 255, 0.86);
}

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

.gallery-card {
    position: relative;
    cursor: pointer;
}

.gallery-card img {
    aspect-ratio: 1 / 0.82;
}

.gallery-card figcaption {
    padding: 0.9rem 1rem 1rem;
}

.gallery-card h3 {
    margin: 0;
    font-size: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.gallery-card p {
    margin: 0.35rem 0 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
}

.contact-form-wrap,
.contact-panel {
    padding: 1.7rem;
}

.contact-panel {
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.96)),
        url("../images/texture-top.svg") center/cover;
    color: #fff;
}

.contact-panel p,
.contact-panel li {
    color: rgba(255, 255, 255, 0.82);
}

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

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: grid;
    gap: 0.45rem;
    font-weight: 700;
    color: var(--color-secondary);
}

input,
textarea {
    width: 100%;
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
}

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

.message {
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.message-success {
    background: #e6f7ec;
    color: #156337;
    border: 1px solid #b8e1c4;
}

.message-error {
    background: #fdecec;
    color: #8f1717;
    border: 1px solid #f3bcbc;
}

.contact-meta {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.3rem;
}

.contact-meta strong {
    display: block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
}

.map-embed {
    margin-top: 1.2rem;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.map-embed iframe {
    display: block;
    width: 100%;
    min-height: 280px;
}

.footer-cta {
    padding: 0 0 4rem;
}

.footer-cta-card {
    padding: 2rem;
    border-top: 7px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-cta p {
    margin: 0.7rem 0 0;
    color: var(--color-muted);
}

.site-footer {
    background:
        linear-gradient(180deg, rgba(15, 15, 15, 0.98), rgba(15, 15, 15, 0.98)),
        url("../images/texture-top.svg") center/cover;
    color: #fff;
    border-top: 5px solid var(--color-primary);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.5rem;
    padding: 2.4rem 0;
}

.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-brand img {
    width: 88px;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

.footer-copy p,
.footer-list li,
.footer-bottom {
    color: rgba(255, 255, 255, 0.72);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0 2rem;
    text-align: center;
    font-size: 0.92rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(164, 22, 26, 0.12);
    color: var(--color-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(5, 5, 5, 0.9);
}

.lightbox.is-visible {
    display: flex;
}

.lightbox-dialog {
    width: min(980px, 100%);
    max-height: calc(100vh - 3rem);
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.lightbox-media {
    background: #111;
}

.lightbox-media img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-copy {
    padding: 1rem 1.25rem 1.25rem;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1080px) {
    .hero-inner,
    .split-section,
    .contact-grid,
    .footer-inner,
    .service-row {
        grid-template-columns: 1fr;
    }

    .section-media-layout,
    .cta-inner-has-image {
        grid-template-columns: 1fr;
    }

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

    .feature-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .service-copy {
        padding: 1.4rem;
    }

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

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

    .header-inner {
        flex-wrap: wrap;
        padding: 1rem 0;
    }

    .site-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0.5rem;
    }

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

    .site-nav a,
    .header-cta {
        text-align: center;
        justify-content: center;
    }

    .cta-inner,
    .footer-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero-copy,
    .banner-inner,
    .split-copy,
    .contact-form-wrap,
    .contact-panel,
    .footer-cta-card {
        padding: 1.35rem;
    }

    .card-grid,
    .gallery-grid,
    .two-col {
        grid-template-columns: 1fr;
    }

    .summary-card {
        padding: 1.2rem;
    }

    .brand-mark img {
        width: 100px;
    }
}
