/* =============================================================
   Tee Print USA — site stylesheet
   Type: Sora (display) + Poppins (text)
   Palette: logo blue / logo yellow / navy / paper white
   ============================================================= */

:root {
    --navy: #0d1f3c;
    --navy-deep: #08152a;
    --navy-soft: #16305c;
    /* Brand colors taken from the logo: royal blue + golden yellow */
    --blue: #1206A5;
    --blue-dark: #0d0480;
    --gold: #FFB000;
    --gold-dark: #e0a000;
    /* Legacy aliases — the brand shifted from flag-red to logo-blue.
       Existing var(--red) usages now resolve to the brand blue. */
    --red: var(--blue);
    --red-dark: var(--blue-dark);
    --paper: #ffffff;
    --mist: #f4f6f9;
    --mist-deep: #e9edf3;
    --line: #e2e7ee;
    --text: #33415c;
    --text-strong: #101c33;
    --text-muted: #697991;
    --font-display: 'Sora', 'Segoe UI', sans-serif;
    --font-text: 'Poppins', -apple-system, 'Segoe UI', sans-serif;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 2px rgba(13, 31, 60, .05), 0 3px 10px rgba(13, 31, 60, .04);
    --shadow-md: 0 4px 14px rgba(13, 31, 60, .07), 0 14px 34px rgba(13, 31, 60, .09);
    --shadow-lg: 0 10px 28px rgba(8, 21, 42, .12), 0 28px 64px rgba(8, 21, 42, .16);
    --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
/* clip (not hidden): hidden creates a scroll container and breaks position:sticky */
html, body { overflow-x: clip; max-width: 100%; }

body {
    margin: 0;
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--paper);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--text-strong);
    line-height: 1.08;
    margin: 0 0 .5rem;
    font-weight: 700;
    letter-spacing: .005em;
}

p { margin: 0 0 1rem; }

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

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    clip: rect(0 0 0 0); clip-path: inset(50%);
    overflow: hidden; white-space: nowrap;
}

/* ---------------- Buttons ---------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .78rem 1.7rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 6px 18px rgba(18, 6, 165, .28); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255, 176, 0, .38); }

.btn-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-soft); border-color: var(--navy-soft); color: #fff; }

.btn-outline { background: transparent; color: var(--navy); border-color: currentColor; }
.btn-outline:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .75); }
.btn-outline-light:hover { background: #fff; border-color: #fff; color: var(--navy); }

.btn-customize {
    display: inline-flex; align-items: center; gap: .5rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1206A5 100%);
    color: #fff; border-color: transparent;
    box-shadow: 0 6px 18px rgba(13, 31, 60, .28);
}
.btn-customize svg { flex: 0 0 auto; }
.btn-customize:hover { background: linear-gradient(135deg, #0d0480 0%, #1206A5 100%); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(13, 31, 60, .34); }

.btn-sm { font-size: .95rem; padding: .5rem 1.1rem; }
.btn-lg { font-size: 1.2rem; padding: .9rem 2.1rem; }

/* ---------------- Topbar ---------------- */

.topbar {
    background: var(--navy-deep);
    color: #cfd8e6;
    font-size: .8125rem;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 38px;
}
.topbar-promo { margin: 0; font-weight: 500; color: #fff; }
.topbar-links { display: flex; align-items: center; gap: 1.1rem; }
.topbar-links a { color: #cfd8e6; }
.topbar-links a:hover { color: #fff; }
.topbar-phone { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: #fff !important; }

/* ---------------- Promo marquee (top gradient) ---------------- */
.promobar { overflow: hidden; background: linear-gradient(90deg, var(--blue) 0%, #0702D3 50%, var(--blue) 100%); color: #fff; }
.promobar-track { display: flex; align-items: center; gap: 2.2rem; width: max-content; padding: .5rem 0; animation: marquee 34s linear infinite; }
.promobar:hover .promobar-track { animation-play-state: paused; }
.promobar-item { font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.promobar-sep { opacity: .5; }

/* ---------------- Header (2-row) ---------------- */
.header-top-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 86px; transition: min-height .2s ease; }
.header-contact { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.hcontact { display: inline-flex; align-items: center; gap: .6rem; color: var(--text-strong); font-weight: 600; }
.hcontact-ic { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(18, 6, 165, .1); color: var(--blue); flex: 0 0 auto; transition: background .18s ease, color .18s ease; }
.hcontact-txt { font-size: .98rem; white-space: nowrap; }
.hcontact:hover .hcontact-ic { background: var(--blue); color: #fff; }

.header-navrow { border-top: 1px solid var(--line); background: var(--paper); }
.header-navrow .main-nav { margin-inline: auto; }
.header-navrow .nav-list { justify-content: center; gap: 0; }
.header-navrow .nav-link { padding: .85rem .55rem; font-size: .88rem; letter-spacing: 0; gap: .25rem; }
.header-navrow .nav-link .chev { width: 11px; height: 11px; }
@media (max-width: 1300px) {
    .header-navrow .nav-link { padding: .8rem .4rem; font-size: .82rem; }
    .header-navrow .nav-link .chev { width: 10px; height: 10px; }
}

/* Stuck: collapse the 2 rows into one floating rounded pill (logo | nav | actions) */
.site-header.is-stuck {
    width: fit-content;
    max-width: calc(100% - 2rem);
    margin: .55rem auto 0;
    padding: 0 1.1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .75rem;
}
.site-header.is-stuck .header-top,
.site-header.is-stuck .header-top > .container,
.site-header.is-stuck .header-top-inner,
.site-header.is-stuck .header-navrow { display: contents; }
.site-header.is-stuck .brand { order: 0; margin-right: .35rem; }
.site-header.is-stuck .main-nav { order: 1; flex: 1 1 auto; margin: 0; max-width: none; padding: 0; }
.site-header.is-stuck .header-actions { order: 2; }
.site-header.is-stuck .header-navrow .nav-list { justify-content: center; gap: 0; }
.site-header.is-stuck .header-navrow .nav-link { padding: .35rem .3rem; font-size: .78rem; letter-spacing: 0; gap: .14rem; }
.site-header.is-stuck .header-navrow .nav-link .chev { width: 9px; height: 9px; }
.site-header.is-stuck .brand-img { height: 34px; }
.site-header.is-stuck .brand { margin-right: .2rem; }
.site-header.is-stuck .header-navrow { border-radius: 0; border-top: 0; }
.site-header.is-stuck .header-actions { gap: .35rem; }
.site-header.is-stuck .header-search-btn { width: 34px; height: 34px; }
.site-header.is-stuck .header-search-btn svg { width: 18px; height: 18px; }
.site-header.is-stuck .header-contact,
.site-header.is-stuck .header-customize,
.site-header.is-stuck .header-quote { display: none; }

/* ---------------- Header ---------------- */

.site-header {
    position: sticky;
    top: .6rem;
    z-index: 200;
    max-width: var(--container);
    margin: .7rem auto 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: box-shadow .2s ease;
}
/* Keep the boxed card corners clean on the bottom row */
.header-navrow { border-radius: 0 0 16px 16px; }

.header-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 74px;
}

.brand { display: inline-flex; align-items: center; gap: 0; margin-right: 3.5rem; }
.brand-text { margin-left: -.6rem; }
.brand-img { height: 54px; width: auto; max-width: 210px; object-fit: contain; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.brand-text strong {
    font-family: var(--font-display);
    font-size: 1.38rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--navy);
    white-space: nowrap;
}
.brand-text small { font-size: .64rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }

.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--text-strong);
    background: none;
    border: 0;
    padding: 1.55rem .7rem;
    cursor: pointer;
}
.nav-link:hover { color: var(--red); }
.nav-item.open > .nav-link { color: var(--red); }
.nav-link .chev { transition: transform .18s ease; }
.nav-item.open > .nav-link .chev { transform: rotate(180deg); }

/* Simple dropdown */
.has-drop { position: relative; }
.drop {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    list-style: none;
    margin: 0;
    padding: .5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-item.open .drop, .has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop li a {
    display: block;
    padding: .5rem 1.25rem;
    color: var(--text);
    font-size: .925rem;
    font-weight: 500;
}
.drop li a:hover { background: var(--mist); color: var(--red); }
.drop-2col { min-width: 460px; display: grid; grid-template-columns: 1fr 1fr; padding: .5rem; }
.nav-item.open .drop-2col, .has-drop:hover .drop-2col { display: grid; }
.drop-2col .drop-all { grid-column: 1 / -1; }
.drop-all { border-top: 1px solid var(--line); margin-top: .4rem; padding-top: .4rem; }
.drop-all a { font-weight: 600; color: var(--red) !important; }

/* Mega menu */
.has-mega { position: static; }
.mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-top: 3px solid var(--red);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-item.open .mega, .has-mega:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; padding: 1.75rem 20px 2rem; }
.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .4rem 1.25rem;
}
.mega-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .45rem .5rem;
    border-radius: var(--radius);
    color: var(--text-strong);
    font-weight: 500;
    font-size: .925rem;
}
.mega-card:hover { background: var(--mist); color: var(--red); }
.mega-thumb {
    width: 44px; height: 44px;
    flex: 0 0 44px;
    border-radius: var(--radius);
    background: var(--mist-deep);
    overflow: hidden;
}
.mega-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mega-aside {
    background: var(--navy);
    border-radius: var(--radius);
    color: #cfd8e6;
    padding: 1.5rem;
    align-self: start;
}
.mega-aside-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; text-transform: uppercase; color: #fff; margin: 0 0 .5rem; }
.mega-aside-text { font-size: .85rem; margin-bottom: 1rem; }
.mega-aside-link { display: block; margin-top: .9rem; color: #fff; font-size: .875rem; text-decoration: underline; }
.mega-aside-link:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: .5rem; }
/* Compact, refined header CTAs — small padding, tidy radius */
.header-customize, .header-quote {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .48rem .9rem; font-size: .78rem; font-weight: 700;
    letter-spacing: .03em; border-width: 0; border-radius: 8px;
    line-height: 1; white-space: nowrap;
}
.header-customize svg { width: 14px; height: 14px; }

/* Mobile-only Instant Quote button */
.header-iq { display: none; }
@media (max-width: 900px) {
    .header-iq {
        display: inline-flex; align-items: center;
        padding: .5rem .7rem; font-size: .72rem; font-weight: 700;
        border-radius: 8px; border: 0; letter-spacing: .02em; line-height: 1; white-space: nowrap;
    }
}
@media (max-width: 480px) {
    .brand-img { max-width: 112px; }
    .header-search-btn, .header-cart { width: 36px; height: 36px; }
}

/* Back-to-top floating button */
.back-to-top {
    position: fixed; right: 20px; bottom: 20px; z-index: 190;
    width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--blue); color: #fff;
    box-shadow: 0 8px 22px rgba(18, 6, 165, .35);
    opacity: 0; transform: translateY(12px); pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, background .18s ease;
}
.back-to-top[hidden] { display: inline-flex; }
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold); color: var(--navy); }
@media (max-width: 600px) { .back-to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; } }

