/* =========================================================
   Liberty Logistics — stylesheet (Teal & Amber theme)
   Palette    : deep teal #0E4B4F · deep green-teal #093437 · amber #E8A33D
   Type       : Merriweather (serif display) / Montserrat (body) / Roboto (nav)
   Motifs     : amber swoosh/arrow (motion), orbit rings (global reach),
                route lines & angle cuts (infrastructure/logistics),
                subtle geometric grid on teal surfaces.
   ========================================================= */

:root {
    --navy: #0E4B4F;
    --navy-2: #13565B;
    --navy-3: #093437;
    --gold: #E8A33D;
    --gold-2: #F4B85B;
    --gold-soft: rgba(232, 163, 61, .55);
    --ink: #0B3336;
    --gray: #416066;
    --line: #D6E1E0;
    --softer: #F1F7F6;
    --white: #ffffff;
    --black: #000000;

    --font-head: 'Merriweather', Georgia, serif;
    --font-body: 'Montserrat', Arial, sans-serif;
    --font-nav: 'Roboto', Arial, sans-serif;

    --container: 1200px;
    --radius: 4px;
    --shadow: 0 15px 40px rgba(14, 75, 79, 0.14);
    --shadow-lg: 0 22px 55px rgba(14, 75, 79, 0.2);

    --grad-gold: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 100%);

    /* amber swoosh arrow (motion mark, used as CSS bg decoration) */
    --swoosh: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23E8A33D' d='M6 50 C 20 42 34 38 50 32 L50 36 L58 28 L50 20 L50 24 C 32 28 18 34 6 44 Z'/%3E%3C/svg%3E");

    /* subtle blue-print grid for teal surfaces */
    --grid: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    --grid-size: 46px 46px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
ul { list-style: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.ic { display: block; flex: none; fill: currentColor; }

section[id], div[id] { scroll-margin-top: 10px; }

/* ---------- Buttons ---------- */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--grad-gold);
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: .4px;
    cursor: pointer;
    border: 0;
    border-radius: var(--radius);
    clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    transition: background-color .25s, color .25s, filter .25s, box-shadow .25s;
}
.btn:hover { background: var(--navy); color: var(--gold); box-shadow: var(--shadow); }
.btn .ic { transition: transform .25s; }
.btn:hover .ic { transform: translateX(5px); }
.btn:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

.btn--dark { background: var(--navy); color: var(--gold); }
.btn--dark:hover { background: var(--grad-gold); color: var(--navy); }

.btn--ghost { background: transparent; color: var(--gold); border: 1px solid var(--gold); clip-path: none; border-radius: 0; }
.btn--ghost:hover { background: var(--gold); color: var(--navy); }

.btn--sm { padding: 12px 26px; font-size: 14px; clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%); }

/* ---------- Section headings ---------- */
.kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gray);
    margin-bottom: 16px;
}
.kicker::before { content: ""; width: 34px; height: 3px; background: var(--grad-gold); border-radius: 2px; }

