/* ==============================================================
   NOTHING PERSONAL™
   FREE PROCESS SERVER LANDING PAGE

   V4
   MODERN LOCAL SERVICE × EDITORIAL CONFIDENCE

   CLEAN CONVERSION-FIRST FOUNDATION
================================================================ */


/* ==============================================================
   01. ROOT
================================================================ */

:root {

    --ink:
        #151513;

    --ink-soft:
        #343430;

    --muted:
        #74736b;

    --paper:
        #f3f0e7;

    --paper-light:
        #fbf9f3;

    --paper-deep:
        #ddd8cc;

    --orange:
        #ee5128;

    --orange-dark:
        #c83c17;

    --line:
        rgba(21, 21, 19, 0.18);

    --line-strong:
        rgba(21, 21, 19, 0.42);

    --white:
        #fffefa;

    --font-display:
        "Arial Narrow",
        "Roboto Condensed",
        "Helvetica Neue",
        Arial,
        sans-serif;

    --font-body:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    --font-mono:
        "Courier New",
        Courier,
        monospace;

    --shell:
        min(
            1480px,
            calc(100vw - 5rem)
        );
}


/* ==============================================================
   02. RESET
================================================================ */

*,
*::before,
*::after {

    box-sizing:
        border-box;
}


html {

    scroll-behavior:
        smooth;

    background:
        var(--paper);
}


body {

    margin:
        0;

    min-width:
        320px;

    overflow-x:
        hidden;

    background:
        var(--paper);

    color:
        var(--ink);

    font-family:
        var(--font-body);

    font-size:
        16px;

    line-height:
        1.5;

    -webkit-font-smoothing:
        antialiased;

    text-rendering:
        optimizeLegibility;
}


img {

    display:
        block;

    width:
        100%;

    max-width:
        100%;
}


a {

    color:
        inherit;

    text-decoration:
        none;
}


button,
input,
select {

    font:
        inherit;
}


button,
select {

    cursor:
        pointer;
}


::selection {

    background:
        var(--orange);

    color:
        var(--white);
}


/* ==============================================================
   03. ACCESSIBILITY
================================================================ */

.skip-link {

    position:
        fixed;

    z-index:
        9999;

    top:
        1rem;

    left:
        1rem;

    transform:
        translateY(-180%);

    padding:
        0.8rem 1rem;

    background:
        var(--ink);

    color:
        var(--white);

    font-family:
        var(--font-mono);

    font-size:
        0.7rem;

    font-weight:
        700;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;

    transition:
        transform 160ms ease;
}


.skip-link:focus {

    transform:
        translateY(0);
}


:focus-visible {

    outline:
        3px solid
        var(--orange);

    outline-offset:
        4px;
}


/* ==============================================================
   04. HEADER
================================================================ */

.site-header {

    position:
        relative;

    z-index:
        100;

    background:
        var(--paper-light);

    border-bottom:
        1px solid
        var(--line-strong);
}


.site-header.is-scrolled {

    position:
        sticky;

    top:
        0;

    box-shadow:
        0 10px 30px
        rgba(21, 21, 19, 0.07);
}


.site-header__inner {

    width:
        var(--shell);

    min-height:
        84px;

    margin:
        0 auto;

    display:
        grid;

    grid-template-columns:
        auto 1fr auto;

    align-items:
        center;

    gap:
        3rem;
}


/* ==============================================================
   05. BRAND
================================================================ */

.brand {

    display:
        inline-flex;

    flex-direction:
        column;

    gap:
        0.22rem;

    line-height:
        1;
}


.brand__name {

    font-family:
        var(--font-display);

    font-size:
        1.03rem;

    font-weight:
        900;

    letter-spacing:
        0.035em;

    text-transform:
        uppercase;
}


.brand__tagline {

    color:
        var(--orange);

    font-family:
        var(--font-mono);

    font-size:
        0.54rem;

    font-weight:
        700;

    letter-spacing:
        0.2em;

    text-transform:
        uppercase;
}


/* ==============================================================
   06. DESKTOP NAVIGATION
================================================================ */

.site-nav {

    justify-self:
        end;

    display:
        flex;

    align-items:
        center;

    gap:
        clamp(
            1.25rem,
            2vw,
            2.5rem
        );

    font-family:
        var(--font-mono);

    font-size:
        0.63rem;

    font-weight:
        700;

    letter-spacing:
        0.075em;

    text-transform:
        uppercase;
}


.site-nav a {

    position:
        relative;

    padding:
        0.5rem 0;
}


.site-nav a::after {

    content:
        "";

    position:
        absolute;

    right:
        0;

    bottom:
        0;

    left:
        0;

    height:
        1px;

    background:
        var(--orange);

    transform:
        scaleX(0);

    transform-origin:
        right center;

    transition:
        transform 160ms ease;
}


.site-nav a:hover::after {

    transform:
        scaleX(1);

    transform-origin:
        left center;
}


/* ==============================================================
   07. HEADER ACTION
================================================================ */

.header-action {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        1rem;

    padding:
        0.82rem 1rem;

    background:
        var(--ink);

    color:
        var(--white);

    font-family:
        var(--font-mono);

    font-size:
        0.61rem;

    font-weight:
        700;

    letter-spacing:
        0.07em;

    text-transform:
        uppercase;

    transition:
        background 160ms ease;
}


.header-action span {

    color:
        var(--orange);

    font-size:
        0.95rem;
}


.header-action:hover {

    background:
        var(--orange);
}


.header-action:hover span {

    color:
        var(--white);
}


/* ==============================================================
   08. NAV TOGGLE
================================================================ */

.nav-toggle {

    display:
        none;

    align-items:
        center;

    gap:
        0.7rem;

    padding:
        0;

    border:
        0;

    background:
        transparent;

    color:
        var(--ink);
}


.nav-toggle__label {

    font-family:
        var(--font-mono);

    font-size:
        0.62rem;

    font-weight:
        700;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;
}


.nav-toggle__bars {

    width:
        26px;

    height:
        14px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;
}


.nav-toggle__bars span {

    display:
        block;

    width:
        100%;

    height:
        1px;

    background:
        currentColor;
}


/* ==============================================================
   09. SERVICE HERO
================================================================ */

.service-hero {

    position:
        relative;

    background:
        var(--paper-light);

    border-bottom:
        1px solid
        var(--ink);
}


.service-hero__inner {

    width:
        var(--shell);

    margin:
        0 auto;

    padding:
        clamp(
            5rem,
            8vw,
            8.5rem
        )
        0
        0;
}


/* ==============================================================
   10. HERO INTRO
================================================================ */

.service-hero__intro {

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(300px, 0.55fr);

    align-items:
        end;

    gap:
        clamp(
            4rem,
            8vw,
            9rem
        );

    padding-bottom:
        clamp(
            4rem,
            6vw,
            6.5rem
        );
}


.service-hero__eyebrow {

    grid-column:
        1 / -1;

    margin:
        0 0
        clamp(
            -1rem,
            -1vw,
            -0.2rem
        );

    color:
        var(--orange);

    font-family:
        var(--font-mono);

    font-size:
        0.61rem;

    font-weight:
        700;

    letter-spacing:
        0.14em;

    text-transform:
        uppercase;
}


.service-hero h1 {

    margin:
        0;

    max-width:
        8.5ch;

    color:
        var(--ink);

    font-family:
        var(--font-display);

    font-size:
        clamp(
            5rem,
            8.4vw,
            9rem
        );

    font-weight:
        900;

    letter-spacing:
        -0.07em;

    line-height:
        0.84;
}


.service-hero h1 span,
.service-hero h1 em {

    display:
        block;
}


.service-hero h1 em {

    margin-top:
        0.08em;

    color:
        var(--orange);

    font-style:
        normal;

    font-weight:
        900;
}


.service-hero__lede {

    max-width:
        470px;

    margin:
        0;

    padding-top:
        1.25rem;

    border-top:
        1px solid
        var(--line-strong);

    color:
        var(--ink-soft);

    font-size:
        clamp(
            1rem,
            1.15vw,
            1.16rem
        );

    line-height:
        1.7;
}


/* ==============================================================
   11. SERVICE STARTER
================================================================ */

.service-start {

    background:
        var(--ink);

    color:
        var(--white);

    border:
        1px solid
        var(--ink);
}


.service-start__heading {

    display:
        flex;

    align-items:
        baseline;

    justify-content:
        space-between;

    gap:
        2rem;

    padding:
        1.25rem
        clamp(
            1.4rem,
            2vw,
            2rem
        );

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.18);
}


.service-start__heading span {

    color:
        var(--orange);

    font-family:
        var(--font-mono);

    font-size:
        0.56rem;

    font-weight:
        700;

    letter-spacing:
        0.12em;

    text-transform:
        uppercase;
}


.service-start__heading strong {

    font-size:
        1rem;

    font-weight:
        500;
}


/* ==============================================================
   12. SERVICE START FIELDS
================================================================ */

.service-start__fields {

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(240px, 0.65fr)
        minmax(240px, auto);
}


.service-start__field {

    min-width:
        0;

    min-height:
        112px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    gap:
        0.55rem;

    padding:
        1.35rem
        clamp(
            1.4rem,
            2.2vw,
            2.4rem
        );

    border-right:
        1px solid
        rgba(255, 255, 255, 0.18);
}


.service-start__field > span {

    color:
        rgba(255, 255, 255, 0.55);

    font-family:
        var(--font-mono);

    font-size:
        0.53rem;

    font-weight:
        700;

    letter-spacing:
        0.1em;

    text-transform:
        uppercase;
}


.service-start__field input,
.service-start__field select {

    width:
        100%;

    min-width:
        0;

    padding:
        0;

    border:
        0;

    outline:
        0;

    background:
        transparent;

    color:
        var(--white);

    font-size:
        clamp(
            1.05rem,
            1.4vw,
            1.28rem
        );

    font-weight:
        600;
}


.service-start__field input::placeholder {

    color:
        rgba(255, 255, 255, 0.82);

    opacity:
        1;
}


.service-start__field select {

    appearance:
        none;

    background-image:
        linear-gradient(
            45deg,
            transparent 50%,
            var(--orange) 50%
        ),
        linear-gradient(
            135deg,
            var(--orange) 50%,
            transparent 50%
        );

    background-position:
        calc(100% - 12px) 52%,
        calc(100% - 7px) 52%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat:
        no-repeat;

    padding-right:
        2rem;
}


.service-start__field select option {

    background:
        var(--ink);

    color:
        var(--white);
}


/* ==============================================================
   13. START REQUEST BUTTON
================================================================ */

.service-start__submit {

    min-height:
        112px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        1.5rem;

    padding:
        1.4rem
        clamp(
            1.5rem,
            2.5vw,
            2.75rem
        );

    border:
        0;

    background:
        var(--orange);

    color:
        var(--white);

    font-family:
        var(--font-mono);

    font-size:
        0.67rem;

    font-weight:
        700;

    letter-spacing:
        0.075em;

    text-transform:
        uppercase;

    transition:
        background 160ms ease;
}


.service-start__submit span:last-child {

    font-size:
        1.25rem;
}


.service-start__submit:hover {

    background:
        var(--orange-dark);
}


/* ==============================================================
   14. SERVICE FACTS
================================================================ */

.service-facts {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-right:
        1px solid
        var(--ink);

    border-bottom:
        1px solid
        var(--ink);

    border-left:
        1px solid
        var(--ink);
}


.service-facts__item {

    min-width:
        0;

    min-height:
        94px;

    display:
        flex;

    align-items:
        center;

    gap:
        1.15rem;

    padding:
        1.25rem
        clamp(
            1rem,
            1.8vw,
            1.6rem
        );

    border-right:
        1px solid
        var(--ink);
}


.service-facts__item:last-child {

    border-right:
        0;
}


.service-facts__item span {

    color:
        var(--orange);

    font-family:
        var(--font-mono);

    font-size:
        0.56rem;

    font-weight:
        700;
}


.service-facts__item strong {

    min-width:
        0;

    font-family:
        var(--font-mono);

    font-size:
        0.62rem;

    font-weight:
        700;

    letter-spacing:
        0.04em;

    line-height:
        1.4;

    text-transform:
        uppercase;
}


/* ==============================================================
   15. FIELD INTRO / DOCUMENTARY PHOTO
================================================================ */

.field-intro {

    position:
        relative;

    background:
        var(--ink);
}


.field-intro__media {

    margin:
        0;

    height:
        clamp(
            440px,
            52vw,
            720px
        );

    overflow:
        hidden;
}


.field-intro__media img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center 48%;

    filter:
        saturate(0.88)
        contrast(1.04);
}


/* ==============================================================
   16. FIELD INTRO LINE
================================================================ */

.field-intro__line {

    width:
        100%;

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    background:
        var(--ink);

    color:
        var(--white);

    border-top:
        1px solid
        rgba(255, 255, 255, 0.2);
}


.field-intro__line span {

    min-height:
        70px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        1rem;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.18);

    font-family:
        var(--font-mono);

    font-size:
        0.58rem;

    font-weight:
        700;

    letter-spacing:
        0.1em;

    text-align:
        center;

    text-transform:
        uppercase;
}


.field-intro__line span:last-child {

    border-right:
        0;

    color:
        var(--orange);
}


/* ==============================================================
   17. LARGE DESKTOP
================================================================ */

@media (min-width: 1700px) {

    :root {

        --shell:
            min(
                1580px,
                calc(100vw - 8rem)
            );
    }


    .service-hero h1 {

        font-size:
            clamp(
                7rem,
                7.7vw,
                10rem
            );
    }


    .field-intro__media {

        max-height:
            780px;
    }

}


/* ==============================================================
   18. STANDARD DESKTOP
   IMPORTANT RANGE: 901–1180
================================================================ */

@media (
    min-width: 901px
)
and (
    max-width: 1180px
) {

    :root {

        --shell:
            calc(100vw - 3rem);
    }


    .site-header__inner {

        gap:
            1.4rem;
    }


    .site-nav {

        gap:
            1rem;

        font-size:
            0.55rem;
    }


    .header-action {

        padding:
            0.72rem 0.8rem;

        font-size:
            0.54rem;
    }


    .service-hero__intro {

        grid-template-columns:
            minmax(0, 1.25fr)
            minmax(270px, 0.75fr);

        gap:
            3rem;
    }


    .service-hero h1 {

        font-size:
            clamp(
                4.5rem,
                7.4vw,
                6.2rem
            );
    }


    .service-start__fields {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(200px, 0.55fr)
            220px;
    }


    .service-start__field {

        min-width:
            0;
    }


    .service-start__submit {

        min-width:
            0;
    }


    .service-facts__item {

        gap:
            0.7rem;

        padding-right:
            0.8rem;

        padding-left:
            0.8rem;
    }

}


/* ==============================================================
   19. TABLET / MOBILE NAV
================================================================ */

@media (max-width: 900px) {

    :root {

        --shell:
            calc(100vw - 2.5rem);
    }


    .site-header__inner {

        min-height:
            76px;

        grid-template-columns:
            1fr auto;

        gap:
            1rem;
    }


    .nav-toggle {

        display:
            inline-flex;
    }


    .site-nav,
    .header-action {

        display:
            none;
    }


    .site-header.is-nav-open
    .site-header__inner {

        position:
            relative;
    }


    .site-header.is-nav-open
    .site-nav {

        position:
            absolute;

        z-index:
            30;

        top:
            100%;

        right:
            0;

        left:
            0;

        display:
            grid;

        gap:
            0;

        padding:
            0.7rem 0 1.2rem;

        background:
            var(--paper-light);

        border-top:
            1px solid
            var(--ink);

        border-bottom:
            1px solid
            var(--ink);
    }


    .site-header.is-nav-open
    .site-nav a {

        padding:
            0.95rem 0;

        border-bottom:
            1px solid
            var(--line);
    }


    .service-hero__inner {

        padding-top:
            4.5rem;
    }


    .service-hero__intro {

        grid-template-columns:
            1fr;

        gap:
            2.5rem;
    }


    .service-hero__eyebrow {

        margin-bottom:
            -0.5rem;
    }


    .service-hero h1 {

        max-width:
            9ch;

        font-size:
            clamp(
                5rem,
                13vw,
                7.4rem
            );
    }


    .service-hero__lede {

        max-width:
            620px;
    }


    .service-start__fields {

        grid-template-columns:
            1fr 1fr;
    }


    .service-start__field:nth-child(2) {

        border-right:
            0;
    }


    .service-start__submit {

        grid-column:
            1 / -1;

        min-height:
            76px;

        border-top:
            1px solid
            rgba(255, 255, 255, 0.18);
    }


    .service-facts {

        grid-template-columns:
            1fr 1fr;
    }


    .service-facts__item:nth-child(2) {

        border-right:
            0;
    }


    .service-facts__item:nth-child(n + 3) {

        border-top:
            1px solid
            var(--ink);
    }


    .field-intro__media {

        height:
            clamp(
                420px,
                70vw,
                620px
            );
    }

}


