/* ==========================================================================
   217 Movers & Junk Removal — Design System
   Palette, type, and primitives pulled from brand (logo + business card).
   ========================================================================== */

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

:root {
    /* Brand */
    --navy:         #0E1E3D;
    --navy-2:       #091632;
    --navy-3:       #060F25;
    --orange:       #F26522;
    --orange-2:     #D85619;
    --orange-soft:  rgba(242, 101, 34, 0.08);

    /* Neutrals */
    --ink:          #0E1E3D;
    --ink-soft:     #4A5470;
    --ink-mute:     #8892A8;
    --line:         #E4E1D8;
    --line-strong:  #CDC9BC;
    --cream:        #F3EFE6;
    --paper:        #FAF8F2;
    --white:        #FFFFFF;

    /* Motion */
    --ease:         cubic-bezier(0.2, 0.8, 0.2, 1);
    --t-fast:       150ms var(--ease);
    --t:            220ms var(--ease);
    --t-slow:       400ms var(--ease);

    /* Geometry */
    --radius:       4px;
    --radius-lg:    8px;
    --max:          1200px;

    /* Legacy aliases (admin dashboard) — light-blue-tinted surface for contrast */
    --bg:              #EEF2F8;
    --bg-2:            #E4EBF5;
    --text:            var(--ink);
    --text-secondary:  var(--ink-soft);
    --text-muted:      var(--ink-mute);
    --border:          #D7DEEA;
    --border-strong:   #C1CBDC;
    --dark:            var(--navy);
    --dark-soft:       var(--navy-2);
    --transition:      var(--t);
    --orange-hover:    var(--orange-2);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--orange); color: var(--white); }

/* ---- Typography -------------------------------------------------------- */
h1, h2, h3, h4, .display {
    font-family: 'Archivo', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.028em;
    line-height: 1.04;
    color: var(--navy);
}

.display-xl { font-size: clamp(2.8rem, 6.2vw, 5.2rem); font-weight: 900; font-style: italic; letter-spacing: -0.035em; line-height: 0.96; }
.display-lg { font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.02; }
.display-md { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; letter-spacing: -0.025em; }
.display-sm { font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--orange);
    display: inline-block;
}

.eyebrow.on-dark { color: var(--orange); }
.eyebrow.muted { color: var(--ink-soft); }
.eyebrow.muted::before { background: var(--ink-soft); }

.lede {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 56ch;
}

em.accent {
    font-style: italic;
    color: var(--orange);
}

/* ---- Layout primitives ------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 120px 0;
}

.section-sm { padding: 72px 0; }

.on-navy   { background: var(--navy); color: var(--white); }
.on-navy h1, .on-navy h2, .on-navy h3, .on-navy h4 { color: var(--white); }
.on-navy .lede { color: rgba(255, 255, 255, 0.68); }

.on-cream  { background: var(--cream); }
.on-paper  { background: var(--paper); }
.on-white  { background: var(--white); }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 26px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    transition: background-color var(--t), transform var(--t-fast);
    white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: translateY(1px); }

.btn-orange  { background: var(--orange); color: var(--white); }
.btn-orange:hover  { background: var(--orange-2); }

.btn-navy    { background: var(--navy); color: var(--white); }
.btn-navy:hover    { background: var(--navy-2); }

.btn-ghost   { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.22); }
.btn-ghost:hover   { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.5); }

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

.btn-lg { padding: 17px 32px; font-size: 1rem; }

/* ---- Nav --------------------------------------------------------------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 80;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t);
    will-change: transform;
}

.nav.scrolled {
    border-color: var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-links > li > a {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
    border-radius: var(--radius);
    transition: background-color var(--t);
}

.nav-links > li > a:hover { color: var(--navy); background: rgba(14, 30, 61, 0.05); }

.nav-links > li > a.nav-cta {
    background: var(--navy);
    color: var(--white);
    font-weight: 600;
    padding: 10px 18px;
    margin-left: 10px;
    gap: 8px;
}

.nav-links > li > a.nav-cta:hover {
    background: var(--orange);
    color: var(--white);
}

.nav-links > li > a.nav-cta svg {
    width: 15px;
    height: 15px;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    position: relative;
    transition: background var(--t);
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--navy);
    transition: transform var(--t);
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

/* ---- Hero -------------------------------------------------------------- */
.hero {
    position: relative;
    background: var(--navy);
    color: var(--white);
    padding: 120px 0 140px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -18deg,
            transparent 0 80px,
            rgba(255, 255, 255, 0.018) 80px 160px
        );
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 780px;
    height: 780px;
    right: -220px;
    top: -180px;
    background: radial-gradient(circle at center, rgba(242, 101, 34, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 72px;
    align-items: center;
    z-index: 1;
}

.hero h1 {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.035em;
    line-height: 0.96;
    color: var(--white);
    margin: 24px 0 28px;
    text-transform: uppercase;
}

.hero h1 em {
    font-style: italic;
    color: var(--orange);
}

.hero-desc {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.68);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.hero-trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
    flex-shrink: 0;
}

