:root {
    --orange: #ff5a0a;
    --orange-dark: #d84200;
    --black: #090909;
    --black-soft: #151515;
    --graphite: #232323;
    --white: #ffffff;
    --off-white: #f5f4f1;
    --muted: #a9a9a9;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #1d1d1d;
    background: var(--off-white);
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.top-strip {
    background: var(--orange);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.top-strip__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-strip a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(9, 9, 9, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.brand__mark {
    width: 46px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: var(--white);
    font-family: "Oswald", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    transform: skew(-8deg);
    box-shadow: 7px 7px 0 rgba(255, 90, 10, 0.16);
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand__text strong {
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.045em;
}

.brand__text small {
    margin-top: 5px;
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #ededed;
    font-size: 0.92rem;
    font-weight: 700;
}

.main-nav > a:not(.btn) {
    position: relative;
}

.main-nav > a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--orange);
    transition: right 0.25s ease;
}

.main-nav > a:not(.btn):hover::after,
.main-nav > a:not(.btn):focus-visible::after {
    right: 0;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 1px solid var(--border);
    background: transparent;
    border-radius: 4px;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 3px;
    padding: 13px 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.045em;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn--small {
    min-height: 42px;
    padding: 9px 17px;
    font-size: 0.8rem;
}

.btn--orange {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(255, 90, 10, 0.2);
}

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

.btn--ghost {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: transparent;
}

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

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

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

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(255, 90, 10, 0.16), transparent 28%),
        linear-gradient(120deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: auto, 26px 26px;
    pointer-events: none;
}

.hero__texture {
    position: absolute;
    inset: auto -120px -250px auto;
    width: 540px;
    height: 540px;
    border: 90px solid rgba(255, 90, 10, 0.06);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.hero__grid {
    position: relative;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 70px;
    padding-block: 72px 82px;
}

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

.hero h1,
.section h2,
.cta-band h2 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    line-height: 1.04;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 740px;
    font-size: clamp(3.15rem, 6.8vw, 6.1rem);
    letter-spacing: -0.035em;
}

.hero__lead {
    max-width: 650px;
    margin: 26px 0 0;
    color: #cecece;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 34px;
    color: #d9d9d9;
    font-size: 0.83rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__highlights span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero__highlights span::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--orange);
    transform: rotate(45deg);
}

.hero__visual {
    position: relative;
    justify-self: end;
    max-width: 530px;
}

.hero__frame {
    position: relative;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255,255,255,0.035);
    box-shadow: var(--shadow);
    transform: rotate(1.1deg);
}

.hero__frame::before,
.hero__frame::after {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--orange);
}

.hero__frame::before {
    width: 72%;
    height: 18px;
    left: -22px;
    top: -17px;
}

.hero__frame::after {
    width: 18px;
    height: 63%;
    right: -17px;
    bottom: -20px;
}

.hero__frame img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    left: -42px;
    bottom: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    transform: rotate(-4deg);
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}

.hero__badge span {
    opacity: 0.72;
}

.trust-bar {
    background: var(--orange);
    color: var(--white);
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-bar__grid > div {
    min-height: 102px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    border-right: 1px solid rgba(255,255,255,0.25);
}

.trust-bar__grid > div:last-child {
    border-right: 0;
}

.trust-bar strong {
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    opacity: 0.5;
}

.trust-bar span {
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.25;
}

.section {
    padding-block: 105px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.section-heading h2,
.section h2,
.cta-band h2 {
    font-size: clamp(2.25rem, 4.5vw, 4.1rem);
}

.section-heading > p {
    max-width: 530px;
    margin: 0;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 255px;
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: var(--white);
    border: 1px solid #e1dfda;
    box-shadow: 0 10px 30px rgba(0,0,0,0.035);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -55px;
    bottom: -55px;
    border: 18px solid rgba(255, 90, 10, 0.1);
    border-radius: 50%;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 90, 10, 0.45);
    box-shadow: 0 20px 45px rgba(0,0,0,0.09);
}

.service-card__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    background: var(--black);
    color: var(--orange);
    font-family: "Oswald", sans-serif;
    font-weight: 700;
}

.service-card h3,
.commitment h3,
.process h3,
.site-footer h3 {
    margin: 0 0 10px;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}

.service-card h3 {
    font-size: 1.45rem;
}

.service-card p,
.commitment p,
.process p {
    margin: 0;
    color: #6f6f6f;
}

.service-card--wide {
    grid-column: span 3;
    min-height: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    background: var(--black);
    color: var(--white);
}

.service-card--wide .service-card__icon {
    margin: 0;
    background: var(--orange);
    color: var(--white);
}

.service-card--wide p {
    color: #bdbdbd;
}

.service-card__tag {
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,0.25);
    color: #dcdcdc;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section--dark {
    position: relative;
    overflow: hidden;
    background: var(--black-soft);
    color: var(--white);
}

.section--dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0 65%, rgba(255,90,10,0.055) 65% 100%);
    pointer-events: none;
}

.split-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 90px;
    align-items: start;
}

.about-panel > p:not(.eyebrow) {
    max-width: 670px;
    color: #bdbdbd;
}

blockquote {
    margin: 42px 0 0;
    padding: 24px 26px;
    border-left: 4px solid var(--orange);
    background: rgba(255,255,255,0.04);
    font-size: 1.15rem;
    font-weight: 600;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    color: var(--orange);
    font-size: 0.9rem;
    font-style: normal;
}