.kicker--light { color: #e2eeee; justify-content: center; }
.kicker--light::before { width: 0; }
.kicker--light::after { content: ""; width: 34px; height: 3px; background: var(--grad-gold); border-radius: 2px; }

.sec-title {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 50px;
    color: var(--navy);
    line-height: 1.22;
    text-transform: capitalize;
}
@media (max-width: 800px) { .sec-title { font-size: 36px; } }

.sec-title--rule { position: relative; padding-left: 26px; border-left: 4px solid var(--gold); }
.sec-title--rule::after { content: ""; position: absolute; left: 26px; bottom: -8px; width: 64px; height: 2px; background: var(--grad-gold); }

.sec-title--light { color: var(--white); }

.section { padding: 90px 0; }
.section--sm { padding: 60px 0; }
@media (max-width: 800px) { .section { padding: 60px 0; } }

.page-sub {
    font-weight: 300;
    color: var(--gray);
    max-width: 760px;
}

.center { text-align: center; }
.center .btn { margin-top: 40px; }

/* =========================================================
   Top bar
   ========================================================= */
.topbar {
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    border-bottom: 1px solid rgba(232, 163, 61, .4);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 42px;
    flex-wrap: wrap;
    padding-top: 6px;
    padding-bottom: 6px;
}
.topbar ul { display: flex; align-items: center; flex-wrap: wrap; }
.topbar__contact { gap: 24px; }
.topbar__contact a, .topbar__contact .topbar__addr {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
}
.topbar__contact a:hover { color: var(--gold); }
.topbar__contact .ic { width: 13px; height: 13px; fill: var(--gold); }
.topbar__socials { gap: 8px; }
.topbar__socials a {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
    color: var(--gold);
    transition: background .25s, color .25s, border-color .25s;
}
.topbar__socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.topbar__socials .ic { width: 13px; height: 13px; fill: currentColor; }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header { position: relative; background: var(--white); }
/* route-line accent under the header (motion feel) */
.site-header::after {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(232, 163, 61, .55) 35%, rgba(232, 163, 61, .12) 100%);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.site-header__logo { flex: none; }
.site-header__logo img { width: 200px; }

.site-nav ul { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav a {
    display: inline-block;
    padding: 10px 16px;
    font-family: var(--font-nav);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .6px;
    color: var(--ink);
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-3);
        z-index: 120;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        border-bottom: 3px solid var(--gold);
    }
    .site-nav.is-open { max-height: 480px; }
    .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 20px; }
    .site-nav a {
        color: #e2eeee;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        border-left: 2px solid transparent;
        padding: 14px 10px;
    }
    .site-nav a:hover, .site-nav a.is-active { color: var(--gold); border-left-color: var(--gold); border-bottom-color: rgba(255,255,255,.08); }
}

/* =========================================================
   Hero (home)
   ========================================================= */
.hero {
    position: relative;
    min-height: 720px;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    color: var(--white);
}
.hero::before { content: ""; position: absolute; inset: 0; background: var(--navy); opacity: .84; z-index: 1; }
/* blueprint grid texture over the photo */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--grid);
    background-size: var(--grid-size);
    opacity: .5;
    z-index: 1;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.9), transparent 75%);
}
.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 20s infinite;
    z-index: 0;
}
.hero__slide--1 { background-image: url('../assets/images/banner-trucking.jpg'); }
.hero__slide--2 { background-image: url('../assets/images/banner-storage.jpg'); animation-delay: 5s; }
.hero__slide--3 { background-image: url('../assets/images/banner-shipping.jpg'); animation-delay: 10s; }
.hero__slide--4 { background-image: url('../assets/images/banner-air-cargo.jpg'); animation-delay: 15s; }

@keyframes heroFade {
    0%   { opacity: 0; }
    3%   { opacity: 1; }
    22%  { opacity: 1; }
    25%  { opacity: 0; }
    100% { opacity: 0; }
}

.hero__content { position: relative; z-index: 2; padding: 90px 24px 140px; max-width: 900px; }
.hero h1 {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 75px;
    line-height: 1.18;
    text-transform: capitalize;
    margin: 14px 0 0;
}
.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
}
.hero__tag::before, .hero__tag::after { content: ""; width: 34px; height: 2px; background: var(--grad-gold); }

/* orbit rings — global reach mark */
.hero__orb {
    position: absolute;
    right: -110px;
    top: -110px;
    width: 340px;
    height: 340px;
    z-index: 2;
    border: 1px solid rgba(232, 163, 61, .35);
    border-radius: 50%;
    pointer-events: none;
}
.hero__orb::before {
    content: "";
    position: absolute;
    inset: 52px;
    border: 1px dashed rgba(232, 163, 61, .5);
    border-radius: 50%;
}
.hero__orb::after {
    content: "";
    position: absolute;
    inset: 110px;
    background: radial-gradient(circle, rgba(232,163,61,.25), transparent 70%);
    border-radius: 50%;
}
/* swoosh mark anchored into a ring */
.hero__orb .orb-swoosh {
    position: absolute;
    left: 92px;
    top: 158px;
    width: 46px;
    height: 46px;
    background: var(--swoosh);
    background-size: cover;
}