/* Header search */
.header-search-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--mist); border: 1px solid var(--line); color: var(--navy);
    cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.header-search-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.header-search-panel {
    position: fixed; top: 96px; left: 50%; transform: translateX(-50%);
    z-index: 260; width: min(560px, calc(100% - 40px));
    background: var(--paper); border: 1px solid var(--line);
    border-radius: 14px; box-shadow: var(--shadow-lg);
}
.header-search-panel[hidden] { display: none; }
.header-search-form { display: flex; align-items: center; gap: .75rem; padding: .7rem 1rem; }
.header-search-form > svg { color: var(--text-muted); flex: 0 0 auto; }
.header-search-form input {
    flex: 1 1 auto; border: 0; outline: 0; background: transparent;
    font-size: 1.05rem; font-family: var(--font-text); color: var(--text-strong); padding: .4rem 0;
}
.header-search-close { background: none; border: 0; cursor: pointer; color: var(--text-muted); padding: .3rem; display: inline-flex; }
.header-search-close:hover { color: var(--red); }
@media (max-width: 600px) {
    .header-search-panel { width: calc(100% - 24px); }
    .header-search-form { gap: .45rem; padding: .5rem .65rem; }
    .header-search-form input { font-size: .9rem; min-width: 0; }
    .header-search-form .btn { font-size: .75rem; padding: .5rem .7rem; }
    .header-search-form > svg { display: none; }
}

/* Quote form attached design */
.quote-design-previews { display: flex; gap: 1rem; flex-wrap: wrap; margin: .4rem 0; }
.quote-design-previews img { max-width: 160px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }

/* Search results page form */
.search-page-form { display: flex; gap: .6rem; max-width: 620px; width: 100%; }
.search-page-form input {
    flex: 1 1 auto; min-width: 0; border: 1.5px solid var(--line); border-radius: 10px;
    padding: .7rem 1rem; font-size: 1rem; font-family: var(--font-text);
}
.search-page-form .btn { flex: 0 0 auto; white-space: nowrap; }
.search-page-form input:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18, 6, 165, .12); }

.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 10px;
}
.nav-burger span { display: block; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer-backdrop {
    position: fixed; inset: 0;
    background: rgba(8, 21, 42, .55);
    z-index: 400;
    opacity: 0;
    transition: opacity .22s ease;
}
.drawer-backdrop.show { opacity: 1; }
.mobile-drawer {
    position: fixed;
    top: 0; bottom: 0; right: 0;
    width: min(360px, 88vw);
    background: var(--paper);
    z-index: 410;
    transform: translateX(100%);
    transition: transform .26s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.1rem;
}
.drawer-close { background: none; border: 0; cursor: pointer; color: var(--text-strong); padding: .4rem; }
.drawer-nav { padding: .75rem 1.25rem 2rem; }
.drawer-group { border-bottom: 1px solid var(--line); }
.drawer-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: 0;
    padding: .9rem 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--text-strong);
    cursor: pointer;
}
.drawer-toggle svg { transition: transform .18s ease; }
.drawer-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer-sub { list-style: none; margin: 0; padding: 0 0 .75rem; display: none; }
.drawer-group.open .drawer-sub { display: block; }
.drawer-sub a { display: block; padding: .42rem 0 .42rem .75rem; color: var(--text); font-size: .95rem; }
.drawer-sub a:hover { color: var(--red); }
.drawer-all { font-weight: 600; color: var(--red) !important; }
.drawer-links { display: flex; flex-direction: column; padding: 1rem 0; gap: .1rem; }
.drawer-links a { padding: .45rem 0; color: var(--text-strong); font-weight: 500; }
.drawer-cta { width: 100%; margin-top: .5rem; }
.drawer-phone { display: block; text-align: center; margin-top: 1rem; font-weight: 600; color: var(--navy); }

/* ---------------- Hero (image + fading colour) ---------------- */

.hero { position: relative; background: var(--navy-deep); overflow: hidden; }
.hero-track { display: flex; transition: transform .55s cubic-bezier(.4, 0, .2, 1); }
.hero-slide {
    position: relative;
    flex: 0 0 100%;
    min-height: 440px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ~60% clean photo on one side, ~40% solid colour on the other,
   with a short soft blend across the seam. Panel colour is set per
   slide via the --hero-c / --hero-c0 / --hero-c50 custom properties. */
.hero-slide { --hero-c: var(--blue); --hero-c0: rgba(22,104,201,0); --hero-c50: rgba(22,104,201,.5); }
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            var(--hero-c0) 52%,
            var(--hero-c50) 57%,
            var(--hero-c) 62%,
            var(--hero-c) 100%);
}
.hero-slide-alt .hero-overlay {
    background:
        linear-gradient(-90deg,
            var(--hero-c0) 52%,
            var(--hero-c50) 57%,
            var(--hero-c) 62%,
            var(--hero-c) 100%);
}

.hero-inner { position: relative; z-index: 2; width: 100%; height: 100%; display: flex; align-items: center; }
.hero-slide:not(.hero-slide-alt) .hero-inner { justify-content: flex-end; }
.hero-slide-alt .hero-inner { justify-content: flex-start; }

