/* =========================================================================
   Aarhus Maler – design system
   Varmt, lokalt, håndværksorienteret. Minimal CSS, system-fonts.
   ========================================================================= */

:root {
    --ink: #18202b;
    --charcoal: #232a33;
    --charcoal-2: #2c343f;
    --accent: #1f6fb2;
    --accent-strong: #17568c;
    --accent-bright: #4a9fe0;
    --accent-ink: #ffffff;
    --cream: #faf6ef;
    --cream-2: #f2ece1;
    --white: #ffffff;
    --muted: #5c6672;
    --muted-light: #8a929c;
    --line: #e7e0d4;
    --line-dark: #38414d;
    --success: #1f8a4c;
    --success-bg: #e7f6ec;
    --error: #c0392b;
    --error-bg: #fdecea;

    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 2px 8px rgba(24, 32, 43, .06), 0 10px 30px rgba(24, 32, 43, .07);
    --shadow-lg: 0 20px 50px rgba(24, 32, 43, .14);
    --container: 1200px;
    --gap: clamp(1rem, 3vw, 2rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    font-size: 1.0625rem;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.15; color: var(--ink); font-weight: 800; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

/* ---------- Utilities ---------- */
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.sr-only {
    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 {
    position: absolute; left: -999px; top: 0; z-index: 1000;
    background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--accent-strong); outline-offset: 2px; border-radius: 4px; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--charcoal); color: #e8ebef; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section__head { max-width: 720px; margin-bottom: 2.5rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
    display: inline-block; font-weight: 700; text-transform: uppercase;
    letter-spacing: .1em; font-size: .8rem; color: var(--accent-strong); margin-bottom: .75rem;
}
.section--dark .eyebrow { color: var(--accent-bright); }
.lead { font-size: 1.2rem; color: var(--muted); }
.section--dark .lead { color: #c3cad3; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    font-weight: 700; font-size: 1rem; line-height: 1; cursor: pointer;
    padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
    text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: var(--accent-strong); color: #fff; }
.btn--ghost { background: transparent; border-color: currentColor; color: inherit; }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #0f151d; }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; }
.link-arrow svg { transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.topbar { background: var(--ink); color: #d7dce2; font-size: .85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 1rem; }
.topbar__hours { display: inline-flex; align-items: center; gap: .4rem; }
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: 0 1px 0 var(--line); }
.header__inner { display: flex; align-items: center; gap: 1.25rem; min-height: 76px; }
.header__logo { flex: 0 0 auto; }
.header__logo img { height: 44px; width: auto; }
.header__nav { margin-left: auto; }
.menu { display: flex; align-items: center; gap: .1rem; list-style: none; }
.menu > li > a {
    display: inline-flex; align-items: center; gap: .3rem; padding: .6rem .7rem;
    color: var(--ink); font-weight: 600; border-radius: 8px; white-space: nowrap;
}
.menu > li > a:hover, .menu > li > a[aria-current="page"] { background: var(--cream-2); text-decoration: none; }
.menu__has-children { position: relative; }
.submenu {
    position: absolute; top: 100%; left: 0; min-width: 260px; list-style: none;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: .5rem; opacity: 0; visibility: hidden;
    transform: translateY(6px); transition: opacity .15s ease, transform .15s ease; z-index: 20;
}
.menu__has-children:hover .submenu,
.menu__has-children:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: .6rem .75rem; border-radius: 8px; color: var(--ink); font-weight: 500; }
.submenu a:hover { background: var(--cream); text-decoration: none; }
.submenu-toggle { display: none; }
.menu__mobile-head { display: none; }
.nav-close { display: none; background: var(--cream-2); border: 0; border-radius: 10px; width: 44px; height: 44px; cursor: pointer; color: var(--ink); align-items: center; justify-content: center; }
.nav-close:hover { background: var(--line); }
.header__actions { display: flex; align-items: center; gap: 1rem; flex: 0 0 auto; }
.header__phone { display: inline-flex; align-items: center; gap: .5rem; color: var(--ink); font-weight: 600; }
.header__phone:hover { text-decoration: none; color: var(--accent-strong); }
.header__phone svg { color: var(--accent-strong); }
.header__phone-label { display: block; font-size: .72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.header__phone strong { font-size: 1.05rem; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--charcoal); color: #eef1f4; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.hero h1 { color: #fff; }
.hero__lead { font-size: 1.2rem; color: #c9d0d9; max-width: 40ch; }
.hero__list { list-style: none; margin: 1.75rem 0; display: grid; gap: .75rem; }
.hero__list li { display: flex; gap: .7rem; align-items: flex-start; color: #e6eaef; }
.hero__list svg { flex: 0 0 auto; color: var(--accent-bright); margin-top: 3px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.hero__badge {
    position: absolute; bottom: -18px; left: -18px; background: var(--accent); color: var(--accent-ink);
    padding: 1rem 1.25rem; border-radius: var(--radius); font-weight: 800; box-shadow: var(--shadow-lg); line-height: 1.1;
}
.hero__badge span { display: block; font-size: .78rem; font-weight: 600; }
.hero__badge strong { font-size: 1.5rem; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink); color: #dfe4ea; }
.trust-strip__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); }
.trust-strip__item { background: var(--ink); padding: 1.5rem; display: flex; gap: .9rem; align-items: flex-start; }
.trust-strip__item svg { color: var(--accent-bright); flex: 0 0 auto; }
.trust-strip__item strong { display: block; color: #fff; font-size: 1.05rem; }
.trust-strip__item span { font-size: .92rem; color: #aab2bc; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.service-card:hover .service-card__media img { transform: scale(1.04); }
.service-card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.service-card__title { margin: 0; font-size: 1.2rem; }
.service-card__title a { color: var(--ink); }
.service-card__body p { color: var(--muted); font-size: .98rem; margin: 0; flex: 1; }
.service-card__body .link-arrow { margin-top: .5rem; }

/* ---------- Feature (why us / process) ---------- */
.features { list-style: none; display: grid; gap: 1.25rem; }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__icon { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: var(--cream-2);
    display: grid; place-items: center; color: var(--accent-strong); }
.section--dark .feature__icon { background: var(--charcoal-2); color: var(--accent-bright); }
.feature h3 { margin-bottom: .25rem; font-size: 1.15rem; }
.feature p { color: var(--muted); margin: 0; }
.section--dark .feature p { color: #b9c0c9; }

.steps { list-style: none; counter-reset: step; display: grid; gap: 1.25rem; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.steps li::before {
    counter-increment: step; content: counter(step);
    width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--accent-ink);
    font-weight: 800; display: grid; place-items: center;
}
.steps h3 { margin: 0 0 .2rem; font-size: 1.1rem; }
.steps p { margin: 0; color: var(--muted); }

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.checklist { list-style: none; display: grid; gap: .6rem; margin: 1.25rem 0; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; }
.checklist svg { color: var(--accent-strong); flex: 0 0 auto; margin-top: 4px; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.testimonial__stars { color: var(--accent-strong); display: flex; gap: 2px; margin-bottom: .75rem; }
.testimonial__quote { font-size: .98rem; color: #333b45; }
.testimonial__author { margin-top: 1rem; font-weight: 700; }
.testimonial__author span { display: block; font-weight: 500; color: var(--muted); font-size: .9rem; }
.rating-summary { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; }
.rating-summary .stars { color: var(--accent-strong); }

/* ---------- Reviews & references ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; margin: 0; display: flex; flex-direction: column; }
.review__stars { color: var(--accent-strong); display: flex; gap: 2px; margin-bottom: .75rem; }
.review__text { font-size: .98rem; color: #333b45; margin: 0 0 1rem; flex: 1; }
.review__meta strong { display: block; }
.review__meta span { color: var(--muted); font-size: .9rem; }

.reference-card { display: flex; gap: 1rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.4rem; }
.reference-card__mark { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--cream-2); color: var(--accent-strong); display: grid; place-items: center; }
.reference-card h3 { margin: 0; font-size: 1.1rem; }
.reference-card p { margin: .15rem 0 0; color: var(--muted); font-size: .92rem; }

.ref-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem 1rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.ref-strip__label { font-weight: 700; color: var(--muted); font-size: .9rem; }
.ref-strip__item { font-weight: 700; color: var(--ink); }
.ref-strip__item:not(:last-child)::after { content: "·"; color: var(--muted-light); margin-left: 1rem; }

/* ---------- Brands ---------- */
.brands { display: flex; flex-wrap: wrap; gap: 2rem 3rem; align-items: center; justify-content: center; opacity: .85; }
.brands img { height: 34px; width: auto; filter: grayscale(1); opacity: .8; }
.brands img:hover { filter: none; opacity: 1; }

/* ---------- Areas ---------- */
.area-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.area-card { display: flex; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.area-card__media { flex: 0 0 140px; }
.area-card__media img { width: 100%; height: 100%; object-fit: cover; }
.area-card__body { padding: 1.1rem 1.1rem 1.1rem 0; }
.area-card__body h3 { margin: 0 0 .3rem; font-size: 1.15rem; }
.area-card__body p { margin: 0 0 .5rem; color: var(--muted); font-size: .92rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { display: inline-block; background: var(--cream-2); color: var(--ink); padding: .4rem .85rem; border-radius: 999px; font-size: .9rem; font-weight: 500; }
a.chip:hover { background: var(--accent); color: var(--accent-ink); text-decoration: none; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq summary { cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 700; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent-strong); font-weight: 400; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 1.3rem 1.2rem; color: var(--muted); }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { background: var(--cream); border-bottom: 1px solid var(--line); font-size: .9rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: .85rem 0; align-items: center; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }
.breadcrumbs__sep { color: var(--muted-light); margin-left: .4rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--charcoal); color: #eef1f4; padding: clamp(2.5rem, 5vw, 4rem) 0; }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { color: #c9d0d9; font-size: 1.15rem; max-width: 60ch; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

/* ---------- Article / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul:not(.checklist):not(.features) { padding-left: 1.25rem; margin: 0 0 1rem; }
.prose li { margin-bottom: .4rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__group { display: grid; gap: .35rem; }
.form__group label { font-weight: 600; font-size: .95rem; }
.form input, .form select, .form textarea {
    font: inherit; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 10px;
    background: #fff; color: var(--ink); width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--accent-strong); outline: none; box-shadow: 0 0 0 3px rgba(31,111,178,.28); }
.form input[aria-invalid="true"], .form textarea[aria-invalid="true"] { border-color: var(--error); }
.form__check { grid-template-columns: auto 1fr; align-items: start; gap: .6rem; }
.form__check input { width: 20px; height: 20px; margin-top: 2px; }
.form__check label { font-weight: 500; font-size: .92rem; color: var(--muted); }
.form__hint, .form__reassure { font-size: .88rem; color: var(--muted); margin: 0; }
.form__reassure { text-align: center; margin-top: .25rem; }
.req { color: var(--error); }
.field-error { color: var(--error); font-size: .85rem; margin: 0; }
.form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { display: flex; gap: .75rem; align-items: flex-start; padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem; }
.alert p { margin: 0; }
.alert--success { background: var(--success-bg); color: #14663a; }
.alert--success svg { color: var(--success); flex: 0 0 auto; }
.alert--error { background: var(--error-bg); color: #8f271c; }
.alert--error svg { color: var(--error); flex: 0 0 auto; }

/* ---------- Contact layout ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact-info { display: grid; gap: 1.25rem; }
.contact-info__card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.4rem; }
.contact-info__card h3 { margin: 0 0 .3rem; font-size: 1.05rem; }
.contact-info__card a { font-weight: 700; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow); }
.map-embed { border: 0; width: 100%; height: 380px; border-radius: var(--radius); margin-top: 1rem; }

/* ---------- Calculator ---------- */
.calc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.5rem, 3vw, 2.25rem); }
.calc__step { margin-bottom: 1.5rem; }
.calc__step > legend, .calc__label { font-weight: 700; font-size: 1.05rem; margin-bottom: .75rem; display: block; padding: 0; }
.calc select, .calc input[type="number"] {
    font: inherit; width: 100%; padding: .8rem 2.5rem .8rem .9rem; border: 1.5px solid var(--line);
    border-radius: 10px; background: #fff; color: var(--ink); cursor: pointer; -webkit-appearance: none; appearance: none;
    background-image: 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='%235c6672' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .9rem center;
}
.calc input[type="number"] { padding-right: .9rem; background-image: none; cursor: text; }
.calc select:focus, .calc input:focus { border-color: var(--accent-strong); outline: none; box-shadow: 0 0 0 3px rgba(31,111,178,.28); }
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: .75rem; border: 0; padding: 0; margin: 0; }
.option {
    position: relative; border: 1.5px solid var(--line); border-radius: 12px; padding: 1rem; cursor: pointer;
    display: flex; gap: .6rem; align-items: flex-start; transition: border-color .15s ease, background .15s ease;
}
.option:hover { border-color: var(--accent); }
.option input { margin-top: 3px; }
.option input:checked ~ span { font-weight: 700; }
.option:has(input:checked) { border-color: var(--accent-strong); background: #eef5fc; }
.option span { font-size: .95rem; }
.calc__result { background: var(--charcoal); color: #fff; border-radius: var(--radius); padding: 1.75rem; margin-top: 1.5rem; }
.calc__result h3 { color: #fff; }
.calc__price { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--accent-bright); }
.calc__summary { list-style: none; margin: 1rem 0; display: grid; gap: .3rem; color: #c9d0d9; }
.calc__summary li::before { content: "• "; color: var(--accent-bright); }
.calc__disclaimer { font-size: .85rem; color: var(--muted); margin-top: 1rem; }
.calc__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.25rem; }
.is-hidden { display: none !important; }

/* ---------- Price table ---------- */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-table caption { text-align: left; font-weight: 700; padding: 1rem 1.25rem; background: var(--cream); }
.price-table th, .price-table td { text-align: left; padding: .85rem 1.25rem; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--cream-2); font-size: .9rem; }
.price-table td:last-child { font-weight: 700; white-space: nowrap; }
.price-note { font-size: .9rem; color: var(--muted); margin-top: 1rem; }

/* ---------- Project gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: #fff; }
.gallery img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.gallery figcaption { padding: .85rem 1rem; font-size: .92rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: var(--accent-ink); }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(2rem, 4vw, 3rem) 0; }
.cta-band h2 { color: var(--accent-ink); margin: 0 0 .3rem; }
.cta-band p { margin: 0; max-width: 52ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-band .btn--ghost { border-color: var(--accent-ink); color: var(--accent-ink); }
.cta-band .btn--ghost:hover { background: rgba(0,0,0,.08); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9c0c9; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem; }
.footer__logo { height: 42px; width: auto; margin-bottom: 1rem; }
.footer__about p { color: #9aa2ac; }
.footer__social { display: inline-flex; align-items: center; gap: .5rem; color: #dfe4ea; font-weight: 600; margin-top: .5rem; }
.footer__title { color: #fff; font-size: 1.05rem; margin-bottom: 1rem; }
.footer__links { list-style: none; display: grid; gap: .55rem; }
.footer__links a { color: #b9c0c9; }
.footer__links a:hover { color: var(--accent-bright); }
.footer__contact address { font-style: normal; color: #b9c0c9; margin-bottom: 1rem; }
.footer__contact a { color: #dfe4ea; }
.footer__contact a:hover { color: var(--accent-bright); }
.footer__hours { display: inline-block; margin-top: .5rem; color: #9aa2ac; font-size: .9rem; }
.footer__bottom { border-top: 1px solid var(--line-dark); }
.footer__bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; font-size: .9rem; }
.footer__legal { list-style: none; display: flex; gap: 1.25rem; }
.footer__legal a { color: #9aa2ac; }

/* ---------- Mobile CTA bar ---------- */
.mobile-cta { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .trust-strip__inner { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .hero__inner { grid-template-columns: 1fr; }
    .hero__media { order: -1; }
    .split, .contact-grid { grid-template-columns: 1fr; }
    .area-cards { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); }

    /* Mobile navigation */
    .header__inner { flex-wrap: nowrap; gap: .5rem; min-height: 64px; }
    .header__logo { margin-right: auto; }
    .header__logo img { height: 38px; }
    .header__actions { order: 2; gap: .5rem; margin-left: 0; }
    .header__nav { order: 3; margin-left: 0; display: flex; align-items: center; }
    .header__cta { display: none; } /* redundant med sticky bund-bar + menu */
    .header__actions .header__phone-label { display: none; }
    .header__phone { width: 44px; height: 44px; justify-content: center; gap: 0; background: var(--cream-2); border-radius: 10px; }
    .header__phone strong { display: none; }
    .header__phone svg { color: var(--accent-strong); }
    .nav-toggle {
        display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
        background: var(--cream-2); border: 0; border-radius: 10px; cursor: pointer;
    }
    .nav-toggle__bars { display: grid; gap: 5px; }
    .nav-toggle__bars span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
    .nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .menu {
        position: fixed; inset: 0 0 0 auto; width: min(88vw, 360px); background: #fff; flex-direction: column;
        align-items: stretch; gap: 0; padding: 1rem 1.25rem 2rem; box-shadow: var(--shadow-lg);
        transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; z-index: 90;
    }
    .menu.is-open { transform: translateX(0); }
    .menu__mobile-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1rem; margin-bottom: .5rem; border-bottom: 1px solid var(--line); }
    .menu__mobile-head img { height: 38px; width: auto; }
    .nav-close { display: inline-flex; }
    .menu > li > a { padding: .9rem .25rem; border-radius: 0; border-bottom: 1px solid var(--line); }
    .menu__has-children { display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid var(--line); }
    .menu__has-children > a { border-bottom: 0; }
    .submenu {
        position: static; grid-column: 1 / -1; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        border: 0; border-radius: 0; padding: 0 0 .5rem .75rem; display: none; min-width: 0;
    }
    .submenu.is-open { display: block; }
    .submenu-toggle {
        display: block; width: 40px; height: 40px; background: transparent; border: 0; cursor: pointer; position: relative;
    }
    .submenu-toggle::before, .submenu-toggle::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; }
    .submenu-toggle::before { width: 12px; height: 2px; top: 19px; left: 14px; }
    .submenu-toggle::after { width: 2px; height: 12px; top: 14px; left: 19px; transition: transform .2s ease; }
    .submenu-toggle[aria-expanded="true"]::after { transform: rotate(90deg); opacity: 0; }
    body.nav-open { overflow: hidden; }
    .nav-backdrop { position: fixed; inset: 0; background: rgba(24,32,43,.5); z-index: 80; opacity: 0; visibility: hidden; transition: opacity .2s; }
    .nav-backdrop.is-open { opacity: 1; visibility: visible; }

    .mobile-cta {
        display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; position: fixed; bottom: 0; left: 0; right: 0;
        padding: .5rem; background: #fff; box-shadow: 0 -2px 12px rgba(0,0,0,.12); z-index: 70;
        padding-bottom: calc(.5rem + env(safe-area-inset-bottom));
    }
    .mobile-cta__btn { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; padding: .9rem; border-radius: 10px; font-weight: 700; }
    .mobile-cta__call { background: var(--cream-2); color: var(--ink); }
    .mobile-cta__quote { background: var(--accent); color: var(--accent-ink); }
    .mobile-cta__btn:hover { text-decoration: none; }
    body { padding-bottom: 68px; }
}
@media (max-width: 560px) {
    .form__row { grid-template-columns: 1fr; }
    .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .topbar__inner { justify-content: center; }
    .topbar__item:not(.topbar__hours) { display: none; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
    .hero__badge { left: 8px; bottom: -14px; }
}
