/* ==========================================================================
   STAY IN YOUR LANE™
   Free Parking Lot Striping Landing Page
   Visual System:
   PARKING GRID × SAFETY STENCIL × FRESH PAINT × INDUSTRIAL EDITORIAL
   ========================================================================== */


/* ==========================================================================
   01. ROOT
   ========================================================================== */

:root {
    --asphalt: #171816;
    --asphalt-soft: #232522;
    --asphalt-light: #323430;

    --paper: #f3f0e6;
    --paper-light: #fbf9f3;
    --paper-deep: #d9d4c7;

    --white: #fffef9;
    --traffic-white: #f7f5ec;

    --yellow: #f2c318;
    --yellow-dark: #c89b00;

    --blue: #2469c8;
    --blue-dark: #16478d;

    --red: #d3462f;
    --red-dark: #9c2e20;

    --ink: #151614;
    --ink-soft: #353631;
    --muted: #77786f;

    --line: rgba(21, 22, 20, 0.16);
    --line-light: rgba(255, 255, 255, 0.18);

    --font-display:
        "Arial Narrow",
        "Roboto Condensed",
        "Helvetica Neue Condensed",
        Impact,
        sans-serif;

    --font-body:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    --font-mono:
        "Courier New",
        Courier,
        monospace;

    --shell:
        min(1480px, calc(100vw - 5rem));

    --section-space:
        clamp(5.5rem, 8vw, 9rem);

    --radius-small:
        0.35rem;

    --shadow:
        0 1.8rem 5rem rgba(0, 0, 0, 0.18);
}


/* ==========================================================================
   02. RESET
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    border-radius: 0;
}

button,
a,
summary,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

::selection {
    background: var(--yellow);
    color: var(--ink);
}


/* ==========================================================================
   03. ACCESSIBILITY
   ========================================================================== */

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 9999;
    transform: translateY(-200%);
    padding: 0.85rem 1.1rem;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}


/* ==========================================================================
   04. GLOBAL LAYOUT
   ========================================================================== */

.site-shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: var(--section-space);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.eyebrow::before {
    content: "";
    width: 2.5rem;
    height: 0.2rem;
    background: currentColor;
}

.section-heading {
    max-width: 68rem;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-heading--split {
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(16rem, 0.55fr);
    gap: clamp(3rem, 6vw, 7rem);
    max-width: none;
    align-items: end;
}

.section-heading h2,
.closing-cta h2,
.quote__intro h2 {
    margin-bottom: 0;
    font-family: var(--font-display);
    font-size: clamp(3.3rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 0.86;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.section-heading h2 em,
.closing-cta h2 em,
.quote__intro h2 em {
    display: block;
    color: var(--yellow);
    font-style: normal;
}

.section-heading__intro {
    max-width: 34rem;
    margin-bottom: 0.2rem;
    color: var(--muted);
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.6;
}

.fine-print {
    max-width: 46rem;
    margin: 2rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.55;
}


/* ==========================================================================
   05. BUTTONS
   ========================================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    min-height: 3.4rem;
    padding: 0.95rem 1.35rem;
    border: 2px solid transparent;
    background: transparent;
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.button span {
    font-size: 1.1rem;
    line-height: 0;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--yellow);
}

.button--primary:hover {
    background: var(--white);
    border-color: var(--white);
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.button--ghost:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.button--header {
    min-height: 2.85rem;
    padding: 0.75rem 1rem;
    background: var(--yellow);
    color: var(--ink);
    border-color: var(--yellow);
}

.button--header:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.button--light {
    background: var(--paper-light);
    color: var(--ink);
    border-color: var(--paper-light);
}

.button--light:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.button--full {
    width: 100%;
}


/* ==========================================================================
   06. HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(21, 22, 20, 0.15);
    background:
        linear-gradient(
            90deg,
            var(--paper-light) 0%,
            var(--paper-light) 66%,
            var(--yellow) 66%,
            var(--yellow) 100%
        );
}

.site-header__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 3.2rem;
    aspect-ratio: 1;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}

.brand__copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand__name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.brand__tagline {
    margin-top: 0.22rem;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 1.8vw, 2rem);
}

.site-nav > a:not(.button) {
    position: relative;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 0.18rem;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 0.8rem;
    border: 0;
    background: none;
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-toggle__icon {
    display: grid;
    gap: 0.25rem;
    width: 1.5rem;
}

.nav-toggle__icon span {
    display: block;
    height: 2px;
    background: currentColor;
}


/* ==========================================================================
   07. HERO
   ========================================================================== */

.hero {
    position: relative;
    min-height: min(880px, calc(100vh - 5rem));
    overflow: hidden;
    background: var(--asphalt);
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 6%;
    width: 0.55rem;
    height: 100%;
    background: var(--traffic-white);
    opacity: 0.86;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: calc(6% + 2rem);
    width: 0.3rem;
    height: 100%;
    background: var(--yellow);
    opacity: 0.92;
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter:
        saturate(0.82)
        contrast(1.04)
        brightness(0.78);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(13, 14, 13, 0.95) 0%,
            rgba(13, 14, 13, 0.88) 30%,
            rgba(13, 14, 13, 0.44) 62%,
            rgba(13, 14, 13, 0.18) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.06) 0%,
            rgba(0, 0, 0, 0.42) 100%
        );
}

.hero__content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(15rem, 0.6fr);
    align-items: end;
    gap: 4rem;
    min-height: min(800px, calc(100vh - 9rem));
    padding-top: clamp(5rem, 10vh, 9rem);
    padding-bottom: 7rem;
}