.process {
    display: grid;
    gap: 14px;
}

.process__item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.025);
}

.process__item > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: var(--white);
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.process h3 {
    font-size: 1.15rem;
}

.process p {
    color: #a9a9a9;
}

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

.commitment {
    padding: 26px 0;
    border-top: 1px solid #d7d4ce;
}

.commitment__line {
    display: block;
    width: 62px;
    height: 4px;
    margin-bottom: 24px;
    background: var(--orange);
}

.commitment h3 {
    font-size: 1.25rem;
}

.cta-band {
    padding-block: 65px;
    background: var(--orange);
    color: var(--white);
}

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

.cta-band .eyebrow {
    color: rgba(255,255,255,0.72);
}

.cta-band h2 {
    max-width: 800px;
}

.section--contact {
    background: #efede8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;
    align-items: start;
}

.contact-info > p:not(.eyebrow) {
    color: #666;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin: 32px 0;
}

.contact-list > a,
.contact-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #d2cec6;
}

.contact-list span {
    color: #777;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-list strong {
    text-align: right;
}

.contact-card {
    padding: 34px;
    background: var(--white);
    box-shadow: 0 25px 65px rgba(0,0,0,0.1);
    border-top: 6px solid var(--orange);
}

.contact-card form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    color: #353535;
    font-size: 0.86rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #d9d7d2;
    border-radius: 2px;
    background: #faf9f7;
    padding: 13px 14px;
    color: #1d1d1d;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 90, 10, 0.12);
}

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

.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
}

.btn--submit {
    width: 100%;
}

.form-note {
    margin: -4px 0 0;
    color: #868686;
    font-size: 0.78rem;
}

.form-status {
    display: none;
    padding: 12px 14px;
    font-weight: 700;
}

.form-status.is-success {
    display: block;
    color: #155724;
    background: #d4edda;
}

.form-status.is-error {
    display: block;
    color: #721c24;
    background: #f8d7da;
}

.site-footer {
    padding-top: 70px;
    background: var(--black);
    color: #b5b5b5;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.7fr 0.65fr 0.8fr;
    gap: 60px;
    padding-bottom: 55px;
}

.brand--footer {
    margin-bottom: 20px;
}

.site-footer__grid > div:first-child p {
    max-width: 470px;
}

.site-footer h3 {
    color: var(--white);
    font-size: 1rem;
}

.site-footer__grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.site-footer__grid a:hover {
    color: var(--orange);
}

.site-footer p {
    margin: 0;
}

.site-footer__bottom {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--border);
    color: #777;
    font-size: 0.8rem;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 2px;
    background: var(--orange);
    color: var(--white);
    font-size: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

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

    .main-nav {
        position: fixed;
        inset: 116px 0 auto;
        display: grid;
        gap: 0;
        padding: 15px 20px 26px;
        background: #101010;
        border-bottom: 1px solid var(--border);
        transform: translateY(-130%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
    }

    .main-nav.is-open {
        transform: translateY(0);
        visibility: visible;
    }

    .main-nav > a {
        padding: 14px 6px;
        border-bottom: 1px solid var(--border);
    }

    .main-nav .btn {
        margin-top: 12px;
        border-bottom: 0;
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero__grid,
    .split-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero__grid {
        min-height: auto;
        gap: 55px;
    }

    .hero__visual {
        justify-self: center;
    }

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

    .trust-bar__grid > div:nth-child(2) {
        border-right: 0;
    }

    .trust-bar__grid > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,0.25);
    }

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

    .service-card--wide {
        grid-column: span 2;
    }

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

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__grid > div:first-child {
        grid-column: span 2;
    }
}

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

    .top-strip__inner {
        justify-content: center;
        text-align: center;
    }

    .top-strip__inner a {
        display: none;
    }

    .nav-wrap {
        min-height: 74px;
    }

    .main-nav {
        inset: 108px 0 auto;
    }

    .brand__text strong {
        font-size: 1.05rem;
    }

    .brand__mark {
        width: 40px;
    }

    .hero__grid {
        padding-block: 54px 70px;
    }

    .hero h1 {
        font-size: clamp(2.9rem, 15vw, 4.4rem);
    }

    .hero__actions,
    .hero__actions .btn {
        width: 100%;
    }

    .hero__badge {
        left: -6px;
        bottom: 22px;
    }

    .trust-bar__grid {
        grid-template-columns: 1fr;
    }

    .trust-bar__grid > div {
        min-height: 80px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.25);
    }

    .trust-bar__grid > div:last-child {
        border-bottom: 0;
    }

    .section {
        padding-block: 78px;
    }

    .section-heading,
    .cta-band__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .services-grid,
    .commitments-grid,
    .form-row,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .service-card--wide,
    .site-footer__grid > div:first-child {
        grid-column: auto;
    }

    .service-card--wide {
        grid-template-columns: auto 1fr;
    }

    .service-card__tag {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .split-layout,
    .contact-grid {
        gap: 50px;
    }

    .contact-list > a,
    .contact-list > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .contact-list strong {
        text-align: left;
    }

    .contact-card {
        padding: 24px 18px;
    }

    .btn--full-mobile {
        width: 100%;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 18px;
    }
}