/* ==============================================================
   20. MOBILE
================================================================ */

@media (max-width: 640px) {

    :root {

        --shell:
            calc(100vw - 2rem);
    }


    .site-header__inner {

        min-height:
            70px;
    }


    .brand__name {

        font-size:
            0.82rem;
    }


    .brand__tagline {

        font-size:
            0.47rem;

        letter-spacing:
            0.16em;
    }


    .nav-toggle__label {

        display:
            none;
    }


    .service-hero__inner {

        padding-top:
            3.6rem;
    }


    .service-hero__intro {

        gap:
            2rem;

        padding-bottom:
            3.5rem;
    }


    .service-hero h1 {

        max-width:
            7.5ch;

        font-size:
            clamp(
                4rem,
                17vw,
                5.6rem
            );

        line-height:
            0.88;
    }


    .service-hero__lede {

        padding-top:
            1rem;

        font-size:
            0.95rem;

        line-height:
            1.62;
    }


    .service-start__heading {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            0.4rem;

        padding:
            1rem;
    }


    .service-start__heading strong {

        font-size:
            0.9rem;
    }


    .service-start__fields {

        grid-template-columns:
            1fr;
    }


    .service-start__field {

        min-height:
            96px;

        padding:
            1.15rem;

        border-right:
            0;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.18);
    }


    .service-start__submit {

        grid-column:
            auto;

        min-height:
            72px;

        padding:
            1.1rem 1.2rem;
    }


    .service-facts {

        grid-template-columns:
            1fr;
    }


    .service-facts__item,
    .service-facts__item:nth-child(2) {

        min-height:
            72px;

        border-right:
            0;

        border-top:
            1px solid
            var(--ink);
    }


    .service-facts__item:first-child {

        border-top:
            0;
    }


    .field-intro__media {

        height:
            110vw;

        max-height:
            560px;
    }


    .field-intro__media img {

        object-position:
            63% center;
    }


    .field-intro__line {

        grid-template-columns:
            1fr;
    }


    .field-intro__line span {

        min-height:
            58px;

        border-right:
            0;

        border-bottom:
            1px solid
            rgba(255, 255, 255, 0.18);
    }


    .field-intro__line span:last-child {

        border-bottom:
            0;
    }

}


/* ==============================================================
   21. SMALL MOBILE
================================================================ */

@media (max-width: 420px) {

    .brand__name {

        font-size:
            0.72rem;
    }


    .service-hero h1 {

        font-size:
            clamp(
                3.5rem,
                17vw,
                4.6rem
            );
    }


    .service-hero__eyebrow {

        font-size:
            0.54rem;
    }


    .service-start__field input,
    .service-start__field select {

        font-size:
            1rem;
    }

}


/* ==============================================================
   22. REDUCED MOTION
================================================================ */

@media (
    prefers-reduced-motion:
        reduce
) {

    html {

        scroll-behavior:
            auto;
    }


    *,
    *::before,
    *::after {

        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;
    }

}


/* ==============================================================
   NOTHING PERSONAL PHOTO-LED HERO V4.1

   Photograph becomes the actual hero.
   No dashboard.
   No status rail.
   No photo subsection.
================================================================ */


/* ==============================================================
   HERO SHELL
================================================================ */

.service-hero {

    position:
        relative;

    overflow:
        hidden;

    background:
        var(--paper-light);

    border-bottom:
        1px solid
        var(--ink);
}


/* ==============================================================
   HERO PHOTOGRAPH
================================================================ */

.service-hero__media {

    position:
        relative;

    width:
        100%;

    height:
        clamp(
            520px,
            58vw,
            780px
        );

    margin:
        0;

    overflow:
        hidden;

    background:
        var(--ink);
}


.service-hero__media::after {

    content:
        "";

    position:
        absolute;

    inset:
        0;

    pointer-events:
        none;

    background:
        linear-gradient(
            180deg,
            rgba(15, 15, 13, 0.04) 0%,
            rgba(15, 15, 13, 0.02) 55%,
            rgba(15, 15, 13, 0.34) 100%
        );
}


.service-hero__media img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center 47%;

    filter:
        saturate(0.90)
        contrast(1.04);
}


/* ==============================================================
   PHOTO CAPTION
================================================================ */

.service-hero__media-caption {

    position:
        absolute;

    z-index:
        3;

    right:
        max(
            2rem,
            calc(
                (100vw - var(--shell))
                / 2
            )
        );

    bottom:
        1.5rem;

    left:
        max(
            2rem,
            calc(
                (100vw - var(--shell))
                / 2
            )
        );

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        2rem;

    color:
        rgba(255, 254, 250, 0.88);

    font-family:
        var(--font-mono);

    font-size:
        0.56rem;

    font-weight:
        700;

    letter-spacing:
        0.11em;

    text-transform:
        uppercase;
}


/* ==============================================================
   HERO CONTENT OVERLAP
================================================================ */

.service-hero__content {

    position:
        relative;

    z-index:
        5;

    width:
        var(--shell);

    margin:
        -5.75rem auto 0;

    background:
        var(--paper-light);

    border-top:
        1px solid
        var(--ink);

    border-right:
        1px solid
        var(--ink);

    border-left:
        1px solid
        var(--ink);
}


/* ==============================================================
   HERO INTRO
================================================================ */

.service-hero__intro {

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, 0.65fr);

    align-items:
        end;

    gap:
        clamp(
            3rem,
            7vw,
            8rem
        );

    padding:
        clamp(
            2.4rem,
            4vw,
            4.25rem
        )
        clamp(
            2rem,
            4vw,
            4.5rem
        );
}


.service-hero__heading {

    min-width:
        0;
}


.service-hero__eyebrow {

    margin:
        0 0 1.4rem;

    color:
        var(--orange);

    font-family:
        var(--font-mono);

    font-size:
        0.58rem;

    font-weight:
        700;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;
}


.service-hero h1 {

    margin:
        0;

    max-width:
        none;

    color:
        var(--ink);

    font-family:
        var(--font-display);

    font-size:
        clamp(
            4.4rem,
            7vw,
            7.4rem
        );

    font-weight:
        900;

    letter-spacing:
        -0.065em;

    line-height:
        0.87;
}


.service-hero h1 span,
.service-hero h1 em {

    display:
        block;
}


.service-hero h1 em {

    margin-top:
        0.08em;

    color:
        var(--orange);

    font-style:
        normal;

    font-weight:
        900;
}


/* ==============================================================
   HERO COPY
================================================================ */

.service-hero__copy {

    min-width:
        0;

    padding-top:
        1.25rem;

    border-top:
        1px solid
        var(--line-strong);
}


.service-hero__copy > p:first-child {

    margin:
        0;

    color:
        var(--ink-soft);

    font-size:
        clamp(
            0.98rem,
            1.15vw,
            1.14rem
        );

    line-height:
        1.68;
}


.service-hero__aside {

    width:
        fit-content;

    margin:
        2rem 0 0;

    padding-left:
        1rem;

    border-left:
        3px solid
        var(--orange);

    color:
        var(--muted);

    font-family:
        var(--font-mono);

    font-size:
        0.61rem;

    font-weight:
        700;

    letter-spacing:
        0.04em;
}


/* ==============================================================
   SERVICE STARTER
================================================================ */

.service-start {

    margin:
        0;

    border-right:
        0;

    border-left:
        0;
}


.service-start__heading {

    padding-right:
        clamp(
            1.5rem,
            3vw,
            3rem
        );

    padding-left:
        clamp(
            1.5rem,
            3vw,
            3rem
        );
}


/* ==============================================================
   SERVICE FACTS
================================================================ */

.service-facts {

    border-right:
        0;

    border-bottom:
        0;

    border-left:
        0;
}


/* ==============================================================
   OLD SECTION-02 PHOTO SYSTEM NO LONGER USED
================================================================ */

.field-intro {

    display:
        none;
}


/* ==============================================================
   LARGE DESKTOP
================================================================ */

@media (min-width: 1700px) {

    .service-hero__media {

        height:
            min(
                58vw,
                860px
            );
    }


    .service-hero__content {

        margin-top:
            -6.5rem;
    }


    .service-hero h1 {

        font-size:
            clamp(
                6rem,
                6.6vw,
                8.2rem
            );
    }

}


/* ==============================================================
   STANDARD DESKTOP — 901 TO 1180
================================================================ */

@media (
    min-width: 901px
)
and (
    max-width: 1180px
) {

    .service-hero__media {

        height:
            clamp(
                500px,
                60vw,
                680px
            );
    }


    .service-hero__content {

        margin-top:
            -4rem;

        min-width:
            0;
    }


    .service-hero__intro {

        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(260px, 0.8fr);

        gap:
            2.5rem;

        padding:
            2.5rem;
    }


    .service-hero__heading,
    .service-hero__copy {

        min-width:
            0;
    }


    .service-hero h1 {

        font-size:
            clamp(
                4rem,
                6.4vw,
                5.6rem
            );
    }

}


/* ==============================================================
   TABLET
================================================================ */

@media (max-width: 900px) {

    .service-hero__media {

        height:
            clamp(
                460px,
                74vw,
                650px
            );
    }


    .service-hero__media img {

        object-position:
            60% center;
    }


    .service-hero__media-caption {

        right:
            1.25rem;

        left:
            1.25rem;
    }


    .service-hero__content {

        width:
            calc(100vw - 2.5rem);

        margin-top:
            -3rem;
    }


    .service-hero__intro {

        grid-template-columns:
            1fr;

        gap:
            2rem;

        padding:
            2.5rem;
    }


    .service-hero h1 {

        max-width:
            9ch;

        font-size:
            clamp(
                4.6rem,
                12vw,
                6.8rem
            );
    }


    .service-hero__copy {

        max-width:
            620px;
    }

}


/* ==============================================================
   MOBILE
================================================================ */

@media (max-width: 640px) {

    .service-hero__media {

        height:
            112vw;

        min-height:
            430px;

        max-height:
            600px;
    }


    .service-hero__media img {

        object-position:
            64% center;
    }


    .service-hero__media-caption {

        right:
            1rem;

        bottom:
            1rem;

        left:
            1rem;

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            0.35rem;

        font-size:
            0.48rem;
    }


    .service-hero__content {

        width:
            calc(100vw - 1.25rem);

        margin-top:
            -1.75rem;
    }


    .service-hero__intro {

        gap:
            1.6rem;

        padding:
            2rem 1.25rem;
    }


    .service-hero__eyebrow {

        margin-bottom:
            1rem;

        font-size:
            0.51rem;
    }


    .service-hero h1 {

        max-width:
            7.5ch;

        font-size:
            clamp(
                3.7rem,
                16vw,
                5rem
            );

        line-height:
            0.9;
    }


    .service-hero__copy {

        padding-top:
            1rem;
    }


    .service-hero__copy > p:first-child {

        font-size:
            0.94rem;

        line-height:
            1.6;
    }


    .service-hero__aside {

        margin-top:
            1.5rem;

        font-size:
            0.55rem;
    }

}


/* ==============================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 420px) {

    .service-hero__content {

        width:
            calc(100vw - 1rem);
    }


    .service-hero h1 {

        font-size:
            clamp(
                3.35rem,
                16vw,
                4.4rem
            );
    }

}


/* ==============================================================
   NOTHING PERSONAL HERO IMAGE OVERLAY V4.2

   Headline becomes part of the photograph.
   Request form remains below.
================================================================ */


/* ==============================================================
   HERO PHOTOGRAPH
================================================================ */

.service-hero {

    position:
        relative;

    background:
        var(--paper-light);
}


.service-hero__media {

    position:
        relative;

    height:
        clamp(
            620px,
            66vw,
            860px
        );

    overflow:
        hidden;
}


.service-hero__media img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        58% center;

    filter:
        saturate(0.88)
        contrast(1.06)
        brightness(0.92);
}


/*
    Darker left side for headline.
    Right side remains photographic.
*/

.service-hero__media::after {

    content:
        "";

    position:
        absolute;

    z-index:
        1;

    inset:
        0;

    pointer-events:
        none;

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 9, 0.88) 0%,
            rgba(10, 10, 9, 0.76) 28%,
            rgba(10, 10, 9, 0.46) 48%,
            rgba(10, 10, 9, 0.12) 70%,
            rgba(10, 10, 9, 0.02) 100%
        );
}


/* ==============================================================
   PHOTO CAPTION
================================================================ */

.service-hero__media-caption {

    z-index:
        4;

    bottom:
        1.4rem;

    color:
        rgba(255, 255, 255, 0.72);
}


/* ==============================================================
   CONTENT SHELL
================================================================ */

.service-hero__content {

    position:
        relative;

    z-index:
        5;

    width:
        var(--shell);

    margin:
        -27rem auto 0;

    background:
        transparent;

    border:
        0;
}


/* ==============================================================
   HEADLINE OVER IMAGE
================================================================ */

.service-hero__intro {

    min-height:
        27rem;

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(260px, 0.55fr);

    align-items:
        end;

    gap:
        clamp(
            3rem,
            7vw,
            7rem
        );

    padding:
        0
        0
        3.25rem;
}


.service-hero__heading {

    min-width:
        0;
}


.service-hero__eyebrow {

    margin:
        0 0 1.25rem;

    color:
        var(--orange);

    text-shadow:
        0 1px 18px
        rgba(0, 0, 0, 0.30);
}


.service-hero h1 {

    max-width:
        8.2ch;

    margin:
        0;

    color:
        var(--white);

    font-size:
        clamp(
            4.8rem,
            7.8vw,
            8.4rem
        );

    line-height:
        0.86;

    letter-spacing:
        -0.065em;

    text-shadow:
        0 3px 28px
        rgba(0, 0, 0, 0.24);
}


.service-hero h1 span,
.service-hero h1 em {

    display:
        block;
}


.service-hero h1 em {

    margin-top:
        0.08em;

    color:
        var(--orange);

    font-style:
        normal;
}


/* ==============================================================
   SUPPORT COPY OVER IMAGE
================================================================ */

.service-hero__copy {

    min-width:
        0;

    padding:
        1.25rem 0 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.46);
}


.service-hero__copy > p:first-child {

    margin:
        0;

    color:
        rgba(255, 255, 255, 0.88);

    font-size:
        clamp(
            0.96rem,
            1.05vw,
            1.08rem
        );

    line-height:
        1.66;

    text-shadow:
        0 2px 18px
        rgba(0, 0, 0, 0.28);
}


.service-hero__aside {

    margin:
        1.8rem 0 0;

    padding-left:
        1rem;

    border-left:
        3px solid
        var(--orange);

    color:
        rgba(255, 255, 255, 0.72);

    text-shadow:
        0 2px 14px
        rgba(0, 0, 0, 0.30);
}


/* ==============================================================
   REQUEST SYSTEM
   NOW STARTS CLEANLY BELOW THE IMAGE
================================================================ */

.service-start {

    position:
        relative;

    z-index:
        6;

    margin:
        0;

    background:
        var(--ink);

    border:
        1px solid
        var(--ink);
}


.service-facts {

    background:
        var(--paper-light);

    border-right:
        1px solid
        var(--ink);

    border-bottom:
        1px solid
        var(--ink);

    border-left:
        1px solid
        var(--ink);
}


/* ==============================================================
   LARGE DESKTOP
================================================================ */

@media (min-width: 1700px) {

    .service-hero__media {

        height:
            min(
                64vw,
                920px
            );
    }


    .service-hero__content {

        margin-top:
            -29rem;
    }


    .service-hero__intro {

        min-height:
            29rem;
    }


    .service-hero h1 {

        font-size:
            clamp(
                6.8rem,
                7vw,
                9rem
            );
    }

}


/* ==============================================================
   STANDARD DESKTOP
   901–1180
================================================================ */

@media (
    min-width: 901px
)
and (
    max-width: 1180px
) {

    .service-hero__media {

        height:
            clamp(
                600px,
                68vw,
                760px
            );
    }


    .service-hero__content {

        margin-top:
            -24rem;
    }


    .service-hero__intro {

        min-height:
            24rem;

        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(260px, 0.6fr);

        gap:
            2.5rem;

        padding-bottom:
            2.5rem;
    }


    .service-hero h1 {

        font-size:
            clamp(
                4rem,
                6.5vw,
                5.8rem
            );
    }

}


/* ==============================================================
   TABLET
================================================================ */

@media (max-width: 900px) {

    .service-hero__media {

        height:
            clamp(
                620px,
                95vw,
                760px
            );
    }


    .service-hero__media img {

        object-position:
            63% center;
    }


    .service-hero__media::after {

        background:
            linear-gradient(
                180deg,
                rgba(10, 10, 9, 0.10) 0%,
                rgba(10, 10, 9, 0.22) 35%,
                rgba(10, 10, 9, 0.82) 72%,
                rgba(10, 10, 9, 0.94) 100%
            );
    }


    .service-hero__content {

        width:
            calc(100vw - 2.5rem);

        margin-top:
            -27rem;
    }


    .service-hero__intro {

        min-height:
            27rem;

        grid-template-columns:
            1fr;

        gap:
            1.75rem;

        padding-bottom:
            2rem;
    }


    .service-hero h1 {

        max-width:
            8ch;

        font-size:
            clamp(
                4.5rem,
                12vw,
                6.5rem
            );
    }


    .service-hero__copy {

        max-width:
            570px;
    }

}