/* Content lives inside the ~40% colour column */
.hero-content { width: 40%; padding: 2.75rem clamp(1.75rem, 3.2vw, 3.5rem); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .3rem .95rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.hero-title {
    color: #fff;
    font-size: clamp(1.7rem, 2.6vw, 2.6rem);
    text-transform: uppercase;
    margin-bottom: .3rem;
}
.hero-subtitle {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .9rem;
}
.hero-desc { color: rgba(255, 255, 255, .92); font-size: .92rem; max-width: 460px; margin-bottom: 1.4rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }
/* Primary button flips to white so it contrasts against any panel colour */
.hero-ctas .btn-primary { background: #fff; border-color: #fff; color: var(--hero-c); }
.hero-ctas .btn-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }
.hero-ticks { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; margin-top: 1.75rem; padding: 0; list-style: none; }
.hero-ticks li { display: flex; align-items: center; gap: .45rem; color: #fff; font-size: .88rem; font-weight: 600; }
.hero-ticks svg { color: #fff; flex: 0 0 auto; }

/* --- Per-slide entrance animation --- */
.hero-content > * { opacity: 0; }
.hero-slide.is-active .hero-badge { animation: heroUp .55s .05s cubic-bezier(.2, .7, .2, 1) forwards; }
.hero-slide.is-active .hero-title { animation: heroUp .6s .15s cubic-bezier(.2, .7, .2, 1) forwards; }
.hero-slide.is-active .hero-subtitle { animation: heroUp .6s .25s cubic-bezier(.2, .7, .2, 1) forwards; }
.hero-slide.is-active .hero-desc { animation: heroUp .6s .35s cubic-bezier(.2, .7, .2, 1) forwards; }
.hero-slide.is-active .hero-ctas { animation: heroUp .6s .45s cubic-bezier(.2, .7, .2, 1) forwards; }
.hero-slide.is-active .hero-ticks { animation: heroUp .6s .55s cubic-bezier(.2, .7, .2, 1) forwards; }
.hero-slide.is-active .hero-bg img { animation: heroZoom 7s ease-out forwards; }

@keyframes heroUp {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.hero-nav {
    position: absolute;
    inset-inline: 0;
    bottom: 1.25rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    pointer-events: none;
}
.hero-dots { display: flex; gap: .5rem; pointer-events: auto; }
.hero-dot {
    width: 30px; height: 5px;
    border: 0;
    border-radius: 3px;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: background .2s ease;
    padding: 0;
}
.hero-dot.active { background: #fff; }
.hero-arrows { display: flex; gap: .5rem; pointer-events: auto; }
.hero-arrow {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background .18s ease;
}
.hero-arrow:hover { background: var(--red); border-color: var(--red); }

/* ---------------- Trust marquee ---------------- */

.trustbar { background: linear-gradient(100deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; overflow: hidden; padding: .65rem 0; }
.trustbar-track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 28s linear infinite; }
.trustbar:hover .trustbar-track { animation-play-state: paused; }
.trustbar-item {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
}
.trustbar-item svg { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- Sections ---------------- */

.section { padding: 5.25rem 0; }
.section-alt {
    background-color: #edf0f6;
    background-image:
        radial-gradient(circle, rgba(13, 31, 60, .04) 1px, transparent 1.4px),
        linear-gradient(180deg, #eaeef5 0%, #f1f4f8 100%);
    background-size: 22px 22px, 100% 100%;
    border-block: 1px solid #e2e7ef;
}
/* Dark bands: visible off-centre glow + dot-grid texture */
.section-dark {
    background-color: var(--blue-dark);
    background-image: linear-gradient(130deg, #1206A5 0%, #0702D3 55%, #1206A5 100%);
}

/* Subtle apparel-icon wallpaper for select sections (low opacity) */
.has-garment-pattern { position: relative; }
.has-garment-pattern > .container { position: relative; z-index: 1; }
.has-garment-pattern::after {
    content: "";
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    -webkit-mask: url('/images/garment-pattern.png') repeat; mask: url('/images/garment-pattern.png') repeat;
    -webkit-mask-size: 620px auto; mask-size: 620px auto;
    background: var(--navy);
    opacity: .06;
}
.section-dark.has-garment-pattern::after { background: #ffffff; opacity: .1; }

/* Popular Categories — image card + name below (outside) */
.popcat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem 1.5rem; }
.popcat { display: block; }
.popcat-img {
    display: block; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--mist); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transition: box-shadow .25s ease, transform .25s ease;
}
.popcat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.popcat:hover .popcat-img { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.popcat:hover .popcat-img img { transform: scale(1.05); }
.popcat-name { display: block; margin-top: .8rem; font-weight: 600; font-size: 1rem; color: var(--text-strong); }
.section-dark .popcat-name { color: #fff; }
.popcat:hover .popcat-name { color: var(--gold); }
@media (max-width: 900px) { .popcat-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1.25rem; } }

/* Popular Products — image cards (image + name) */
.pop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pop-card { text-align: left; }
.pop-card-img {
    display: block; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); overflow: hidden;
    background: linear-gradient(160deg, #eef1f6, #e2e7ef); box-shadow: var(--shadow-sm);
    transition: box-shadow .25s ease, transform .25s ease;
}
.pop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.pop-card:hover .pop-card-img { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pop-card:hover .pop-card-img img { transform: scale(1.05); }
.pop-card-title { font-size: 1.02rem; text-transform: uppercase; margin: .85rem 0 0; letter-spacing: .01em; }
.pop-card-title a { color: var(--text-strong); }
.pop-card:hover .pop-card-title a { color: var(--blue); }
@media (max-width: 900px) { .pop-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (max-width: 480px) { .pop-grid { grid-template-columns: repeat(2, 1fr); } }

/* What We Do (services) — photo cards */
.wwd-head { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.wwd-title { font-size: clamp(1.25rem, 2vw, 1.65rem); text-transform: uppercase; margin: 0; }
.wwd-title span { color: var(--blue); }
.wwd-rule { display: block; width: 54px; height: 3px; background: var(--gold); border-radius: 3px; margin: 1rem auto 1.25rem; }
.wwd-rule.sm { width: 38px; height: 2px; margin: .7rem auto .9rem; }
.wwd-intro { color: var(--text-muted); font-size: 1.05rem; margin: 0; }
.wwd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.wwd-card { text-align: center; }
.wwd-media {
    display: block; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden;
    background: linear-gradient(160deg, #eef1f6, #e2e7ef); box-shadow: var(--shadow-md);
}
.wwd-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.wwd-card:hover .wwd-media img { transform: scale(1.05); }
.wwd-media-ph { width: 100%; height: 100%; display: grid; place-items: center; color: var(--blue); }
.wwd-media-ph svg { width: 64px; height: 64px; }
.wwd-name { font-size: 1.5rem; text-transform: uppercase; margin: 1.25rem 0 0; }
.wwd-name a { color: var(--text-strong); }
.wwd-card:hover .wwd-name a { color: var(--blue); }
.wwd-lines { display: flex; flex-direction: column; gap: .1rem; color: var(--text); font-size: 1rem; }
.wwd-link {
    display: inline-flex; align-items: center; gap: .3rem; margin-top: .9rem;
    color: var(--blue); font-weight: 700; font-size: .95rem;
}
.wwd-link:hover { color: var(--gold-dark); }
.wwd-link svg { transition: transform .18s ease; }
.wwd-link:hover svg { transform: translateX(3px); }
@media (max-width: 820px) {
    .wwd-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 2.5rem; }
}

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--red);
    margin-bottom: .7rem;
}
.section-kicker::before,
.section-head.center .section-kicker::after {
    content: "";
    width: 26px; height: 2px;
    background: currentColor;
    opacity: .55;
    border-radius: 2px;
}
.section-title { font-size: clamp(1.35rem, 2.1vw, 1.8rem); text-transform: uppercase; letter-spacing: .01em; }
.section-sub { color: var(--text-muted); font-size: .98rem; line-height: 1.65; margin-top: .65rem; }
.section-dark .section-kicker { color: var(--gold); }

/* Dark section content overrides so any block reads on navy */
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: #a9b7cc; }
.section-dark .split-title { color: #fff; }
.section-dark .prose, .section-dark .prose p, .section-dark .prose li { color: rgba(255, 255, 255, .82); }
.section-dark .prose h2, .section-dark .prose h3, .section-dark .prose strong { color: #fff; }
.section-dark .split-list li { color: rgba(255, 255, 255, .85); }
.section-dark .btn-outline { color: #fff; border-color: rgba(255, 255, 255, .55); }
.section-dark .btn-outline:hover { background: #fff; border-color: #fff; color: var(--navy); }
.section-dark .reviews-score-num { color: #fff; }
.section-dark .reviews-score-label { color: #a9b7cc; }

/* Category grid */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.cat-grid-5 { grid-template-columns: repeat(5, 1fr); }
.cat-grid-6 { grid-template-columns: repeat(6, 1fr); }
.cat-card {
    position: relative;
    background: var(--paper);
    border: 1px solid rgba(226, 231, 238, .8);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s ease, transform .25s ease;
}
.cat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.cat-card-img { aspect-ratio: 1 / 1; background: linear-gradient(160deg, #f7f9fc, #e9edf3); overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.cat-card:hover .cat-card-img img { transform: scale(1.06); }
.cat-card-body { padding: 1.1rem 1.25rem 1.35rem; }
.cat-card-title { font-size: 1.32rem; text-transform: uppercase; margin: 0; letter-spacing: .01em; }
.cat-card-title a { color: var(--text-strong); transition: color .18s ease; }
.cat-card-title a::after { content: ""; position: absolute; inset: 0; }
.cat-card:hover .cat-card-title a { color: var(--red); }
.cat-card-text { color: var(--text-muted); font-size: .875rem; margin: .3rem 0 0; }

/* Location cards — city photo + state badge */
.loc-card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: linear-gradient(160deg, #1a2c4d, #0d1f3c); }
.loc-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.loc-card:hover .loc-card-media img { transform: scale(1.06); }
.loc-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 31, 60, .55), transparent 55%); }
.loc-card-badge {
    position: absolute; top: .6rem; right: .6rem; z-index: 1;
    background: var(--red); color: #fff; font-weight: 700; font-size: .72rem;
    letter-spacing: .06em; padding: .2rem .55rem; border-radius: 6px;
    box-shadow: 0 3px 10px rgba(18, 6, 165, .35);
}
.loc-card .cat-card-body { padding: .85rem 1.1rem 1.1rem; }

/* Location detail — text + city photo two-column intro */
.loc-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 3rem; align-items: start; }
.loc-intro-body .prose { max-width: none; }
.loc-intro-media {
    position: sticky; top: 100px;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 231, 238, .8);
}
.loc-intro-media img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.loc-intro-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 2.5rem 1.25rem 1.1rem;
    display: flex; flex-direction: column; gap: .1rem;
    background: linear-gradient(to top, rgba(13, 31, 60, .82), transparent);
    color: #fff;
}
.loc-intro-city { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; line-height: 1.1; }
.loc-intro-tag { font-size: .82rem; font-weight: 600; color: rgba(255, 255, 255, .82); }

@media (max-width: 860px) {
    .loc-intro { grid-template-columns: 1fr; gap: 2rem; }
    .loc-intro-media { position: static; order: -1; }
    .loc-intro-media img { aspect-ratio: 16 / 9; }
}
.section-more { text-align: center; margin-top: 3rem; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-body .section-kicker { margin-bottom: .3rem; }
.split-title { font-size: clamp(1.25rem, 2vw, 1.65rem); text-transform: uppercase; }
.split-list { list-style: none; margin: 1.25rem 0 1.75rem; padding: 0; display: grid; gap: .65rem; }
.split-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .975rem; }
.split-list svg { color: var(--red); flex: 0 0 auto; margin-top: .2rem; }
.split-ctas { display: flex; flex-wrap: wrap; gap: .9rem; }

/* Product cards */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.prod-card {
    position: relative;
    background: var(--paper);
    border: 1px solid rgba(226, 231, 238, .8);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s ease, transform .25s ease;
}
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.prod-card-img { aspect-ratio: 1 / 1; background: linear-gradient(160deg, #f7f9fc, #e9edf3); overflow: hidden; }
.prod-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.prod-card:hover .prod-card-img img { transform: scale(1.06); }
.prod-card-body { padding: 1rem 1.15rem 1.25rem; }
.prod-card-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: 600; }
.prod-card-title { font-size: 1.05rem; font-family: var(--font-text); font-weight: 600; line-height: 1.35; margin: .25rem 0 .4rem; }
.prod-card-title a { color: var(--text-strong); }
.prod-card-title a::after { content: ""; position: absolute; inset: 0; }
.prod-card:hover .prod-card-title a { color: var(--red); }
.prod-card-price { font-weight: 700; color: var(--navy); font-size: .95rem; }
.prod-card-price small { color: var(--text-muted); font-weight: 500; }

/* Services strip */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card {
    position: relative;
    background: var(--paper);
    border: 1px solid rgba(226, 231, 238, .8);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s ease, transform .25s ease;
}
.svc-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    opacity: 0;
    transition: opacity .25s ease;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.svc-card:hover::before { opacity: 1; }
.svc-icon {
    width: 56px; height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(150deg, rgba(18, 6, 165, .14), rgba(255, 176, 0, .12));
    color: var(--blue);
    margin-bottom: 1rem;
}
.svc-icon svg { width: 28px; height: 28px; }
.svc-title { font-size: 1.35rem; text-transform: uppercase; }
.svc-title a { color: var(--text-strong); }
.svc-title a::after { content: ""; position: absolute; inset: 0; }
.svc-card:hover .svc-title a { color: var(--red); }
.svc-text { color: var(--text-muted); font-size: .92rem; margin: .35rem 0 .9rem; }
.svc-meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--text-muted); }
.svc-meta strong { color: var(--navy); font-weight: 600; }

/* Steps — colourful gradient badges linked by a rainbow line */
.steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.steps::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 12%; right: 12%;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #e11d48, #f59e0b, #7c3aed, #2563eb, #10b981);
    opacity: .35;
    z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 .5rem; }
.step-badge {
    position: relative;
    width: 84px; height: 84px;
    margin: 0 auto 1.15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--step-grad, var(--red));
    box-shadow: 0 12px 26px var(--step-shadow, rgba(18, 6, 165, .35));
    border: 4px solid #fff;
    transition: transform .25s ease;
}
.step:hover .step-badge { transform: translateY(-4px) scale(1.04); }
.step-badge svg { width: 36px; height: 36px; }
.step-num {
    position: absolute;
    top: -6px; right: -6px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #fff;
    color: var(--step-c, var(--red));
    border: 2px solid var(--step-c, var(--red));
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.step-title { font-size: 1.2rem; text-transform: uppercase; margin-bottom: .3rem; }
.step-text { font-size: .85rem; color: var(--text-muted); margin: 0; }


/* Turnaround board — colourful cards */
.times { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.times-card {
    background: var(--paper);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.times-head {
    background:
        radial-gradient(90% 120% at 100% 0%, rgba(255, 176, 0, .28) 0%, transparent 55%),
        linear-gradient(120deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
    color: #fff;
    text-align: center;
    padding: 1.4rem 1.5rem;
}
.times-head-title { font-size: 1.5rem; text-transform: uppercase; color: #fff; margin: 0; letter-spacing: .02em; }
.times-head-sub { margin: .2rem 0 0; font-size: .85rem; color: rgba(255, 255, 255, .72); }
.times-list { list-style: none; margin: 0; padding: 1rem; display: grid; gap: .6rem; }
.time-row {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .8rem 1rem;
    border-radius: 14px;
    background: var(--paper);
    box-shadow: 0 1px 3px rgba(13, 31, 60, .06);
    border: 1px solid rgba(226, 231, 238, .7);
    transition: transform .18s ease, box-shadow .18s ease;
}
.time-row:hover { transform: translateX(3px); box-shadow: var(--shadow-md); }
.time-dot {
    width: 11px; height: 11px;
    flex: 0 0 11px;
    border-radius: 50%;
    background: var(--dot);
    box-shadow: 0 0 0 4px var(--dot-ring);
}
.time-info { flex: 1; display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.time-label { font-weight: 600; color: var(--text-strong); font-size: .98rem; }
.time-sub { font-size: .78rem; color: var(--text-muted); }
.time-pill {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .02em;
    padding: .35rem .9rem;
    border-radius: 99px;
    border: 1.5px solid var(--dot);
    color: var(--dot);
    background: var(--dot-tint);
    white-space: nowrap;
}

/* Why choose grid */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.why-card { background: var(--paper); border: 1px solid rgba(226, 231, 238, .8); border-radius: var(--radius-lg); padding: 1.75rem 1.6rem; box-shadow: var(--shadow-sm); transition: box-shadow .25s ease, transform .25s ease; }
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: linear-gradient(150deg, rgba(18, 6, 165, .14), rgba(255, 176, 0, .12));
    color: var(--blue); margin-bottom: 1rem;
}
.why-icon svg { width: 26px; height: 26px; }
.why-title { font-size: 1.15rem; text-transform: uppercase; margin-bottom: .3rem; }
.why-text { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat { padding: .25rem 1rem; }
.stats .stat + .stat { border-left: 1px solid rgba(255, 255, 255, .16); }
.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 2px 20px rgba(246, 181, 0, .3);
}
.stat-value span { color: #fff; }
.stat-label { color: #c3cfe4; font-size: .9rem; margin-top: .55rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

/* USA band */
.usa-band { position: relative; overflow: hidden; }
.usa-band .container { position: relative; z-index: 2; }
.usa-band .stats { margin-bottom: 3.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, .14); }

/* Split: copy left, dotted map right (map in its own column, nothing over it) */
.usa-split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: center; }
.usa-copy { text-align: left; }
.usa-flag-mark { display: inline-flex; margin-bottom: 1.1rem; }
.usa-copy .section-title { color: #fff; }
.usa-copy .section-sub { color: #c3cfe4; }

.usa-map {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .06), transparent 70%);
}
.usa-map img { width: 100%; height: auto; display: block; opacity: .7; filter: drop-shadow(0 8px 30px rgba(7, 2, 211, .6)); }

.usa-links { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.75rem; }
.usa-links a {
    display: inline-block;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #eaf0fa;
    font-size: .85rem;
    font-weight: 600;
    padding: .42rem .9rem;
    border-radius: 99px;
    transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.usa-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }

@media (max-width: 820px) {
    .usa-split { grid-template-columns: 1fr; gap: 2.25rem; }
    .usa-copy { text-align: center; }
    .usa-links { justify-content: center; }
}

/* Reviews on white */
.reviews-light { background: var(--mist); border-block: 1px solid var(--line); }
.reviews-light .section-kicker { color: var(--blue); }
.reviews-light .section-title { color: var(--text-strong); }
.reviews-light .reviews-score-num { color: var(--navy); }
.reviews-light .reviews-score-label { color: var(--text-muted); }

/* Testimonials */
.quote-stars { display: inline-flex; gap: .1rem; color: var(--gold); }

/* Reviews section header with aggregate rating */
.reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.reviews-score { display: flex; align-items: center; gap: .75rem; }
.reviews-score-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--navy);
}
.reviews-score-label { display: block; font-size: .8rem; color: var(--text-muted); margin-top: .15rem; }

/* ---------------- Full-screen designer shell ---------------- */

.designer-page { background: var(--mist); }
.designer-shell { display: flex; flex-direction: column; min-height: 100vh; }

.dz-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--navy-deep);
    color: #fff;
    padding: .6rem 1.1rem;
    min-height: 62px;
}
.dz-topbar-left { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.dz-brand {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #fff;
    white-space: nowrap;
}
.dz-topbar-sep { width: 1px; height: 30px; background: rgba(255, 255, 255, .18); }
.dz-product-thumb {
    width: 42px; height: 42px;
    flex: 0 0 42px;
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
}
.dz-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dz-product-meta { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.dz-product-name { font-weight: 600; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dz-change-product {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: none;
    border: 0;
    padding: 0;
    color: var(--gold);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
}
.dz-change-product:hover { color: #fff; }

.dz-topbar-right { display: flex; align-items: center; gap: 1rem; }
.dz-topbar-total { font-size: .9rem; color: #a9b7cc; white-space: nowrap; }
.dz-topbar-total strong { font-family: var(--font-display); font-size: 1.25rem; color: #fff; margin-left: .3rem; }
.dz-close {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--radius);
    color: #fff;
    padding: .5rem .9rem;
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.dz-close:hover { background: var(--red); border-color: var(--red); color: #fff; }

.designer-main { flex: 1; padding: 1.5rem clamp(1rem, 3vw, 2rem); }
.designer-main .designer-grid { max-width: 1500px; margin: 0 auto; }

/* Change Product picker */
.dz-products-box { max-width: 1000px; }
.dz-products-body { display: block; background: var(--paper); }
.dz-products-group { margin-bottom: 1.5rem; }
.dz-products-cat {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-strong);
    margin-bottom: .75rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--line);
}
.dz-products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .75rem; }
.dz-product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper);
    transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.dz-product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #cbd5e1; }
.dz-product-card.active { border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }
.dz-product-card-img { aspect-ratio: 1 / 1; background: var(--mist); overflow: hidden; }
.dz-product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.dz-product-card-name { font-size: .82rem; font-weight: 600; color: var(--text-strong); padding: .55rem .6rem .1rem; line-height: 1.3; }
.dz-product-card-price { font-size: .74rem; color: var(--text-muted); padding: 0 .6rem .6rem; }

@media (max-width: 640px) {
    .dz-topbar { flex-wrap: wrap; min-height: 0; }
    .dz-brand { display: none; }
    .dz-topbar-sep { display: none; }
    .dz-topbar-total strong { font-size: 1.1rem; }
    .dz-close span { display: none; }
    .dz-close { padding: .5rem; }
}

/* Single-row auto-sliding marquee of compact review cards (~5 at a time) */
.reviews-marquee {
    overflow: hidden;
    --rev-w: calc((min(1240px, 100vw - 40px)) / 5 - 1rem);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.reviews-track {
    display: flex;
    width: max-content;
    animation: reviewScroll 48s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes reviewScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Grid variant (About page) */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.review-card {
    background: var(--paper);
    border: 1px solid rgba(226, 231, 238, .8);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .18s ease, transform .18s ease;
}
.reviews-marquee .review-card {
    flex: 0 0 var(--rev-w);
    width: var(--rev-w);
    margin-right: 1rem;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.review-quotemark { color: var(--mist-deep); }
.review-text {
    font-size: .9rem;
    line-height: 1.55;
    color: var(--text);
    margin: 0 0 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-person { display: flex; align-items: center; gap: .65rem; padding-top: .9rem; border-top: 1px solid var(--line); }
.review-avatar {
    width: 38px; height: 38px;
    flex: 0 0 38px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-meta { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.review-name { font-weight: 600; color: var(--text-strong); font-size: .875rem; }
.review-role { font-size: .76rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* FAQ accordion */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid rgba(226, 231, 238, .8); border-radius: var(--radius-lg); background: var(--paper); margin-bottom: .8rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: 0;
    text-align: left;
    padding: 1.05rem 1.3rem;
    font-family: var(--font-text);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-strong);
    cursor: pointer;
}
.faq-q svg { flex: 0 0 auto; color: var(--red); transition: transform .2s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.3rem 1.15rem; color: var(--text); font-size: .95rem; }
.faq-item.open .faq-a { display: block; }
.faq-a p:last-child { margin-bottom: 0; }

/* Blog cards */
.post-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.post-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .post-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .post-grid-3 { grid-template-columns: 1fr; } }
.split-quote { grid-template-columns: 1.4fr 1fr; }
@media (max-width: 900px) { .split-quote { grid-template-columns: 1fr; } }
.post-card {
    position: relative;
    background: var(--paper);
    border: 1px solid rgba(226, 231, 238, .8);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s ease, transform .25s ease;
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.post-card-img { aspect-ratio: 16 / 10; background: var(--mist-deep); overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.post-card:hover .post-card-img img { transform: scale(1.045); }
.post-card-body { padding: 1.1rem 1.2rem 1.3rem; }
.post-card-date { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: 600; }
.post-card-title { font-family: var(--font-text); font-size: 1.02rem; font-weight: 600; line-height: 1.4; margin: .35rem 0 0; }
.post-card-title a { color: var(--text-strong); }
.post-card-title a::after { content: ""; position: absolute; inset: 0; }
.post-card:hover .post-card-title a { color: var(--red); }

/* Newsletter */
.newsletter { background: var(--navy); }
.newsletter-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 2.75rem;
}
.newsletter-title { color: #fff; font-size: 1.75rem; text-transform: uppercase; margin: 0; }
.newsletter-text { color: #a9b7cc; margin: .3rem 0 0; font-size: .95rem; }
.newsletter-form { display: flex; gap: .6rem; flex: 0 1 460px; }
.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: .78rem 1.1rem;
    border: 1px solid var(--navy-soft);
    background: var(--navy-deep);
    color: #fff;
    border-radius: var(--radius);
    font-family: var(--font-text);
    font-size: .95rem;
}
.newsletter-form input::placeholder { color: #7d8ea9; }
.newsletter-form input:focus { outline: 2px solid var(--red); border-color: var(--red); }
.newsletter-success { flex-basis: 100%; color: #8ce99a; margin: 0; font-size: .9rem; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #a9b7cc; padding: 4rem 0 0; font-size: .9rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr 1.4fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 .6rem;
}
.footer-text { font-size: .875rem; }
.footer-contact { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: .45rem; font-size: .875rem; }
.footer-contact a { color: #dbe4f0; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #dbe4f0;
    transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-links a { color: #a9b7cc; }
.footer-links a:hover { color: #fff; }
.footer-links-2col { grid-template-columns: 1fr 1fr; column-gap: 1rem; }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 1.4rem 0;
    font-size: .8125rem;
}
.footer-bottom p { margin: 0; }
.footer-made { color: #dbe4f0; font-weight: 500; }

/* ---------------- Inner pages ---------------- */

.page-hero {
    position: relative;
    background: var(--navy-deep);
    color: #fff;
    padding: 3.5rem 0;
    overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,21,42,.85), rgba(8,21,42,.4)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero-title { color: #fff; font-size: clamp(2.1rem, 4vw, 3.2rem); text-transform: uppercase; margin: 0; }
.page-hero-sub { color: #b9c6d9; max-width: 640px; margin: .6rem 0 0; font-size: 1.02rem; }

.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; list-style: none; margin: 0 0 1rem; padding: 0; font-size: .8125rem; }
.breadcrumbs li { display: flex; align-items: center; gap: .45rem; color: #8fa1bb; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: #51678a; }
.breadcrumbs a { color: #c3cfdf; }
.breadcrumbs a:hover { color: #fff; }

.prose { max-width: 780px; }
.prose h2 { font-size: 1.7rem; text-transform: uppercase; margin-top: 2.25rem; }
.prose h3 { font-size: 1.35rem; margin-top: 1.75rem; }
.prose ul, .prose ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .35rem; }
.prose img { border-radius: var(--radius); margin-block: 1.25rem; }
.prose-full { max-width: none; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-label { font-weight: 600; color: var(--text-strong); font-size: .9rem; }
.form-label .req { color: var(--red); }
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: .72rem .95rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    font-family: var(--font-text);
    font-size: .95rem;
    color: var(--text-strong);
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13, 31, 60, .12);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-error { color: var(--red); font-size: .8125rem; }
.form-hint { color: var(--text-muted); font-size: .8125rem; }
.form-alert {
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: .95rem;
}
.form-alert.success { background: #e7f6ec; border: 1px solid #b7e2c5; color: #1e6135; }
.form-alert.error { background: #fceeef; border: 1px solid #f2c5cb; color: #8c1425; }

/* Contact info cards */
.info-cards { display: grid; gap: 1rem; }
.info-card {
    display: flex;
    gap: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.3rem;
}
.info-card svg { color: var(--red); flex: 0 0 auto; }
.info-card-title { font-weight: 600; color: var(--text-strong); font-size: .95rem; margin: 0 0 .15rem; }
.info-card-text { color: var(--text-muted); font-size: .9rem; margin: 0; }
.info-card-text a { color: var(--navy); font-weight: 500; }

/* ---------------- Product archive page ---------------- */

.archive-trust {
    background: linear-gradient(120deg, var(--navy-soft), var(--navy-deep));
    color: #fff;
}
.archive-trust-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2.5rem;
    padding: 1.05rem 20px;
}
.archive-trust-item {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-display);
    font-size: .98rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.archive-trust-item svg { color: var(--gold); }

.archive-subcats { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.75rem; }
.archive-chip {
    display: inline-block;
    padding: .5rem 1.1rem;
    border-radius: 99px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    color: var(--text-strong);
    font-weight: 600;
    font-size: .9rem;
    transition: all .18s ease;
}
.archive-chip:hover { background: var(--navy); border-color: var(--navy); color: #fff; transform: translateY(-2px); }

.archive-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}
.archive-count { font-size: 1rem; color: var(--text-muted); }
.archive-count strong { color: var(--text-strong); font-family: var(--font-display); font-size: 1.3rem; }
.archive-sort { display: inline-flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--text-muted); }
.archive-sort select {
    padding: .55rem 2.2rem .55rem .9rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    background: var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23697991' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6l6 -6'/%3E%3C/svg%3E") no-repeat right .7rem center;
    -webkit-appearance: none; appearance: none;
    font-family: var(--font-text);
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-strong);
    cursor: pointer;
}
.archive-sort select:focus { outline: none; border-color: var(--navy); }

/* Rich product card */
.pcard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.pcard {
    position: relative;
    background: var(--paper);
    border: 1px solid rgba(226, 231, 238, .8);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s ease, transform .25s ease;
}
.pcard:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pcard-media { position: relative; aspect-ratio: 1 / 1; background: linear-gradient(160deg, #f7f9fc, #e9edf3); overflow: hidden; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
.pcard:hover .pcard-media img { transform: scale(1.07); }
.pcard-badge {
    position: absolute;
    top: .8rem; left: .8rem;
    z-index: 2;
    background: var(--gold);
    color: var(--navy-deep);
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .28rem .65rem;
    border-radius: 99px;
    box-shadow: var(--shadow-sm);
}
.pcard-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: linear-gradient(180deg, rgba(8, 21, 42, .1), rgba(8, 21, 42, .55));
    opacity: 0;
    transition: opacity .25s ease;
}
.pcard:hover .pcard-overlay { opacity: 1; }
.pcard-overlay .btn { min-width: 130px; }
.pcard-body { padding: 1.1rem 1.25rem 1.35rem; }
.pcard-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--red); font-weight: 700; }
.pcard-title { font-size: 1.12rem; font-family: var(--font-text); font-weight: 600; line-height: 1.35; margin: .3rem 0 .55rem; }
.pcard-title a { color: var(--text-strong); }
.pcard-title a:hover { color: var(--red); }
.pcard-swatches { display: flex; align-items: center; gap: .32rem; margin-bottom: .7rem; }
.pcard-swatch {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    box-shadow: 0 0 0 1px var(--line);
}
.pcard-swatch-more { font-size: .72rem; color: var(--text-muted); font-weight: 600; margin-left: .1rem; }
.pcard-prices { display: flex; gap: 1.1rem; align-items: baseline; }
.pcard-price { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.pcard-price small { display: block; font-family: var(--font-text); font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.pcard-price-print { color: var(--red); }

@media (max-width: 1100px) { .pcard-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .pcard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .pcard-grid { grid-template-columns: 1fr; } }

/* Pagination */
.pagination-wrap { margin-top: 2.5rem; display: flex; justify-content: center; }
.pagination-wrap nav { display: flex; }
.pagination-wrap .flex { display: flex; gap: .3rem; align-items: center; }
.pagination-wrap a, .pagination-wrap span[aria-current] > span, .pagination-wrap span[aria-disabled] > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px; height: 40px;
    padding: 0 .6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text-strong);
    font-size: .9rem;
    background: #fff;
}
.pagination-wrap a:hover { border-color: var(--red); color: var(--red); }
.pagination-wrap span[aria-current] > span { background: var(--navy); color: #fff; border-color: var(--navy); }

/* CTA banner */
.cta-banner {
    background: linear-gradient(100deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
}
.cta-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 3rem;
}
.cta-banner-title { color: var(--navy); font-size: clamp(1.2rem, 2vw, 1.6rem); text-transform: uppercase; margin: 0; }
.cta-banner-text { color: rgba(13, 31, 60, .78); margin: .4rem 0 0; }
/* On the yellow band the blue button darkens to navy on hover (not yellow, which would blend) */
.cta-banner .btn-primary:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Product page */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.product-figure { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--mist); }
.product-figure img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-title { font-size: clamp(1.8rem, 3vw, 2.5rem); text-transform: uppercase; }
.product-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy); margin: .5rem 0 1rem; }
.product-price small { font-size: 1rem; color: var(--text-muted); font-weight: 500; font-family: var(--font-text); }
.product-features { list-style: none; margin: 1.25rem 0; padding: 0; display: grid; gap: .55rem; }
.product-features li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; }
.product-features svg { color: var(--red); flex: 0 0 auto; margin-top: .2rem; }
.product-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.5rem; }
.product-note { margin-top: 1.25rem; padding: .9rem 1.1rem; background: var(--mist); border-radius: var(--radius); font-size: .875rem; color: var(--text-muted); }

/* Long-form content toggles */
.readmore-region { position: relative; max-height: 240px; overflow: hidden; transition: max-height .3s ease; }
.readmore-region::after {
    content: "";
    position: absolute;
    inset-inline: 0; bottom: 0;
    height: 90px;
    background: linear-gradient(rgba(255,255,255,0), #fff);
}
.readmore-region.expanded { max-height: none; }
.readmore-region.expanded::after { display: none; }
.section-alt .readmore-region::after { background: linear-gradient(rgba(244,246,249,0), var(--mist)); }
.readmore-btn { margin-top: .8rem; background: none; border: 0; color: var(--red); font-weight: 600; cursor: pointer; font-size: .95rem; padding: 0; }

/* ---------------- Shop: product options ---------------- */

.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
}
.header-cart:hover { border-color: var(--red); color: var(--red); }
.header-cart-count {
    position: absolute;
    top: -7px; right: -7px;
    min-width: 19px; height: 19px;
    padding: 0 5px;
    background: var(--red);
    color: #fff;
    border-radius: 99px;
    font-size: .68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.opt-label {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-strong);
    margin-bottom: .55rem;
}
.opt-current { color: var(--text-muted); font-family: var(--font-text); font-size: .85rem; text-transform: none; letter-spacing: 0; margin-left: .4rem; }

.swatches { display: flex; flex-wrap: wrap; gap: .5rem; }
.swatch {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--line);
    cursor: pointer;
    padding: 0;
    transition: transform .12s ease, box-shadow .12s ease;
}
.swatch:hover { transform: scale(1.1); }
.swatch.active { box-shadow: 0 0 0 2px var(--red); }

.size-grid { display: flex; flex-wrap: wrap; gap: .5rem; }
.size-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
}
.size-name { font-size: .74rem; font-weight: 700; color: var(--text-strong); text-transform: uppercase; letter-spacing: .04em; }
.size-cell input {
    width: 58px;
    padding: .5rem .3rem;
    text-align: center;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    font-family: var(--font-text);
    font-size: .92rem;
    background: var(--mist);
}
.size-cell input:focus { outline: none; border-color: var(--navy); background: #fff; }
.size-grid-compact .size-cell input { width: 50px; padding: .4rem .2rem; }

.price-badges { margin-top: 1.4rem; display: grid; gap: .45rem; }
.price-line { font-size: 1rem; color: var(--text); }
.price-line strong { font-size: 1.25rem; color: var(--navy); }
.price-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: .14rem .55rem;
    border-radius: 3px;
    margin-right: .3rem;
}
.price-tag-blank { background: var(--navy); color: #fff; }
.price-tag-print { background: var(--red); color: #fff; }

.view-thumbs { display: flex; gap: .6rem; margin-top: .75rem; }
.view-thumb {
    width: 84px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .35rem .35rem .45rem;
    cursor: pointer;
    text-align: center;
    font-size: .72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.view-thumb img { aspect-ratio: 1/1; object-fit: cover; border-radius: 3px; margin-bottom: .25rem; background: var(--mist); }
.view-thumb.active { border-color: var(--red); color: var(--red); }

/* ---------------- Shop: designer ---------------- */

.designer-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 2rem; align-items: start; }
.designer-stage { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; }
.designer-tabs { display: flex; gap: .5rem; margin-bottom: .8rem; }
.designer-tab {
    flex: 1;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .55rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
    cursor: pointer;
}
.designer-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.designer-canvas-wrap { display: flex; justify-content: center; background: var(--mist); border-radius: var(--radius); overflow: auto; }
.designer-canvas-wrap canvas { max-width: 100%; }
.designer-hint { font-size: .8rem; color: var(--text-muted); margin: .7rem 0 0; text-align: center; }

.designer-tools { display: grid; gap: 1.4rem; }
.tool-group { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.tool-buttons { display: flex; flex-wrap: wrap; gap: .6rem; }
.text-tools { display: flex; gap: .6rem; align-items: center; }
.text-tools .form-select {
    flex: 1;
    padding: .55rem .8rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    font-family: var(--font-text);
    font-size: .9rem;
}
.text-tools input[type="color"] { width: 44px; height: 40px; border: 1px solid #cbd5e1; border-radius: var(--radius); padding: 2px; background: #fff; cursor: pointer; }

.designer-summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.designer-total { font-size: 1.05rem; margin: .6rem 0 1rem; color: var(--text); }
.designer-total strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); }
.designer-note { font-size: .8rem; color: var(--text-muted); margin: .8rem 0 0; }

/* ---------------- Shop: designer v2 ---------------- */

.designer-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 310px;
    gap: 1.25rem;
    align-items: start;
}
/* long CTA label must wrap, never force the column wider */
#dzSubmit { white-space: normal; line-height: 1.25; }
@media (max-width: 1420px) {
    .designer-grid { grid-template-columns: 250px minmax(0, 1fr) 290px; gap: 1rem; }
}
.designer-side { display: grid; gap: 1rem; min-width: 0; }

.side-tabs { display: flex; gap: .4rem; }
.side-tab {
    flex: 1;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .5rem .3rem;
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-muted);
    cursor: pointer;
}
.side-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.layer-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px; height: 18px;
    background: var(--red);
    color: #fff;
    border-radius: 99px;
    font-size: .68rem;
    padding: 0 4px;
    margin-left: .2rem;
}
.side-panel { display: none; gap: 1rem; }
.side-panel.active { display: grid; }

.dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius);
    padding: 1.4rem 1rem;
    text-align: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: border-color .15s ease, background .15s ease;
}
.dropzone:hover { border-color: var(--red); background: #fdf6f7; color: var(--red); }
.dropzone strong { color: var(--text-strong); font-size: .95rem; }
.dropzone span { font-size: .75rem; line-height: 1.5; }

.team-fields { display: grid; grid-template-columns: 1.6fr 1fr; gap: .5rem; }
.tool-hint { font-size: .78rem; color: var(--text-muted); margin: .55rem 0 0; }

.fld { display: grid; gap: .25rem; margin-bottom: .7rem; min-width: 0; }
.fld label { font-size: .78rem; font-weight: 600; color: var(--text-strong); }
.fld .form-select, .fld .form-input { width: 100%; padding: .5rem .7rem; border: 1px solid #cbd5e1; border-radius: var(--radius); font-size: .88rem; font-family: var(--font-text); }
.fld input[type="color"] { width: 100%; height: 38px; border: 1px solid #cbd5e1; border-radius: var(--radius); padding: 2px; background: #fff; cursor: pointer; }
.fld-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: .6rem; }

.btn-strip { display: flex; gap: .3rem; align-items: center; }
.btn-strip.wrap { flex-wrap: wrap; }
.strip-btn {
    min-width: 38px; height: 34px;
    padding: 0 .55rem;
    background: var(--paper);
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-strong);
    cursor: pointer;
}
.strip-btn:hover { border-color: var(--navy); }
.strip-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.strip-btn.danger { color: var(--red); }
.strip-btn.danger:hover { border-color: var(--red); }
.strip-sep { width: 1px; height: 22px; background: var(--line); margin: 0 .2rem; }

.chk { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text); cursor: pointer; }
.chk input { width: 16px; height: 16px; accent-color: var(--red); }

.quality-flag { margin-top: .7rem; font-size: .78rem; border-radius: var(--radius); padding: .55rem .7rem; }
.quality-flag.good { background: #e7f6ec; color: #1e6135; }
.quality-flag.bad { background: #fceeef; color: #8c1425; }

.layer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.layer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .3rem .4rem .3rem .6rem;
    background: var(--paper);
}
.layer-row.active { border-color: var(--red); }
.layer-label {
    flex: 1;
    background: none;
    border: 0;
    text-align: left;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-strong);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: .25rem 0;
}
.layer-controls { display: flex; gap: .2rem; }
.layer-btn {
    width: 26px; height: 26px;
    border: 1px solid var(--line);
    background: var(--mist);
    border-radius: 4px;
    cursor: pointer;
    font-size: .8rem;
    color: var(--text-strong);
    line-height: 1;
}
.layer-btn:hover { border-color: var(--navy); }
.layer-btn.danger { color: var(--red); }

.stage-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .8rem;
    flex-wrap: wrap;
}
.stage-group { display: flex; align-items: center; gap: .3rem; }
.stage-btn {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    color: var(--text-strong);
    cursor: pointer;
}
.stage-btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.stage-btn:disabled { opacity: .4; cursor: default; }
.stage-zoom { font-size: .8rem; font-weight: 600; color: var(--text-muted); min-width: 42px; text-align: center; cursor: pointer; }
.designer-tabs { flex: 1; max-width: 300px; }

.designer-canvas-wrap.dragging { outline: 3px dashed var(--red); outline-offset: -3px; }

.dz-modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.dz-modal[hidden] { display: none; }
.dz-modal-backdrop { position: absolute; inset: 0; background: rgba(8, 21, 42, .7); }
.dz-modal-box {
    position: relative;
    background: var(--paper);
    border-radius: var(--radius);
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}
.dz-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.25rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 1.15rem;
    text-transform: uppercase;
}
.dz-modal-body { padding: 1.25rem; overflow: auto; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; background: var(--mist); }
.dz-modal-body img { max-width: 360px; width: 100%; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.dz-modal-foot { display: flex; gap: .6rem; justify-content: flex-end; padding: .9rem 1.25rem; border-top: 1px solid var(--line); }

@media (max-width: 1180px) {
    .designer-grid { grid-template-columns: 280px minmax(0, 1fr); }
    .designer-grid > .designer-side:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
    .designer-grid { grid-template-columns: 1fr; }
    .designer-grid > .designer-stage { order: -1; }
}

/* ---------------- Shop: cart & checkout ---------------- */

.cart-list { display: grid; gap: 1rem; }
.cart-item {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1.25rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.1rem;
}
.cart-item-img { background: var(--mist); border-radius: var(--radius); overflow: hidden; align-self: start; }
.cart-item-img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.cart-item-head { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cart-item-title { font-size: 1.25rem; text-transform: uppercase; margin: .3rem 0 .1rem; }
.cart-item-meta { font-size: .85rem; color: var(--text-muted); }
.cart-item-price { font-weight: 700; color: var(--navy); white-space: nowrap; }
.cart-item-price small { color: var(--text-muted); font-weight: 500; }
.cart-item-sizes { margin-top: .9rem; }
.cart-item-actions { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-top: .9rem; }
.cart-item-line { font-size: .95rem; color: var(--text); margin-right: auto; }

.cart-summary {
    margin-top: 1.5rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
}
.cart-summary-total { font-size: 1.1rem; }
.cart-summary-total strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); }
.cart-summary-note { font-size: .85rem; color: var(--text-muted); margin: .5rem 0 1.1rem; }
.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem 0;
    border-bottom: 1px dashed var(--line);
    font-size: .92rem;
}
.summary-row small { display: block; color: var(--text-muted); }
.summary-row:last-of-type { border-bottom: 0; }

@media (max-width: 1000px) {
    .designer-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .cart-item { grid-template-columns: 90px 1fr; gap: .9rem; }
}

/* 404 */
.error-page { text-align: center; padding: 6.5rem 20px; }
.error-code { font-family: var(--font-display); font-size: 7rem; font-weight: 700; color: var(--mist-deep); line-height: 1; }
.error-title { font-size: 2rem; text-transform: uppercase; margin-top: .5rem; }

/* ---------------- Responsive ---------------- */

@media (max-width: 1200px) {
    .cat-grid-5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1100px) {
    .mega-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-grid, .cat-grid-5, .cat-grid-6, .prod-grid, .why-grid, .post-grid { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: repeat(3, 1fr); row-gap: 2.5rem; }
    .steps::before { display: none; }
    .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (max-width: 900px) {
    .main-nav { display: none; }
    .header-navrow, .header-contact { display: none; }
    .header-top-inner { min-height: 66px; gap: .5rem; flex-wrap: nowrap; }
    /* brand must be allowed to shrink so the actions never overflow */
    .brand { margin-right: 0; flex: 0 1 auto; min-width: 0; overflow: hidden; }
    .brand-img { height: 40px; max-width: 150px; }
    .brand-text { min-width: 0; }
    .brand-text strong { font-size: 1.05rem; }
    .header-actions { margin-left: auto; flex: 0 0 auto; }
    .nav-burger { display: flex; }
    .header-quote, .header-customize { display: none; }
    .topbar-links a:not(.topbar-phone) { display: none; }
    /* Mobile hero: image on top (clean, no wash), copy below on brand colour */
    .hero-slide { min-height: 0; display: flex; flex-direction: column; align-items: stretch; }
    .hero-bg { position: relative; inset: auto; width: 100%; height: 260px; flex: 0 0 auto; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
    .hero-overlay, .hero-slide-alt .hero-overlay { display: none; }
    .hero-inner, .hero-slide-alt .hero-inner, .hero-slide:not(.hero-slide-alt) .hero-inner {
        position: relative; height: auto; justify-content: center; background: var(--hero-c);
    }
    .hero-content { width: 100%; max-width: 620px; text-align: center; padding: 1.1rem 1rem 2.3rem; }
    .hero-title { font-size: 1.35rem; margin-bottom: .2rem; }
    .hero-subtitle { font-size: .92rem; margin-bottom: .5rem; }
    .hero-desc { font-size: .85rem; margin: 0 auto .9rem; }
    .hero-badge { font-size: .68rem; padding: .28rem .7rem; margin-bottom: .5rem; }
    /* CTAs: one compact row */
    .hero-ctas { justify-content: center; flex-wrap: nowrap; gap: .5rem; }
    .hero-ctas .btn { font-size: .78rem; padding: .55rem .8rem; white-space: nowrap; letter-spacing: .02em; }
    .hero-ticks { justify-content: center; margin-top: .9rem; gap: .45rem; flex-wrap: nowrap; }
    .hero-ticks li { font-size: .6rem; gap: .18rem; white-space: nowrap; }
    .hero-ticks svg { width: 12px; height: 12px; }
    .split { grid-template-columns: 1fr; gap: 2rem; }
    .split.reverse .split-media { order: 0; }
    .times { grid-template-columns: 1fr; }
    .reviews-grid, .svc-grid { grid-template-columns: 1fr 1fr; }
    .reviews-marquee { --rev-w: calc((100vw - 40px) / 3 - 1rem); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .product-layout { grid-template-columns: 1fr; gap: 2rem; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
    .section { padding: 3.25rem 0; }
    .cat-grid, .cat-grid-5, .cat-grid-6, .prod-grid, .why-grid, .post-grid, .svc-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
    .reviews-marquee { --rev-w: calc((100vw - 40px) / 2 - 1rem); }
    .steps { grid-template-columns: 1fr 1fr; }
    .hero-slide { min-height: 380px; }
    .hero-ticks { gap: .8rem 1.2rem; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .topbar-inner { justify-content: center; }
    .topbar-links { display: none; }
}

@media (max-width: 520px) {
    .cat-grid, .cat-grid-5, .cat-grid-6, .prod-grid, .why-grid, .post-grid, .svc-grid, .reviews-grid, .steps { grid-template-columns: 1fr; }
    .reviews-marquee { --rev-w: 82vw; }
    .hero-ctas .btn { width: 100%; }
    .topbar { font-size: .75rem; }
    .brand-text strong { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-track { transition: none; }
    /* Trust marquee intentionally keeps scrolling even under reduced-motion (decorative ticker) */
    .reviews-marquee { overflow-x: auto; }
    .reviews-track { animation: none; }
    .hero-content > * { opacity: 1; }
    .hero-slide.is-active .hero-badge,
    .hero-slide.is-active .hero-title,
    .hero-slide.is-active .hero-subtitle,
    .hero-slide.is-active .hero-desc,
    .hero-slide.is-active .hero-ctas,
    .hero-slide.is-active .hero-ticks,
    .hero-slide.is-active .hero-bg img { animation: none; }
    html { scroll-behavior: auto; }
}

/* ---------------- Scroll reveal animations ---------------- */
/* Only hides content when JS is active, so no-JS users still see everything. */
.js-reveal .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}
