@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

/* =========================================================
   TEAM EFFORT, TECHNICALLY.™
   FREE ONE-PAGE MOVING + HAULING TEMPLATE
   ========================================================= */

:root {
    --ink: #121212;
    --navy: #17263d;
    --navy-dark: #0e1827;
    --navy-soft: #243754;

    --kraft: #c99a5b;
    --kraft-light: #e7c99b;
    --kraft-pale: #f4e5c8;
    --paper: #f7f1e6;
    --cream: #fffaf0;

    --orange: #ee6a2c;
    --orange-dark: #c94f1d;

    --yellow: #f1bf45;
    --green: #638966;
    --red: #c54635;

    --steel: #abb0b5;
    --gray: #686868;
    --line: rgba(18, 18, 18, 0.18);
    --line-light: rgba(255, 255, 255, 0.18);

    --display: "Archivo Black", Impact, sans-serif;
    --body: "Inter", Arial, sans-serif;
    --mono: "IBM Plex Mono", Consolas, monospace;

    --site-shell: 1500px;
    --section-space: clamp(4.75rem, 8vw, 8rem);

    --shadow-hard: 10px 10px 0 rgba(18, 18, 18, 0.16);
    --shadow-dark: 12px 12px 0 rgba(0, 0, 0, 0.28);
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.65;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

address {
    font-style: normal;
}

.site-shell {
    width: min(
        calc(100% - clamp(2rem, 7vw, 7rem)),
        var(--site-shell)
    );
    margin-inline: auto;
}


/* =========================================================
   ACCESSIBILITY / FOCUS
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}


/* =========================================================
   DEMO TOAST
   ========================================================= */

.demo-toast {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    z-index: 1000;
    width: min(calc(100% - 2rem), 520px);
    padding: 1rem 1.25rem;
    background: var(--navy-dark);
    color: var(--cream);
    border: 2px solid var(--orange);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.25);
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 1rem);
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.demo-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}


/* =========================================================
   MOVING STRIP
   ========================================================= */

.move-strip {
    position: relative;
    z-index: 50;
    background: var(--orange);
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
}

.move-strip__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.move-strip__inner a {
    font-weight: 700;
}

.move-strip__inner a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 241, 230, 0.97);
    border-bottom: 2px solid var(--ink);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    min-height: 94px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 3rem);
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 0.92;
}

.brand > span,
.brand > strong {
    font-family: var(--display);
    letter-spacing: -0.045em;
}

.brand > span {
    font-size: clamp(0.9rem, 1.15vw, 1.15rem);
}

.brand > strong {
    font-size: clamp(1.15rem, 1.65vw, 1.7rem);
}

.brand > small {
    margin-top: 0.45rem;
    padding: 0.2rem 0.4rem;
    background: var(--navy);
    color: var(--cream);
    font-family: var(--mono);
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.8rem, 1.7vw, 1.6rem);
}

.site-nav a {
    position: relative;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -0.35rem;
    height: 3px;
    background: var(--orange);
    transition: right 180ms ease;
}

.site-nav a:hover::after {
    right: 0;
}

.header-quote {
    padding: 0.85rem 1.15rem;
    background: var(--navy);
    color: var(--cream);
    border: 2px solid var(--navy);
    box-shadow: 5px 5px 0 var(--orange);
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        transform 150ms ease,
        box-shadow 150ms ease;
}

.header-quote:hover {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0 var(--orange);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 44px;
    padding: 9px;
    background: var(--navy);
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    margin: 4px 0;
    background: var(--cream);
}


/* =========================================================
   GENERAL TYPOGRAPHY / UTILITIES
   ========================================================= */

.eyebrow,
.box-label,
.room-sticker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-family: var(--mono);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    font-size: 0.72rem;
}

.box-label {
    padding: 0.5rem 0.7rem;
    background: var(--cream);
    border: 2px solid var(--ink);
    font-size: 0.67rem;
    box-shadow: 4px 4px 0 rgba(18, 18, 18, 0.12);
    transform: rotate(-1deg);
}

.room-sticker {
    padding: 0.35rem 0.55rem;
    background: var(--yellow);
    color: var(--ink);
    border: 1px solid rgba(18, 18, 18, 0.45);
    font-size: 0.59rem;
}

.section-heading {
    max-width: 940px;
    margin-bottom: clamp(2.5rem, 5vw, 4.75rem);
}

.section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: end;
}

.section-heading h2,
.crew__heading h2,
.heavy-stuff__copy h2,
.reviews__content h2,
.service-area__copy h2,
.quote__heading h2,
.final-cta h2 {
    margin: 0.65rem 0 0;
    font-family: var(--display);
    font-size: clamp(2.7rem, 6vw, 6.6rem);
    line-height: 0.91;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    text-wrap: balance;
}

