/* =================================================================
   EMKA LOGISTIEK — Visueel systeem
   Industrieel, strak, technisch. Routepatronen, grid, coördinaten.
   ================================================================= */

:root {
    --ink:        #103a3d;   /* diep teal (groen/blauw), huisstijl */
    --ink-2:      #17484b;
    --ink-3:      #275457;   /* huisstijlkleur EMKA */
    --paper:      #f2f5f4;   /* koele off-white */
    --paper-2:    #ffffff;
    --accent:     #2f948a;   /* teal accent (groen/blauw) */
    --accent-700: #21726a;
    --muted:      #576662;
    --muted-light:#9fb2ad;
    --line:       #e0e6e3;
    --line-dark:  rgba(255, 255, 255, .13);

    --mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", "DejaVu Sans Mono", Menlo, Consolas, monospace;
    --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --wrap: 1200px;
    --gap: clamp(1.25rem, 4vw, 2.5rem);
    --radius: 4px;
}

/* ---------- Reset / basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.02em; font-weight: 800; margin: 0; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.mono { font-family: var(--mono); font-variant-ligatures: none; }
.accent { color: var(--accent); }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gap); }

.visually-hidden, .skip-link {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
    position: fixed; top: 12px; left: 12px; width: auto; height: auto;
    clip: auto; background: var(--accent); color: #fff; padding: .6rem 1rem;
    z-index: 200; border-radius: var(--radius);
}

/* ---------- Eyebrow / technische labels ---------- */
.eyebrow {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 1rem;
    font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .95rem; letter-spacing: .01em;
    padding: .95rem 1.6rem; border-radius: var(--radius);
    text-decoration: none; border: 2px solid transparent; cursor: pointer;
    transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-700); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-block { width: 100%; }

.link-arrow {
    display: inline-flex; align-items: center; gap: .4rem;
    font-weight: 700; text-decoration: none; color: var(--ink);
    border-bottom: 2px solid var(--accent); padding-bottom: 2px;
}
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(5px); }

/* ---------- Header / navigatie ---------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(245,244,240,.9);
    backdrop-filter: saturate(150%) blur(8px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { display: block; width: 54px; height: 54px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-weight: 800; letter-spacing: .04em; font-size: 1.05rem; }
.brand-sub { font-family: var(--mono); font-size: .62rem; letter-spacing: .35em; color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: clamp(.5rem, 2vw, 1.75rem); }
.site-nav a {
    text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--ink);
    padding: .4rem 0; position: relative;
}
.site-nav a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
    background: var(--accent); transition: width .2s ease;
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a[aria-current="page"]::after { width: 100%; }
.nav-cta {
    background: var(--accent); color: #fff !important; padding: .6rem 1.1rem !important;
    border-radius: var(--radius);
}
.nav-cta:hover { background: var(--accent-700); }
.nav-cta[aria-current="page"] { background: var(--accent-700); }

.nav-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: 0;
    cursor: pointer; padding: 8px;
}
.nav-toggle-bar { width: 26px; height: 2px; background: var(--ink); transition: .25s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
    position: relative; background: var(--ink); color: var(--paper);
    overflow: hidden; padding: clamp(2.5rem, 6vw, 4.5rem) 0 0;
}
.hero-grid-lines {
    position: absolute; inset: 0; pointer-events: none; opacity: .5;
    background-image:
        linear-gradient(var(--line-dark) 1px, transparent 1px),
        linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 75%);
            mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 75%);
}
.hero-inner { position: relative; z-index: 1; padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.hero .eyebrow { color: var(--accent); }
.hero-title {
    font-size: clamp(2.4rem, 6.5vw, 4.8rem);
    margin: 0 0 1.5rem; letter-spacing: -.03em;
}
.hero-lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: #cfd4da; max-width: 60ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- INTRO ---------- */
.intro { padding: clamp(2.25rem, 4.5vw, 3.5rem) 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.intro-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.intro-body p { font-size: 1.1rem; color: var(--ink-2); }
.intro-body p:last-child { margin-bottom: 0; color: var(--muted); }

/* ---------- HIGHLIGHTS ---------- */
.highlights { padding: 0 0 clamp(2.25rem, 4.5vw, 3.5rem); }
.highlight-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.highlight-list li { padding: 2rem 1.5rem; border-right: 1px solid var(--line); background: var(--paper-2); }
.highlight-list li:last-child { border-right: 0; }
.hl-index { display: block; color: var(--accent); font-size: .85rem; letter-spacing: .1em; margin-bottom: 1.5rem; }
.highlight-list h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.highlight-list p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ---------- Section heads ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(1.25rem, 3vw, 1.85rem); }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
.section-head-center { text-align: center; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: clamp(1.25rem, 3vw, 1.85rem); }