/* Hero visual (logo card) */
.hero-card {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    padding: 56px 40px;
    aspect-ratio: 1.7 / 1;
    display: grid;
    place-items: center;
    box-shadow:
        0 40px 100px -30px rgba(0, 0, 0, 0.45),
        0 10px 30px -10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: rotate(-2deg);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent 62%, rgba(14, 30, 61, 0.025) 62%),
        var(--white);
    pointer-events: none;
}

.hero-card-inner {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    z-index: 1;
}

.hero-card-inner img {
    width: 100%;
    max-width: 340px;
    height: auto;
}

/* Typography-only hero brand mark — replaces the heavy raster as the LCP element */
.brand-mark {
    font-family: 'Archivo', 'Inter', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(5.5rem, 14vw, 9.5rem);
    letter-spacing: -0.05em;
    line-height: 0.9;
    color: var(--orange);
    display: block;
    text-align: center;
}

.brand-tag {
    display: block;
    margin-top: 14px;
    font-family: 'Archivo', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    letter-spacing: 0.06em;
    color: var(--navy);
    text-transform: uppercase;
    text-align: center;
}

/* ---- Services strip ---------------------------------------------------- */
.marquee {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
    animation: marquee 38s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    font-family: 'Archivo', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.01em;
    color: var(--navy);
    text-transform: uppercase;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 48px;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---- Section heading --------------------------------------------------- */
.section-head {
    display: grid;
    gap: 16px;
    margin-bottom: 64px;
    max-width: 720px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head.center .eyebrow { justify-self: center; }

.section-head h2 {
    font-family: 'Archivo', sans-serif;
}

/* ---- Services ---------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px 40px 40px;
    transition: transform var(--t);
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--t-slow);
}

.service-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-3px);
    box-shadow: 0 24px 60px -24px rgba(14, 30, 61, 0.2);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    margin-bottom: 28px;
}

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--ink-soft);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-list {
    display: grid;
    gap: 10px;
    margin-bottom: 32px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--ink);
    font-weight: 500;
}

.service-list svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--t);
}

.service-link svg { width: 16px; height: 16px; transition: transform var(--t); }
.service-link:hover { color: var(--orange); }
.service-link:hover svg { transform: translateX(4px); }

/* ---- Why / Benefits on navy ------------------------------------------- */
.why {
    position: relative;
    background: var(--navy);
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(242, 101, 34, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(242, 101, 34, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.why-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
    z-index: 1;
}

.why-list {
    display: grid;
    gap: 0;
}

.why-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.why-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

.why-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: rgba(242, 101, 34, 0.15);
    color: var(--orange);
    border-radius: var(--radius);
}

.why-icon svg { width: 22px; height: 22px; }

.why-text h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}

.why-text p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.94rem;
    line-height: 1.6;
}

/* ---- Process ----------------------------------------------------------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    counter-reset: step;
}

.process-step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 36px 36px;
    counter-increment: step;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    font-style: italic;
    color: var(--orange);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- Service area ------------------------------------------------------ */
.area {
    background: var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.area-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: center;
}

.area-cities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.area-city {
    background: var(--paper);
    padding: 28px 20px;
    text-align: center;
    transition: background-color var(--t);
    display: block;
    color: inherit;
}

.area-city:hover { background: var(--white); }

a.area-city { position: relative; }

a.area-city:hover .area-city-name { color: var(--orange); }

.area-city-name {
    font-family: 'Archivo', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
    transition: color var(--t);
}

.area-city-sub {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.area-city-more {
    grid-column: 1 / -1;
    background: var(--navy);
    color: var(--white);
    padding: 18px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.area-city-more em {
    font-style: normal;
    color: var(--orange);
    font-weight: 700;
}

/* ---- FAQ --------------------------------------------------------------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
    text-align: left;
    font-family: 'Archivo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.015em;
    transition: color var(--t);
}

.faq-q:hover { color: var(--orange); }

.faq-q-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--navy);
    transition: transform var(--t);
}

.faq-q-icon svg { width: 12px; height: 12px; }

.faq-item.open .faq-q-icon {
    transform: rotate(45deg);
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
}

.faq-item.open .faq-a {
    grid-template-rows: 1fr;
}

.faq-a > * {
    min-height: 0;
}

.faq-a-inner {
    padding: 0 0 28px;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 680px;
    opacity: 0;
    transition: opacity var(--t);
}

.faq-item.open .faq-a-inner { opacity: 1; }

/* ---- CTA strip --------------------------------------------------------- */
.cta-strip {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    left: -150px;
    top: -200px;
    background: radial-gradient(circle at center, rgba(242, 101, 34, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 88px 0;
    z-index: 1;
}

.cta-inner h2 {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    text-transform: uppercase;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    margin-top: 14px;
    max-width: 440px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-self: end;
    min-width: 260px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    transition: background-color var(--t);
}

.cta-phone:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-phone-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius);
    flex-shrink: 0;
}

.cta-phone-icon svg { width: 18px; height: 18px; }

.cta-phone-text {
    display: flex;
    flex-direction: column;
}

.cta-phone-text small {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.cta-phone-text strong {
    font-family: 'Archivo', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}

/* ---- Footer ------------------------------------------------------------ */
.footer {
    background: var(--navy-2);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
    height: 44px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 300px;
}

.footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-col ul { display: grid; gap: 10px; }

.footer-col a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--t);
}

.footer-col a:hover { color: var(--orange); }

.footer-col address {
    font-style: normal;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.footer-col address a { display: block; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.55); }
.footer-bottom a:hover { color: var(--white); }

/* ---- Page head (used on sub-pages) ------------------------------------ */
.page-head {
    background: var(--navy);
    color: var(--white);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-head::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    right: -150px;
    top: -100px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-head-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.page-head h1 {
    font-family: 'Archivo', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.02;
    text-transform: uppercase;
    margin: 20px 0 16px;
}

.page-head p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.68);
    max-width: 560px;
    line-height: 1.6;
}

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-card { max-width: 480px; margin: 0 auto; }
    .why-inner { grid-template-columns: 1fr; gap: 48px; }
    .area-inner { grid-template-columns: 1fr; gap: 48px; }
    .cta-inner { grid-template-columns: 1fr; gap: 36px; padding: 72px 0; }
    .cta-actions { justify-self: start; width: 100%; }
    .footer-top { grid-template-columns: repeat(4, 1fr); }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .section { padding: 88px 0; }
    .hero { padding: 80px 0 96px; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .area-cities { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 32px; padding-bottom: 40px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer { padding: 56px 0 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .nav-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: var(--white);
        padding: 16px 20px 24px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 40px -10px rgba(14, 30, 61, 0.12);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--t), opacity var(--t);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links > li { width: 100%; }
    .nav-links > li > a {
        width: 100%;
        padding: 14px 16px;
        font-size: 1rem;
    }
    .nav-links > li > a.nav-cta {
        margin-left: 0;
        margin-top: 8px;
        justify-content: center;
        padding: 14px 16px;
    }

    .hero h1 { font-size: clamp(2.4rem, 9vw, 3rem); }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { width: 100%; }
    .hero-trust { gap: 14px 22px; padding-top: 24px; }

    .hero-card { padding: 36px 28px; transform: rotate(-1.5deg); }

    .service-card { padding: 36px 28px 32px; }

    .area-cities { grid-template-columns: 1fr 1fr; }
    .area-city { padding: 22px 12px; }
    .area-city-name { font-size: 1rem; }

    .cta-actions .btn { width: 100%; }
    .cta-phone { padding: 14px 18px; }

    .page-head { padding: 100px 0 60px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .marquee-track { animation: none; }
    html { scroll-behavior: auto; }
}