.section-heading h2 span,
.crew__heading h2 span,
.heavy-stuff__copy h2 span,
.reviews__content h2 span,
.service-area__copy h2 span,
.quote__heading h2 span,
.final-cta h2 span {
    color: var(--orange);
}

.section-heading > p,
.section-heading--split > p {
    margin: 1.25rem 0 0;
    max-width: 600px;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 500;
}

.section-heading--split > p {
    margin: 0 0 0.25rem;
}

.section-heading--light {
    color: var(--cream);
}

.section-heading--light h2 span {
    color: var(--yellow);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    border: 2px solid currentColor;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition:
        transform 150ms ease,
        box-shadow 150ms ease,
        background 150ms ease;
}

.button--orange {
    background: var(--orange);
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: 6px 6px 0 var(--ink);
}

.button--orange:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--ink);
}

.button--outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.button--outline:hover {
    background: var(--ink);
    color: var(--cream);
}

.button--navy {
    background: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
    box-shadow: 6px 6px 0 var(--orange);
}

.button--navy:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--orange);
}

.button--cream {
    background: var(--cream);
    color: var(--navy-dark);
    border-color: var(--cream);
    box-shadow: 7px 7px 0 var(--orange);
}

.button--cream:hover {
    transform: translate(3px, 3px);
    box-shadow: 4px 4px 0 var(--orange);
}


/* =========================================================
   MOVING PHOTO SYSTEM
   ========================================================= */

.moving-photo {
    position: relative;
    overflow: hidden;
    background: var(--kraft-light);
    border: 2px solid var(--ink);
}

.moving-photo img {
    height: 100%;
    object-fit: cover;
}

.handling-stamp {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    padding: 0.5rem 0.7rem;
    background: var(--cream);
    border: 3px solid var(--red);
    color: var(--red);
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: rotate(-7deg);
}

.handling-stamp--orange {
    border-color: var(--orange);
    color: var(--orange);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            var(--kraft-pale) 0%,
            var(--kraft-pale) 58%,
            var(--navy) 58%,
            var(--navy) 100%
        );
    border-bottom: 3px solid var(--ink);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.23;
    background-image:
        linear-gradient(rgba(18, 18, 18, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 18, 18, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero__inner {
    position: relative;
    z-index: 1;
    min-height: min(820px, calc(100vh - 132px));
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(450px, 1.05fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 8rem);
    padding-block: clamp(4rem, 8vw, 7rem);
}

.hero__copy {
    position: relative;
    z-index: 4;
}

.hero h1 {
    margin: 1.1rem 0 0;
    max-width: 820px;
    font-family: var(--display);
    font-size: clamp(4.1rem, 8vw, 9rem);
    line-height: 0.84;
    letter-spacing: -0.065em;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero h1 span {
    display: block;
    color: var(--orange);
}

.hero__subhead {
    max-width: 680px;
    margin: 1.5rem 0 0;
    font-family: var(--mono);
    font-size: clamp(0.85rem, 1.4vw, 1.15rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.04em;
}

.hero__intro {
    max-width: 650px;
    margin: 1.5rem 0 0;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    font-weight: 500;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.hero__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
}

.hero__proof > div {
    min-width: 0;
    padding: 1rem 0.85rem;
    border-right: 1px solid var(--ink);
}

.hero__proof > div:first-child {
    padding-left: 0;
}

.hero__proof > div:last-child {
    border-right: 0;
}

.hero__proof strong {
    display: block;
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.06em;
}

.hero__proof span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    line-height: 1.35;
}

.hero__visual {
    position: relative;
    min-height: 620px;
}

.moving-photo--hero {
    position: absolute;
    inset: 0 0 3.5rem 0;
    border-color: var(--cream);
    box-shadow: var(--shadow-dark);
    transform: rotate(1deg);
}

.moving-photo--hero img {
    object-position: center;
}

.room-sticker--hero {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 3;
    transform: rotate(-2deg);
}

.inventory-card {
    position: absolute;
    right: -1.5rem;
    bottom: 0;
    z-index: 5;
    width: min(320px, 65%);
    padding: 1rem;
    background: var(--cream);
    border: 2px solid var(--ink);
    box-shadow: 7px 7px 0 var(--orange);
    transform: rotate(-1.5deg);
}

.inventory-card__title {
    display: block;
    padding-bottom: 0.65rem;
    border-bottom: 2px solid var(--ink);
    font-family: var(--mono);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.inventory-card dl {
    margin-top: 0.5rem;
}

.inventory-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.38rem 0;
    border-bottom: 1px dashed rgba(18, 18, 18, 0.35);
    font-family: var(--mono);
    font-size: 0.66rem;
}

.inventory-card dd {
    font-weight: 700;
}

.inventory-card small {
    display: block;
    margin-top: 0.75rem;
    font-family: var(--mono);
    font-size: 0.53rem;
    line-height: 1.35;
}


/* =========================================================
   CREW
   ========================================================= */

.crew {
    position: relative;
    background: var(--cream);
    border-bottom: 3px solid var(--ink);
    padding-block: var(--section-space);
}

.crew__inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.65fr) minmax(330px, 0.9fr) minmax(500px, 1.2fr);
    gap: clamp(2rem, 4vw, 5rem);
    align-items: start;
}

.crew__heading {
    position: sticky;
    top: 135px;
}

.crew__heading p {
    max-width: 340px;
    margin: 1.2rem 0 0;
    font-size: 1.05rem;
}

.crew__image {
    min-height: 630px;
}

.crew__image .moving-photo {
    height: 630px;
    box-shadow: var(--shadow-hard);
    transform: rotate(-1.2deg);
}

.crew-photo-label {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    padding: 0.6rem 0.75rem;
    background: var(--orange);
    border: 2px solid var(--ink);
    font-family: var(--mono);
    font-size: 0.64rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.crew-roster {
    border-top: 2px solid var(--ink);
}

.crew-member {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--ink);
    align-items: start;
}

.crew-member--lead {
    background: var(--kraft-pale);
    margin-inline: -1rem;
    padding-inline: 1rem;
}

.crew-member__number {
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 700;
}

.crew-member h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.6rem, 2.4vw, 2.6rem);
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.crew-member strong {
    display: block;
    margin-top: 0.45rem;
    font-family: var(--mono);
    font-size: 0.67rem;
    letter-spacing: 0.07em;
}