/* side anchor dots */
.hero__dots {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .95);
    padding: 12px 10px;
    border-top: 4px solid var(--grad-gold);
    box-shadow: var(--shadow);
}
.hero__dots a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--navy);
    transition: color .2s;
}
.hero__dots a:hover { color: var(--gold); }
.hero__dots .ic { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 800px) {
    .hero { min-height: 560px; }
    .hero__content { padding: 60px 20px 120px; }
    .hero h1 { font-size: 44px; }
    .hero__orb { display: none; }
    .hero__dots { display: none; }
}

/* =========================================================
   Stats band
   ========================================================= */
.stats { position: relative; z-index: 5; margin-top: -90px; padding: 0 24px; }
.stats__box {
    background: var(--white);
    border-bottom: 4px solid var(--gold);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stats__item {
    position: relative;
    text-align: center;
    padding: 46px 20px;
    border-right: 1px solid var(--line);
}
.stats__item:last-child { border-right: 0; }
/* gold node dot — as if marked on a route */
.stats__item::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 4px;
    background: var(--grad-gold);
}
.stats__num {
    font-family: var(--font-body);
    font-size: 45px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.stats__num sup { font-size: 18px; color: var(--gold); font-weight: 700; }
.stats__label {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 300;
    text-transform: capitalize;
}
@media (max-width: 900px) {
    .stats { margin-top: -60px; }
    .stats__box { grid-template-columns: repeat(2, 1fr); }
    .stats__item { border-bottom: 1px solid var(--line); }
    .stats__item:nth-child(2n) { border-right: 0; }
    .stats__item:nth-child(n+3) { border-bottom: 0; }
}
@media (max-width: 500px) {
    .stats__num { font-size: 34px; }
    .stats__label { font-size: 14px; }
}

/* =========================================================
   Why best — split section
   ========================================================= */
.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.split--testi { grid-template-columns: 1fr 1.4fr; }
.split__body p { margin-bottom: 18px; }
.split__body p:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   Dark feature band (Research & Development)
   ========================================================= */
.feature {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
    color: var(--white);
    margin: 90px 0 150px;
    padding: 90px 0;
    overflow: hidden;
}
.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--grid);
    background-size: var(--grid-size);
    opacity: .55;
}
.feature::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 240px;
    height: 240px;
    border: 1px dashed rgba(232, 163, 61, .4);
    border-radius: 50%;
}
.feature__inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.feature p { margin: 20px 0 40px; }
.feature__media img { width: 100%; height: 420px; object-fit: cover; }
.feature .kicker { color: var(--gold); }

@media (max-width: 900px) {
    .feature { margin: 70px 0 90px; padding: 60px 0; }
    .feature__inner { grid-template-columns: 1fr; gap: 40px; }
    .feature__media img { height: 300px; }
}

/* =========================================================
   Partners marquee
   ========================================================= */