/* ==============================================================
   MOBILE
================================================================ */

@media (max-width: 640px) {

    .service-hero__media {

        height:
            138vw;

        min-height:
            620px;

        max-height:
            760px;
    }


    .service-hero__media img {

        object-position:
            66% center;
    }


    .service-hero__media-caption {

        display:
            none;
    }


    .service-hero__content {

        width:
            calc(100vw - 1.5rem);

        margin-top:
            -29rem;
    }


    .service-hero__intro {

        min-height:
            29rem;

        gap:
            1.4rem;

        padding:
            0
            0
            1.75rem;
    }


    .service-hero__eyebrow {

        font-size:
            0.50rem;
    }


    .service-hero h1 {

        max-width:
            7.5ch;

        font-size:
            clamp(
                3.7rem,
                16vw,
                5rem
            );

        line-height:
            0.90;
    }


    .service-hero__copy > p:first-child {

        font-size:
            0.92rem;

        line-height:
            1.58;
    }


    .service-hero__aside {

        margin-top:
            1.25rem;

        font-size:
            0.53rem;
    }

}


/* ==============================================================
   SMALL MOBILE
================================================================ */

@media (max-width: 420px) {

    .service-hero__content {

        width:
            calc(100vw - 1rem);
    }


    .service-hero h1 {

        font-size:
            clamp(
                3.3rem,
                16vw,
                4.35rem
            );
    }

}


/* ==============================================================
   NOTHING PERSONAL HERO HEADING PLACEMENT TUNE
   Keep right paragraph placement.
   Improve left headline positioning only.
============================================================== */

.service-hero__intro {
    min-height: 30rem;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
    align-items: end;
    gap: clamp(2.5rem, 5vw, 5.5rem);
    padding: 0 0 3.75rem;
}

.service-hero__heading {
    align-self: end;
    justify-self: start;
    max-width: 34rem;
    padding-left: clamp(1.25rem, 2.2vw, 2.75rem);
}

.service-hero__eyebrow {
    margin: 0 0 1rem;
}

