:root {
    --red: #ee3026;
    --red-dark: #bc2019;
    --ink: #111217;
    --muted: #5f646d;
    --line: #e7e7e3;
    --paper: #f6f6f2;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(17, 18, 23, 0.14);
}

#hero-title .legal-form {
    font-size: 0.42em;
    font-weight: 600;
    margin-left: 0.15em;
    vertical-align: baseline;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-140%);
    background: var(--ink);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 6px;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 18px 48px;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: box-shadow 220ms ease, background 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
    min-height: 66px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 40px rgba(17, 18, 23, 0.1);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 170px;
}

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

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--red);
    transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 18px;
    border: 2px solid var(--red);
    border-radius: 6px;
    color: var(--red);
    font-weight: 900;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.header-call:hover,
.header-call:focus,
.header-call:focus-visible {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    padding: 160px 48px 82px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.03);
    animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(17, 18, 23, 0.82) 0%, rgba(17, 18, 23, 0.58) 44%, rgba(17, 18, 23, 0.12) 100%),
        linear-gradient(0deg, rgba(17, 18, 23, 0.6) 0%, rgba(17, 18, 23, 0.08) 58%, rgba(17, 18, 23, 0.16) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    right: -12vw;
    bottom: -120px;
    z-index: -1;
    width: 46vw;
    height: 320px;
    min-width: 420px;
    background: var(--red);
    transform: skewX(-18deg);
    opacity: 0.94;
}

.hero-content {
    width: 100%;
    max-width: 760px;
    width: min(760px, 100%);
    color: var(--white);
}

.eyebrow,
.section-kicker {
    margin: 0 0 18px;
    color: var(--red);
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--white);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 24px;
    font-size: 88px;
    line-height: 0.95;
    font-weight: 950;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 20px;
    font-size: 44px;
    line-height: 1.06;
    font-weight: 950;
}

h3 {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 950;
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 21px;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-weight: 950;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.btn:hover,
.btn:focus,
.btn:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible {
    background: var(--red-dark);
}

.btn-light {
    background: var(--white);
    color: var(--ink);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:focus-visible {
    background: var(--white);
    color: var(--red);
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-metrics span {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.08);
}

.quick-strip {
    position: relative;
    overflow: hidden;
    background: var(--red);
    color: var(--white);
    white-space: nowrap;
}

.strip-track {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
}

.strip-track span {
    display: inline-flex;
    align-items: center;
    min-height: 70px;
    padding: 0 34px;
    font-size: 22px;
    font-weight: 950;
    text-transform: uppercase;
}

.strip-track span::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 34px;
    background: var(--white);
    transform: rotate(45deg);
}

.section {
    padding: 104px 48px;
}

.section-head {
    width: 100%;
    max-width: 790px;
    width: min(790px, 100%);
    margin: 0 auto 50px;
    text-align: center;
}

.section-head p:not(.section-kicker) {
    color: var(--muted);
    font-size: 18px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1240px;
    width: min(1240px, 100%);
    margin: 0 auto;
}

.service-card {
    position: relative;
    min-height: 470px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(17, 18, 23, 0.05);
    overflow: hidden;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: var(--red);
    transform: scaleX(0.32);
    transform-origin: left;
    transition: transform 260ms ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(238, 48, 38, 0.28);
    box-shadow: var(--shadow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    margin-bottom: 30px;
    color: var(--white);
    background: var(--red);
    -webkit-clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
    clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
    font-size: 30px;
    box-shadow: 0 16px 34px rgba(238, 48, 38, 0.28);
}

.service-number {
    position: absolute;
    top: 26px;
    right: 26px;
    color: rgba(17, 18, 23, 0.08);
    font-size: 46px;
    line-height: 1;
    font-weight: 950;
}

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

.service-card ul {
    display: grid;
    gap: 9px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 22px;
    color: var(--ink);
    font-weight: 800;
}

.service-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    background: var(--red);
    transform: rotate(45deg);
}

.split-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 54px;
    align-items: center;
    padding: 96px 48px;
    background: var(--paper);
}

.feature-copy {
    width: 100%;
    max-width: 590px;
    width: min(590px, 100%);
    justify-self: end;
}

.feature-copy p:not(.section-kicker) {
    color: var(--muted);
    font-size: 18px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-weight: 950;
}

.text-link i {
    transition: transform 220ms ease;
}

.text-link:hover i,
.text-link:focus i,
.text-link:focus-visible i {
    transform: translateX(6px);
}