.crew-member p {
    margin: 0.65rem 0 0;
    max-width: 520px;
    font-size: 0.93rem;
}

.crew-member small {
    display: block;
    margin-top: 0.5rem;
    font-family: var(--mono);
    font-size: 0.58rem;
}

.crew-status {
    padding: 0.3rem 0.45rem;
    border: 1px solid var(--ink);
    font-family: var(--mono);
    font-size: 0.53rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    transform: rotate(2deg);
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
    background: var(--kraft-pale);
    padding-block: var(--section-space);
    border-bottom: 3px solid var(--ink);
}

.service-stack {
    border-top: 3px solid var(--ink);
}

.service-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 0.85fr) minmax(360px, 1.15fr);
    min-height: 550px;
    border-bottom: 3px solid var(--ink);
}

.service-row--reverse {
    grid-template-columns: 90px minmax(360px, 1.15fr) minmax(0, 0.85fr);
}

.service-row__label {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem 0.8rem;
    background: var(--navy);
    color: var(--cream);
    border-right: 3px solid var(--ink);
    font-family: var(--mono);
}

.service-row__label span {
    font-size: 0.7rem;
}

.service-row__label strong {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
}

.service-row__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 5vw, 5rem);
    background: var(--cream);
}

.service-row__copy h3 {
    max-width: 620px;
    margin: 1rem 0 0;
    font-family: var(--display);
    font-size: clamp(2.3rem, 4.4vw, 5rem);
    line-height: 0.91;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.service-row__copy p {
    max-width: 570px;
    margin: 1.25rem 0 0;
}

.service-row__copy ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1rem;
    margin-top: 1.5rem;
    list-style: none;
}

.service-row__copy li {
    position: relative;
    padding-left: 1rem;
    font-family: var(--mono);
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-row__copy li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
}

.service-row__copy > a {
    width: fit-content;
    margin-top: 1.7rem;
    padding-bottom: 0.15rem;
    border-bottom: 2px solid var(--ink);
    font-family: var(--mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.service-row__image {
    overflow: hidden;
    min-height: 550px;
    background: var(--navy);
}

.service-row__image img {
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.service-row:hover .service-row__image img {
    transform: scale(1.025);
}

.service-row--reverse .service-row__label {
    grid-column: 1;
}

.service-row--reverse .service-row__image {
    grid-column: 2;
    grid-row: 1;
}

.service-row--reverse .service-row__copy {
    grid-column: 3;
    grid-row: 1;
}


/* =========================================================
   LOAD PLAN
   ========================================================= */

.load-plan {
    position: relative;
    background: var(--navy-dark);
    color: var(--cream);
    padding-block: var(--section-space);
    overflow: hidden;
}

.load-plan::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.9) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
    background-size: 44px 44px;
}

.load-plan > .site-shell {
    position: relative;
    z-index: 1;
}

.load-plan__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: stretch;
}

.truck-diagram {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border: 2px solid var(--cream);
    background: var(--ink);
}

.truck-diagram img {
    height: 100%;
    object-fit: cover;
    opacity: 0.83;
}

.truck-diagram::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(14, 24, 39, 0.72)
        );
    pointer-events: none;
}

