/* ==========================================================================
   Selma Wallpaper Installers — Global Stylesheet
   Style: Executive luxury, matte black + brushed bronze, editorial spacing
   ========================================================================== */

:root {
    --bg: #101010;
    --bg-soft: #1F1F1F;
    --bg-light: #F1EEE8;
    --text-on-dark: #FFFFFF;
    --text-on-light: #1A1A1A;
    --muted: #B8B5AE;
    --bronze: #B08A5A;
    --bronze-deep: #9B774A;
    --line: #2A2A2A;
    --line-light: #D9D5CC;
    --radius: 8px;
    --maxw: 1240px;
    --shadow-lg: 0 24px 60px -20px rgba(0,0,0,.55);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text-on-dark);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a { color: var(--bronze); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--bronze-deep); }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.18;
    margin: 0 0 .6em 0;
    letter-spacing: -.01em;
    color: var(--text-on-dark);
}

h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em 0; }

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

/* ============== Header ============== */
.site-header {
    position: sticky; top: 0; z-index: 80;
    background: rgba(16,16,16,.85);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-top {
    background: #0B0B0B;
    border-bottom: 1px solid var(--line);
    font-size: 13.5px;
    color: var(--muted);
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; gap: 16px; }
.header-top .top-left, .header-top .top-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.header-top a { color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.header-top a:hover { color: var(--bronze); }
.header-top svg { width: 16px; height: 16px; }

.header-main .container {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 18px; padding-bottom: 18px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--text-on-dark); font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -.01em; font-size: 17px; }
.brand .brand-mark { width: 38px; height: 38px; border-radius: 9px; background: var(--bronze); color: #101010; display: grid; place-items: center; font-weight: 800; font-family: 'Manrope', sans-serif; }
.brand small { display: block; color: var(--muted); font-weight: 500; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; }

/* ============== Nav (desktop) ============== */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; align-items: center; }
.main-nav a, .main-nav .nav-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--text-on-dark); padding: 10px 14px; border-radius: 6px;
    font-weight: 500; font-size: 14.5px; letter-spacing: .01em;
    background: transparent; border: 0; cursor: pointer; font-family: inherit;
}
.main-nav a:hover, .main-nav .has-dropdown:hover > a, .main-nav .has-dropdown:focus-within > a { background: rgba(176,138,90,.12); color: var(--bronze); }
.main-nav .has-dropdown { position: relative; }
.main-nav .has-dropdown > a::after {
    content: ""; width: 8px; height: 8px; margin-left: 4px;
    border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px); transition: transform .25s ease;
}
.main-nav .has-dropdown:hover > a::after, .main-nav .has-dropdown:focus-within > a::after {
    transform: rotate(225deg) translateY(-2px);
}
.dropdown {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
    background: #161616; border: 1px solid var(--line); border-radius: 10px;
    padding: 8px; box-shadow: var(--shadow-lg);
    list-style: none; margin: 0;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 90;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown li { opacity: 0; transform: translateX(-6px); transition: opacity .25s ease, transform .25s ease; }
.has-dropdown:hover > .dropdown li,
.has-dropdown:focus-within > .dropdown li { opacity: 1; transform: translateX(0); }
.dropdown li:nth-child(1) { transition-delay: .03s; }
.dropdown li:nth-child(2) { transition-delay: .06s; }
.dropdown li:nth-child(3) { transition-delay: .09s; }
.dropdown li:nth-child(4) { transition-delay: .12s; }
.dropdown li:nth-child(5) { transition-delay: .15s; }
.dropdown li:nth-child(6) { transition-delay: .18s; }
.dropdown li:nth-child(7) { transition-delay: .21s; }
.dropdown li:nth-child(8) { transition-delay: .24s; }
.dropdown li:nth-child(9) { transition-delay: .27s; }
.dropdown li:nth-child(10) { transition-delay: .30s; }
.dropdown li:nth-child(11) { transition-delay: .33s; }

.dropdown a {
    display: block; padding: 10px 14px; border-radius: 6px;
    color: #EAE7E0; font-size: 14px;
}
.dropdown a:hover { background: rgba(176,138,90,.14); color: var(--bronze); }

.cta-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bronze); color: #101010 !important;
    padding: 12px 20px; border-radius: 8px; font-weight: 600; font-size: 14.5px;
    transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.cta-pill:hover { background: var(--bronze-deep); color: #101010 !important; box-shadow: 0 8px 22px -8px rgba(176,138,90,.55); transform: translateY(-1px); }
.cta-pill svg { width: 18px; height: 18px; }

/* ============== Mobile nav toggle / overlay ============== */
.menu-btn { display: none; background: transparent; border: 1px solid var(--line); color: var(--text-on-dark); padding: 10px 12px; border-radius: 8px; cursor: pointer; }
.menu-btn svg { width: 22px; height: 22px; display: block; }

.mobile-menu {
    position: fixed; top: 0; right: -100%; height: 100dvh; width: min(86vw, 420px);
    background: #0E0E0E; z-index: 200; padding: 22px 22px 28px;
    overflow-y: auto; box-shadow: -20px 0 60px -20px rgba(0,0,0,.6);
    transition: right .35s cubic-bezier(.2,.8,.2,1);
    display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.is-open { right: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mobile-menu-header .brand-mark { width: 36px; height: 36px; border-radius: 9px; background: var(--bronze); color: #101010; display: grid; place-items: center; font-weight: 800; font-family: 'Manrope', sans-serif; }
.close-btn { background: transparent; border: 1px solid var(--line); color: var(--text-on-dark); width: 42px; height: 42px; border-radius: 8px; display: grid; place-items: center; cursor: pointer; }
.close-btn svg { width: 20px; height: 20px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.mobile-menu nav a, .mobile-menu nav .m-group-title {
    display: block; text-align: left; padding: 12px 14px; border-radius: 8px;
    color: #EAE7E0; font-size: 15.5px; font-weight: 500;
    text-decoration: none;
}
.mobile-menu nav a:hover, .mobile-menu nav a:focus { background: rgba(176,138,90,.12); color: var(--bronze); }
.mobile-menu nav details { border-radius: 8px; overflow: hidden; }
.mobile-menu nav details > summary {
    list-style: none; cursor: pointer; padding: 12px 14px; border-radius: 8px;
    color: #EAE7E0; font-size: 15.5px; font-weight: 600;
    display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu nav details > summary::-webkit-details-marker { display: none; }
.mobile-menu nav details > summary::after {
    content: ""; width: 10px; height: 10px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg); transition: transform .25s ease;
}
.mobile-menu nav details[open] > summary::after { transform: rotate(225deg); }
.mobile-menu nav details > .submenu { display: flex; flex-direction: column; gap: 2px; padding: 4px 0 6px 8px; border-left: 1px solid var(--line); margin-left: 14px; }
.mobile-menu nav details > .submenu a { padding: 10px 12px; font-size: 14.5px; color: #C8C5BD; }
.mobile-menu .m-contact { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; }
.mobile-menu .m-contact a { display: inline-flex; align-items: center; gap: 10px; color: #EAE7E0; padding: 10px 14px; }
.mobile-menu .m-contact svg { width: 18px; height: 18px; color: var(--bronze); }
.mobile-menu .cta-pill { justify-content: center; margin-top: 16px; }

.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s; z-index: 150; }
.menu-overlay.is-open { opacity: 1; visibility: visible; }

/* ============== Buttons ============== */
.btn {
    display: inline-flex; align-items: center; gap: 10px; justify-content: center;
    padding: 16px 26px; min-height: 54px; border-radius: 8px; font-weight: 600;
    font-family: 'Manrope', sans-serif; letter-spacing: .01em;
    cursor: pointer; border: 0; text-align: center;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .15s ease;
    font-size: 15px;
}
.btn-primary { background: var(--bronze); color: #101010 !important; }
.btn-primary:hover { background: var(--bronze-deep); color: #101010 !important; box-shadow: 0 12px 28px -10px rgba(176,138,90,.5); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text-on-dark); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze); }
.btn svg { width: 18px; height: 18px; }

/* ============== Hero ============== */
.hero {
    position: relative; isolation: isolate; overflow: hidden;
    padding: 110px 0 96px;
}
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: -2;
    background-image: var(--hero-image);
    background-size: cover; background-position: center;
    transform: scale(1.05);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(120deg, rgba(0,0,0,.82) 0%, rgba(16,16,16,.55) 55%, rgba(16,16,16,.85) 100%);
}
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.10); } }
.hero .grid {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px; border-radius: 999px; background: rgba(176,138,90,.18);
    color: var(--bronze); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em;
    margin-bottom: 18px;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--bronze); }
.hero p.lead { font-size: 1.075rem; color: #DDD9D1; max-width: 580px; }
.hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero .trust { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 22px 32px; color: #C8C5BD; font-size: 14px; }
.hero .trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero .trust svg { width: 18px; height: 18px; color: var(--bronze); }

/* Hero form (wrapped) */
.hero .form-wrap {
    background: rgba(20,20,20,.78); backdrop-filter: blur(8px);
    border: 1px solid var(--line); border-radius: 14px; padding: 28px;
    box-shadow: var(--shadow-lg);
}

/* ============== Form ============== */
.feedback-form-container {
    background: #161616; border: 1px solid var(--line); border-radius: 14px;
    padding: 28px;
}
.feedback-form-container h3 { font-size: 1.4rem; margin-bottom: 14px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 12px; }
.contact-form .form-group { display: flex; flex-direction: column; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 14px 16px; border-radius: 8px;
    border: 1px solid #2E2E2E; background: #0F0F0F; color: #fff;
    font-family: inherit; font-size: 15px; transition: border-color .2s ease, background .2s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #7A7770; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--bronze); background: #131313; }
.contact-form textarea { min-height: 130px; resize: vertical; margin-bottom: 14px; }
.form-submit { display: flex; justify-content: stretch; }
.submit-btn {
    width: 100%; padding: 16px 22px; min-height: 54px; border-radius: 8px;
    background: var(--bronze); color: #101010; font-weight: 700; font-size: 15px;
    border: 0; cursor: pointer; font-family: 'Manrope', sans-serif; letter-spacing: .02em;
    transition: background .2s ease, box-shadow .2s ease, transform .15s ease;
}
.submit-btn:hover { background: var(--bronze-deep); box-shadow: 0 14px 30px -10px rgba(176,138,90,.55); transform: translateY(-1px); }
#form-success { background: #122017; border: 1px solid #1F4030; color: #B7E2C7; padding: 18px 20px; border-radius: 10px; }
.error-message { color: #ff6b6b; margin-top: 5px; font-size: 14px; }

/* Light variant of form on light sections */
.section-light .feedback-form-container { background: #fff; border-color: var(--line-light); color: var(--text-on-light); }
.section-light .feedback-form-container h3 { color: var(--text-on-light); }
.section-light .contact-form input, .section-light .contact-form textarea { background: #FAF8F3; border-color: var(--line-light); color: var(--text-on-light); }
.section-light .contact-form input::placeholder, .section-light .contact-form textarea::placeholder { color: #8A8579; }

/* ============== Sections ============== */
section { padding: 88px 0; }
section.section-light { background: var(--bg-light); color: var(--text-on-light); }
section.section-soft { background: var(--bg-soft); }
section .section-header { max-width: 760px; margin-bottom: 48px; }
section.section-light h1, section.section-light h2, section.section-light h3 { color: var(--text-on-light); }
section.section-light p { color: #404038; }
section.section-light a { color: var(--bronze-deep); }
section .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 12px; border-radius: 999px; background: rgba(176,138,90,.16);
    color: var(--bronze); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em;
    margin-bottom: 14px;
}
section.section-light .eyebrow { background: rgba(176,138,90,.18); color: var(--bronze-deep); }

/* ============== Cards ============== */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.card {
    background: #161616; border: 1px solid var(--line); border-radius: 14px;
    overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); border-color: rgba(176,138,90,.55); box-shadow: 0 30px 60px -30px rgba(0,0,0,.7); }
.card .card-img { aspect-ratio: 4/3; overflow: hidden; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card .card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card h3 { margin: 0; font-size: 1.15rem; }
.card p { color: var(--muted); margin: 0; font-size: 14.5px; }
.card .card-link {
    margin-top: auto; display: inline-flex; align-items: center; gap: 6px;
    color: var(--bronze); font-weight: 600; font-size: 14.5px;
}
.card .card-link::after { content: "→"; transition: transform .2s ease; }
.card .card-link:hover::after { transform: translateX(3px); }

.section-light .card { background: #fff; border-color: var(--line-light); }
.section-light .card p { color: #444439; }

/* Feature row split */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.1fr; }
.split .frame { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.split .frame img { width: 100%; height: 100%; object-fit: cover; }
.split ul { padding-left: 0; list-style: none; margin: 16px 0 0; display: grid; gap: 10px; }
.split ul li { position: relative; padding-left: 26px; color: #DDD9D1; }
.section-light .split ul li { color: #3A3A33; }
.split ul li::before {
    content: ""; position: absolute; left: 0; top: 9px;
    width: 14px; height: 14px; background: var(--bronze); clip-path: polygon(0 50%, 40% 100%, 100% 0, 100% 22%, 40% 80%, 18% 50%);
}

/* ============== Stats / Trust ============== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { padding: 28px; background: #161616; border: 1px solid var(--line); border-radius: 14px; text-align: left; }
.stat .num { font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--bronze); font-size: 2.4rem; line-height: 1; }
.stat .lbl { color: var(--muted); margin-top: 8px; font-size: 14px; }

/* Map */
.map-frame { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.map-frame iframe { width: 100%; height: 460px; border: 0; display: block; filter: contrast(1.05) saturate(.95); }
.section-light .map-frame { border-color: var(--line-light); }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 880px; }
details.faq-item {
    background: #161616; border: 1px solid var(--line); border-radius: 12px;
    padding: 4px 4px;
}
.section-light details.faq-item { background: #fff; border-color: var(--line-light); }
details.faq-item > summary {
    list-style: none; cursor: pointer; padding: 18px 22px;
    font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 1.02rem;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
    content: ""; flex: 0 0 14px; width: 14px; height: 14px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); transition: transform .25s ease;
}
details.faq-item[open] > summary::after { transform: rotate(225deg); }
details.faq-item > .faq-body { padding: 0 22px 18px; color: #C8C5BD; }
.section-light details.faq-item > .faq-body { color: #444439; }

/* ============== CTA Banner ============== */
.cta-banner { background: linear-gradient(120deg, #1A1A1A 0%, #232017 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-banner .row { display: grid; grid-template-columns: 1.4fr auto; gap: 24px; align-items: center; }
.cta-banner h2 { margin: 0; }
.cta-banner p { color: #C8C5BD; margin: 6px 0 0; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* ============== Footer ============== */
.site-footer { background: #0A0A0A; border-top: 1px solid var(--line); padding: 64px 0 24px; color: #B6B3AC; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-family: 'Manrope', sans-serif; font-size: 14px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { color: #B6B3AC; }
.site-footer a:hover { color: var(--bronze); }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer p { color: #8E8B85; font-size: 14.5px; }
.footer-bottom { margin-top: 48px; border-top: 1px solid var(--line); padding-top: 18px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #6F6C66; }

/* ============== Sticky quote button ============== */
.sticky-quote {
    position: fixed; right: 22px; bottom: 22px; z-index: 120;
    background: var(--bronze); color: #101010; padding: 14px 20px;
    border-radius: 999px; font-weight: 700; font-family: 'Manrope', sans-serif;
    box-shadow: 0 18px 40px -10px rgba(176,138,90,.5);
    display: inline-flex; align-items: center; gap: 8px;
    border: 0; cursor: pointer; font-size: 15px;
    transition: background .2s ease, transform .15s ease;
}
.sticky-quote:hover { background: var(--bronze-deep); transform: translateY(-2px); }
.sticky-quote svg { width: 18px; height: 18px; }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 250; display: none; }
.modal.is-open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(4px); }
.modal-dialog {
    position: relative; max-width: 620px; width: calc(100% - 32px); margin: 6vh auto;
    background: #131313; border: 1px solid var(--line); border-radius: 14px; padding: 28px;
    box-shadow: var(--shadow-lg); max-height: 88vh; overflow-y: auto;
}
.modal-close {
    position: absolute; top: 14px; right: 14px; width: 40px; height: 40px;
    border-radius: 8px; background: transparent; border: 1px solid var(--line);
    color: #fff; display: grid; place-items: center; cursor: pointer;
}
.modal-close:hover { border-color: var(--bronze); color: var(--bronze); }
.modal-close svg { width: 18px; height: 18px; }

/* ============== Misc ============== */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.muted { color: var(--muted); }
.lead { font-size: 1.075rem; }
.text-center { text-align: center; }

ul.checklist { list-style: none; padding: 0; display: grid; gap: 10px; }
ul.checklist li { position: relative; padding-left: 28px; }
ul.checklist li::before { content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 14px; background: var(--bronze); clip-path: polygon(0 50%, 40% 100%, 100% 0, 100% 22%, 40% 80%, 18% 50%); }

ol.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 14px; }
ol.steps li { counter-increment: step; padding: 18px 22px 18px 64px; position: relative; background: #161616; border: 1px solid var(--line); border-radius: 12px; }
ol.steps li::before { content: counter(step, decimal-leading-zero); position: absolute; left: 18px; top: 16px; font-family: 'Manrope', sans-serif; font-weight: 800; color: var(--bronze); font-size: 1.2rem; }
.section-light ol.steps li { background: #fff; border-color: var(--line-light); color: var(--text-on-light); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; }
.tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: rgba(176,138,90,.14); color: var(--bronze); font-size: 12.5px; font-weight: 600; }
.section-light .tag { background: rgba(176,138,90,.16); color: var(--bronze-deep); }

.breadcrumbs { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--bronze); }
.breadcrumbs .sep { margin: 0 8px; opacity: .6; }

.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.areas-grid a { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: #161616; border: 1px solid var(--line); border-radius: 10px; color: #EAE7E0; font-weight: 500; }
.areas-grid a:hover { border-color: var(--bronze); color: var(--bronze); }
.section-light .areas-grid a { background: #fff; border-color: var(--line-light); color: var(--text-on-light); }
.section-light .areas-grid a:hover { border-color: var(--bronze-deep); color: var(--bronze-deep); }

.neighbors { display: flex; flex-wrap: wrap; gap: 8px; }
.neighbors span { padding: 6px 12px; background: rgba(176,138,90,.10); color: var(--bronze); border-radius: 999px; font-size: 13px; }
.section-light .neighbors span { background: rgba(176,138,90,.14); color: var(--bronze-deep); }

/* ============== Responsive ============== */
@media (max-width: 1024px) {
    .cards-4 { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
    .main-nav { display: none; }
    .menu-btn { display: inline-flex; }
    .header-top { display: none; }
    .header-main .container { padding-top: 14px; padding-bottom: 14px; }
    .hero { padding: 70px 0 56px; }
    .hero .grid { grid-template-columns: 1fr; gap: 28px; }
    .cards-3, .cards-2 { grid-template-columns: 1fr; }
    .split, .split.reverse { grid-template-columns: 1fr; gap: 28px; }
    .cta-banner .row { grid-template-columns: 1fr; }
    .cta-banner .actions { justify-content: flex-start; }
    section { padding: 64px 0; }
    .map-frame iframe { height: 360px; }
}
@media (max-width: 520px) {
    .areas-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .stat .num { font-size: 2rem; }
    .sticky-quote { right: auto; left: 50%; transform: translateX(-50%); bottom: 16px; }
    .sticky-quote:hover { transform: translateX(-50%) translateY(-2px); }
}


/* ============== Global SVG sizing safety ============== */
svg { flex: none; }
.eyebrow svg { width: 16px; height: 16px; flex-shrink: 0; }
.tag svg { width: 16px; height: 16px; flex-shrink: 0; }
.checklist li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--bronze); }
.areas-grid a svg { width: 16px; height: 16px; flex-shrink: 0; }
.card-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.breadcrumbs svg { width: 14px; height: 14px; flex-shrink: 0; }
.brand svg { width: 22px; height: 22px; flex-shrink: 0; }
.section-header .eyebrow svg { width: 16px; height: 16px; }