.service-hero h1 {
    max-width: 6.1ch;
    margin: 0;
    font-size: clamp(4.75rem, 7vw, 7.4rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
}

.service-hero h1 em,
.service-hero h1 span {
    display: block;
}

.service-hero__copy {
    align-self: end;
}

/* desktop tuning */
@media (min-width: 1200px) {
    .service-hero__heading {
        padding-left: 2.25rem;
    }

    .service-hero h1 {
        max-width: 5.8ch;
    }
}

/* tablet */
@media (max-width: 900px) {
    .service-hero__intro {
        min-height: 27rem;
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 0 0 2rem;
    }

    .service-hero__heading {
        max-width: 30rem;
        padding-left: 0.5rem;
    }

    .service-hero h1 {
        max-width: 6.4ch;
        font-size: clamp(4.2rem, 11vw, 6.2rem);
    }
}

/* mobile */
@media (max-width: 640px) {
    .service-hero__heading {
        padding-left: 0;
        max-width: 100%;
    }

    .service-hero h1 {
        max-width: 7ch;
        font-size: clamp(3.6rem, 15vw, 4.9rem);
        line-height: 0.9;
    }
}


/* ==============================================================
   NOTHING PERSONAL HERO COMPOSITION V4.3

   Left headline repositioned.
   Right paragraph remains alone.
============================================================== */


.service-hero__media-caption {
    display: none;
}


.service-hero__aside {
    display: none;
}


.service-hero__content {
    margin-top: -31rem;
}


.service-hero__intro {
    min-height: 31rem;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(330px, 0.55fr);
    align-items: end;
    gap: clamp(3rem, 6vw, 6rem);
    padding: 0 0 3rem;
}


.service-hero__heading {
    align-self: end;
    max-width: 620px;
    padding-left: clamp(2rem, 4vw, 4.5rem);
}


.service-hero__eyebrow {
    margin-bottom: 1rem;
}


.service-hero h1 {
    max-width: 7ch;
    font-size: clamp(4.6rem, 6.7vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
}


.service-hero h1 em {
    white-space: nowrap;
}


.service-hero__copy {
    align-self: end;
    margin-bottom: 1.4rem;
}


@media (min-width: 901px) and (max-width: 1180px) {

    .service-hero__content {
        margin-top: -30rem;
    }

    .service-hero__intro {
        min-height: 30rem;
        grid-template-columns:
            minmax(0, 1fr)
            minmax(320px, 0.62fr);
        gap: 3rem;
        padding-bottom: 2.75rem;
    }

    .service-hero__heading {
        max-width: 560px;
        padding-left: 2.5rem;
    }

    .service-hero h1 {
        max-width: 7ch;
        font-size: clamp(4.25rem, 6vw, 5.6rem);
        line-height: 0.91;
    }

    .service-hero__copy {
        margin-bottom: 1rem;
    }
}


@media (max-width: 900px) {

    .service-hero__content {
        margin-top: -28rem;
    }

    .service-hero__intro {
        min-height: 28rem;
        grid-template-columns: 1fr;
    }

    .service-hero__heading {
        padding-left: 0.5rem;
    }

    .service-hero__copy {
        margin-bottom: 0;
    }
}


@media (max-width: 640px) {

    .service-hero__heading {
        padding-left: 0;
    }

    .service-hero h1 {
        max-width: 7ch;
    }
}


/* ==============================================================
   NOTHING PERSONAL HERO HEADING LIFT V4.4
   Lift left headline only. Right copy stays put.
================================================================ */

.service-hero__heading {
    position: relative;
    top: -2.2rem;
}

@media (max-width: 900px) {

    .service-hero__heading {
        top: -1.5rem;
    }

}

@media (max-width: 640px) {

    .service-hero__heading {
        top: -0.75rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL HERO HEADING LIFT V4.5
   Lift left headline farther upward.
================================================================ */

.service-hero__heading {
    top: -4.25rem;
}

@media (max-width: 900px) {

    .service-hero__heading {
        top: -2.75rem;
    }

}

@media (max-width: 640px) {

    .service-hero__heading {
        top: -1.35rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL HERO HEADING LIFT V4.6
   Final small upward adjustment.
================================================================ */

.service-hero__heading {
    top: -5rem;
}

@media (max-width: 900px) {

    .service-hero__heading {
        top: -3.15rem;
    }

}

@media (max-width: 640px) {

    .service-hero__heading {
        top: -1.55rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL HERO HEADING LIFT V4.7
   Another small upward adjustment.
================================================================ */

.service-hero__heading {
    top: -5.8rem;
}

@media (max-width: 900px) {

    .service-hero__heading {
        top: -3.6rem;
    }

}

@media (max-width: 640px) {

    .service-hero__heading {
        top: -1.8rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL HERO HEADING LIFT V4.8
   Move headline farther upward.
================================================================ */

.service-hero__heading {
    top: -6.6rem;
}

@media (max-width: 900px) {

    .service-hero__heading {
        top: -4rem;
    }

}

@media (max-width: 640px) {

    .service-hero__heading {
        top: -2rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL HERO HEADING LIFT V4.9
   Move left headline higher again.
================================================================ */

.service-hero__heading {
    top: -7.4rem;
}

@media (max-width: 900px) {

    .service-hero__heading {
        top: -4.5rem;
    }

}

@media (max-width: 640px) {

    .service-hero__heading {
        top: -2.25rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL WIDE HERO NORMALIZATION V5.0

   Normal desktop remains untouched.
   Wide screens stop scaling the headline with viewport width.
   Ultrawide photograph uses viewport height for better cropping.
============================================================== */


/* --------------------------------------------------------------
   WIDE DESKTOP
   Neutralize the old 1700px growth rules.
-------------------------------------------------------------- */

@media (min-width: 1400px) {

    .service-hero__media {
        height: clamp(700px, 72vh, 840px);
    }

    .service-hero__media img {
        object-position: 58% 36%;
    }

    .service-hero__content {
        margin-top: -31rem;
    }

    .service-hero__intro {
        min-height: 31rem;
    }

    .service-hero h1 {
        font-size: clamp(4.8rem, 3vw, 5.1rem);
        line-height: 0.90;
    }

    .service-hero__heading {
        top: -8.6rem;
    }

    .service-hero__copy {
        align-self: end;
        margin-bottom: 1.4rem;
    }

}


/* --------------------------------------------------------------
   ULTRAWIDE

   Width no longer makes the hero or headline enormous.
   Taller image window + higher crop retains more of the person.
-------------------------------------------------------------- */

@media (min-width: 2200px) {

    .service-hero__media {
        height: clamp(760px, 76vh, 920px);
    }

    .service-hero__media img {
        object-position: 59% 30%;
    }

    .service-hero__content {
        margin-top: -32rem;
    }

    .service-hero__intro {
        min-height: 32rem;
    }

    .service-hero h1 {
        font-size: 5rem;
        line-height: 0.90;
    }

    .service-hero__heading {
        top: -9rem;
    }

}


/* --------------------------------------------------------------
   EXTRA-WIDE / 4K CLASS

   Freeze typography completely.
-------------------------------------------------------------- */

@media (min-width: 3000px) {

    .service-hero__media {
        height: min(78vh, 940px);
    }

    .service-hero__media img {
        object-position: 60% 27%;
    }

    .service-hero h1 {
        font-size: 5rem;
    }

    .service-hero__heading {
        top: -9.25rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 02 THE PAPERS V1
============================================================== */


.papers-section {
    position: relative;
    background: var(--paper-light);
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
}


.papers-section__inner {
    width: var(--shell);
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        minmax(280px, 0.72fr)
        minmax(0, 1.28fr);
    gap: clamp(4rem, 8vw, 9rem);
    padding:
        clamp(5.5rem, 8vw, 9rem)
        0;
}


/* --------------------------------------------------------------
   INTRO
-------------------------------------------------------------- */

.papers-section__intro {
    min-width: 0;
    align-self: start;
}


.papers-section__kicker {
    margin: 0 0 1.5rem;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.papers-section h2 {
    margin: 0;
    max-width: 8ch;
    font-family: var(--font-display);
    font-size: clamp(4.4rem, 6vw, 6.8rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.88;
}


.papers-section h2 span,
.papers-section h2 em {
    display: block;
}


.papers-section h2 em {
    margin-top: 0.08em;
    color: var(--orange);
    font-style: normal;
}


.papers-section__lede {
    max-width: 31rem;
    margin: 2.4rem 0 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.05vw, 1.12rem);
    line-height: 1.7;
}


.papers-section__link {
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
    margin-top: 2.4rem;
    padding-bottom: 0.55rem;
    color: var(--ink);
    border-bottom: 2px solid var(--orange);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 160ms ease,
        gap 160ms ease;
}


.papers-section__link:hover,
.papers-section__link:focus-visible {
    color: var(--orange);
    gap: 1.45rem;
}


/* --------------------------------------------------------------
   DOCUMENT LIST
-------------------------------------------------------------- */

.papers-list {
    min-width: 0;
    border-top: 1px solid var(--ink);
}


.papers-list__item {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    align-items: center;
    min-height: clamp(5.3rem, 6vw, 6.8rem);
    border-bottom: 1px solid var(--line-strong);
    transition:
        padding-left 160ms ease,
        background 160ms ease;
}


.papers-list__number {
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}


.papers-list__item strong {
    min-width: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
}


.papers-list__item:hover {
    padding-left: 0.85rem;
    background: rgba(242, 78, 38, 0.045);
}


.papers-list__note {
    margin: 1.5rem 0 0;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.56rem;
    line-height: 1.55;
    letter-spacing: 0.035em;
}


/* --------------------------------------------------------------
   WIDE DESKTOP
-------------------------------------------------------------- */

@media (min-width: 1600px) {

    .papers-section__inner {
        gap: clamp(6rem, 7vw, 9rem);
    }

    .papers-section h2 {
        font-size: 6.4rem;
    }

    .papers-list__item strong {
        font-size: 2.15rem;
    }

}


/* --------------------------------------------------------------
   STANDARD DESKTOP
-------------------------------------------------------------- */

@media (min-width: 901px) and (max-width: 1180px) {

    .papers-section__inner {
        grid-template-columns:
            minmax(260px, 0.78fr)
            minmax(0, 1.22fr);
        gap: 3.5rem;
    }

    .papers-section h2 {
        font-size: clamp(3.9rem, 5.5vw, 5rem);
    }

    .papers-list__item {
        grid-template-columns: 3.75rem minmax(0, 1fr);
    }

}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .papers-section__inner {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding:
            clamp(4.5rem, 10vw, 6rem)
            0;
    }

    .papers-section h2 {
        max-width: 8ch;
        font-size: clamp(4.4rem, 11vw, 6.2rem);
    }

    .papers-section__lede {
        max-width: 36rem;
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .papers-section__inner {
        width: calc(100vw - 2rem);
        gap: 3.25rem;
        padding: 4.25rem 0;
    }

    .papers-section h2 {
        font-size: clamp(3.5rem, 15vw, 4.8rem);
        line-height: 0.9;
    }

    .papers-section__lede {
        margin-top: 1.8rem;
        font-size: 0.96rem;
    }

    .papers-section__link {
        margin-top: 1.9rem;
    }

    .papers-list__item {
        grid-template-columns: 2.8rem minmax(0, 1fr);
        min-height: 5rem;
    }

    .papers-list__item strong {
        font-size: clamp(1.35rem, 6vw, 1.75rem);
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 02 HEADLINE TUNE V1.1
============================================================== */

.papers-section h2 {
    max-width: 9.5ch;
    font-size: clamp(4.1rem, 5.5vw, 6.25rem);
}

.papers-section__lede {
    margin-top: 2rem;
}

.papers-section__link {
    margin-top: 2rem;
}

@media (min-width: 1600px) {

    .papers-section h2 {
        max-width: 9.5ch;
        font-size: 6rem;
    }

}

@media (max-width: 900px) {

    .papers-section h2 {
        max-width: 9.5ch;
    }

}

@media (max-width: 640px) {

    .papers-section h2 {
        max-width: 8.5ch;
    }

}


/* ==============================================================
   NOTHING PERSONAL MOBILE HERO COPY CONTAINMENT V5.1

   Keep supporting copy inside hero photograph.
   Remove dead space before request starter.
   Desktop hero remains untouched.
============================================================== */


@media (max-width: 900px) {

    .service-hero__copy {
        position: relative;
        z-index: 7;
        transform: translateY(-4.5rem);
        margin-bottom: -4.5rem;
    }

}


@media (max-width: 780px) {

    .service-hero__copy {
        transform: translateY(-6.25rem);
        margin-bottom: -6.25rem;
    }

}


@media (max-width: 520px) {

    .service-hero__copy {
        transform: translateY(-5.5rem);
        margin-bottom: -5.5rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL MOBILE HERO HEADING LIFT V5.2
   Give Move on. more breathing room above the copy divider.
============================================================== */

@media (max-width: 640px) {

    .service-hero__heading {
        top: -3.25rem;
    }

}

@media (max-width: 420px) {

    .service-hero__heading {
        top: -3rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 03 HOW IT WORKS V1
============================================================== */


.process-section {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--paper-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}


.process-section__inner {
    width: var(--shell);
    margin: 0 auto;
    padding:
        clamp(5.5rem, 8vw, 8.5rem)
        0
        clamp(4rem, 6vw, 6rem);
}


/* --------------------------------------------------------------
   HEADER
-------------------------------------------------------------- */

.process-section__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, 0.6fr);
    align-items: end;
    gap: clamp(3rem, 7vw, 8rem);
    padding-bottom: clamp(4rem, 6vw, 6rem);
}


.process-section__kicker {
    margin: 0 0 1.4rem;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.process-section h2 {
    margin: 0;
    max-width: 9ch;
    color: var(--paper-light);
    font-family: var(--font-display);
    font-size: clamp(4.6rem, 6vw, 6.6rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.88;
}


.process-section h2 span,
.process-section h2 em {
    display: block;
}


.process-section h2 em {
    margin-top: 0.08em;
    color: var(--orange);
    font-style: normal;
}


.process-section__lede {
    max-width: 29rem;
    margin: 0;
    padding-top: 1.35rem;
    color: rgba(255, 255, 255, 0.70);
    border-top: 1px solid rgba(255, 255, 255, 0.26);
    font-size: clamp(0.98rem, 1vw, 1.08rem);
    line-height: 1.7;
}


/* --------------------------------------------------------------
   STEPS
-------------------------------------------------------------- */

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}


.process-step {
    position: relative;
    min-width: 0;
    padding:
        clamp(2rem, 3.5vw, 3.5rem)
        clamp(2rem, 3vw, 3.5rem)
        clamp(3.5rem, 5vw, 5rem);
}


.process-step + .process-step {
    border-left: 1px solid rgba(255, 255, 255, 0.20);
}


.process-step__number {
    margin-bottom: clamp(4rem, 6vw, 6.5rem);
}


.process-step__number span {
    display: block;
    color: var(--orange);
    font-family: var(--font-display);
    font-size: clamp(5.5rem, 7vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 0.8;
}


.process-step__body {
    max-width: 28rem;
}


.process-step__label {
    margin: 0 0 1.1rem;
    color: rgba(255, 255, 255, 0.48);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.process-step h3 {
    margin: 0;
    color: var(--paper-light);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.2vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
}


.process-step__body > p:last-child {
    margin: 1.4rem 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.96rem;
    line-height: 1.68;
}


/* --------------------------------------------------------------
   FOOTER
-------------------------------------------------------------- */

.process-section__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
}


.process-section__footer p {
    max-width: 34rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.44);
    font-family: var(--font-mono);
    font-size: 0.54rem;
    line-height: 1.55;
    letter-spacing: 0.035em;
}


.process-section__footer a {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    flex: 0 0 auto;
    padding-bottom: 0.5rem;
    color: var(--paper-light);
    border-bottom: 2px solid var(--orange);
    font-family: var(--font-mono);
    font-size: 0.60rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 160ms ease,
        gap 160ms ease;
}


.process-section__footer a:hover,
.process-section__footer a:focus-visible {
    color: var(--orange);
    gap: 1.55rem;
}


/* --------------------------------------------------------------
   WIDE / ULTRAWIDE
   Do not allow typography to balloon with viewport width.
-------------------------------------------------------------- */

@media (min-width: 1600px) {

    .process-section h2 {
        font-size: 6.2rem;
    }

    .process-step__number span {
        font-size: 7.5rem;
    }

    .process-step h3 {
        font-size: 2.35rem;
    }

}


@media (min-width: 2200px) {

    .process-section h2 {
        font-size: 6.2rem;
    }

    .process-step__number span {
        font-size: 7.5rem;
    }

}


/* --------------------------------------------------------------
   STANDARD DESKTOP
-------------------------------------------------------------- */

@media (min-width: 901px) and (max-width: 1180px) {

    .process-section__header {
        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(270px, 0.7fr);
        gap: 3.5rem;
    }

    .process-section h2 {
        font-size: clamp(4rem, 5.6vw, 5.2rem);
    }

    .process-step {
        padding:
            2.25rem
            1.8rem
            3.5rem;
    }

    .process-step__number {
        margin-bottom: 3.75rem;
    }

    .process-step__number span {
        font-size: 5.8rem;
    }

    .process-step h3 {
        font-size: 1.9rem;
    }

}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .process-section__inner {
        padding:
            clamp(4.5rem, 10vw, 6rem)
            0
            3.5rem;
    }

    .process-section__header {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 4rem;
    }

    .process-section h2 {
        max-width: 9ch;
        font-size: clamp(4.2rem, 11vw, 6rem);
    }

    .process-section__lede {
        max-width: 38rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-step {
        display: grid;
        grid-template-columns:
            minmax(7rem, 0.3fr)
            minmax(0, 1fr);
        gap: 2rem;
        padding: 3rem 0;
    }

    .process-step + .process-step {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.20);
    }

    .process-step__number {
        margin: 0;
    }

    .process-step__number span {
        font-size: clamp(5rem, 13vw, 6.5rem);
    }

    .process-step__body {
        align-self: end;
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .process-section__inner {
        width: calc(100vw - 2rem);
        padding:
            4.25rem
            0
            3rem;
    }

    .process-section__header {
        gap: 2rem;
        padding-bottom: 3.5rem;
    }

    .process-section h2 {
        font-size: clamp(3.45rem, 14vw, 4.7rem);
        line-height: 0.9;
    }

    .process-section__lede {
        font-size: 0.94rem;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 2.75rem 0;
    }

    .process-step__number span {
        font-size: 5rem;
    }

    .process-step h3 {
        max-width: 12ch;
        font-size: clamp(1.8rem, 8vw, 2.35rem);
    }

    .process-step__body > p:last-child {
        font-size: 0.94rem;
    }

    .process-section__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.75rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 03 PAPERS DOOR PROOF V2

   One assignment moving through three states.
   No cards. No equal columns. No generic three-step layout.
============================================================== */


.assignment-section {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--paper-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}


.assignment-section__inner {
    width: var(--shell);
    margin: 0 auto;
    padding:
        clamp(5rem, 7vw, 7.5rem)
        0
        clamp(3.5rem, 5vw, 5rem);
}


/* --------------------------------------------------------------
   SECTION INTRO
-------------------------------------------------------------- */

.assignment-section__header {
    position: relative;
    padding-bottom: clamp(4rem, 6vw, 6rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}


.assignment-section__heading {
    max-width: 54rem;
}


.assignment-section__kicker {
    margin: 0 0 1.4rem;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.assignment-section h2 {
    margin: 0;
    color: var(--paper-light);
    font-family: var(--font-display);
    font-size: clamp(4.8rem, 7vw, 7.6rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.86;
}


.assignment-section h2 span,
.assignment-section h2 em {
    display: block;
}


.assignment-section h2 em {
    margin-top: 0.08em;
    color: var(--orange);
    font-style: normal;
}


.assignment-section__intro {
    width: min(29rem, 38%);
    margin:
        clamp(-4rem, -3vw, -2rem)
        0
        0
        auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.30);
}


.assignment-section__intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(0.98rem, 1vw, 1.08rem);
    line-height: 1.7;
}


/* --------------------------------------------------------------
   ROUTE
-------------------------------------------------------------- */

.assignment-route {
    position: relative;
}


.assignment-route__stage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: end;
    min-height: clamp(20rem, 27vw, 29rem);
    padding:
        clamp(3rem, 5vw, 5rem)
        0;
}


.assignment-route__stage + .assignment-route__connector + .assignment-route__stage {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}


.assignment-route__status {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--font-mono);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.assignment-route h3 {
    margin: 0;
    color: var(--paper-light);
    font-family: var(--font-display);
    font-size: clamp(7rem, 13vw, 13rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.72;
}


.assignment-route__copy {
    max-width: 27rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}


.assignment-route__copy strong {
    display: block;
    color: var(--paper-light);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
}


.assignment-route__copy p {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.96rem;
    line-height: 1.68;
}


/* --------------------------------------------------------------
   PAPERS — starts left
-------------------------------------------------------------- */

.assignment-route__stage--papers .assignment-route__status {
    grid-column: 1 / 4;
    grid-row: 1;
    align-self: start;
}


.assignment-route__stage--papers h3 {
    grid-column: 1 / 8;
    grid-row: 1;
}


.assignment-route__stage--papers .assignment-route__copy {
    grid-column: 9 / 13;
    grid-row: 1;
}


/* --------------------------------------------------------------
   DOOR — assignment moves inward
-------------------------------------------------------------- */

.assignment-route__stage--door .assignment-route__status {
    grid-column: 5 / 8;
    grid-row: 1;
    align-self: start;
}


.assignment-route__stage--door h3 {
    grid-column: 5 / 11;
    grid-row: 1;
}


.assignment-route__stage--door .assignment-route__copy {
    grid-column: 1 / 5;
    grid-row: 1;
}


/* --------------------------------------------------------------
   PROOF — lands right
-------------------------------------------------------------- */

.assignment-route__stage--proof .assignment-route__status {
    grid-column: 7 / 10;
    grid-row: 1;
    align-self: start;
}


.assignment-route__stage--proof h3 {
    grid-column: 7 / 13;
    grid-row: 1;
    text-align: right;
    color: var(--orange);
}


.assignment-route__stage--proof .assignment-route__copy {
    grid-column: 2 / 6;
    grid-row: 1;
}


/* --------------------------------------------------------------
   CONNECTORS
-------------------------------------------------------------- */

.assignment-route__connector {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    height: 2.5rem;
    color: var(--orange);
}


.assignment-route__connector::before,
.assignment-route__connector::after {
    content: '';
    height: 1px;
    background: rgba(242, 78, 38, 0.55);
}


.assignment-route__connector span {
    display: block;
    font-family: var(--font-mono);
    font-size: 1.25rem;
    line-height: 1;
}


/* --------------------------------------------------------------
   FOOTER
-------------------------------------------------------------- */

.assignment-section__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}


.assignment-section__footer p {
    max-width: 34rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--font-mono);
    font-size: 0.54rem;
    line-height: 1.55;
    letter-spacing: 0.035em;
}


.assignment-section__footer a {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    flex: 0 0 auto;
    padding-bottom: 0.5rem;
    color: var(--paper-light);
    border-bottom: 2px solid var(--orange);
    font-family: var(--font-mono);
    font-size: 0.60rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 160ms ease,
        gap 160ms ease;
}


.assignment-section__footer a:hover,
.assignment-section__footer a:focus-visible {
    color: var(--orange);
    gap: 1.55rem;
}


/* --------------------------------------------------------------
   WIDESCREEN
   Freeze the giant words before ultrawide turns them stupid.
-------------------------------------------------------------- */

@media (min-width: 1600px) {

    .assignment-section h2 {
        font-size: 6.8rem;
    }

    .assignment-route h3 {
        font-size: 11.5rem;
    }

}


@media (min-width: 2200px) {

    .assignment-section h2 {
        font-size: 6.8rem;
    }

    .assignment-route h3 {
        font-size: 11.5rem;
    }

    .assignment-route__stage {
        min-height: 27rem;
    }

}


/* --------------------------------------------------------------
   STANDARD DESKTOP
-------------------------------------------------------------- */

@media (min-width: 901px) and (max-width: 1180px) {

    .assignment-section h2 {
        font-size: clamp(4.5rem, 6vw, 5.7rem);
    }

    .assignment-route h3 {
        font-size: clamp(6.5rem, 11vw, 9rem);
    }

    .assignment-route__copy {
        max-width: 22rem;
    }

    .assignment-route__stage--papers .assignment-route__copy {
        grid-column: 8 / 13;
    }

    .assignment-route__stage--door .assignment-route__copy {
        grid-column: 1 / 5;
    }

    .assignment-route__stage--proof .assignment-route__copy {
        grid-column: 1 / 6;
    }

}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .assignment-section__inner {
        padding:
            clamp(4.5rem, 10vw, 6rem)
            0
            3.5rem;
    }

    .assignment-section h2 {
        font-size: clamp(4.3rem, 11vw, 6rem);
    }

    .assignment-section__intro {
        width: min(34rem, 75%);
        margin: 2.5rem 0 0 auto;
    }

    .assignment-route__stage {
        display: grid;
        grid-template-columns: repeat(8, minmax(0, 1fr));
        min-height: 20rem;
        padding: 3.5rem 0;
    }

    .assignment-route h3 {
        font-size: clamp(6rem, 17vw, 9rem);
    }

    .assignment-route__stage--papers .assignment-route__status,
    .assignment-route__stage--door .assignment-route__status,
    .assignment-route__stage--proof .assignment-route__status {
        grid-column: 1 / 4;
        grid-row: 1;
    }

    .assignment-route__stage--papers h3 {
        grid-column: 1 / 7;
        grid-row: 1;
    }

    .assignment-route__stage--papers .assignment-route__copy {
        grid-column: 5 / 9;
        grid-row: 2;
        margin-top: 2.5rem;
    }

    .assignment-route__stage--door h3 {
        grid-column: 3 / 8;
        grid-row: 1;
    }

    .assignment-route__stage--door .assignment-route__copy {
        grid-column: 1 / 5;
        grid-row: 2;
        margin-top: 2.5rem;
    }

    .assignment-route__stage--proof h3 {
        grid-column: 3 / 9;
        grid-row: 1;
    }

    .assignment-route__stage--proof .assignment-route__copy {
        grid-column: 1 / 5;
        grid-row: 2;
        margin-top: 2.5rem;
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .assignment-section__inner {
        width: calc(100vw - 2rem);
        padding:
            4.25rem
            0
            3rem;
    }

    .assignment-section__header {
        padding-bottom: 3.5rem;
    }

    .assignment-section h2 {
        font-size: clamp(3.6rem, 15vw, 4.9rem);
        line-height: 0.9;
    }

    .assignment-section__intro {
        width: 100%;
        margin-top: 2rem;
    }

    .assignment-route__stage {
        display: block;
        min-height: 0;
        padding: 3.5rem 0;
    }

    .assignment-route__status {
        margin-bottom: 1.6rem;
    }

    .assignment-route h3 {
        font-size: clamp(5.4rem, 24vw, 7rem);
        line-height: 0.78;
        text-align: left;
    }

    .assignment-route__stage--proof h3 {
        text-align: left;
    }

    .assignment-route__copy {
        max-width: 100%;
        margin-top: 2.5rem;
    }

    .assignment-route__connector {
        height: 2rem;
    }

    .assignment-section__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.75rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 03 POLISH V1.1

   1. Give wrapped headline lines breathing room.
   2. Add restrained photographic atmosphere upper-right.
============================================================== */


/* --------------------------------------------------------------
   HEADLINE SPACING
-------------------------------------------------------------- */

.process-section h2 {
    line-height: 0.94;
}

.process-section h2 span {
    line-height: 0.94;
}

.process-section h2 span + span {
    margin-top: 0.05em;
}

.process-section h2 em {
    margin-top: 0.12em;
    line-height: 1;
}


/* --------------------------------------------------------------
   HEADER IMAGE ATMOSPHERE
-------------------------------------------------------------- */

.process-section__header {
    position: relative;
    isolation: isolate;
}

.process-section__header::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -2rem;
    right: 0;
    width: min(44%, 33rem);
    height: clamp(11rem, 16vw, 15rem);
    background:
        linear-gradient(
            90deg,
            rgba(19, 19, 17, 1) 0%,
            rgba(19, 19, 17, 0.72) 22%,
            rgba(19, 19, 17, 0.18) 72%,
            rgba(19, 19, 17, 0.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(19, 19, 17, 0.10) 0%,
            rgba(19, 19, 17, 0.28) 58%,
            rgba(19, 19, 17, 1) 100%
        ),
        url('../images/process-server-hero.webp');
    background-size: cover;
    background-position: 68% 38%;
    background-repeat: no-repeat;
    opacity: 0.34;
    filter: grayscale(0.35) contrast(1.08);
    pointer-events: none;
}

.process-section__header > * {
    position: relative;
    z-index: 1;
}


/* --------------------------------------------------------------
   KEEP THE LEDE READABLE OVER THE IMAGE
-------------------------------------------------------------- */

.process-section__lede {
    position: relative;
    z-index: 2;
}


/* --------------------------------------------------------------
   WIDESCREEN
-------------------------------------------------------------- */

@media (min-width: 1600px) {

    .process-section__header::before {
        width: 34rem;
        height: 15rem;
    }

}


/* --------------------------------------------------------------
   TABLET / MOBILE
   Keep the photograph much quieter.
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .process-section__header::before {
        top: 0;
        width: 56%;
        height: 12rem;
        opacity: 0.18;
    }

}

@media (max-width: 640px) {

    .process-section h2 {
        line-height: 0.96;
    }

    .process-section h2 em {
        line-height: 1.02;
    }

    .process-section__header::before {
        width: 72%;
        height: 10rem;
        opacity: 0.12;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 03 BACKGROUND V1.2

   New serving photograph becomes atmospheric background.
   Remove previous pasted-image treatment.
   Increase spacing in YOU GET PROOF.
============================================================== */


/* --------------------------------------------------------------
   REMOVE OLD IMAGE BOX
-------------------------------------------------------------- */

.process-section__header::before {
    content: none;
    display: none;
}


/* --------------------------------------------------------------
   FULL SECTION BACKGROUND IMAGE
-------------------------------------------------------------- */

.process-section::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    height: clamp(26rem, 42vw, 38rem);
    background:
        linear-gradient(
            90deg,
            rgba(19, 19, 17, 0.97) 0%,
            rgba(19, 19, 17, 0.91) 28%,
            rgba(19, 19, 17, 0.65) 52%,
            rgba(19, 19, 17, 0.42) 72%,
            rgba(19, 19, 17, 0.58) 100%
        ),
        linear-gradient(
            180deg,
            rgba(19, 19, 17, 0.15) 0%,
            rgba(19, 19, 17, 0.28) 46%,
            rgba(19, 19, 17, 0.84) 78%,
            rgba(19, 19, 17, 1) 100%
        ),
        url('../images/process-server-section-03.webp');
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
    pointer-events: none;
}


.process-section__inner {
    position: relative;
    z-index: 1;
}


/* --------------------------------------------------------------
   HEADLINE BREATHING ROOM
-------------------------------------------------------------- */

.process-section h2 {
    line-height: 0.98;
}


.process-section h2 span {
    line-height: 0.98;
}


.process-section h2 span + span {
    margin-top: 0.09em;
}


.process-section h2 em {
    margin-top: 0.20em;
    line-height: 1.06;
}


/* --------------------------------------------------------------
   KEEP TOP-RIGHT COPY LEGIBLE
-------------------------------------------------------------- */

.process-section__lede {
    position: relative;
    padding:
        1.35rem
        0
        0;
    text-shadow:
        0 2px 16px rgba(0, 0, 0, 0.72);
}


/* --------------------------------------------------------------
   STEPS STAY SOLID / READABLE
-------------------------------------------------------------- */

.process-steps {
    position: relative;
    background:
        rgba(19, 19, 17, 0.94);
}


/* --------------------------------------------------------------
   WIDE SCREENS
-------------------------------------------------------------- */

@media (min-width: 1600px) {

    .process-section::before {
        height: 36rem;
        background-position: center 38%;
    }

}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .process-section::before {
        height: 34rem;
        background-position: 58% center;
    }

    .process-section h2 {
        line-height: 1;
    }

    .process-section h2 em {
        margin-top: 0.18em;
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .process-section::before {
        height: 31rem;
        background-position: 63% center;
    }

    .process-section h2 {
        line-height: 1.01;
    }

    .process-section h2 em {
        margin-top: 0.22em;
        line-height: 1.08;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 03 IMAGE VISIBILITY V1.3
   Slightly reveal more of the serving photograph.
============================================================== */

.process-section::before {
    background:
        linear-gradient(
            90deg,
            rgba(19, 19, 17, 0.90) 0%,
            rgba(19, 19, 17, 0.82) 28%,
            rgba(19, 19, 17, 0.52) 52%,
            rgba(19, 19, 17, 0.30) 72%,
            rgba(19, 19, 17, 0.46) 100%
        ),
        linear-gradient(
            180deg,
            rgba(19, 19, 17, 0.08) 0%,
            rgba(19, 19, 17, 0.20) 46%,
            rgba(19, 19, 17, 0.76) 78%,
            rgba(19, 19, 17, 0.96) 100%
        ),
        url('../images/process-server-section-03.webp');
    background-size: cover;
    background-position: center 42%;
    background-repeat: no-repeat;
}


/* ==============================================================
   NOTHING PERSONAL SECTION 03 WIDE NORMALIZATION V1.4

   Normal desktop remains untouched.
   Freeze headline size on wide displays.
   Show more of the serving photograph instead of torso crop.
============================================================== */


@media (min-width: 1400px) {

    .process-section h2 {
        font-size: 4.75rem;
        line-height: 1;
    }

    .process-section h2 span {
        line-height: 1;
    }

    .process-section h2 em {
        margin-top: 0.20em;
        line-height: 1.06;
    }

    .process-section::before {
        height: 36rem;

        background-size:
            100% 100%,
            100% 100%,
            auto 94%;

        background-position:
            center,
            center,
            57% center;

        background-repeat:
            no-repeat,
            no-repeat,
            no-repeat;
    }

}


/* --------------------------------------------------------------
   ULTRAWIDE
   Keep typography frozen and preserve the full scene.
-------------------------------------------------------------- */

@media (min-width: 2200px) {

    .process-section h2 {
        font-size: 4.75rem;
    }

    .process-section::before {
        height: 38rem;

        background-size:
            100% 100%,
            100% 100%,
            auto 92%;

        background-position:
            center,
            center,
            58% center;
    }

}


/* --------------------------------------------------------------
   4K / EXTREME WIDE
-------------------------------------------------------------- */

@media (min-width: 3000px) {

    .process-section h2 {
        font-size: 4.75rem;
    }

    .process-section::before {
        height: 40rem;

        background-size:
            100% 100%,
            100% 100%,
            auto 90%;

        background-position:
            center,
            center,
            58% center;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 03 FULL BLEED WIDE V1.5

   Photo returns to true edge-to-edge treatment.
   Wide headline sizing remains normalized.
   Top-biased crop keeps heads + document handoff visible.
============================================================== */


@media (min-width: 1400px) {

    .process-section::before {
        width: 100%;
        height: clamp(38rem, 40vw, 48rem);

        background-size:
            100% 100%,
            100% 100%,
            cover;

        background-position:
            center,
            center,
            center top;

        background-repeat:
            no-repeat,
            no-repeat,
            no-repeat;
    }

}


/* --------------------------------------------------------------
   ULTRAWIDE
-------------------------------------------------------------- */

@media (min-width: 2200px) {

    .process-section::before {
        height: 48rem;

        background-size:
            100% 100%,
            100% 100%,
            cover;

        background-position:
            center,
            center,
            center top;
    }

}


/* --------------------------------------------------------------
   EXTREME WIDE / 4K
-------------------------------------------------------------- */

@media (min-width: 3000px) {

    .process-section::before {
        height: 50rem;

        background-size:
            100% 100%,
            100% 100%,
            cover;

        background-position:
            center,
            center,
            center top;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 04 COVERAGE V1
============================================================== */


.coverage-section {
    position: relative;
    overflow: hidden;
    background: var(--paper-light);
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
}


.coverage-section__inner {
    width: var(--shell);
    margin: 0 auto;
    padding:
        clamp(5.5rem, 8vw, 8.5rem)
        0
        clamp(4rem, 6vw, 6rem);
}


/* --------------------------------------------------------------
   HEADER
-------------------------------------------------------------- */

.coverage-section__header {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, 0.55fr);
    align-items: end;
    gap: clamp(3rem, 7vw, 8rem);
    padding-bottom: clamp(4rem, 6vw, 5.5rem);
}


.coverage-section__kicker {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.coverage-section h2 {
    margin: 0;
    max-width: 8ch;
    font-family: var(--font-display);
    font-size: clamp(4.8rem, 6.4vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.88;
}


.coverage-section h2 span,
.coverage-section h2 em {
    display: block;
}


.coverage-section h2 em {
    margin-top: 0.08em;
    color: var(--orange);
    font-style: normal;
}


.coverage-section__lede {
    margin: 0;
    padding-top: 1.3rem;
    color: var(--ink-soft);
    border-top: 1px solid var(--line-strong);
    font-size: clamp(1rem, 1.05vw, 1.1rem);
    line-height: 1.7;
}


/* --------------------------------------------------------------
   LARGE TERRITORY DISPLAY
-------------------------------------------------------------- */

.coverage-display {
    position: relative;
    padding:
        clamp(2.2rem, 3vw, 3.5rem)
        0
        clamp(3rem, 5vw, 5rem);
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
}


.coverage-display__label {
    margin: 0 0 1rem;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.coverage-display__area {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(5rem, 10vw, 11rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.82;
    text-transform: uppercase;
}


.coverage-display::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    width: clamp(5rem, 12vw, 12rem);
    height: 5px;
    background: var(--orange);
}


/* --------------------------------------------------------------
   COVERAGE BANDS
-------------------------------------------------------------- */

.coverage-bands {
    border-bottom: 1px solid var(--ink);
}


.coverage-band {
    display: grid;
    grid-template-columns:
        5rem
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    min-height: clamp(7rem, 8vw, 9rem);
    border-bottom: 1px solid var(--line-strong);
}


.coverage-band:last-child {
    border-bottom: 0;
}


.coverage-band__index {
    color: var(--orange);
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 3vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
}


.coverage-band__body {
    min-width: 0;
}


.coverage-band__body p {
    margin: 0 0 0.55rem;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.coverage-band__body strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.04;
}


.coverage-band--contact {
    background:
        linear-gradient(
            90deg,
            rgba(242, 78, 38, 0.07) 0%,
            rgba(242, 78, 38, 0) 58%
        );
}


.coverage-band--contact a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.5rem;
    color: var(--ink);
    border-bottom: 2px solid var(--orange);
    font-family: var(--font-mono);
    font-size: 0.60rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 160ms ease,
        gap 160ms ease;
}


.coverage-band--contact a:hover,
.coverage-band--contact a:focus-visible {
    color: var(--orange);
    gap: 1.35rem;
}


.coverage-section__note {
    margin: 1.75rem 0 0;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.54rem;
    line-height: 1.55;
    letter-spacing: 0.035em;
}


/* --------------------------------------------------------------
   WIDE / ULTRAWIDE
   Freeze typography before it gets ridiculous.
-------------------------------------------------------------- */

@media (min-width: 1600px) {

    .coverage-section h2 {
        font-size: 6.4rem;
    }

    .coverage-display__area {
        font-size: 9.5rem;
    }

    .coverage-band__body strong {
        font-size: 2.35rem;
    }

}


@media (min-width: 2200px) {

    .coverage-section h2 {
        font-size: 6.4rem;
    }

    .coverage-display__area {
        font-size: 9.5rem;
    }

}


/* --------------------------------------------------------------
   STANDARD DESKTOP
-------------------------------------------------------------- */

@media (min-width: 901px) and (max-width: 1180px) {

    .coverage-section__header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(270px, 0.65fr);
        gap: 3.5rem;
    }

    .coverage-section h2 {
        font-size: clamp(4.2rem, 5.8vw, 5.4rem);
    }

    .coverage-display__area {
        font-size: clamp(4.8rem, 9vw, 7.5rem);
    }

    .coverage-band {
        grid-template-columns:
            4rem
            minmax(0, 1fr)
            auto;
    }

}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .coverage-section__inner {
        padding:
            clamp(4.5rem, 10vw, 6rem)
            0
            3.5rem;
    }

    .coverage-section__header {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .coverage-section__kicker {
        grid-column: auto;
    }

    .coverage-section h2 {
        max-width: 8ch;
        font-size: clamp(4.2rem, 11vw, 6rem);
    }

    .coverage-section__lede {
        max-width: 38rem;
    }

    .coverage-display__area {
        font-size: clamp(4.6rem, 14vw, 7rem);
    }

    .coverage-band {
        grid-template-columns:
            3.5rem
            minmax(0, 1fr);
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .coverage-band--contact a {
        grid-column: 2;
        justify-self: start;
        margin-top: 0.75rem;
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .coverage-section__inner {
        width: calc(100vw - 2rem);
        padding:
            4.25rem
            0
            3rem;
    }

    .coverage-section__header {
        gap: 2rem;
        padding-bottom: 3.5rem;
    }

    .coverage-section h2 {
        font-size: clamp(3.5rem, 15vw, 4.8rem);
        line-height: 0.9;
    }

    .coverage-display {
        padding:
            2rem
            0
            2.75rem;
    }

    .coverage-display__area {
        font-size: clamp(3.8rem, 17vw, 5.4rem);
        line-height: 0.86;
        overflow-wrap: anywhere;
    }

    .coverage-band {
        grid-template-columns:
            2.5rem
            minmax(0, 1fr);
        gap: 1rem;
        padding: 1.8rem 0;
    }

    .coverage-band__index {
        font-size: 2rem;
    }

    .coverage-band__body strong {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .coverage-band--contact a {
        grid-column: 2;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 04 COVERAGE FIELD V1.1

   Turn the giant placeholder into a territory display.
   Preserve existing coverage bands.
============================================================== */


/* --------------------------------------------------------------
   TERRITORY FIELD
-------------------------------------------------------------- */

.coverage-display {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(17rem, 25vw, 24rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding:
        clamp(2.5rem, 4vw, 4rem)
        clamp(2rem, 4vw, 4.5rem);
    background: var(--ink);
    border: 0;
    color: var(--paper-light);
}


/* subtle geographic field */

.coverage-display::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        radial-gradient(
            circle at 76% 40%,
            rgba(242, 78, 38, 0.95) 0,
            rgba(242, 78, 38, 0.95) 4px,
            rgba(242, 78, 38, 0.20) 5px,
            rgba(242, 78, 38, 0.20) 12px,
            transparent 13px
        ),
        radial-gradient(
            circle at 61% 66%,
            rgba(255, 255, 255, 0.28) 0,
            rgba(255, 255, 255, 0.28) 3px,
            transparent 4px
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            125deg,
            transparent 0%,
            transparent 51%,
            rgba(242, 78, 38, 0.18) 51.2%,
            rgba(242, 78, 38, 0.18) 51.7%,
            transparent 51.9%,
            transparent 100%
        );
    background-size:
        auto,
        auto,
        56px 56px,
        56px 56px,
        100% 100%;
    pointer-events: none;
}


/* short orange route indicator */

.coverage-display::after {
    content: '';
    position: absolute;
    right: clamp(2rem, 4vw, 4.5rem);
    bottom: 0;
    width: clamp(6rem, 13vw, 12rem);
    height: 5px;
    background: var(--orange);
}


.coverage-display__label {
    position: relative;
    z-index: 2;
    margin: 0 0 1.15rem;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.coverage-display__area {
    position: relative;
    z-index: 2;
    max-width: 11ch;
    margin: 0;
    color: var(--paper-light);
    font-family: var(--font-display);
    font-size: clamp(3.9rem, 6.2vw, 6.8rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.88;
    text-transform: uppercase;
}


/* --------------------------------------------------------------
   GIVE THE BANDS A LITTLE AIR AFTER THE DARK FIELD
-------------------------------------------------------------- */

.coverage-bands {
    border-top: 0;
}


.coverage-band {
    padding:
        0
        clamp(0rem, 1vw, 1rem);
}


.coverage-band--contact {
    background:
        linear-gradient(
            90deg,
            rgba(242, 78, 38, 0.09) 0%,
            rgba(242, 78, 38, 0.025) 45%,
            rgba(242, 78, 38, 0) 75%
        );
}


/* --------------------------------------------------------------
   WIDE / ULTRAWIDE
-------------------------------------------------------------- */

@media (min-width: 1600px) {

    .coverage-display {
        min-height: 22rem;
    }

    .coverage-display__area {
        font-size: 6.25rem;
    }

}


@media (min-width: 2200px) {

    .coverage-display {
        min-height: 23rem;
    }

    .coverage-display__area {
        font-size: 6.25rem;
    }

}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .coverage-display {
        min-height: 18rem;
        padding:
            2.5rem
            2rem;
    }

    .coverage-display__area {
        max-width: 10ch;
        font-size: clamp(3.8rem, 11vw, 5.6rem);
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .coverage-display {
        min-height: 16rem;
        padding:
            2.25rem
            1.5rem;
    }

    .coverage-display::before {
        background-size:
            auto,
            auto,
            42px 42px,
            42px 42px,
            100% 100%;
    }

    .coverage-display::after {
        right: 1.5rem;
    }

    .coverage-display__area {
        max-width: 9ch;
        font-size: clamp(3.15rem, 14vw, 4.5rem);
        overflow-wrap: anywhere;
    }

    .coverage-band {
        padding-right: 0;
        padding-left: 0;
    }

}

/* ==============================================================
   NOTHING PERSONAL SECTION 04 COVERAGE MAP V1.2
   Street-map style coverage field with anchored building marker
============================================================== */

.coverage-display {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: clamp(17rem, 24vw, 23rem);
    padding: clamp(2.25rem, 4vw, 3.25rem);
    background: #101010;
}

/* map field */
.coverage-display::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(126deg, transparent 0 49.2%, rgba(242, 86, 38, 0.22) 49.35%, rgba(242, 86, 38, 0.22) 49.9%, transparent 50.05%),
        linear-gradient(90deg, transparent 0 72%, rgba(255, 255, 255, 0.12) 72.15%, rgba(255, 255, 255, 0.12) 72.4%, transparent 72.55%),
        linear-gradient(0deg, transparent 0 63%, rgba(255, 255, 255, 0.10) 63.15%, rgba(255, 255, 255, 0.10) 63.4%, transparent 63.55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
        linear-gradient(90deg, transparent 0 82%, rgba(242, 86, 38, 0.95) 82%, rgba(242, 86, 38, 0.95) 95%, transparent 95%);
    background-size:
        56px 56px,
        56px 56px,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%,
        100% 100%;
    background-position:
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        0 0,
        right bottom;
    background-repeat:
        repeat,
        repeat,
        no-repeat,
        no-repeat,
        no-repeat,
        no-repeat,
        no-repeat;
}

/* anchored building + red dot */
.coverage-display::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 76%;
    top: 41%;
    width: 74px;
    height: 92px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background:
        radial-gradient(circle, rgba(242, 86, 38, 1) 0 5px, rgba(242, 86, 38, 0.32) 6px 14px, transparent 15px) center 18px / 30px 30px no-repeat,
        linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)) center 51px / 24px 14px no-repeat,
        linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)) center 66px / 38px 22px no-repeat,
        linear-gradient(rgba(255,255,255,0.16), rgba(255,255,255,0.16)) center 66px / 44px 28px no-repeat;
    filter:
        drop-shadow(0 0 0 1px rgba(0,0,0,0.45))
        drop-shadow(0 10px 16px rgba(0,0,0,0.25));
}

/* keep text above map */
.coverage-display__label,
.coverage-display__area {
    position: relative;
    z-index: 2;
}

.coverage-display__label {
    margin: 0 0 1rem;
}

.coverage-display__area {
    max-width: 8ch;
    margin: 0;
    font-size: clamp(3.7rem, 6vw, 6.2rem);
    line-height: 0.88;
}

/* slight polish for bands under the map */
.coverage-band--contact {
    background: linear-gradient(
        90deg,
        rgba(242, 86, 38, 0.08) 0%,
        rgba(242, 86, 38, 0.03) 45%,
        rgba(242, 86, 38, 0) 78%
    );
}

/* desktop / wide */
@media (min-width: 1400px) {

    .coverage-display {
        min-height: 24rem;
    }

    .coverage-display__area {
        font-size: 5.8rem;
    }
}

/* ultrawide cap */
@media (min-width: 1900px) {

    .coverage-display {
        min-height: 24rem;
    }

    .coverage-display__area {
        font-size: 5.8rem;
    }

    .coverage-display::after {
        left: 76%;
        top: 41%;
    }
}

/* tablet */
@media (max-width: 900px) {

    .coverage-display {
        min-height: 16rem;
        padding: 2rem 1.75rem;
    }

    .coverage-display__area {
        font-size: clamp(3.2rem, 10vw, 4.8rem);
        max-width: 7ch;
    }

    .coverage-display::after {
        left: 75%;
        top: 42%;
        width: 64px;
        height: 82px;
    }
}

/* mobile */
@media (max-width: 640px) {

    .coverage-display {
        min-height: 14.5rem;
        padding: 1.75rem 1.25rem;
    }

    .coverage-display::before {
        background-size:
            38px 38px,
            38px 38px,
            100% 100%,
            100% 100%,
            100% 100%,
            100% 100%,
            100% 100%;
    }

    .coverage-display__area {
        font-size: clamp(2.7rem, 12vw, 3.9rem);
        max-width: 6ch;
    }

    .coverage-display::after {
        left: 74%;
        top: 43%;
        width: 54px;
        height: 72px;
    }
}


/* ==============================================================
   NOTHING PERSONAL — SECTION 04 COVERAGE MAP V1.4
   More streets + intersections so it reads like a map
============================================================== */

.coverage-display {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.coverage-display::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        /* subtle base fade */
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.18)
        ),

        /* parcel / city grid */
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.06) 0 1px,
            transparent 1px 44px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 0 1px,
            transparent 1px 56px
        ),

        /* ----------------------------------------------
           STREETS
        ---------------------------------------------- */

        /* top horizontal street */
        linear-gradient(
            180deg,
            transparent 0 20%,
            rgba(76, 76, 79, 0.95) 20% 28%,
            transparent 28% 100%
        ),

        /* middle horizontal street */
        linear-gradient(
            180deg,
            transparent 0 49%,
            rgba(76, 76, 79, 0.98) 49% 58%,
            transparent 58% 100%
        ),

        /* left vertical street */
        linear-gradient(
            90deg,
            transparent 0 24%,
            rgba(70, 70, 74, 0.92) 24% 31.5%,
            transparent 31.5% 100%
        ),

        /* main target vertical street */
        linear-gradient(
            90deg,
            transparent 0 71.5%,
            rgba(82, 82, 86, 0.98) 71.5% 83.5%,
            transparent 83.5% 100%
        ),

        /* far-right vertical street */
        linear-gradient(
            90deg,
            transparent 0 90%,
            rgba(68, 68, 72, 0.92) 90% 96.5%,
            transparent 96.5% 100%
        ),

        /* ----------------------------------------------
           STREET CENTER LINES
        ---------------------------------------------- */

        linear-gradient(
            180deg,
            transparent 0 23.8%,
            rgba(255, 255, 255, 0.18) 23.8% 24.4%,
            transparent 24.4% 100%
        ),

        linear-gradient(
            180deg,
            transparent 0 53.2%,
            rgba(255, 255, 255, 0.18) 53.2% 53.8%,
            transparent 53.8% 100%
        ),

        linear-gradient(
            90deg,
            transparent 0 27.45%,
            rgba(255, 255, 255, 0.16) 27.45% 27.85%,
            transparent 27.85% 100%
        ),

        linear-gradient(
            90deg,
            transparent 0 77.2%,
            rgba(255, 255, 255, 0.2) 77.2% 77.7%,
            transparent 77.7% 100%
        ),

        linear-gradient(
            90deg,
            transparent 0 93.15%,
            rgba(255, 255, 255, 0.16) 93.15% 93.55%,
            transparent 93.55% 100%
        ),

        /* ----------------------------------------------
           TARGET PROPERTY LOT
        ---------------------------------------------- */

        /* lot width */
        linear-gradient(
            90deg,
            transparent 0 73.6%,
            rgba(255, 255, 255, 0.16) 73.6% 80.8%,
            transparent 80.8% 100%
        ),

        /* lot height */
        linear-gradient(
            180deg,
            transparent 0 28.2%,
            rgba(255, 255, 255, 0.16) 28.2% 41.6%,
            transparent 41.6% 100%
        ),

        /* subtle target glow */
        radial-gradient(
            circle at 77.2% 32.8%,
            rgba(242, 86, 38, 0.16) 0 38px,
            transparent 39px
        ),

        /* subtle route accent */
        linear-gradient(
            128deg,
            transparent 0 60%,
            rgba(242, 86, 38, 0.18) 60.2% 60.8%,
            transparent 61% 100%
        );

    background-color: #0f1011;
}

.coverage-display::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 77.2%;
    top: 32.8%;
    width: 96px;
    height: 112px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background:
        /* red location dot */
        radial-gradient(
            circle,
            #f25626 0 5px,
            rgba(242, 86, 38, 0.38) 6px 14px,
            transparent 15px
        ) center 4px / 30px 30px no-repeat,

        /* roof left */
        linear-gradient(
            135deg,
            transparent 48%,
            #f1eee8 49%
        ) calc(50% - 14px) 36px / 18px 16px no-repeat,

        /* roof right */
        linear-gradient(
            225deg,
            transparent 48%,
            #f1eee8 49%
        ) calc(50% + 14px) 36px / 18px 16px no-repeat,

        /* house body */
        linear-gradient(
            #f1eee8,
            #f1eee8
        ) center 50px / 36px 24px no-repeat,

        /* door */
        linear-gradient(
            #181818,
            #181818
        ) center 59px / 8px 14px no-repeat,

        /* windows */
        linear-gradient(
            #181818,
            #181818
        ) calc(50% - 10px) 50px / 6px 6px no-repeat,
        linear-gradient(
            #181818,
            #181818
        ) calc(50% + 10px) 50px / 6px 6px no-repeat,

        /* driveway */
        linear-gradient(
            rgba(241, 238, 232, 0.82),
            rgba(241, 238, 232, 0.82)
        ) center 80px / 10px 24px no-repeat;
    filter:
        drop-shadow(0 0 0 1px rgba(0, 0, 0, 0.45))
        drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

/* --------------------------------------------------------------
   WIDE
-------------------------------------------------------------- */
@media (min-width: 1500px) {
    .coverage-display::after {
        left: 77.2%;
        top: 32.8%;
    }
}

/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */
@media (max-width: 900px) {
    .coverage-display::before {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.08),
                rgba(0, 0, 0, 0.18)
            ),

            repeating-linear-gradient(
                0deg,
                rgba(255, 255, 255, 0.06) 0 1px,
                transparent 1px 36px
            ),
            repeating-linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.06) 0 1px,
                transparent 1px 42px
            ),

            linear-gradient(
                180deg,
                transparent 0 22%,
                rgba(76, 76, 79, 0.95) 22% 30%,
                transparent 30% 100%
            ),
            linear-gradient(
                180deg,
                transparent 0 50%,
                rgba(76, 76, 79, 0.98) 50% 60%,
                transparent 60% 100%
            ),

            linear-gradient(
                90deg,
                transparent 0 20%,
                rgba(70, 70, 74, 0.92) 20% 28%,
                transparent 28% 100%
            ),
            linear-gradient(
                90deg,
                transparent 0 66.5%,
                rgba(82, 82, 86, 0.98) 66.5% 81.5%,
                transparent 81.5% 100%
            ),
            linear-gradient(
                90deg,
                transparent 0 88%,
                rgba(68, 68, 72, 0.92) 88% 95.5%,
                transparent 95.5% 100%
            ),

            linear-gradient(
                180deg,
                transparent 0 25.7%,
                rgba(255, 255, 255, 0.18) 25.7% 26.3%,
                transparent 26.3% 100%
            ),
            linear-gradient(
                180deg,
                transparent 0 54.7%,
                rgba(255, 255, 255, 0.18) 54.7% 55.3%,
                transparent 55.3% 100%
            ),
            linear-gradient(
                90deg,
                transparent 0 23.7%,
                rgba(255, 255, 255, 0.16) 23.7% 24.15%,
                transparent 24.15% 100%
            ),
            linear-gradient(
                90deg,
                transparent 0 73.6%,
                rgba(255, 255, 255, 0.2) 73.6% 74.1%,
                transparent 74.1% 100%
            ),
            linear-gradient(
                90deg,
                transparent 0 91.5%,
                rgba(255, 255, 255, 0.16) 91.5% 91.95%,
                transparent 91.95% 100%
            ),

            linear-gradient(
                90deg,
                transparent 0 69.8%,
                rgba(255, 255, 255, 0.16) 69.8% 77.5%,
                transparent 77.5% 100%
            ),
            linear-gradient(
                180deg,
                transparent 0 30%,
                rgba(255, 255, 255, 0.16) 30% 43.2%,
                transparent 43.2% 100%
            ),

            radial-gradient(
                circle at 73.8% 34.5%,
                rgba(242, 86, 38, 0.16) 0 34px,
                transparent 35px
            ),
            linear-gradient(
                128deg,
                transparent 0 59%,
                rgba(242, 86, 38, 0.18) 59.2% 59.8%,
                transparent 60% 100%
            );

        background-color: #0f1011;
    }

    .coverage-display::after {
        left: 73.8%;
        top: 34.5%;
        width: 82px;
        height: 98px;
    }
}

/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */
@media (max-width: 640px) {
    .coverage-display::before {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.08),
                rgba(0, 0, 0, 0.18)
            ),

            repeating-linear-gradient(
                0deg,
                rgba(255, 255, 255, 0.06) 0 1px,
                transparent 1px 28px
            ),
            repeating-linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.06) 0 1px,
                transparent 1px 30px
            ),

            linear-gradient(
                180deg,
                transparent 0 24%,
                rgba(76, 76, 79, 0.95) 24% 32%,
                transparent 32% 100%
            ),
            linear-gradient(
                180deg,
                transparent 0 52%,
                rgba(76, 76, 79, 0.98) 52% 62%,
                transparent 62% 100%
            ),

            linear-gradient(
                90deg,
                transparent 0 14%,
                rgba(70, 70, 74, 0.92) 14% 23%,
                transparent 23% 100%
            ),
            linear-gradient(
                90deg,
                transparent 0 60%,
                rgba(82, 82, 86, 0.98) 60% 78%,
                transparent 78% 100%
            ),
            linear-gradient(
                90deg,
                transparent 0 85%,
                rgba(68, 68, 72, 0.92) 85% 94%,
                transparent 94% 100%
            ),

            linear-gradient(
                180deg,
                transparent 0 27.7%,
                rgba(255, 255, 255, 0.18) 27.7% 28.4%,
                transparent 28.4% 100%
            ),
            linear-gradient(
                180deg,
                transparent 0 56.7%,
                rgba(255, 255, 255, 0.18) 56.7% 57.4%,
                transparent 57.4% 100%
            ),
            linear-gradient(
                90deg,
                transparent 0 18.3%,
                rgba(255, 255, 255, 0.16) 18.3% 18.8%,
                transparent 18.8% 100%
            ),
            linear-gradient(
                90deg,
                transparent 0 68.6%,
                rgba(255, 255, 255, 0.2) 68.6% 69.2%,
                transparent 69.2% 100%
            ),
            linear-gradient(
                90deg,
                transparent 0 89.1%,
                rgba(255, 255, 255, 0.16) 89.1% 89.6%,
                transparent 89.6% 100%
            ),

            linear-gradient(
                90deg,
                transparent 0 64.5%,
                rgba(255, 255, 255, 0.16) 64.5% 73.5%,
                transparent 73.5% 100%
            ),
            linear-gradient(
                180deg,
                transparent 0 31.5%,
                rgba(255, 255, 255, 0.16) 31.5% 45.5%,
                transparent 45.5% 100%
            ),

            radial-gradient(
                circle at 69% 36.2%,
                rgba(242, 86, 38, 0.16) 0 28px,
                transparent 29px
            ),
            linear-gradient(
                128deg,
                transparent 0 58%,
                rgba(242, 86, 38, 0.18) 58.2% 58.9%,
                transparent 59.1% 100%
            );

        background-color: #0f1011;
    }

    .coverage-display::after {
        left: 69%;
        top: 36.2%;
        width: 68px;
        height: 84px;
    }
}


/* ==============================================================
   NOTHING PERSONAL COVERAGE APPROVED MAP V2

   Real street-map artwork.
   Building + location marker remain physically locked together.
============================================================== */


.coverage-display {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(18rem, 26vw, 25rem);
    padding:
        clamp(2.5rem, 4vw, 4rem)
        clamp(2rem, 4vw, 4.5rem);
    background: #101110;
    color: var(--paper-light);
}


/* --------------------------------------------------------------
   REAL MAP BACKGROUND
-------------------------------------------------------------- */

.coverage-display::before {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(15, 16, 15, 0.94) 0%,
            rgba(15, 16, 15, 0.80) 22%,
            rgba(15, 16, 15, 0.48) 38%,
            rgba(15, 16, 15, 0.12) 58%,
            rgba(15, 16, 15, 0.04) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.08) 68%,
            rgba(0, 0, 0, 0.26) 100%
        ),
        url('../images/process-server-coverage-map.webp');
    background-size:
        100% 100%,
        100% 100%,
        cover;
    background-position:
        center,
        center,
        62% center;
    background-repeat: no-repeat;
}


/* remove all previous CSS-drawn house / map geometry */

.coverage-display::after {
    content: '';
    position: absolute;
    z-index: 1;
    right: clamp(1.5rem, 3vw, 3rem);
    bottom: 0;
    left: auto;
    top: auto;
    width: clamp(6rem, 12vw, 11rem);
    height: 5px;
    transform: none;
    background: var(--orange);
    filter: none;
    pointer-events: none;
}


.coverage-display__label,
.coverage-display__area {
    position: relative;
    z-index: 2;
}


.coverage-display__label {
    margin: 0 0 1.1rem;
    color: var(--orange);
}


.coverage-display__area {
    max-width: 7.5ch;
    margin: 0;
    color: var(--paper-light);
    font-size: clamp(3.9rem, 6vw, 6rem);
    line-height: 0.88;
    text-shadow:
        0 4px 24px rgba(0, 0, 0, 0.38);
}


/* --------------------------------------------------------------
   WIDE
-------------------------------------------------------------- */

@media (min-width: 1500px) {

    .coverage-display {
        min-height: 24rem;
    }

    .coverage-display__area {
        font-size: 5.7rem;
    }

    .coverage-display::before {
        background-position:
            center,
            center,
            62% center;
    }

}


/* --------------------------------------------------------------
   ULTRAWIDE
-------------------------------------------------------------- */

@media (min-width: 2200px) {

    .coverage-display {
        min-height: 25rem;
    }

    .coverage-display__area {
        font-size: 5.7rem;
    }

    .coverage-display::before {
        background-position:
            center,
            center,
            62% center;
    }

}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .coverage-display {
        min-height: 18rem;
        padding:
            2.5rem
            2rem;
    }

    .coverage-display::before {
        background-position:
            center,
            center,
            66% center;
    }

    .coverage-display__area {
        max-width: 7ch;
        font-size: clamp(3.6rem, 10vw, 5rem);
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .coverage-display {
        min-height: 17rem;
        padding:
            2rem
            1.35rem;
    }

    .coverage-display::before {
        background:
            linear-gradient(
                90deg,
                rgba(15, 16, 15, 0.88) 0%,
                rgba(15, 16, 15, 0.62) 28%,
                rgba(15, 16, 15, 0.20) 54%,
                rgba(15, 16, 15, 0.03) 100%
            ),
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.02),
                rgba(0, 0, 0, 0.22)
            ),
            url('../images/process-server-coverage-map.webp');
        background-size:
            100% 100%,
            100% 100%,
            cover;
        background-position:
            center,
            center,
            69% center;
        background-repeat: no-repeat;
    }

    .coverage-display::after {
        right: 1.35rem;
    }

    .coverage-display__area {
        max-width: 6ch;
        font-size: clamp(3rem, 13vw, 4.2rem);
    }

}


/* ==============================================================
   NOTHING PERSONAL COVERAGE MAP CLEANUP V2.2

   Keep existing map image.
   Remove CSS fade.
   Strengthen CURRENT SERVICE AREA label.
============================================================== */


/* --------------------------------------------------------------
   MAP IMAGE — FULL VISIBILITY
-------------------------------------------------------------- */




/* --------------------------------------------------------------
   CURRENT SERVICE AREA
-------------------------------------------------------------- */

.coverage-display__label {
    color: #ff5a2b;
    font-size: clamp(0.82rem, 1vw, 1rem);
    font-weight: 800;
    letter-spacing: 0.10em;
    opacity: 1;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.7);
}


/* keep SERVICE AREA itself bright and readable */

.coverage-display__area {
    color: #fffefa;
    opacity: 1;
    text-shadow:
        0 3px 16px rgba(0, 0, 0, 0.45);
}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .coverage-display__label {
        font-size: 0.78rem;
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .coverage-display__label {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
    }

}


/* ==============================================================
   NOTHING PERSONAL COVERAGE MAP RESTORE V2.3

   Keep existing map artwork.
   No fade.
   No generated overlay.
   Strengthen CURRENT SERVICE AREA only.
============================================================== */


/* --------------------------------------------------------------
   MAP IMAGE
-------------------------------------------------------------- */

.coverage-display {
    background-color: #101110 !important;
    background-image:
        url('../images/process-server-coverage-map.webp') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}


/*
   Kill every previous pseudo-element fade / map replacement.
*/

.coverage-display::before {
    content: none !important;
    display: none !important;
    background: none !important;
    opacity: 0 !important;
}


/* --------------------------------------------------------------
   CURRENT SERVICE AREA
-------------------------------------------------------------- */

.coverage-display__label {
    color: #ff5a2b !important;
    font-size: clamp(
        0.95rem,
        1.25vw,
        1.15rem
    ) !important;
    font-weight: 900 !important;
    letter-spacing: 0.09em !important;
    opacity: 1 !important;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.75) !important;
}


/*
   Keep SERVICE AREA readable without changing its placement.
*/

.coverage-display__area {
    color: #fffefa !important;
    opacity: 1 !important;
    text-shadow:
        0 3px 16px rgba(0, 0, 0, 0.48) !important;
}


/* --------------------------------------------------------------
   RESPONSIVE LABEL SIZE ONLY
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .coverage-display__label {
        font-size: 0.9rem !important;
    }

}


@media (max-width: 640px) {

    .coverage-display__label {
        font-size: 0.78rem !important;
        letter-spacing: 0.075em !important;
    }

}


/* ==============================================================
   NOTHING PERSONAL SERVICE AREA ONE LINE V2.4
============================================================== */

.coverage-display__area {
    width: max-content !important;
    max-width: none !important;
    white-space: nowrap !important;
}

@media (max-width: 640px) {

    .coverage-display__area {
        font-size: clamp(2.25rem, 10vw, 3.8rem) !important;
        width: max-content !important;
        max-width: calc(100% - 2rem) !important;
        white-space: nowrap !important;
    }

}


/* ==============================================================
   NOTHING PERSONAL CURRENT SERVICE AREA BRIGHTER V2.5
============================================================== */

.coverage-display__label {
    color: #ff6a3d !important;
    text-shadow:
        0 0 10px rgba(255, 90, 43, 0.22),
        0 2px 8px rgba(0, 0, 0, 0.72) !important;
}


/* ==============================================================
   NOTHING PERSONAL CURRENT SERVICE AREA BRIGHT V2.6
============================================================== */

.coverage-display__label {
    color: #ff8a66 !important;
    opacity: 1 !important;
    text-shadow:
        0 0 5px rgba(255, 106, 61, 0.70),
        0 0 14px rgba(255, 106, 61, 0.38),
        0 2px 4px rgba(0, 0, 0, 0.90) !important;
}


/* ==============================================================
   NOTHING PERSONAL CURRENT SERVICE AREA YELLOW V2.7
============================================================== */

.coverage-display__label {
    color: #ffd84d !important;
    opacity: 1 !important;
    text-shadow:
        0 0 8px rgba(255, 216, 77, 0.22),
        0 2px 5px rgba(0, 0, 0, 0.90) !important;
}


/* ==============================================================
   NOTHING PERSONAL SECTION 05 FAQ V1
============================================================== */


.faq-section {
    position: relative;
    background: var(--paper-light);
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
}


.faq-section__inner {
    width: var(--shell);
    margin: 0 auto;
    padding:
        clamp(5.5rem, 8vw, 8.5rem)
        0
        clamp(4rem, 6vw, 6rem);
}


/* --------------------------------------------------------------
   HEADER
-------------------------------------------------------------- */

.faq-section__header {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 0.42fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 9rem);
    padding-bottom: clamp(4rem, 6vw, 5.5rem);
}


.faq-section__kicker {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.faq-section h2 {
    margin: 0;
    max-width: 10ch;
    font-family: var(--font-display);
    font-size: clamp(4.7rem, 6.5vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.89;
}


.faq-section h2 span,
.faq-section h2 em {
    display: block;
}


.faq-section h2 em {
    margin-top: 0.08em;
    color: var(--orange);
    font-style: normal;
}


.faq-section__lede {
    margin: 0;
    padding-top: 1.3rem;
    color: var(--ink-soft);
    border-top: 1px solid var(--line-strong);
    font-size: clamp(1rem, 1.05vw, 1.1rem);
    line-height: 1.7;
}


/* --------------------------------------------------------------
   FAQ LIST
-------------------------------------------------------------- */

.faq-list {
    border-top: 1px solid var(--ink);
}


.faq-item {
    border-bottom: 1px solid var(--line-strong);
}


.faq-item summary {
    display: grid;
    grid-template-columns:
        4.5rem
        minmax(0, 1fr)
        3rem;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    min-height: clamp(6.5rem, 8vw, 8.5rem);
    padding: 0;
    cursor: pointer;
    list-style: none;
    transition:
        padding-left 160ms ease,
        background 160ms ease;
}


.faq-item summary::-webkit-details-marker {
    display: none;
}


.faq-item summary::marker {
    display: none;
    content: '';
}


.faq-item summary:hover {
    padding-left: 0.75rem;
    background: rgba(242, 78, 38, 0.04);
}


.faq-item summary:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
}


.faq-item__number {
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}


.faq-item__question {
    min-width: 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.6vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.03;
}


.faq-item__toggle {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    justify-self: end;
    color: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 1.15rem;
    line-height: 1;
    transition:
        color 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}


.faq-item[open] .faq-item__toggle {
    color: var(--paper-light);
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(45deg);
}


/* --------------------------------------------------------------
   OPEN ANSWER
-------------------------------------------------------------- */

.faq-item__answer {
    display: grid;
    grid-template-columns:
        4.5rem
        minmax(0, 42rem)
        1fr;
    gap: clamp(1.5rem, 3vw, 3rem);
    padding:
        0
        0
        clamp(2.5rem, 4vw, 4rem);
}


.faq-item__answer::before {
    content: '';
    grid-column: 1;
    width: 3px;
    height: 100%;
    min-height: 3rem;
    background: var(--orange);
}


.faq-item__answer p {
    grid-column: 2;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(0.98rem, 1vw, 1.08rem);
    line-height: 1.72;
}


/* --------------------------------------------------------------
   OPEN ROW EMPHASIS
-------------------------------------------------------------- */

.faq-item[open] summary {
    background:
        linear-gradient(
            90deg,
            rgba(242, 78, 38, 0.075) 0%,
            rgba(242, 78, 38, 0.02) 48%,
            rgba(242, 78, 38, 0) 78%
        );
}


.faq-item[open] .faq-item__question {
    color: var(--orange);
}


/* --------------------------------------------------------------
   FOOTER
-------------------------------------------------------------- */

.faq-section__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2.25rem;
}


.faq-section__footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}


.faq-section__footer a {
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
    flex: 0 0 auto;
    padding-bottom: 0.5rem;
    color: var(--ink);
    border-bottom: 2px solid var(--orange);
    font-family: var(--font-mono);
    font-size: 0.60rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 160ms ease,
        gap 160ms ease;
}


.faq-section__footer a:hover,
.faq-section__footer a:focus-visible {
    color: var(--orange);
    gap: 1.45rem;
}


/* --------------------------------------------------------------
   WIDE / ULTRAWIDE
-------------------------------------------------------------- */

@media (min-width: 1600px) {

    .faq-section h2 {
        font-size: 6.4rem;
    }

    .faq-item__question {
        font-size: 2.55rem;
    }

}


@media (min-width: 2200px) {

    .faq-section h2 {
        font-size: 6.4rem;
    }

    .faq-item__question {
        font-size: 2.55rem;
    }

}


/* --------------------------------------------------------------
   STANDARD DESKTOP
-------------------------------------------------------------- */

@media (min-width: 901px) and (max-width: 1180px) {

    .faq-section__header {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(260px, 0.55fr);
        gap: 3.5rem;
    }

    .faq-section h2 {
        font-size: clamp(4.2rem, 5.7vw, 5.4rem);
    }

    .faq-item summary {
        grid-template-columns:
            3.75rem
            minmax(0, 1fr)
            3rem;
    }

    .faq-item__answer {
        grid-template-columns:
            3.75rem
            minmax(0, 38rem)
            1fr;
    }

}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .faq-section__inner {
        padding:
            clamp(4.5rem, 10vw, 6rem)
            0
            3.5rem;
    }

    .faq-section__header {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .faq-section__kicker {
        grid-column: auto;
    }

    .faq-section h2 {
        max-width: 9ch;
        font-size: clamp(4.2rem, 11vw, 6rem);
    }

    .faq-section__lede {
        max-width: 36rem;
    }

    .faq-item summary {
        grid-template-columns:
            3rem
            minmax(0, 1fr)
            2.75rem;
        gap: 1.5rem;
    }

    .faq-item__answer {
        grid-template-columns:
            3rem
            minmax(0, 1fr);
        gap: 1.5rem;
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .faq-section__inner {
        width: calc(100vw - 2rem);
        padding:
            4.25rem
            0
            3rem;
    }

    .faq-section__header {
        gap: 2rem;
        padding-bottom: 3.5rem;
    }

    .faq-section h2 {
        font-size: clamp(3.5rem, 15vw, 4.8rem);
        line-height: 0.91;
    }

    .faq-item summary {
        grid-template-columns:
            2rem
            minmax(0, 1fr)
            2.25rem;
        gap: 0.9rem;
        min-height: 6rem;
    }

    .faq-item__number {
        font-size: 0.52rem;
    }

    .faq-item__question {
        font-size: clamp(1.4rem, 6.5vw, 1.9rem);
    }

    .faq-item__toggle {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 1rem;
    }

    .faq-item__answer {
        grid-template-columns:
            2rem
            minmax(0, 1fr);
        gap: 0.9rem;
        padding-bottom: 2.5rem;
    }

    .faq-item__answer p {
        font-size: 0.94rem;
    }

    .faq-section__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 04 TO 05 TRANSITION V1
============================================================== */


.faq-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-top: 0;
}


/* --------------------------------------------------------------
   ROUTE / MAP HANDOFF BAND
-------------------------------------------------------------- */

.faq-section::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 5.5rem;
    background:
        radial-gradient(
            circle at 78% 58%,
            rgba(255, 216, 77, 1) 0 4px,
            rgba(255, 216, 77, 0.22) 5px 11px,
            transparent 12px
        ),
        linear-gradient(
            128deg,
            transparent 0 72%,
            rgba(242, 78, 38, 0.75) 72.2% 72.55%,
            transparent 72.75% 100%
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.06) 0 1px,
            transparent 1px 64px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.045) 0 1px,
            transparent 1px 38px
        ),
        #111210;
    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 62%,
            82% 62%,
            78% 100%,
            0 100%
        );
    pointer-events: none;
}


/* --------------------------------------------------------------
   SMALL ORANGE EXIT MARK
-------------------------------------------------------------- */

.faq-section::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 5.05rem;
    left: 0;
    width: clamp(7rem, 14vw, 13rem);
    height: 5px;
    background: var(--orange);
    pointer-events: none;
}


.faq-section__inner {
    position: relative;
    z-index: 2;
    padding-top: clamp(6.75rem, 8vw, 8.5rem);
}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .faq-section::before {
        height: 5rem;
        clip-path:
            polygon(
                0 0,
                100% 0,
                100% 68%,
                76% 68%,
                70% 100%,
                0 100%
            );
    }

    .faq-section::after {
        top: 4.55rem;
    }

    .faq-section__inner {
        padding-top: 6.5rem;
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .faq-section::before {
        height: 4.25rem;
        background:
            radial-gradient(
                circle at 76% 58%,
                rgba(255, 216, 77, 1) 0 3px,
                rgba(255, 216, 77, 0.20) 4px 9px,
                transparent 10px
            ),
            linear-gradient(
                128deg,
                transparent 0 68%,
                rgba(242, 78, 38, 0.72) 68.2% 68.7%,
                transparent 68.9% 100%
            ),
            repeating-linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.055) 0 1px,
                transparent 1px 42px
            ),
            #111210;
        clip-path:
            polygon(
                0 0,
                100% 0,
                100% 70%,
                72% 70%,
                64% 100%,
                0 100%
            );
    }

    .faq-section::after {
        top: 3.8rem;
        width: 6.5rem;
        height: 4px;
    }

    .faq-section__inner {
        padding-top: 5.75rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 06 REQUEST SERVICE V1
============================================================== */


.request-section {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    color: var(--paper-light);
}


.request-section__inner {
    width: var(--shell);
    margin: 0 auto;
    padding:
        clamp(5.5rem, 8vw, 8.5rem)
        0
        clamp(4rem, 6vw, 6rem);
}


/* --------------------------------------------------------------
   INTRO
-------------------------------------------------------------- */

.request-section__intro {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1rem, 2vw, 2rem);
    row-gap: 1.5rem;
    padding-bottom: clamp(4rem, 6vw, 6rem);
}


.request-section__kicker {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


.request-section h2 {
    grid-column: 1 / 9;
    margin: 1rem 0 0;
    color: var(--paper-light);
    font-family: var(--font-display);
    font-size: clamp(4.7rem, 6.4vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.9;
}


.request-section h2 span,
.request-section h2 em {
    display: block;
}


.request-section h2 em {
    margin-top: 0.11em;
    color: var(--orange);
    font-style: normal;
}


.request-section__lede {
    grid-column: 9 / 13;
    align-self: end;
    margin: 0;
    padding-top: 1.35rem;
    color: rgba(255, 255, 255, 0.68);
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    font-size: clamp(0.98rem, 1vw, 1.08rem);
    line-height: 1.7;
}


/* --------------------------------------------------------------
   DIRECT CONTACT
-------------------------------------------------------------- */

.request-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns:
        minmax(11rem, 0.35fr)
        minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
    margin-top: clamp(2rem, 3vw, 3rem);
    padding:
        1.35rem
        0;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}


.request-contact__label {
    margin: 0;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.request-contact__details {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: clamp(1.25rem, 3vw, 3rem);
}


.request-contact__details a,
.request-contact__details span {
    color: var(--paper-light);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
}


.request-contact__details a {
    border-bottom: 1px solid rgba(242, 78, 38, 0.8);
}


.request-contact__details a:hover,
.request-contact__details a:focus-visible {
    color: var(--orange);
}


/* --------------------------------------------------------------
   FORM SHELL
-------------------------------------------------------------- */

.request-form {
    border-top: 1px solid rgba(255, 255, 255, 0.52);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}


.request-form__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 4rem;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.request-form__topline span:last-child {
    color: rgba(255, 255, 255, 0.42);
}


/* --------------------------------------------------------------
   FIELD GRID
-------------------------------------------------------------- */

.request-form__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}


.request-field {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 0;
    min-height: 8.5rem;
    padding:
        1.35rem
        clamp(1.25rem, 2vw, 2rem)
        1.4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}


.request-field:nth-child(1) {
    grid-column: 1 / 5;
}


.request-field:nth-child(2) {
    grid-column: 5 / 9;
}


.request-field:nth-child(3) {
    grid-column: 9 / 13;
    border-right: 0;
}


.request-field:nth-child(4) {
    grid-column: 1 / 7;
}


.request-field:nth-child(5) {
    grid-column: 7 / 10;
}


.request-field:nth-child(6) {
    grid-column: 10 / 13;
    border-right: 0;
}


.request-field:nth-child(7) {
    grid-column: 1 / 4;
}


.request-field--wide {
    grid-column: 4 / 13;
    min-height: 12rem;
    border-right: 0;
}


.request-field > span {
    display: block;
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.46);
    font-family: var(--font-mono);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.request-field input,
.request-field select,
.request-field textarea {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    color: var(--paper-light);
    background: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    font: inherit;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.45;
}


.request-field select {
    cursor: pointer;
}


.request-field select option {
    color: #111;
    background: #fff;
}


.request-field textarea {
    min-height: 6rem;
    resize: vertical;
}


.request-field input::placeholder,
.request-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.30);
}


.request-field:focus-within {
    background:
        linear-gradient(
            180deg,
            rgba(242, 78, 38, 0.06),
            rgba(242, 78, 38, 0.015)
        );
}


.request-field:focus-within > span {
    color: var(--orange);
}


/* --------------------------------------------------------------
   SUBMIT AREA
-------------------------------------------------------------- */

.request-form__footer {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(18rem, 0.42fr);
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}


.request-form__footer > p {
    align-self: center;
    max-width: 34rem;
    margin: 0;
    padding:
        2rem
        2rem
        2rem
        0;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.88rem;
    line-height: 1.65;
}


.request-form__submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 7rem;
    padding:
        1.5rem
        clamp(1.5rem, 3vw, 3rem);
    color: #111;
    background: var(--orange);
    border: 0;
    border-radius: 0;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background 160ms ease,
        padding-right 160ms ease;
}


.request-form__submit:hover,
.request-form__submit:focus-visible {
    background: #ff6a3d;
    padding-right: clamp(2rem, 3.5vw, 3.6rem);
}


.request-form__submit span:last-child {
    font-size: 1.25rem;
}


.request-form__legal {
    margin: 0;
    padding-top: 1.4rem;
    color: rgba(255, 255, 255, 0.32);
    font-family: var(--font-mono);
    font-size: 0.52rem;
    line-height: 1.55;
    letter-spacing: 0.03em;
}


/* --------------------------------------------------------------
   WIDE / ULTRAWIDE
   Freeze headline and field typography.
-------------------------------------------------------------- */

@media (min-width: 1600px) {

    .request-section h2 {
        font-size: 6.25rem;
    }

    .request-field input,
    .request-field select,
    .request-field textarea {
        font-size: 1.1rem;
    }

}


@media (min-width: 2200px) {

    .request-section h2 {
        font-size: 6.25rem;
    }

}


/* --------------------------------------------------------------
   STANDARD DESKTOP
-------------------------------------------------------------- */

@media (min-width: 901px) and (max-width: 1180px) {

    .request-section h2 {
        grid-column: 1 / 8;
        font-size: clamp(4.2rem, 5.8vw, 5.4rem);
    }

    .request-section__lede {
        grid-column: 8 / 13;
    }

}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .request-section__inner {
        padding:
            clamp(4.5rem, 10vw, 6rem)
            0
            3.5rem;
    }

    .request-section__intro {
        grid-template-columns: 1fr;
    }

    .request-section__kicker,
    .request-section h2,
    .request-section__lede,
    .request-contact {
        grid-column: 1;
    }

    .request-section h2 {
        max-width: 9ch;
        font-size: clamp(4rem, 11vw, 5.8rem);
    }

    .request-section__lede {
        max-width: 38rem;
        margin-top: 1rem;
    }

    .request-contact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .request-contact__details {
        justify-content: flex-start;
    }

    .request-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .request-field:nth-child(n),
    .request-field--wide {
        grid-column: auto;
    }

    .request-field:nth-child(even) {
        border-right: 0;
    }

    .request-field--wide {
        grid-column: 1 / -1;
        border-right: 0;
    }

    .request-form__footer {
        grid-template-columns: 1fr;
    }

    .request-form__footer > p {
        padding:
            1.75rem
            0;
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .request-section__inner {
        width: calc(100vw - 2rem);
        padding:
            4.25rem
            0
            3rem;
    }

    .request-section h2 {
        max-width: 100%;
        font-size: clamp(3.35rem, 14vw, 4.6rem);
        line-height: 0.92;
    }

    .request-contact__details {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.9rem;
    }

    .request-form__topline {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
        min-height: 5rem;
    }

    .request-form__grid {
        grid-template-columns: 1fr;
    }

    .request-field:nth-child(n),
    .request-field--wide {
        grid-column: 1;
        min-height: 7.5rem;
        border-right: 0;
    }

    .request-field--wide {
        min-height: 11rem;
    }

    .request-form__submit {
        min-height: 6.5rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL SECTION 06 RECOGNIZABLE FORM V1.1

   Keep the custom identity.
   Restore familiar form affordances.
============================================================== */


/* --------------------------------------------------------------
   DESKTOP COMPOSITION
-------------------------------------------------------------- */

.request-section__inner {
    display: grid;
    grid-template-columns:
        minmax(280px, 0.72fr)
        minmax(520px, 1.28fr);
    align-items: start;
    gap: clamp(3.5rem, 7vw, 7rem);
}


.request-section__intro {
    display: block;
    padding-bottom: 0;
}


.request-section__kicker {
    margin-bottom: 1.4rem;
}


.request-section h2 {
    margin: 0;
    max-width: 8ch;
    font-size: clamp(4rem, 5vw, 5.8rem);
}


.request-section__lede {
    max-width: 30rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
}


.request-contact {
    display: block;
    margin-top: 2.5rem;
    padding: 1.5rem 0;
}


.request-contact__details {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1rem;
}


/* --------------------------------------------------------------
   LIGHT FORM PANEL
-------------------------------------------------------------- */

.request-form {
    width: 100%;
    max-width: 860px;
    justify-self: end;
    padding:
        clamp(1.5rem, 2.5vw, 2.25rem);
    color: var(--ink);
    background: var(--paper-light);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.24);
}


.request-form__topline {
    min-height: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    color: var(--orange);
    border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}


.request-form__topline span:last-child {
    color: rgba(17, 17, 17, 0.46);
}


/* --------------------------------------------------------------
   NORMAL FORM GRID
-------------------------------------------------------------- */

.request-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    border: 0;
}


.request-field,
.request-field:nth-child(n) {
    grid-column: auto;
    display: block;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
}


.request-field--wide {
    grid-column: 1 / -1 !important;
    min-height: 0;
}


.request-field > span {
    margin-bottom: 0.5rem;
    color: rgba(17, 17, 17, 0.68);
    font-size: 0.55rem;
    letter-spacing: 0.10em;
}


/* --------------------------------------------------------------
   RECOGNIZABLE INPUTS
-------------------------------------------------------------- */

.request-field input,
.request-field select,
.request-field textarea {
    display: block;
    width: 100%;
    min-height: 3.25rem;
    padding:
        0.8rem
        0.9rem;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.28);
    border-radius: 0;
    outline: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease,
        background 150ms ease;
}


.request-field select {
    cursor: pointer;
}


.request-field textarea {
    min-height: 8rem;
    resize: vertical;
}


.request-field input::placeholder,
.request-field textarea::placeholder {
    color: rgba(17, 17, 17, 0.38);
}


.request-field input:hover,
.request-field select:hover,
.request-field textarea:hover {
    border-color: rgba(17, 17, 17, 0.52);
}


.request-field input:focus,
.request-field select:focus,
.request-field textarea:focus {
    background: #fff;
    border-color: var(--orange);
    box-shadow:
        0 0 0 3px rgba(242, 78, 38, 0.12);
}


.request-field:focus-within {
    background: transparent;
}


.request-field:focus-within > span {
    color: var(--orange);
}


/* --------------------------------------------------------------
   SUBMIT AREA
-------------------------------------------------------------- */

.request-form__footer {
    display: block;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(17, 17, 17, 0.18);
}


.request-form__footer > p {
    max-width: 100%;
    margin: 0 0 1.25rem;
    padding: 0;
    color: rgba(17, 17, 17, 0.58);
    font-size: 0.82rem;
    line-height: 1.55;
}


.request-form__submit {
    width: 100%;
    min-height: 3.75rem;
    padding:
        0.9rem
        1.25rem;
    background: var(--orange);
}


.request-form__submit:hover,
.request-form__submit:focus-visible {
    padding-right: 1.5rem;
}


.request-form__legal {
    margin-top: 1rem;
    padding-top: 0;
    color: rgba(17, 17, 17, 0.42);
    font-size: 0.5rem;
}


/* --------------------------------------------------------------
   WIDE / ULTRAWIDE
-------------------------------------------------------------- */

@media (min-width: 1600px) {

    .request-section h2 {
        font-size: 5.35rem;
    }

    .request-form {
        max-width: 860px;
    }

}


@media (min-width: 2200px) {

    .request-section h2 {
        font-size: 5.35rem;
    }

    .request-form {
        max-width: 860px;
    }

}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 1000px) {

    .request-section__inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .request-section__intro {
        max-width: 42rem;
    }

    .request-section h2 {
        max-width: 9ch;
    }

    .request-form {
        max-width: 100%;
        justify-self: stretch;
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .request-section h2 {
        font-size: clamp(3.2rem, 13vw, 4.4rem);
    }

    .request-form {
        padding: 1.25rem;
    }

    .request-form__topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .request-form__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .request-field,
    .request-field:nth-child(n),
    .request-field--wide {
        grid-column: 1 !important;
    }

    .request-field input,
    .request-field select,
    .request-field textarea {
        font-size: 1rem;
    }

}


/* ==============================================================
   NOTHING PERSONAL SITE FOOTER CSS V1
============================================================== */


.site-footer {
    position: relative;
    overflow: hidden;
    color: var(--ink);
    background: var(--paper-light);
}


/* --------------------------------------------------------------
   SECTION 06 → FOOTER HANDOFF
-------------------------------------------------------------- */

.site-footer::before {
    content: '';
    display: block;
    width: 100%;
    height: clamp(1rem, 1.4vw, 1.4rem);
    background: var(--orange);
    clip-path:
        polygon(
            0 0,
            100% 0,
            100% 44%,
            84% 44%,
            80% 100%,
            0 100%
        );
}


.site-footer__inner {
    width: var(--shell);
    margin: 0 auto;
    padding:
        clamp(3.5rem, 5vw, 5rem)
        0
        clamp(1.5rem, 2vw, 2rem);
}


/* --------------------------------------------------------------
   TOP
-------------------------------------------------------------- */

.site-footer__top {
    display: grid;
    grid-template-columns:
        minmax(260px, 1.15fr)
        minmax(180px, 0.55fr)
        minmax(220px, 0.65fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
    padding-bottom: clamp(4rem, 6vw, 6rem);
}


/* --------------------------------------------------------------
   BRAND
-------------------------------------------------------------- */

.site-footer__brand {
    max-width: 34rem;
}


.site-footer__wordmark {
    display: inline-block;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 3.6vw, 4.1rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 0.9;
    text-decoration: none;
}


.site-footer__wordmark:hover,
.site-footer__wordmark:focus-visible {
    color: var(--orange);
}


.site-footer__brand p {
    margin: 1rem 0 0;
    color: var(--orange);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* --------------------------------------------------------------
   NAV
-------------------------------------------------------------- */

.site-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}


.site-footer__nav::before {
    content: 'EXPLORE';
    margin-bottom: 0.5rem;
    color: rgba(17, 17, 17, 0.42);
    font-family: var(--font-mono);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}


.site-footer__nav a {
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
}


.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
    color: var(--orange);
}


/* --------------------------------------------------------------
   CONTACT
-------------------------------------------------------------- */

.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}


.site-footer__contact > p {
    margin: 0 0 0.5rem;
    color: rgba(17, 17, 17, 0.42);
    font-family: var(--font-mono);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}


.site-footer__contact a,
.site-footer__contact span {
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-decoration: none;
}


.site-footer__contact a {
    border-bottom: 1px solid var(--orange);
}


.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
    color: var(--orange);
}