.marquee {
    overflow: hidden;
    margin: 50px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img {
    height: 70px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .75;
    transition: filter .3s, opacity .3s;
}
.marquee__track img:hover { filter: grayscale(0); opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   Steps — parallax band + cards
   ========================================================= */
.band {
    position: relative;
    background-image: url('../assets/images/cta-home.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    padding: 110px 0 60px;
    color: var(--white);
    overflow: hidden;
}
.band::before { content: ""; position: absolute; inset: 0; background: var(--navy); opacity: .78; }
.band::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--grid);
    background-size: var(--grid-size);
    opacity: .5;
}
.band > * { position: relative; }

/* angular cuts — motion at the section edges */
.band .swoosh-mark {
    position: absolute;
    left: 24px;
    bottom: 18px;
    width: 90px;
    height: 26px;
    background: var(--swoosh);
    background-size: cover;
    opacity: .5;
    z-index: 2;
}

.steps {
    position: relative;
    z-index: 1;
    margin: -50px auto 140px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.step {
    position: relative;
    background: var(--white);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow);
    padding: 50px 46px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
/* gold corner cut — angular infrastructure edge */
.step::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-top: 30px solid var(--gold);
    border-left: 30px solid transparent;
    opacity: .9;
    transition: opacity .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step__num {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-head);
    font-size: 46px;
    font-weight: 700;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 10px;
}
.step__num::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--grad-gold);
    transform: translateY(-6px);
}
.step h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--ink);
    margin-bottom: 14px;
}
.step p { font-weight: 200; }
.step:hover::before { opacity: 1; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; margin: -40px auto 80px; } }

/* =========================================================
   Navy panel CTA
   ========================================================= */
.panel {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
    color: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
    padding: 100px 60px;
    margin: 0 0 120px;
    overflow: hidden;
}
.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--grid);
    background-size: var(--grid-size);
    opacity: .45;
}
.panel::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 230px;
    height: 230px;
    border: 1px dashed rgba(232, 163, 61, .4);
    border-radius: 50%;
    background: var(--swoosh) no-repeat center 62% / 38px 38px;
}
.panel h2 { position: relative; font-family: var(--font-head); font-weight: 300; font-size: 55px; text-transform: capitalize; line-height: 1.3; }
.panel h2 em { font-style: italic; color: var(--gold); }
.panel p { position: relative; margin: 24px auto 0; max-width: 640px; }
.panel .btn { position: relative; margin-top: 40px; }
@media (max-width: 800px) { .panel { padding: 60px 30px; margin-bottom: 70px; } .panel h2 { font-size: 36px; } }

/* =========================================================
   CTA with bg image
   ========================================================= */
.cta-bg {
    position: relative;
    background-image: url('../assets/images/cargo-insurance.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    padding: 130px 24px;
    color: var(--white);
    margin: 110px 0 150px;
    overflow: hidden;
}
.cta-bg::before { content: ""; position: absolute; inset: 0; background: var(--navy); opacity: .8; }
.cta-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--grid);
    background-size: var(--grid-size);
    opacity: .4;
}
.cta-bg > * { position: relative; }
.cta-bg h2 {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 50px;
    text-transform: capitalize;
    letter-spacing: 1.2px;
    line-height: 1.4;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--gold);
}
.cta-bg p {
    font-size: 18px;
    text-transform: capitalize;
    margin-top: 22px;
    letter-spacing: 1px;
}
.cta-bg p::after {
    content: "";
    display: block;
    width: 46px;
    height: 22px;
    margin: 14px auto 0;
    background: var(--swoosh);
    background-size: cover;
}
.cta-bg .btn { margin-top: 34px; }
@media (max-width: 800px) { .cta-bg h2 { font-size: 34px; } }

/* =========================================================
   Affiliations
   ========================================================= */
.affiliations h2 { text-align: center; }
.rule { width: 130px; margin: 20px auto 50px; border: 0; height: 3px; background: var(--grad-gold); border-radius: 2px; }
.affiliations img { width: 820px; max-width: 100%; margin: 0 auto; }

/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
    padding: 110px 24px 120px;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
