:root {
    --sars-orange: #f99b1c;
    --sars-orange-deep: #e78100;
    --sars-ink: #111417;
    --sars-ink-soft: #252a2f;
    --sars-paper: #f6f4ef;
    --sars-line: rgba(17, 20, 23, .12);
    --sars-white: #ffffff;
    --sars-muted: #667078;
    --sars-shell: min(1180px, calc(100vw - 40px));
}

.sars-recovery-page .entry-header,
.sars-recovery-page .page-title,
.sars-recovery-page .entry-title {
    display: none !important;
}

.sars-recovery-page .entry-content,
.sars-recovery-page .page-wrapper,
.sars-recovery-page .page-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.sars-site-page,
.sars-site-page * {
    box-sizing: border-box;
}

.sars-site-page {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: var(--sars-white);
    color: var(--sars-ink);
    font-family: inherit;
}

.sars-site-page a {
    text-decoration: none;
}

.sars-shell {
    width: var(--sars-shell);
    margin-inline: auto;
}

.sars-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(580px, 72vh, 760px);
    display: flex;
    align-items: end;
    background: var(--sars-ink);
    color: var(--sars-white);
}

.sars-hero__image,
.sars-hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sars-hero__image {
    z-index: -3;
    object-fit: cover;
    object-position: 52% 50%;
}

.sars-hero__veil {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(11, 14, 16, .91) 0%, rgba(11, 14, 16, .72) 43%, rgba(11, 14, 16, .22) 72%, rgba(11, 14, 16, .42) 100%),
        linear-gradient(0deg, rgba(11, 14, 16, .72) 0%, transparent 48%);
}

.sars-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: end;
    gap: 54px;
    padding: clamp(110px, 13vw, 176px) 0 clamp(64px, 8vw, 96px);
}

.sars-hero__copy {
    max-width: 800px;
}

.sars-eyebrow,
.sars-section-label,
.sars-hero__note-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.sars-eyebrow::before,
.sars-section-label::before {
    content: '';
    width: 34px;
    height: 2px;
    background: var(--sars-orange);
}

.sars-hero h1 {
    max-width: 850px;
    margin: 22px 0 20px;
    color: var(--sars-white);
    font-size: clamp(42px, 6.1vw, 82px);
    line-height: .99;
    letter-spacing: -.045em;
    font-weight: 800;
    text-wrap: balance;
}

.sars-hero__copy > p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.7;
}

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

.sars-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

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

.sars-button:focus-visible,
.sars-text-link:focus-visible,
.sars-service-card__link:focus-visible {
    outline: 3px solid rgba(249, 155, 28, .42);
    outline-offset: 3px;
}

.sars-button--primary {
    background: var(--sars-orange);
    color: #16120c;
}

.sars-button--primary:hover,
.sars-button--primary:focus-visible {
    background: #ffad3d;
    color: #16120c;
}

.sars-button--ghost {
    border-color: rgba(255, 255, 255, .44);
    color: var(--sars-white);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
}

.sars-button--ghost:hover,
.sars-button--ghost:focus-visible {
    border-color: rgba(255, 255, 255, .8);
    color: var(--sars-white);
    background: rgba(255, 255, 255, .12);
}

.sars-hero__note {
    align-self: end;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 22px;
    background: rgba(15, 18, 21, .55);
    backdrop-filter: blur(12px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
}

.sars-hero__note-kicker {
    color: var(--sars-orange);
    font-size: 10px;
}

.sars-hero__note strong,
.sars-hero__note > span:last-child {
    display: block;
}

.sars-hero__note strong {
    margin-top: 10px;
    color: var(--sars-white);
    font-size: 17px;
    line-height: 1.35;
}

.sars-hero__note > span:last-child {
    margin-top: 8px;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
    line-height: 1.5;
}

.sars-intro {
    background: var(--sars-paper);
    border-bottom: 1px solid var(--sars-line);
}

.sars-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(48px, 8vw, 110px);
    padding-block: clamp(72px, 9vw, 118px);
}

.sars-section-label {
    color: var(--sars-orange-deep);
}

.sars-intro h2,
.sars-section-head h2,
.sars-feature h2,
.sars-cta h2 {
    margin: 17px 0 0;
    color: var(--sars-ink);
    font-size: clamp(34px, 4.3vw, 58px);
    line-height: 1.05;
    letter-spacing: -.035em;
    font-weight: 800;
    text-wrap: balance;
}

.sars-intro__copy {
    align-self: end;
}

.sars-intro__copy p,
.sars-section-head > p,
.sars-feature__copy > p {
    margin: 0;
    color: var(--sars-muted);
    font-size: 17px;
    line-height: 1.8;
}

.sars-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--sars-ink);
    font-weight: 800;
}

.sars-text-link span {
    color: var(--sars-orange-deep);
    transition: transform .25s ease;
}

.sars-text-link:hover span {
    transform: translateX(4px);
}

.sars-services {
    padding-block: clamp(78px, 10vw, 132px);
}

.sars-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 48px;
    align-items: end;
    margin-bottom: 46px;
}

.sars-section-head h2 {
    max-width: 760px;
}

.sars-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--sars-line);
    border-left: 1px solid var(--sars-line);
}