.truck-diagram__label {
    position: absolute;
    z-index: 3;
    padding: 0.4rem 0.55rem;
    background: var(--yellow);
    color: var(--ink);
    border: 1px solid var(--ink);
    font-family: var(--mono);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.truck-diagram__label--one {
    left: 8%;
    top: 18%;
    transform: rotate(-3deg);
}

.truck-diagram__label--two {
    right: 7%;
    top: 36%;
    transform: rotate(3deg);
}

.truck-diagram__label--three {
    left: 18%;
    bottom: 12%;
    background: var(--orange);
    transform: rotate(-1deg);
}

.move-steps {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    border-top: 1px solid var(--line-light);
}

.move-steps article {
    flex: 1;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line-light);
}

.move-steps article > span {
    font-family: var(--mono);
    font-weight: 700;
    color: var(--yellow);
}

.move-steps h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.45rem, 2.4vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.move-steps p {
    margin: 0.55rem 0 0;
    max-width: 550px;
    color: rgba(255, 250, 240, 0.78);
    font-size: 0.92rem;
}


/* =========================================================
   HEAVY STUFF
   ========================================================= */

.heavy-stuff {
    background: var(--paper);
    padding-block: var(--section-space);
    border-bottom: 3px solid var(--ink);
}

.heavy-stuff__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: center;
}

.heavy-stuff__copy > p {
    max-width: 670px;
    margin: 1.5rem 0 0;
    font-size: 1.05rem;
}

.heavy-list {
    margin: 2rem 0;
    border-top: 2px solid var(--ink);
}

.heavy-list > div {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(18, 18, 18, 0.35);
}

.heavy-list strong {
    font-family: var(--mono);
    font-size: 0.66rem;
    letter-spacing: 0.05em;
}

.heavy-list span {
    font-size: 0.9rem;
}

.heavy-stuff__image {
    position: relative;
}

.heavy-stuff__image .moving-photo {
    height: clamp(500px, 60vw, 760px);
    box-shadow: var(--shadow-hard);
    transform: rotate(1deg);
}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {
    background: var(--orange);
    border-bottom: 3px solid var(--ink);
}

.trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-strip__inner > div {
    min-height: 180px;
    padding: 1.5rem;
    border-right: 2px solid var(--ink);
}

.trust-strip__inner > div:last-child {
    border-right: 0;
}

.trust-strip span {
    display: block;
    font-family: var(--mono);
    font-size: 0.65rem;
}

.trust-strip strong {
    display: block;
    margin-top: 2rem;
    font-family: var(--display);
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.trust-strip small {
    display: block;
    margin-top: 0.65rem;
    max-width: 250px;
    font-size: 0.72rem;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews {
    background: var(--cream);
    padding-block: var(--section-space);
    border-bottom: 3px solid var(--ink);
}

.reviews__inner {
    display: grid;
    grid-template-columns: minmax(400px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: start;
}

.reviews__photo {
    position: sticky;
    top: 135px;
}

.reviews__photo .moving-photo {
    height: 690px;
    box-shadow: var(--shadow-hard);
}

.reviews__photo .room-sticker {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    background: var(--green);
    color: var(--cream);
}

.review-notes {
    margin-top: 2.5rem;
}

.review-notes blockquote {
    position: relative;
    margin-bottom: 1.35rem;
    padding: 1.4rem 1.5rem 1.6rem;
    background: var(--kraft-pale);
    border: 2px solid var(--ink);
    box-shadow: 5px 5px 0 rgba(18, 18, 18, 0.12);
}

.review-notes blockquote:nth-child(2) {
    margin-left: 2rem;
    transform: rotate(0.6deg);
}

.review-notes blockquote:nth-child(3) {
    margin-right: 1.5rem;
    transform: rotate(-0.7deg);
}

.review-notes blockquote > span {
    display: inline-block;
    padding-bottom: 0.45rem;
    border-bottom: 1px dashed var(--ink);
    font-family: var(--mono);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.review-notes p {
    margin: 1rem 0 0;
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
    font-weight: 600;
    line-height: 1.45;
}

.review-notes footer {
    margin-top: 1rem;
    font-family: var(--mono);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}


/* =========================================================
   SERVICE AREA / ROUTE BOARD
   ========================================================= */

.service-area {
    background: var(--kraft);
    padding-block: var(--section-space);
    border-bottom: 3px solid var(--ink);
}

.service-area__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: center;
}

.service-area__copy > p {
    max-width: 590px;
    margin: 1.4rem 0 0;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.6rem;
}

.area-list span {
    padding: 0.45rem 0.65rem;
    background: var(--cream);
    border: 1px solid var(--ink);
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.service-phone {
    display: inline-block;
    margin-top: 2rem;
    font-family: var(--display);
    font-size: clamp(1.7rem, 3vw, 3rem);
    line-height: 1;
    border-bottom: 4px solid var(--ink);
}

.route-board {
    position: relative;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: var(--navy);
    color: var(--cream);
    border: 3px solid var(--ink);
    box-shadow: 10px 10px 0 var(--orange);
}

.route-board__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--mono);
    font-size: 0.63rem;
    letter-spacing: 0.05em;
}

.route-board__top strong {
    color: var(--yellow);
}

.route-line {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 250px;
    padding-block: 2rem;
}

.route-line i {
    flex: 1;
    height: 2px;
    border-top: 2px dashed var(--cream);
}

.route-stop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 98px;
    min-height: 70px;
    padding: 0.6rem;
    background: var(--cream);
    color: var(--ink);
    border: 2px solid var(--cream);
    font-family: var(--mono);
    font-size: 0.56rem;
    font-weight: 700;
    text-align: center;
}

.route-stop--finish {
    background: var(--orange);
    border-color: var(--orange);
}

.route-truck {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    font-family: var(--display);
    font-size: 1.5rem;
    border-radius: 50%;
}

.route-board__note {
    padding-top: 1rem;
    border-top: 1px solid var(--line-light);
    font-family: var(--mono);
    font-size: 0.61rem;
    letter-spacing: 0.05em;
}


/* =========================================================
   QUOTE FORM
   ========================================================= */

.quote {
    position: relative;
    background: var(--paper);
    padding-block: var(--section-space);
    overflow: hidden;
}

.quote::before {
    content: "ESTIMATE / ESTIMATE / ESTIMATE / ESTIMATE /";
    position: absolute;
    left: -2rem;
    right: -2rem;
    top: 2.5rem;
    color: rgba(18, 18, 18, 0.035);
    font-family: var(--display);
    font-size: clamp(5rem, 11vw, 12rem);
    white-space: nowrap;
    pointer-events: none;
}

.quote__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 0.7fr) minmax(520px, 1.3fr);
    gap: clamp(3rem, 7vw, 8rem);
    align-items: start;
}