/* blueprint grid */
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--grid);
    background-size: var(--grid-size);
    opacity: .5;
}
/* orbit + swoosh in the corner */
.page-hero::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 200px;
    height: 200px;
    border: 1px dashed rgba(232, 163, 61, .4);
    border-radius: 50%;
    background: var(--swoosh) no-repeat center 58% / 40px 40px;
}
.page-hero h1 { position: relative; font-family: var(--font-head); font-weight: 300; font-size: 50px; text-transform: capitalize; }
.page-hero h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 18px auto 0;
    background: var(--grad-gold);
    border-radius: 2px;
}
.page-hero p { position: relative; color: #cfe3e3; max-width: 700px; margin: 20px auto 0; }
@media (max-width: 800px) { .page-hero { padding: 70px 24px 80px; } .page-hero h1 { font-size: 36px; } }

/* =========================================================
   Services
   ========================================================= */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service {
    position: relative;
    border: 1px solid var(--line);
    border-top: 4px solid var(--gold);
    padding: 36px 32px;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(14, 75, 79, .08);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
/* angular gold corner on the card */
.service::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-top: 22px solid var(--gold);
    border-left: 22px solid transparent;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: var(--gold);
    margin-bottom: 20px;
    transition: background .3s, color .3s;
}
.service:hover .service__icon { background: var(--gold); color: var(--navy); }
.service__icon .ic { width: 26px; height: 26px; fill: currentColor; }
.service h2 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 16px;
    text-transform: capitalize;
}
.service p { font-weight: 200; margin-bottom: 16px; }
.service ul { flex: 1; }
.service li {
    position: relative;
    padding: 6px 0 6px 26px;
    font-weight: 200;
    border-bottom: 1px dashed var(--line);
}
.service li:last-child { border-bottom: 0; }
.service li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* =========================================================
   History
   ========================================================= */
.history-copy { max-width: 900px; margin: 60px auto 0; }
.history-copy p { margin-bottom: 22px; font-weight: 300; }
.history-copy strong { color: var(--navy); font-weight: 600; }
.history-img {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin: 40px 0 30px;
    align-items: center;
}
.history-img img { width: 100%; max-height: 320px; object-fit: contain; }
@media (max-width: 900px) { .history-img { grid-template-columns: 1fr; } }

/* =========================================================
   Help / PDF library
   ========================================================= */
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.pdf-card {
    position: relative;
    border: 1px solid var(--line);
    text-align: center;
    background: var(--white);
    box-shadow: 0 8px 25px rgba(14, 75, 79, .08);
    transition: transform .3s, box-shadow .3s;
    overflow: hidden;
}
.pdf-card::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-top: 18px solid var(--gold);
    border-left: 18px solid transparent;
}
.pdf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pdf-card__img {
    height: 190px;
    background: linear-gradient(180deg, var(--softer) 0%, #fbfbfc 100%);
    display: grid;
    place-items: center;
    overflow: hidden;
}
.pdf-card__img img { object-fit: contain; max-height: 170px; }
.pdf-card__body { padding: 26px 22px 34px; }
.pdf-card h3 { font-family: var(--font-head); font-weight: 400; font-size: 20px; color: var(--navy); }
.pdf-card p { font-size: 14px; margin: 8px 0 20px; font-weight: 200; }
@media (max-width: 900px) { .help-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; align-items: start; }
.info-card {
    position: relative;
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow);
    padding: 44px 38px;
}
.info-card h2 {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 26px;
    color: var(--navy);
    margin: 30px 0 8px;
}
.info-card h2:first-child { margin-top: 0; }
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
    font-weight: 200;
}
.info-list li:last-child { border-bottom: 0; }
.info-list .ic { width: 18px; height: 18px; fill: var(--gold); margin-top: 4px; }
.info-list a { color: var(--gray); }
.info-list a:hover { color: var(--gold); }

.hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-weight: 300; }
.hours li:last-child { border-bottom: 0; }
.hours strong { color: var(--navy); font-weight: 600; }

.form-card {
    position: relative;
    border: 1px solid var(--line);
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow);
    padding: 44px 38px;
}
.form-card h2 { font-family: var(--font-head); font-weight: 300; font-size: 30px; color: var(--navy); margin-bottom: 8px; }
.form-card > p { margin-bottom: 28px; font-weight: 200; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; color: var(--navy); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fdfcf9;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 163, 61, .22);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.map { margin: 120px 0 0; }
.map iframe { width: 100%; height: 420px; border: 0; filter: grayscale(.3); border-top: 4px solid var(--gold); }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .map { margin-top: 40px; }
    .form-grid-2 { grid-template-columns: 1fr; }
}