.feature-panel {
    position: relative;
    width: 100%;
    max-width: 640px;
    width: min(640px, 100%);
    padding: 12px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.feature-panel::before {
    content: "";
    position: absolute;
    inset: -40px auto auto -80px;
    width: 280px;
    height: 140%;
    background: var(--red);
    transform: skewX(-18deg);
    opacity: 0.86;
}

.panel-line {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 24px;
    font-weight: 950;
}

.panel-line:last-child {
    border-bottom: 0;
}

.panel-line strong {
    color: rgba(255, 255, 255, 0.3);
    font-size: 36px;
}

.strengths {
    background: var(--white);
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 1240px;
    width: min(1240px, 100%);
    margin: 0 auto;
}

.strength-item {
    min-height: 240px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.strength-item i {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    border-radius: 6px;
    color: var(--white);
    background: var(--red);
    font-size: 20px;
}

.strength-item h3 {
    font-size: 19px;
}

.strength-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
}

.photo-gallery {
    background: var(--paper);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 240px;
    gap: 16px;
    width: 100%;
    max-width: 1240px;
    width: min(1240px, 100%);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    display: block;
    min-width: 0;
    border-radius: 8px;
    background: var(--ink);
    box-shadow: 0 12px 28px rgba(17, 18, 23, 0.12);
    overflow: hidden;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 18, 23, 0) 45%, rgba(17, 18, 23, 0.32) 100%);
    opacity: 0;
    transition: opacity 260ms ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.gallery-item:hover img,
.gallery-item:focus img,
.gallery-item:focus-visible img {
    transform: scale(1.06);
}

.gallery-item:hover::after,
.gallery-item:focus::after,
.gallery-item:focus-visible::after {
    opacity: 1;
}

.cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    padding: 78px 48px;
    background: var(--red);
    color: var(--white);
}

.cta-band .section-kicker {
    color: var(--white);
}

.cta-band h2 {
    max-width: 820px;
    margin-bottom: 0;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 42px 48px;
    background: var(--ink);
    color: var(--white);
}

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

.site-footer p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
}

address {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 24px;
    margin: 0;
    font-style: normal;
    font-weight: 900;
}

address a {
    color: var(--white);
}

address a:hover,
address a:focus,
address a:focus-visible {
    color: var(--red);
}

.has-js [data-reveal] {
    transform: translateY(24px);
    opacity: 0;
    transition: transform 700ms ease, opacity 700ms ease;
}

.has-js [data-reveal].is-visible {
    transform: translateY(0);
    opacity: 1;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes heroDrift {
    from {
        transform: scale(1.03) translateY(0);
    }

    to {
        transform: scale(1.07) translateY(-18px);
    }
}

@media (max-width: 1180px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gallery-grid {
        grid-auto-rows: 210px;
    }

    .cta-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: auto auto;
        gap: 18px;
        padding: 14px 22px;
    }

    .main-nav {
        display: none;
    }

    .header-call {
        justify-self: end;
    }

    .hero {
        min-height: 84vh;
        padding: 130px 24px 60px;
    }

    h1 {
        font-size: 58px;
    }

    h2 {
        font-size: 34px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .section,
    .split-feature,
    .cta-band {
        padding-left: 24px;
        padding-right: 24px;
    }

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

    .feature-copy {
        justify-self: start;
    }

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

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

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    address {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 15px;
    }

    .site-header {
        min-height: 68px;
    }

    .brand,
    .brand img {
        width: 146px;
    }

    .header-call {
        width: 44px;
        min-height: 44px;
        padding: 0;
    }

    .header-call span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .hero {
        min-height: 82vh;
        padding-top: 112px;
    }

    .hero::after {
        min-width: 320px;
        height: 210px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    .hero-lead,
    .section-head p:not(.section-kicker),
    .feature-copy p:not(.section-kicker) {
        font-size: 16px;
    }

    .hero-actions,
    .cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .strip-track span {
        min-height: 58px;
        padding: 0 22px;
        font-size: 17px;
    }

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

    .gallery-grid {
        grid-auto-rows: 230px;
    }

    .gallery-item-large,
    .gallery-item-wide {
        grid-column: auto;
        grid-row: auto;
    }

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

    .panel-line {
        min-height: 74px;
        padding: 0 16px;
        font-size: 18px;
    }

    .panel-line strong {
        font-size: 28px;
    }

    .site-footer {
        padding: 34px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