/* --------------------------------------------------------------
   GIANT BRAND CLOSE
-------------------------------------------------------------- */

.site-footer__bottom {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: end;
    gap: 2rem;
    padding-top: clamp(1.5rem, 2.5vw, 2.5rem);
    border-top: 1px solid rgba(17, 17, 17, 0.20);
}


.site-footer__bottom::before {
    content: 'NOTHING PERSONAL™';
    position: absolute;
    left: 0;
    bottom: clamp(3rem, 4vw, 4.3rem);
    width: 100%;
    color: rgba(17, 17, 17, 0.055);
    font-family: var(--font-display);
    font-size: clamp(5.5rem, 11vw, 12.5rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 0.72;
    white-space: nowrap;
    pointer-events: none;
}


.site-footer__bottom > p {
    position: relative;
    z-index: 1;
    margin: 0;
}


.site-footer__bottom > p:first-child {
    color: rgba(17, 17, 17, 0.44);
    font-family: var(--font-mono);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}


.site-footer__closer {
    padding:
        0.6rem
        0.8rem;
    color: var(--ink);
    background: #ffd84d;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: rotate(-1deg);
}


/* --------------------------------------------------------------
   WIDE / ULTRAWIDE
-------------------------------------------------------------- */

@media (min-width: 1600px) {

    .site-footer__wordmark {
        font-size: 3.8rem;
    }

    .site-footer__bottom::before {
        font-size: 10.8rem;
    }

}


@media (min-width: 2200px) {

    .site-footer__wordmark {
        font-size: 3.8rem;
    }

    .site-footer__bottom::before {
        font-size: 10.8rem;
    }

}


/* --------------------------------------------------------------
   TABLET
-------------------------------------------------------------- */

@media (max-width: 900px) {

    .site-footer__top {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(160px, 0.55fr);
        gap: 3rem;
    }


    .site-footer__brand {
        grid-column: 1 / -1;
    }


    .site-footer__bottom::before {
        font-size: clamp(5rem, 15vw, 8rem);
    }

}


/* --------------------------------------------------------------
   MOBILE
-------------------------------------------------------------- */

@media (max-width: 640px) {

    .site-footer::before {
        height: 0.85rem;
        clip-path:
            polygon(
                0 0,
                100% 0,
                100% 45%,
                72% 45%,
                66% 100%,
                0 100%
            );
    }


    .site-footer__inner {
        width: calc(100vw - 2rem);
        padding:
            3rem
            0
            1.5rem;
    }


    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 4rem;
    }


    .site-footer__brand,
    .site-footer__nav,
    .site-footer__contact {
        grid-column: 1;
    }


    .site-footer__wordmark {
        font-size: clamp(2.6rem, 12vw, 3.8rem);
    }


    .site-footer__bottom {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding-top: 5.5rem;
    }


    .site-footer__bottom::before {
        top: 1.2rem;
        bottom: auto;
        font-size: clamp(3.5rem, 17vw, 5.5rem);
        white-space: normal;
        line-height: 0.78;
    }


    .site-footer__closer {
        width: max-content;
        max-width: 100%;
    }

}