.hero__copy {
    max-width: 64rem;
    padding-left: clamp(1rem, 5vw, 6rem);
}

.hero .eyebrow {
    color: var(--yellow);
}

.hero__title {
    margin-bottom: 2rem;
    font-family: var(--font-display);
    font-size: clamp(4.8rem, 10vw, 10.5rem);
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.hero__title span,
.hero__title em {
    display: block;
}

.hero__title em {
    color: var(--yellow);
    font-style: normal;
}

.hero__intro {
    max-width: 47rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero__stamp {
    justify-self: end;
    align-self: center;
    width: min(100%, 18rem);
    padding: 1.4rem;
    border: 0.32rem solid var(--yellow);
    background: rgba(15, 16, 15, 0.68);
    transform: rotate(3deg);
    text-align: center;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.hero__stamp span,
.hero__stamp strong {
    display: block;
}

.hero__stamp span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.hero__stamp strong {
    margin-block: 0.25rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.04em;
}

.hero__service-strip {
    position: absolute;
    z-index: 6;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 4.2rem;
    background: var(--yellow);
    color: var(--ink);
}

.hero__service-strip span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-right: 1px solid rgba(21, 22, 20, 0.25);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* ==========================================================================
   08. SERVICES / PARKING GRID
   ========================================================================== */

.services {
    overflow: hidden;
    background: var(--paper-light);
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    right: -8vw;
    width: 26vw;
    height: 100%;
    border-left: 1.4rem solid rgba(21, 22, 20, 0.05);
    border-right: 0.4rem solid rgba(21, 22, 20, 0.05);
    transform: skewX(-12deg);
}

.parking-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 0.65rem solid var(--ink);
    border-bottom: 0.65rem solid var(--ink);
    background: var(--asphalt);
}

.parking-grid::before {
    content: "PARK";
    position: absolute;
    z-index: 1;
    right: 1.5rem;
    bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.04);
    font-family: var(--font-display);
    font-size: clamp(8rem, 19vw, 20rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.05em;
}

.parking-space {
    position: relative;
    z-index: 2;
    min-height: 24rem;
    padding: 2rem 2rem 2.4rem;
    border-right: 0.32rem solid var(--traffic-white);
    border-bottom: 0.32rem solid var(--traffic-white);
    background: var(--paper);
    color: var(--ink);
}

.parking-space:nth-child(3n) {
    border-right: 0;
}

.parking-space:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.parking-space::before {
    content: "";
    position: absolute;
    left: 1.4rem;
    top: 1.4rem;
    width: 4.5rem;
    height: 0.3rem;
    background: var(--yellow);
}

.parking-space__number {
    display: block;
    margin-bottom: 5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.parking-space__label {
    margin-bottom: 0.45rem;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.parking-space h3 {
    margin-bottom: 1.3rem;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.2vw, 4.7rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.parking-space p:last-child {
    max-width: 27rem;
    margin-bottom: 0;
    font-size: 0.94rem;
    line-height: 1.6;
}

.parking-space--dark {
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.015),
            rgba(255, 255, 255, 0.015)
        ),
        var(--asphalt-soft);
    color: var(--white);
}

.parking-space--dark .parking-space__label {
    color: rgba(255, 255, 255, 0.52);
}

.parking-space--blue {
    background: var(--blue);
    color: var(--white);
}

.parking-space--blue::before {
    background: var(--white);
}

.parking-space--blue .parking-space__label {
    color: rgba(255, 255, 255, 0.68);
}

.parking-space--red {
    background: var(--red);
    color: var(--white);
}

.parking-space--red::before {
    background: var(--white);
}

.parking-space--red .parking-space__label {
    color: rgba(255, 255, 255, 0.68);
}


/* ==========================================================================
   09. BEFORE + AFTER
   ========================================================================== */

.results {
    overflow: hidden;
    background: var(--yellow);
}

.results::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            135deg,
            transparent 0,
            transparent 4rem,
            rgba(21, 22, 20, 0.05) 4rem,
            rgba(21, 22, 20, 0.05) 4.25rem
        );
}

.results .section-heading {
    position: relative;
    z-index: 2;
}

.results .section-heading h2 em {
    color: var(--ink);
}

.comparison {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto
        minmax(0, 1fr);
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.comparison__panel {
    margin: 0;
}

.comparison__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: var(--asphalt);
    box-shadow: var(--shadow);
}

.comparison__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison__panel--before .comparison__image {
    filter:
        grayscale(0.65)
        contrast(0.92)
        brightness(0.86);
}

.comparison__badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.7rem 0.85rem;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.11em;
}