.quote__heading {
    position: sticky;
    top: 135px;
}

.quote__heading > p {
    max-width: 470px;
    margin: 1.4rem 0 0;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: var(--cream);
    border: 3px solid var(--ink);
    box-shadow: 10px 10px 0 var(--kraft);
}

.quote-form__field {
    min-width: 0;
}

.quote-form__field--full {
    grid-column: 1 / -1;
}

.quote-form label {
    display: block;
    margin-bottom: 0.45rem;
    font-family: var(--mono);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 2px solid var(--ink);
    background: var(--paper);
    color: var(--ink);
    border-radius: 0;
    padding: 0.85rem 0.9rem;
}

.quote-form input,
.quote-form select {
    min-height: 51px;
}

.quote-form textarea {
    resize: vertical;
    min-height: 140px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: rgba(18, 18, 18, 0.5);
}

.quote-form__footer {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.25rem;
    border-top: 2px dashed var(--ink);
}

.quote-form__footer p {
    max-width: 520px;
    margin: 0;
    font-size: 0.76rem;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    position: relative;
    overflow: hidden;
    background: var(--navy-dark);
    color: var(--cream);
    padding-block: clamp(4.5rem, 8vw, 8rem);
    border-top: 3px solid var(--ink);
}

.final-cta::before,
.final-cta::after {
    content: "";
    position: absolute;
    width: 42vw;
    height: 90px;
    background: var(--orange);
    opacity: 0.9;
    pointer-events: none;
}

.final-cta::before {
    left: -12vw;
    top: -15px;
    transform: rotate(-7deg);
}

.final-cta::after {
    right: -10vw;
    bottom: -20px;
    transform: rotate(6deg);
}

.final-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    text-align: center;
}

.final-cta .eyebrow {
    margin-inline: auto;
    color: var(--yellow);
}

.final-cta h2 {
    margin-top: 1rem;
}

.final-cta h2 span {
    display: block;
}

.final-cta .button {
    margin-top: 2rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand strong {
    max-width: 420px;
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
}

.footer-brand > span {
    margin-top: 0.6rem;
    color: var(--orange);
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-brand small {
    margin-top: 0.35rem;
    color: rgba(255, 250, 240, 0.65);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 0.55rem 2rem;
}

.footer-nav a {
    font-family: var(--mono);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 250, 240, 0.58);
    font-family: var(--mono);
    font-size: 0.57rem;
    letter-spacing: 0.03em;
}


/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1180px) {

    .site-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .site-nav {
        gap: 0.8rem;
    }

    .site-nav a {
        font-size: 0.62rem;
    }

    .crew__inner {
        grid-template-columns: 0.75fr 1.25fr;
    }

    .crew__heading {
        grid-column: 1 / -1;
        position: static;
        max-width: 700px;
    }

    .crew__image {
        min-height: 600px;
    }

    .service-row,
    .service-row--reverse {
        grid-template-columns: 74px minmax(0, 1fr) minmax(320px, 0.9fr);
    }

    .heavy-stuff__inner {
        gap: 3.5rem;
    }
}