/* ==============================================================
   NOTHING PERSONAL MOBILE NAV WIDTH FIX V1
============================================================== */

@media (max-width: 900px) {

    .site-header.is-nav-open .site-nav {
        width: 100%;
        max-width: none;
        justify-self: stretch;
        box-sizing: border-box;
    }

    .site-header.is-nav-open .nav-toggle {
        position: relative;
        z-index: 40;
    }

}


/* ==============================================================
   NOTHING PERSONAL MOBILE NAV POLISH V2
============================================================== */

@media (max-width: 900px) {

    .site-header.is-nav-open .site-nav {
        right: 0;
        left: auto;
        width: min(82vw, 340px);
        max-width: 340px;
        justify-self: end;
        padding: 0.55rem;
        background: var(--paper-light);
        border:
            1px solid
            var(--ink);
        border-top: 0;
        box-sizing: border-box;
        box-shadow:
            0 18px 34px
            rgba(0, 0, 0, 0.16);
    }


    .site-header.is-nav-open .site-nav a {
        display: flex;
        align-items: center;
        gap: 0.9rem;
        width: 100%;
        min-height: 3.75rem;
        padding:
            0.9rem
            1.1rem;
        color: var(--ink);
        border-bottom:
            1px solid
            var(--line);
        box-sizing: border-box;
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.09em;
        line-height: 1.2;
        text-transform: uppercase;
    }


    .site-header.is-nav-open .site-nav a:last-child {
        border-bottom: 0;
    }


    .site-header.is-nav-open .site-nav a::before {
        content: '';
        flex: 0 0 auto;
        width: 0.45rem;
        height: 0.45rem;
        background: var(--orange);
    }


    .site-header.is-nav-open .site-nav a::after {
        content: '→';
        position: static;
        width: auto;
        height: auto;
        margin-left: auto;
        color: var(--orange);
        background: none;
        font-size: 0.8rem;
        line-height: 1;
        transform: none;
        transition:
            transform 160ms ease;
    }


    .site-header.is-nav-open .site-nav a:hover,
    .site-header.is-nav-open .site-nav a:focus-visible {
        color: var(--orange);
        background:
            rgba(242, 78, 38, 0.045);
    }


    .site-header.is-nav-open .site-nav a:hover::after,
    .site-header.is-nav-open .site-nav a:focus-visible::after {
        transform: translateX(3px);
    }

}


@media (max-width: 480px) {

    .site-header.is-nav-open .site-nav {
        width: min(86vw, 320px);
        max-width: 320px;
    }

}