.comparison__panel--after .comparison__badge {
    background: var(--yellow);
    color: var(--ink);
}

.comparison figcaption {
    max-width: 39rem;
    margin-top: 1.2rem;
    font-size: 0.92rem;
    line-height: 1.6;
}

.comparison__arrow {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    background: var(--ink);
    color: var(--yellow);
    font-size: 2.2rem;
    font-weight: 700;
}


/* ==========================================================================
   10. PROCESS
   ========================================================================== */

.process {
    overflow: hidden;
    background: var(--asphalt);
    color: var(--white);
}

.process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 11%;
    width: 0.42rem;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
}

.process .section-heading__intro {
    color: rgba(255, 255, 255, 0.56);
}

.process-route {
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-route::before {
    content: "";
    position: absolute;
    left: 5.2rem;
    top: 0;
    bottom: 0;
    width: 0.3rem;
    background: var(--traffic-white);
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 10rem minmax(0, 1fr);
    min-height: 14rem;
    border-top: 1px solid var(--line-light);
}

.process-step:last-child {
    border-bottom: 1px solid var(--line-light);
}

.process-step__number {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 6.4rem;
    height: 6.4rem;
    align-self: center;
    background: var(--yellow);
    color: var(--ink);
    border: 0.35rem solid var(--asphalt);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.process-step__content {
    align-self: center;
    padding: 2.7rem 0;
}

.process-step__label {
    margin-bottom: 0.5rem;
    color: var(--yellow);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.process-step h3 {
    max-width: 54rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 4.4rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.process-step__content > p:last-child {
    max-width: 46rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.65);
}


/* ==========================================================================
   11. INDUSTRIES
   ========================================================================== */

.industries {
    background: var(--paper-light);
}

.industry-list {
    border-top: 0.4rem solid var(--ink);
}

.industry-list__item {
    display: grid;
    grid-template-columns: 5rem minmax(0, 1fr);
    align-items: center;
    min-height: 6.8rem;
    border-bottom: 1px solid var(--line);
    transition:
        background-color 180ms ease,
        padding-left 180ms ease;
}

.industry-list__item:hover {
    padding-left: 1rem;
    background: var(--yellow);
}

.industry-list__item span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
}

.industry-list__item strong {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 4.1rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}


/* ==========================================================================
   12. QUOTE
   ========================================================================== */

.quote {
    overflow: hidden;
    background: var(--yellow);
}

.quote::before {
    content: "QUOTE";
    position: absolute;
    left: -2rem;
    bottom: -3rem;
    color: rgba(21, 22, 20, 0.055);
    font-family: var(--font-display);
    font-size: clamp(12rem, 27vw, 31rem);
    font-weight: 900;
    line-height: 0.7;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    pointer-events: none;
}

.quote__layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(30rem, 1.2fr);
    gap: clamp(4rem, 8vw, 9rem);
    align-items: start;
}

.quote__intro {
    position: sticky;
    top: 8rem;
}

.quote__intro h2 em {
    color: var(--ink);
}

.quote__intro > p:not(.eyebrow) {
    max-width: 35rem;
    margin-top: 2rem;
    font-size: 1.05rem;
}

.quote__notes {
    margin-top: 3rem;
    border-top: 2px solid var(--ink);
}

.quote-note {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(21, 22, 20, 0.35);
}

.quote-note span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.quote-note strong {
    font-size: 0.92rem;
}

.quote__form-wrap {
    background: var(--paper-light);
    box-shadow: var(--shadow);
}

.quote-form {
    padding: clamp(1.5rem, 4vw, 3.5rem);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-field--wide {
    grid-column: 1 / -1;
}

.form-field label {
    font-family: var(--font-mono);
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(21, 22, 20, 0.25);
    background: var(--white);
    color: var(--ink);
    padding: 0.9rem 1rem;
    outline: none;
    transition:
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.form-field input,
.form-field select {
    min-height: 3.4rem;
}

.form-field textarea {
    min-height: 10rem;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 2px var(--ink);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9b9b93;
}

.form-disclaimer {
    margin: 1.5rem 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.5;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}


/* ==========================================================================
   13. FAQ
   ========================================================================== */

.faq {
    background: var(--paper);
}

.faq-list {
    border-top: 0.45rem solid var(--ink);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    min-height: 6rem;
    padding: 1.6rem 4rem 1.6rem 0;
    list-style: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 3.1rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.035em;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 1.5rem;
    transition: transform 180ms ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item__answer {
    padding: 0 4rem 2rem 0;
}

.faq-item__answer p {
    max-width: 56rem;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}


/* ==========================================================================
   14. CLOSING CTA
   ========================================================================== */

.closing-cta {
    position: relative;
    overflow: hidden;
    padding-block: clamp(4rem, 7vw, 7rem);
    background: var(--red);
    color: var(--white);
}

.closing-cta::before,
.closing-cta::after {
    content: "";
    position: absolute;
    top: -20%;
    width: 0.55rem;
    height: 140%;
    background: var(--traffic-white);
    transform: rotate(24deg);
    opacity: 0.5;
}

.closing-cta::before {
    right: 12%;
}

.closing-cta::after {
    right: 16%;
}

.closing-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 3rem;
}

.closing-cta .eyebrow {
    color: var(--white);
}

.closing-cta h2 {
    max-width: 60rem;
}

.closing-cta h2 em {
    color: var(--white);
}


/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.site-footer {
    overflow: hidden;
    background: var(--asphalt);
    color: var(--white);
}

.site-footer__main {
    display: grid;
    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(10rem, 0.45fr)
        minmax(12rem, 0.55fr);
    gap: clamp(3rem, 7vw, 8rem);
    padding-block: 5rem;
}

.brand--footer .brand__mark {
    background: var(--yellow);
    color: var(--ink);
}

.brand--footer .brand__tagline {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__brand > p {
    max-width: 34rem;
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.65;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

.site-footer__column a,
.site-footer__column span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.site-footer__column a:hover {
    color: var(--yellow);
}

.site-footer__label {
    margin-bottom: 0.5rem;
    color: var(--yellow);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.site-footer__legal {
    display: grid;
    grid-template-columns: 0.45fr 1.55fr;
    gap: 4rem;
    padding-block: 1.5rem;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.7rem;
    line-height: 1.55;
}

.site-footer__legal p {
    margin-bottom: 0;
}

.site-footer__punchline {
    margin: 0;
    padding: 2.6rem 0 2rem;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.08);
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 9rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}


/* ==========================================================================
   16. LARGE DESKTOP
   ========================================================================== */

@media (min-width: 1700px) {

    :root {
        --shell:
            min(1580px, calc(100vw - 8rem));
    }

    .hero__copy {
        padding-left: 7rem;
    }

    .hero__content {
        min-height: 820px;
    }

}


/* ==========================================================================
   17. DESKTOP / SMALL LAPTOP
   ========================================================================== */

@media (max-width: 1180px) {

    :root {
        --shell:
            min(100% - 3rem, 1180px);
    }

    .site-header {
        background: var(--paper-light);
    }

    .site-nav {
        gap: 1rem;
    }

    .site-nav > a:not(.button) {
        font-size: 0.64rem;
    }

    .hero__content {
        grid-template-columns:
            minmax(0, 1.4fr)
            minmax(12rem, 0.6fr);
    }

    .hero__copy {
        padding-left: 2rem;
    }

    .parking-space {
        min-height: 22rem;
        padding-inline: 1.5rem;
    }

    .quote__layout {
        grid-template-columns:
            minmax(0, 0.8fr)
            minmax(27rem, 1.2fr);
        gap: 4rem;
    }

}


/* ==========================================================================
   18. TABLET / MOBILE NAV
   ========================================================================== */

@media (max-width: 900px) {

    :root {
        --shell:
            min(100% - 2rem, 860px);

        --section-space:
            5.5rem;
    }

    html {
        scroll-padding-top: 4.6rem;
    }

    .site-header__inner {
        position: relative;
        min-height: 4.6rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: -1rem;
        right: -1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.7rem 1rem 1rem;
        border-top: 1px solid var(--line);
        background: var(--paper-light);
        box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.16);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav > a:not(.button) {
        padding: 1rem 0;
        border-bottom: 1px solid var(--line);
        font-size: 0.72rem;
    }

    .site-nav > a:not(.button)::after {
        display: none;
    }

    .button--header {
        margin-top: 0.9rem;
    }

    .hero {
        min-height: auto;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(13, 14, 13, 0.72) 0%,
                rgba(13, 14, 13, 0.92) 75%,
                rgba(13, 14, 13, 0.98) 100%
            );
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: 46rem;
        padding-top: 7rem;
        padding-bottom: 8rem;
    }

    .hero__copy {
        padding-left: 0;
    }

    .hero__stamp {
        justify-self: start;
        width: 15rem;
        transform: rotate(-2deg);
    }

    .hero__service-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__service-strip span {
        border-bottom: 1px solid rgba(21, 22, 20, 0.25);
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .parking-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .parking-space:nth-child(3n) {
        border-right: 0.32rem solid var(--traffic-white);
    }

    .parking-space:nth-child(2n) {
        border-right: 0;
    }

    .parking-space:nth-last-child(-n + 3) {
        border-bottom: 0.32rem solid var(--traffic-white);
    }

    .parking-space:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison__arrow {
        transform: rotate(90deg);
        justify-self: center;
    }

    .process::before {
        display: none;
    }

    .process-route::before {
        left: 2.8rem;
    }

    .process-step {
        grid-template-columns: 6.5rem 1fr;
    }

    .process-step__number {
        width: 5.3rem;
        height: 5.3rem;
        font-size: 2rem;
    }

    .quote__layout {
        grid-template-columns: 1fr;
    }

    .quote__intro {
        position: relative;
        top: auto;
    }

    .closing-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__main {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__legal {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

}


/* ==========================================================================
   19. PHONE
   ========================================================================== */

@media (max-width: 640px) {

    :root {
        --shell:
            calc(100% - 1.4rem);

        --section-space:
            4.5rem;
    }

    .brand__mark {
        width: 2.8rem;
    }

    .brand__name {
        font-size: 0.92rem;
    }

    .brand__tagline {
        font-size: 0.56rem;
    }

    .hero__content {
        min-height: 42rem;
        padding-top: 5rem;
        padding-bottom: 9rem;
    }

    .hero__title {
        font-size: clamp(3.9rem, 18vw, 6.4rem);
    }

    .hero__intro {
        font-size: 0.98rem;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__stamp {
        width: 13rem;
    }

    .section-heading h2,
    .closing-cta h2,
    .quote__intro h2 {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .parking-grid {
        grid-template-columns: 1fr;
    }

    .parking-space,
    .parking-space:nth-child(2n),
    .parking-space:nth-child(3n),
    .parking-space:nth-last-child(-n + 2),
    .parking-space:nth-last-child(-n + 3) {
        min-height: 20rem;
        border-right: 0;
        border-bottom: 0.3rem solid var(--traffic-white);
    }

    .parking-space:last-child {
        border-bottom: 0;
    }

    .parking-space__number {
        margin-bottom: 4rem;
    }

    .comparison__image-wrap {
        aspect-ratio: 4 / 3;
    }

    .process-route::before {
        left: 2.1rem;
    }

    .process-step {
        grid-template-columns: 4.7rem 1fr;
        min-height: 13rem;
    }

    .process-step__number {
        width: 4.1rem;
        height: 4.1rem;
        font-size: 1.55rem;
        border-width: 0.25rem;
    }

    .process-step__content {
        padding: 2rem 0 2rem 1rem;
    }

    .process-step h3 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .industry-list__item {
        grid-template-columns: 3rem 1fr;
        min-height: 5.6rem;
    }

    .industry-list__item strong {
        font-size: clamp(1.8rem, 9vw, 3rem);
    }

    .quote__layout {
        gap: 3rem;
    }

    .quote__notes {
        margin-top: 2rem;
    }

    .quote-note {
        grid-template-columns: 6.5rem 1fr;
    }

    .quote-form {
        padding: 1.2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field--wide {
        grid-column: auto;
    }

    .faq-item summary {
        min-height: 5.2rem;
        padding-right: 3.4rem;
        font-size: clamp(1.6rem, 8vw, 2.5rem);
    }

    .faq-item__answer {
        padding-right: 0;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-block: 4rem;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__punchline {
        font-size: clamp(3rem, 18vw, 5rem);
    }

}


/* ==========================================================================
   20. VERY SMALL PHONE
   ========================================================================== */

@media (max-width: 420px) {

    .site-shell {
        width: calc(100% - 1rem);
    }

    .brand__copy {
        max-width: 10rem;
    }

    .hero__service-strip span {
        padding-inline: 0.5rem;
        font-size: 0.58rem;
    }

    .hero__stamp {
        width: 11.5rem;
    }

    .comparison__arrow {
        width: 3.4rem;
        height: 3.4rem;
    }

    .quote-note {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

}


/* ==========================================================================
   21. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}

/* STAY IN YOUR LANE TYPE SCALE TUNE V1 */

/* Bring the display scale back under control on desktop + ultrawide. */

.hero__title {
    font-size: clamp(4.2rem, 6vw, 6.6rem);
    line-height: 0.82;
}

.section-heading h2 {
    font-size: clamp(3rem, 5vw, 5.4rem);
    line-height: 0.9;
}

.quote__intro h2 {
    font-size: clamp(3.2rem, 4.4vw, 4.7rem);
    line-height: 0.88;
}

.closing-cta h2 {
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 0.9;
}

.parking-space h3 {
    font-size: clamp(2.3rem, 3.2vw, 3.8rem);
}

.industry-list__item strong {
    font-size: clamp(1.9rem, 3vw, 3.4rem);
}

.site-footer__punchline {
    font-size: clamp(3.2rem, 6vw, 6.5rem);
    line-height: 0.82;
}

@media (min-width: 1700px) {

    .hero__title {
        font-size: 6.6rem;
    }

    .section-heading h2 {
        font-size: 5.4rem;
    }

    .quote__intro h2 {
        font-size: 4.7rem;
    }

}

/* /STAY IN YOUR LANE TYPE SCALE TUNE V1 */

/* STAY IN YOUR LANE ULTRAWIDE CONSTRAINED LAYOUT V2 */

/* Full-width backgrounds. Constrained readable content. */

.hero__content > *,
.section-heading--split > *,
.quote__layout > *,
.closing-cta__inner > *,
.site-footer__main > *,
.form-grid > * {
    min-width: 0;
}

.hero__copy {
    padding-left: 0;
}

.section-heading__intro {
    width: min(100%, 34rem);
}

.section-heading--split .section-heading__intro {
    justify-self: end;
}

.quote__intro,
.quote__form-wrap {
    min-width: 0;
}

.quote__intro h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: 0.9;
}

.quote-form {
    width: 100%;
}

@media (min-width: 1700px) {

    :root {
        --shell: min(1680px, calc(100vw - 8rem));
    }

    .hero__content {
        grid-template-columns:
            minmax(0, 1.25fr)
            minmax(18rem, 0.5fr);
        gap: clamp(4rem, 6vw, 7rem);
    }

    .hero__copy {
        max-width: 66rem;
        padding-left: 0;
    }

    .section-heading--split {
        grid-template-columns:
            minmax(0, 1.35fr)
            minmax(20rem, 0.55fr);
        gap: clamp(4rem, 6vw, 7rem);
    }

    .section-heading--split > div:first-child {
        max-width: 68rem;
    }

    .quote__layout {
        grid-template-columns:
            minmax(0, 0.8fr)
            minmax(30rem, 1.2fr);
        gap: clamp(4rem, 6vw, 7rem);
    }

    .quote__intro {
        max-width: 36rem;
    }

}

@media (min-width: 2600px) {

    :root {
        --shell: 1680px;
    }

}

/* /STAY IN YOUR LANE ULTRAWIDE CONSTRAINED LAYOUT V2 */

/* STAY IN YOUR LANE BOUNDARY-AWARE LINE CLEARANCE V3 */

/*
   Do not guess desktop vs widescreen vs ultrawide.

   Calculate where the decorative line sits relative to the
   centered content shell and add clearance only when needed.

   On ultrawide screens the shell naturally sits well inside
   the line, so max() resolves to zero additional padding.
*/

@media (min-width: 901px) {

    .hero__copy {
        padding-left: max(
            0px,
            calc(
                6vw + 4rem -
                ((100vw - var(--shell)) / 2)
            )
        );
    }

    .process .section-heading {
        padding-left: max(
            0px,
            calc(
                11vw + 3rem -
                ((100vw - var(--shell)) / 2)
            )
        );
    }

}

/* /STAY IN YOUR LANE BOUNDARY-AWARE LINE CLEARANCE V3 */

/* STAY IN YOUR LANE HERO BOUNDARY FIX V4 */

/*
   Keep the hero copy to the right of the viewport-based
   white/yellow parking lines without widening the site shell.

   These ranges mirror the actual shell breakpoints.
*/

@media (min-width: 901px) and (max-width: 1180px) {

    .hero__copy {
        padding-left: calc(6vw + 2.5rem);
    }

}

@media (min-width: 1181px) and (max-width: 1559px) {

    .hero__copy {
        padding-left: calc(6vw + 1.5rem);
    }

}

@media (min-width: 1560px) and (max-width: 1699px) {

    .hero__copy {
        padding-left: max(0px, calc(50.25rem - 44vw));
    }

}

@media (min-width: 1700px) and (max-width: 1807px) {

    .hero__copy {
        padding-left: 6vw;
    }

}

@media (min-width: 1808px) and (max-width: 2054px) {

    .hero__copy {
        padding-left: max(0px, calc(56.5rem - 44vw));
    }

}

@media (min-width: 2055px) {

    .hero__copy {
        padding-left: 0;
    }

}

/* /STAY IN YOUR LANE HERO BOUNDARY FIX V4 */