/* ---------- Diensten overzicht (home) ---------- */
.services-overview { padding: clamp(2.25rem, 4.5vw, 3.5rem) 0; background: var(--ink); color: var(--paper); }
.services-overview .eyebrow { color: var(--accent); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.service-card {
    background: var(--ink); padding: 2rem 1.75rem; position: relative;
    transition: background .2s ease;
}
.service-card:hover { background: var(--ink-2); }
.service-index { display: block; color: var(--accent); font-size: .8rem; letter-spacing: .15em; margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.35rem; margin-bottom: .6rem; }
.service-card p { color: var(--muted-light); font-size: .95rem; margin: 0; }
.services-more { margin-top: 2.5rem; }
.services-overview .link-arrow { color: #fff; }

/* ---------- Quotes ---------- */
.quotes { padding: clamp(2.25rem, 4.5vw, 3.5rem) 0; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote-card {
    margin: 0; padding: 2rem; background: var(--paper-2);
    border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius);
}
.quote-card blockquote { margin: 0; font-size: 1.1rem; font-weight: 500; line-height: 1.5; }
.quote-card blockquote::before { content: "“"; color: var(--accent); font-size: 2rem; line-height: 0; vertical-align: -.4em; margin-right: .1em; }

/* ---------- Contact CTA blok ---------- */
.contact-cta { background: var(--accent); color: #fff; }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.contact-cta .eyebrow { color: rgba(255,255,255,.85); }
.cta-text { max-width: 620px; }
.cta-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.cta-text p { margin: 0; color: rgba(255,255,255,.9); font-size: 1.05rem; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.contact-cta .btn-accent { background: var(--ink); color: #fff; }
.contact-cta .btn-accent:hover { background: #000; }
.cta-phone { color: #fff; text-decoration: none; font-size: 1.1rem; letter-spacing: .05em; border-bottom: 1px solid rgba(255,255,255,.5); }

/* ---------- Pagina hero (subpagina's) ---------- */
.page-hero {
    background: var(--ink); color: var(--paper);
    padding: clamp(2.25rem, 4.5vw, 3.25rem) 0;
    border-bottom: 4px solid var(--accent);
    position: relative; overflow: hidden;
}
.page-hero::after {
    content: ""; position: absolute; right: -5%; top: 0; bottom: 0; width: 45%;
    background-image: repeating-linear-gradient(135deg, var(--line-dark) 0 1px, transparent 1px 26px);
    pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; max-width: 18ch; }
.page-hero-lead { color: #cfd4da; font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 60ch; margin: 0; }

/* ---------- Diensten detail ---------- */
.services-detail { padding: clamp(2.25rem, 4.5vw, 3.25rem) 0; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.service-detail-card {
    background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
    padding: clamp(1.75rem, 3vw, 2.5rem); display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.service-detail-card::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.service-detail-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(14,17,22,.4); }
.service-detail-card:hover::before { transform: scaleX(1); }
.sd-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.sd-head h2 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
.sd-head .service-index { color: var(--accent); margin: 0; font-size: 1rem; }
.sd-body { color: var(--ink-2); margin-bottom: 1.25rem; }
.sd-for { background: var(--paper); border-radius: var(--radius); padding: 1rem 1.1rem; font-size: .95rem; color: var(--muted); margin-bottom: 1.5rem; }
.sd-for-label { display: block; color: var(--accent); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .35rem; }
.service-detail-card .link-arrow { margin-top: auto; align-self: flex-start; font-size: .9rem; }

/* ---------- Formulieren ---------- */
.form-section, .contact-section { padding: clamp(2.25rem, 4.5vw, 3.25rem) 0; }
.form-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.form { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .45rem; }
.req { color: var(--accent); }
.field input, .field select, .field textarea {
    width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
    padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius);
    background: var(--paper); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,90,30,.15); background: #fff;
}
.field textarea { resize: vertical; }
.field [aria-invalid="true"] { border-color: var(--accent-700); }
.field-err { display: block; color: var(--accent-700); font-size: .85rem; margin-top: .4rem; font-weight: 600; }
.form-note { font-size: .85rem; color: var(--muted); margin: 1rem 0 0; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 1.1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; font-size: .98rem; border: 1px solid; }
.alert-success { background: #eaf7ee; border-color: #b6e0c2; color: #1c6b35; }
.alert-error { background: #fdecea; border-color: #f4c4bd; color: #b1330f; }

/* Form aside */
.aside-card { background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.25rem); }
.aside-card .eyebrow { color: var(--accent); }
.aside-list li { padding: .85rem 0; border-bottom: 1px solid var(--line-dark); color: var(--muted-light); font-size: .95rem; }
.aside-list li:last-child { border-bottom: 0; }
.aside-list strong { color: #fff; }
.aside-card hr { border: 0; border-top: 1px solid var(--line-dark); margin: 1.25rem 0; }
.aside-contact { margin: 0; line-height: 1.9; }
.aside-contact a { color: var(--accent); text-decoration: none; }
.aside-contact a:hover { text-decoration: underline; }

/* ---------- Contactpagina ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-cards { border-top: 1px solid var(--line); }
.contact-item { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.ci-label { display: block; color: var(--accent); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .5rem; }
.ci-value { font-size: 1.2rem; font-weight: 600; text-decoration: none; color: var(--ink); }
a.ci-value:hover { color: var(--accent); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.contact-form-wrap { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); }
.contact-form-title { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-form-wrap .form { background: transparent; border: 0; padding: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--muted-light); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
.footer-logo { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; }
.footer-logo img { display: block; }
.footer-brand .brand-name { color: #fff; font-size: 1.2rem; font-weight: 800; letter-spacing: .04em; }
.footer-brand p { font-size: .92rem; margin: 1rem 0 0; max-width: 36ch; }
.footer-title { color: #fff; font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.footer-col ul li { padding: .35rem 0; }
.footer-col a { text-decoration: none; color: var(--muted-light); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-top: 1.5rem; font-size: .8rem; letter-spacing: .05em; }

/* ---------- Cases slider (home) ---------- */
.cases { padding: clamp(2.25rem, 4.5vw, 3.5rem) 0; background: var(--paper); }
.case-slider { position: relative; }
.case-window { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--ink); }
.case-track { display: flex; margin: 0; padding: 0; list-style: none; transition: transform .5s cubic-bezier(.4,.0,.2,1); }
.case-slide { position: relative; flex: 0 0 100%; }
.case-slide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.case-caption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: clamp(1.25rem, 4vw, 2.5rem); color: #fff;
    background: linear-gradient(to top, rgba(16,42,40,.92) 0%, rgba(16,42,40,.6) 55%, rgba(16,42,40,0) 100%);
}
.case-tag { display: inline-block; color: #fff; background: var(--accent); padding: .25rem .6rem; border-radius: 2px; font-size: .7rem; letter-spacing: .12em; margin-bottom: .75rem; }
.case-caption h3 { font-size: clamp(1.3rem, 3vw, 2rem); margin-bottom: .4rem; }
.case-caption p { margin: 0; color: #dfe6e3; max-width: 56ch; font-size: .98rem; }
.case-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
    background: rgba(255,255,255,.92); color: var(--ink); font-size: 1.8rem; line-height: 1;
    display: flex; align-items: center; justify-content: center; transition: background .15s ease, transform .15s ease;
    box-shadow: 0 6px 18px -6px rgba(0,0,0,.5);
}
.case-btn:hover { background: #fff; }
.case-btn:active { transform: translateY(-50%) scale(.94); }
.case-prev { left: 16px; padding-right: 3px; }
.case-next { right: 16px; padding-left: 3px; }
.case-dots { display: flex; justify-content: center; gap: .55rem; margin-top: 1.5rem; }
.case-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: var(--line); transition: background .15s ease, transform .15s ease; }
.case-dot[aria-current="true"] { background: var(--accent); transform: scale(1.25); }

/* ---------- Over ons ---------- */
.about-story, .about-family { padding: clamp(2.25rem, 4.5vw, 3.5rem) 0; }
.about-family { background: var(--paper); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.about-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: 1.25rem; }
.about-text p { color: var(--ink-2); font-size: 1.06rem; }
.about-text .btn { margin-top: .75rem; }
.about-values { padding: 0 0 clamp(2.25rem, 4.5vw, 3.5rem); }
.value-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--paper-2); }
.value-list li { padding: 2.25rem 1.75rem; border-right: 1px solid var(--line); }
.value-list li:last-child { border-right: 0; }
.value-list h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.value-list p { margin: 0; color: var(--muted); font-size: .98rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .intro-grid, .form-layout, .contact-layout { grid-template-columns: 1fr; }
    .highlight-list { grid-template-columns: repeat(2, 1fr); }
    .highlight-list li:nth-child(2) { border-right: 0; }
    .highlight-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-split { grid-template-columns: 1fr; }
    .about-split-reverse .about-media { order: -1; }
    .value-list { grid-template-columns: 1fr; }
    .value-list li { border-right: 0; border-bottom: 1px solid var(--line); }
    .value-list li:last-child { border-bottom: 0; }
}

@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
        background: var(--paper); border-bottom: 1px solid var(--line); padding: 1rem var(--gap) 1.5rem;
        gap: 0; transform: translateY(-120%); transition: transform .28s ease; box-shadow: 0 20px 40px -28px rgba(0,0,0,.4);
    }
    .site-nav.open { transform: translateY(0); }
    .site-nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
    .site-nav a:not(.nav-cta)::after { display: none; }
    .nav-cta { text-align: center; margin-top: .75rem; padding: .9rem !important; }
    .hero-stats { grid-template-columns: 1fr; gap: 1rem; }
    .hero-stats div { display: flex; align-items: baseline; gap: .75rem; }
    .hero-stats dt { font-size: 1.4rem; }
    .cta-actions { width: 100%; }
    .cta-actions .btn { width: 100%; }
}

@media (max-width: 520px) {
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .highlight-list { grid-template-columns: 1fr; }
    .highlight-list li { border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .highlight-list li:last-child { border-bottom: 0; }
    .case-slide img { aspect-ratio: 4 / 3; }
    .case-btn { width: 40px; height: 40px; font-size: 1.5rem; }
    .case-prev { left: 8px; } .case-next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