/* =========================================================
   MOBILE NAV / TABLET BREAK
   ========================================================= */

@media (max-width: 980px) {

    .site-shell {
        width: min(calc(100% - 2.5rem), var(--site-shell));
    }

    .move-strip__inner span:nth-child(2) {
        display: none;
    }

    .site-header__inner {
        min-height: 82px;
        grid-template-columns: 1fr auto auto;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .header-quote {
        order: 3;
    }

    .site-nav {
        display: none;
    }

    .site-nav.site-nav--portal {
        position: fixed;
        inset: 0;
        z-index: 999;
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 6rem 2rem 2rem;
        background: var(--navy-dark);
        color: var(--cream);
    }

    .site-nav.site-nav--portal.is-open {
        display: flex;
    }

    .site-nav.site-nav--portal a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--line-light);
        font-family: var(--display);
        font-size: clamp(1.8rem, 7vw, 3.8rem);
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .site-nav.site-nav--portal a::after {
        display: none;
    }

    body.nav-open .menu-toggle {
        position: fixed;
        right: 1.25rem;
        top: 1.25rem;
        z-index: 1000;
        background: var(--orange);
    }

    body.nav-open .menu-toggle span {
        background: var(--ink);
    }

    .hero {
        background: var(--kraft-pale);
    }

    .hero__inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-block: 4rem;
    }

    .hero h1 {
        font-size: clamp(4.3rem, 13vw, 8rem);
    }

    .hero__visual {
        min-height: 680px;
        padding: 2rem;
        background: var(--navy);
    }

    .inventory-card {
        right: 0.5rem;
    }

    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .section-heading--split > p {
        margin: 0;
    }

    .crew__inner {
        grid-template-columns: 1fr;
    }

    .crew__heading {
        grid-column: auto;
    }

    .crew__image {
        min-height: 0;
    }

    .crew__image .moving-photo {
        height: 640px;
    }

    .service-row,
    .service-row--reverse {
        grid-template-columns: 70px 1fr;
        min-height: 0;
    }

    .service-row__label,
    .service-row--reverse .service-row__label {
        grid-column: 1;
        grid-row: 1 / span 2;
    }

    .service-row__copy,
    .service-row--reverse .service-row__copy {
        grid-column: 2;
        grid-row: 2;
    }

    .service-row__image,
    .service-row--reverse .service-row__image {
        grid-column: 2;
        grid-row: 1;
        min-height: 430px;
    }

    .load-plan__layout {
        grid-template-columns: 1fr;
    }

    .heavy-stuff__inner {
        grid-template-columns: 1fr;
    }

    .heavy-stuff__image {
        max-width: 760px;
    }

    .trust-strip__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip__inner > div:nth-child(2) {
        border-right: 0;
    }

    .trust-strip__inner > div:nth-child(-n + 2) {
        border-bottom: 2px solid var(--ink);
    }

    .reviews__inner {
        grid-template-columns: 1fr;
    }

    .reviews__photo {
        position: static;
    }

    .reviews__photo .moving-photo {
        height: 620px;
    }

    .service-area__inner {
        grid-template-columns: 1fr;
    }

    .quote__inner {
        grid-template-columns: 1fr;
    }

    .quote__heading {
        position: static;
        max-width: 740px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    :root {
        --section-space: 4.25rem;
    }

    .site-shell {
        width: min(calc(100% - 1.5rem), var(--site-shell));
    }

    .move-strip__inner {
        min-height: 34px;
        font-size: 0.57rem;
    }

    .brand > span {
        font-size: 0.72rem;
    }

    .brand > strong {
        font-size: 1rem;
    }

    .brand > small {
        font-size: 0.44rem;
    }

    .header-quote {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .hero__inner {
        padding-block: 3rem;
    }

    .hero h1 {
        font-size: clamp(3.65rem, 17vw, 6.5rem);
    }

    .hero__subhead {
        font-size: 0.8rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__proof {
        grid-template-columns: 1fr;
    }

    .hero__proof > div {
        padding: 0.85rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--ink);
    }

    .hero__proof > div:last-child {
        border-bottom: 0;
    }

    .hero__visual {
        min-height: 530px;
        margin-inline: -0.75rem;
        padding: 1rem;
    }

    .moving-photo--hero {
        inset: 1rem 1rem 4rem;
    }

    .inventory-card {
        right: 0.25rem;
        bottom: 0;
        width: min(290px, 78%);
    }

    .section-heading h2,
    .crew__heading h2,
    .heavy-stuff__copy h2,
    .reviews__content h2,
    .service-area__copy h2,
    .quote__heading h2,
    .final-cta h2 {
        font-size: clamp(2.55rem, 13vw, 4.8rem);
    }

    .crew__image .moving-photo {
        height: 520px;
    }

    .crew-member {
        grid-template-columns: 42px 1fr;
    }

    .crew-status {
        grid-column: 2;
        justify-self: start;
    }

    .service-row,
    .service-row--reverse {
        grid-template-columns: 52px 1fr;
    }

    .service-row__label {
        padding-inline: 0.45rem;
    }

    .service-row__copy {
        padding: 2rem 1.25rem;
    }

    .service-row__copy h3 {
        font-size: clamp(2rem, 10vw, 3.8rem);
    }

    .service-row__copy ul {
        grid-template-columns: 1fr;
    }

    .service-row__image,
    .service-row--reverse .service-row__image {
        min-height: 300px;
    }

    .truck-diagram {
        min-height: 500px;
    }

    .move-steps article {
        grid-template-columns: 42px 1fr;
    }

    .heavy-list > div {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .heavy-stuff__image .moving-photo {
        height: 520px;
    }

    .trust-strip__inner {
        grid-template-columns: 1fr;
    }

    .trust-strip__inner > div {
        min-height: 150px;
        border-right: 0;
        border-bottom: 2px solid var(--ink);
    }

    .trust-strip__inner > div:last-child {
        border-bottom: 0;
    }

    .reviews__photo .moving-photo {
        height: 500px;
    }

    .review-notes blockquote:nth-child(2),
    .review-notes blockquote:nth-child(3) {
        margin-left: 0;
        margin-right: 0;
        transform: none;
    }

    .route-board {
        padding: 1.25rem;
    }

    .route-board__top {
        flex-direction: column;
    }

    .route-line {
        min-height: 200px;
        gap: 0.35rem;
    }

    .route-line i:nth-of-type(2),
    .route-line i:nth-of-type(5) {
        display: none;
    }

    .route-stop {
        min-width: 72px;
        min-height: 62px;
        font-size: 0.48rem;
    }

    .route-truck {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .quote-form {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .quote-form__field--full {
        grid-column: auto;
    }

    .quote-form__footer {
        grid-column: auto;
        flex-direction: column;
        align-items: stretch;
    }

    .quote-form__footer .button {
        width: 100%;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .move-strip__inner span:first-child {
        display: none;
    }

    .move-strip__inner {
        justify-content: center;
    }

    .hero h1 {
        font-size: 3.4rem;
    }

    .box-label {
        font-size: 0.56rem;
    }

    .hero__visual {
        min-height: 470px;
    }

    .inventory-card {
        width: 84%;
    }

    .service-row,
    .service-row--reverse {
        grid-template-columns: 44px 1fr;
    }

    .service-row__label strong {
        font-size: 0.68rem;
    }

    .truck-diagram__label {
        font-size: 0.48rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   VERY WIDE DESKTOP
   ========================================================= */

@media (min-width: 1700px) {

    .hero__inner {
        min-height: 830px;
    }

    .hero__visual {
        min-height: 680px;
    }

    .crew__image .moving-photo {
        height: 690px;
    }

    .service-row {
        min-height: 600px;
    }

    .service-row__image {
        min-height: 600px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


/* =========================================================
   CREW MANIFEST — COLUMN-SAFE HEADING
   ========================================================= */

.crew__heading {
    min-width: 0;
}

.crew__heading h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 4.15vw, 5.25rem);
    line-height: 0.92;
    overflow-wrap: normal;
    word-break: normal;
}

@media (max-width: 1180px) {
    .crew__heading h2 {
        max-width: 760px;
        font-size: clamp(3rem, 7vw, 5.6rem);
    }
}

@media (max-width: 700px) {
    .crew__heading h2 {
        font-size: clamp(2.7rem, 13vw, 4.8rem);
    }
}


/* Crew Manifest final desktop fit */
@media (min-width: 1181px) {
    .crew__heading h2 {
        font-size: clamp(2.8rem, 3.7vw, 4.6rem);
        padding-right: 0.5rem;
    }
}


/* Crew Manifest — wide three-column rebalance */
@media (min-width: 1181px) {
    .crew__inner {
        grid-template-columns:
            minmax(300px, 0.72fr)
            minmax(280px, 0.78fr)
            minmax(460px, 1.2fr);
        gap: clamp(1.75rem, 2.5vw, 3rem);
    }

    .crew__heading h2 {
        max-width: 320px;
        font-size: clamp(2.65rem, 3vw, 4.25rem);
        padding-right: 0;
    }

    .crew__image {
        min-width: 0;
    }
}

/* =========================================================
   TYPOGRAPHY READABILITY PASS
   Font-only overrides. Layout, spacing, imagery, grids,
   widths, heights, and responsive structure are untouched.
   ========================================================= */

.move-strip__inner { font-size: 0.72rem; letter-spacing: 0.065em; }
.brand > small { font-size: 0.62rem; letter-spacing: 0.09em; }
.site-nav a { font-size: 0.72rem; letter-spacing: 0.05em; }
.header-quote { font-size: 0.72rem; letter-spacing: 0.06em; }

.eyebrow { font-size: 0.76rem; }
.box-label { font-size: 0.72rem; }
.room-sticker { font-size: 0.66rem; }

.button { font-size: 0.74rem; letter-spacing: 0.055em; }
.handling-stamp { font-size: 0.70rem; letter-spacing: 0.06em; }

.hero__proof strong { font-size: 0.72rem; letter-spacing: 0.05em; }
.hero__proof span { font-size: 0.82rem; line-height: 1.45; }

.inventory-card__title { font-size: 0.74rem; letter-spacing: 0.06em; }
.inventory-card dl div { font-size: 0.70rem; }
.inventory-card small { font-size: 0.62rem; line-height: 1.45; }

.crew-photo-label { font-size: 0.70rem; letter-spacing: 0.05em; }
.crew-member__number { font-size: 0.76rem; }
.crew-member strong { font-size: 0.72rem; letter-spacing: 0.05em; }
.crew-member p { font-size: 0.98rem; line-height: 1.60; font-weight: 500; }
.crew-member small { font-size: 0.68rem; line-height: 1.45; }
.crew-status { font-size: 0.64rem; letter-spacing: 0.05em; }

.service-row__label span { font-size: 0.74rem; }
.service-row__label strong { font-size: 0.82rem; letter-spacing: 0.09em; }
.service-row__copy p { font-size: 1rem; line-height: 1.60; font-weight: 500; }
.service-row__copy li { font-size: 0.72rem; line-height: 1.50; }
.service-row__copy > a { font-size: 0.72rem; letter-spacing: 0.04em; }

.truck-diagram__label { font-size: 0.64rem; letter-spacing: 0.04em; }
.move-steps article > span { font-size: 0.82rem; }
.move-steps p { font-size: 0.98rem; line-height: 1.55; }

.heavy-stuff__copy > p { font-size: 1.08rem; line-height: 1.60; }
.heavy-list strong { font-size: 0.72rem; letter-spacing: 0.04em; }
.heavy-list span { font-size: 0.98rem; line-height: 1.50; font-weight: 500; }

.trust-strip span { font-size: 0.72rem; }
.trust-strip small { font-size: 0.84rem; line-height: 1.45; font-weight: 500; }

.review-notes blockquote > span { font-size: 0.68rem; letter-spacing: 0.05em; }
.review-notes footer { font-size: 0.68rem; }

.service-area__copy > p { font-size: 1rem; line-height: 1.60; font-weight: 500; }
.area-list span { font-size: 0.68rem; }
.route-board__top { font-size: 0.70rem; }
.route-stop { font-size: 0.64rem; line-height: 1.35; }
.route-board__note { font-size: 0.68rem; line-height: 1.50; }

.quote__heading > p { font-size: 1rem; line-height: 1.60; font-weight: 500; }
.quote-form label { font-size: 0.70rem; letter-spacing: 0.05em; }
.quote-form__footer p { font-size: 0.84rem; line-height: 1.50; }

.footer-brand > span { font-size: 0.74rem; }
.footer-brand small { font-size: 0.90rem; line-height: 1.50; }
.footer-nav a { font-size: 0.72rem; letter-spacing: 0.04em; }
.footer-bottom { font-size: 0.65rem; line-height: 1.50; }

@media (max-width: 1180px) {
    .site-nav a {
        font-size: 0.66rem;
        letter-spacing: 0.045em;
    }
}

@media (max-width: 700px) {
    .move-strip__inner { font-size: 0.65rem; }
    .brand > span { font-size: 0.78rem; }
    .brand > strong { font-size: 1.08rem; }
    .brand > small { font-size: 0.58rem; letter-spacing: 0.08em; }
    .hero__subhead { font-size: 0.86rem; }
    .route-stop { font-size: 0.56rem; }
}

@media (max-width: 420px) {
    .box-label { font-size: 0.64rem; }
    .service-row__label strong { font-size: 0.72rem; }
    .truck-diagram__label { font-size: 0.56rem; }
}

/* =========================================================
   ANCHOR OFFSET — STICKY HEADER
   ========================================================= */

main[id],
section[id] {
    scroll-margin-top: 120px;
}