.sars-service-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: clamp(26px, 3.4vw, 40px);
    border-right: 1px solid var(--sars-line);
    border-bottom: 1px solid var(--sars-line);
    background: var(--sars-white);
    transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.sars-service-card:hover {
    z-index: 1;
    background: #fffaf3;
    box-shadow: 0 22px 55px rgba(17, 20, 23, .09);
    transform: translateY(-3px);
}

.sars-service-card__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff3df;
    color: var(--sars-orange-deep);
}

.sars-service-card__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sars-service-card__body {
    margin-top: 30px;
}

.sars-service-card h3 {
    margin: 0;
    color: var(--sars-ink);
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.15;
    letter-spacing: -.02em;
    font-weight: 800;
}

.sars-service-card p {
    margin: 14px 0 0;
    color: var(--sars-muted);
    font-size: 14.5px;
    line-height: 1.72;
}

.sars-service-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 28px;
    color: var(--sars-ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.sars-service-card__link span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sars-ink);
    color: var(--sars-white);
    transition: transform .25s ease, background-color .25s ease;
}

.sars-service-card:hover .sars-service-card__link span {
    transform: rotate(8deg);
    background: var(--sars-orange-deep);
}

.sars-feature {
    padding-block: clamp(78px, 10vw, 130px);
    background: var(--sars-ink);
    color: var(--sars-white);
}

.sars-feature__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(52px, 8vw, 110px);
    align-items: center;
}

.sars-feature__visual {
    position: relative;
    min-height: 620px;
    border-radius: 30px;
    overflow: hidden;
    background: #20252a;
}

.sars-feature__visual img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: 52% 48%;
}

.sars-feature__badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    max-width: calc(100% - 44px);
    padding: 15px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .93);
    color: var(--sars-ink);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .22);
}

.sars-feature__badge span,
.sars-feature__badge strong {
    display: block;
}

.sars-feature__badge span {
    color: var(--sars-orange-deep);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.sars-feature__badge strong {
    margin-top: 4px;
    font-size: 14px;
}

.sars-feature h2 {
    color: var(--sars-white);
}

.sars-feature__copy > p {
    margin-top: 22px;
    color: rgba(255, 255, 255, .66);
}

.sars-checks {
    display: grid;
    gap: 0;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.sars-checks > div {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.sars-checks span {
    color: var(--sars-orange);
    font-size: 12px;
    font-weight: 800;
}

.sars-checks p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.65;
}

.sars-checks strong {
    color: var(--sars-white);
}

.sars-cta {
    background: var(--sars-orange);
}

.sars-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: end;
    padding-block: clamp(64px, 8vw, 94px);
}

.sars-cta .sars-eyebrow {
    color: #4b2d06;
}

.sars-cta .sars-eyebrow::before {
    background: #4b2d06;
}

.sars-cta h2 {
    color: #17130d;
    max-width: 720px;
}

.sars-cta p {
    max-width: 680px;
    margin: 16px 0 0;
    color: rgba(23, 19, 13, .72);
    font-size: 16px;
    line-height: 1.7;
}

.sars-actions--end {
    justify-content: flex-end;
    margin-top: 0;
}

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

.sars-button--outline-light {
    border-color: rgba(23, 19, 13, .45);
    color: #17130d;
}

.sars-button--outline-light:hover,
.sars-button--outline-light:focus-visible {
    border-color: #17130d;
    color: #17130d;
}

.sars-has-motion .sars-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
    transition-delay: calc(var(--sars-delay, 0) * 90ms);
}

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

@media (max-width: 980px) {
    :root { --sars-shell: min(100% - 32px, 780px); }

    .sars-hero__inner,
    .sars-intro__grid,
    .sars-section-head,
    .sars-feature__grid,
    .sars-cta__inner {
        grid-template-columns: 1fr;
    }

    .sars-hero__inner { gap: 28px; }
    .sars-hero__note { max-width: 360px; }
    .sars-section-head { gap: 22px; }
    .sars-section-head > p { max-width: 680px; }
    .sars-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sars-feature__visual { min-height: 520px; max-width: 640px; }
    .sars-actions--end { justify-content: flex-start; }
}

@media (max-width: 640px) {
    :root { --sars-shell: calc(100% - 24px); }

    .sars-hero {
        min-height: 670px;
    }

    .sars-hero__veil {
        background: linear-gradient(0deg, rgba(11, 14, 16, .93) 0%, rgba(11, 14, 16, .71) 62%, rgba(11, 14, 16, .38) 100%);
    }

    .sars-hero__image {
        object-position: 64% 50%;
    }

    .sars-hero__inner {
        padding: 120px 0 38px;
    }

    .sars-hero h1 {
        margin-top: 16px;
        font-size: clamp(40px, 13vw, 58px);
    }

    .sars-hero__copy > p {
        font-size: 16px;
        line-height: 1.65;
    }

    .sars-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sars-button { width: 100%; }

    .sars-hero__note { display: none; }

    .sars-intro__grid { gap: 28px; }
    .sars-intro h2,
    .sars-section-head h2,
    .sars-feature h2,
    .sars-cta h2 { font-size: clamp(32px, 10.5vw, 44px); }

    .sars-service-grid {
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .sars-service-card {
        min-height: 290px;
        border-left: 1px solid var(--sars-line);
    }

    .sars-feature__visual {
        min-height: 440px;
        border-radius: 22px;
    }

    .sars-checks > div { grid-template-columns: 38px 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .sars-site-page *,
    .sars-site-page *::before,
    .sars-site-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .sars-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