/* =========================================================
   Quote / Tracking content pages
   ========================================================= */
.split--lead { grid-template-columns: 1.6fr 1fr; gap: 60px; }
.lead-cta {
    position: relative;
    border: 1px solid var(--line);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow);
    padding: 44px 38px;
    background: var(--white);
    overflow: hidden;
}
/* small angular gold corner */
.lead-cta::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 0; height: 0;
    border-top: 20px solid var(--gold);
    border-left: 20px solid transparent;
}
.lead-cta h2 { font-family: var(--font-head); font-weight: 300; font-size: 28px; color: var(--navy); margin-bottom: 14px; }
.lead-cta ul li { display: flex; gap: 12px; align-items: center; padding: 8px 0; font-weight: 200; }
.lead-cta .ic { width: 16px; height: 16px; fill: var(--gold); }
.lead-cta .btn { margin-top: 22px; width: 100%; justify-content: center; }
@media (max-width: 900px) { .split--lead { grid-template-columns: 1fr; } }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { position: relative; border-top: 1px solid var(--line); }
/* gold swoosh route line at the very top of the footer */
.site-footer::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 20%, rgba(232,163,61,.35) 60%, transparent 100%);
}
.site-footer .container { text-align: center; padding-top: 70px; padding-bottom: 40px; }
.site-footer__logo { position: relative; display: inline-block; }
.site-footer__logo img { width: 200px; margin: 0 auto 30px; }
/* swoosh mark above the wordmark */
.site-footer__logo::before {
    content: "";
    display: block;
    width: 46px;
    height: 22px;
    margin: 0 auto 14px;
    background: var(--swoosh);
    background-size: cover;
}
.site-footer__socials { display: flex; justify-content: center; gap: 10px; margin-bottom: 26px; }
.site-footer__socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    transition: background .25s, color .25s, transform .25s;
}
.site-footer__socials a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.site-footer__socials .ic { width: 16px; height: 16px; fill: currentColor; }
.site-footer__nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; text-transform: uppercase; font-family: var(--font-nav); font-weight: 600; font-size: 13px; letter-spacing: .5px; }
.site-footer__nav a { color: var(--ink); }
.site-footer__nav a:hover { color: var(--gold); }
.site-footer__bar {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
    color: #c9c9dd;
    font-size: 13px;
    padding: 18px 0;
}
.site-footer__bar-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.site-footer__bar-inner a { color: var(--gold); }

/* =========================================================
   Reveal on scroll (only with JS enabled)
   ========================================================= */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Small screens — spacing, cards, tap-friendly targets
   ========================================================= */
@media (max-width: 600px) {
    .topbar__addr { display: none; }
    .site-footer__bar-inner { justify-content: center; text-align: center; }
}

@media (max-width: 500px) {
    .band { padding: 70px 0 40px; }
    .cta-bg { margin: 70px 0 90px; padding: 80px 18px; }
    .feature { margin: 50px 0 70px; padding: 50px 0; }

    .step { padding: 34px 26px; }
    .panel, .info-card, .form-card, .lead-cta { padding: 34px 24px; }

    .info-list a { overflow-wrap: anywhere; }
    .hours li { flex-direction: column; gap: 2px; }
    .hours li span { color: var(--gray); font-size: 15px; }
}

/* =========================================================
   Motion & OS preferences
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .marquee__track { animation: none; width: 100%; flex-wrap: wrap; justify-content: center; gap: 20px; }
    .hero__slide { animation: none; opacity: 1; }
    .hero__slide--2, .hero__slide--3, .hero__slide--4 { display: none; }
    .step:hover, .service:hover, .pdf-card:hover { transform: none; }
}

/* Fixed backgrounds are unreliable on iOS/iPad — fall back to scroll */
@media (max-width: 900px) {
    .band, .cta-bg { background-attachment: scroll; }
}