:root {
    --navy: #173a56;
    --navy-deep: #10283c;
    --navy-soft: #24516f;
    --brass: #c8892a;
    --brass-hot: #e09a2e;
    --cream: #f4efe6;
    --paper: #fffaf3;
    --ink: #1d1914;
    --muted: #5d574e;
    --line: #e4dccf;
    --ok: #2f6b4f;
    --warn: #8a5a12;
    --err: #9b2c2c;
    --shadow: 0 12px 30px rgba(23, 58, 86, 0.12);
    --radius: 18px;
    --font: "Figtree", system-ui, sans-serif;
    --display: "Sora", "Figtree", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.55;
    padding-bottom: 5.5rem;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--brass); }
h1, h2, h3 { font-family: var(--display); line-height: 1.15; margin: 0 0 0.6rem; }
h1 { font-size: clamp(1.9rem, 6vw, 3.1rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2rem); }
p { margin: 0 0 1rem; }
.wrap { width: min(1120px, calc(100% - 1.5rem)); margin: 0 auto; }
.wrap.narrow { width: min(720px, calc(100% - 1.5rem)); }
.sr-only, .skip-link {
    position: absolute; left: -999px; top: 0;
}
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 20; }

.site-header {
    position: sticky; top: 0; z-index: 40;
    background: rgba(244, 239, 230, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.25rem; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--navy); }
.brand-mark {
    width: 2.5rem; height: 2.5rem; border-radius: 12px;
    background: var(--navy); color: var(--brass-hot);
    display: grid; place-items: center;
}
.brand-mark svg { width: 1.25rem; height: 1.25rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--display); font-size: 1.15rem; }
.brand-text span { font-size: .78rem; color: var(--muted); }
.nav-toggle {
    border: 0; background: var(--navy); color: #fff;
    width: 2.8rem; height: 2.8rem; border-radius: 12px;
    display: grid; place-items: center;
}
.nav-toggle svg { width: 1.3rem; height: 1.3rem; }
.site-nav {
    display: none; position: absolute; inset: 4.25rem 0 auto;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem; flex-direction: column; gap: .85rem;
}
.site-nav.is-open { display: flex; }
.site-nav a { font-weight: 600; font-size: 1.05rem; min-height: 2.6rem; display: flex; align-items: center; gap: .4rem; }
.nav-cta { justify-content: center; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
    min-height: 3rem; padding: 0 1.15rem; border-radius: 999px;
    font-weight: 700; border: 0; cursor: pointer; font-family: inherit; font-size: 1rem;
}
.btn svg { width: 1.1rem; height: 1.1rem; }
.btn-accent { background: var(--brass); color: #1a1408; }
.btn-accent:hover { background: var(--brass-hot); color: #1a1408; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-xl { min-height: 3.4rem; padding: 0 1.4rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

.hero, .page-hero {
    padding: 2.2rem 0 2.4rem;
    background:
        radial-gradient(1200px 280px at 10% -20%, rgba(200, 137, 42, 0.18), transparent 50%),
        linear-gradient(180deg, #efe7d8, var(--cream));
}
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; font-weight: 700; color: var(--brass); margin-bottom: .4rem; }
.hero-lead, .lead { font-size: 1.12rem; color: var(--muted); max-width: 42rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.2rem 0 1rem; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.hero-points li { display: flex; gap: .45rem; align-items: center; font-weight: 600; }
.hero-points svg { width: 1.1rem; color: var(--ok); }

.section { padding: 2.4rem 0; }
.section-alt { background: var(--paper); }
.section-navy { background: var(--navy-deep); color: #f4efe6; }
.section-navy a { color: var(--brass-hot); }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 1.2rem; }
.section-head.light { color: #fff; flex-direction: column; align-items: flex-start; }
.muted { color: var(--muted); }
.tiny { font-size: .82rem; }
.fine-print { font-size: .9rem; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1rem .9rem; min-height: 8.2rem; display: flex; flex-direction: column; gap: .35rem;
    box-shadow: var(--shadow); color: inherit;
}
.service-card:hover { transform: translateY(-2px); color: inherit; border-color: var(--brass); }
.card-ico {
    width: 2.4rem; height: 2.4rem; border-radius: 10px;
    background: #edf3f7; color: var(--navy); display: grid; place-items: center;
}
.card-ico svg { width: 1.2rem; height: 1.2rem; }
.service-card span { color: var(--muted); font-size: .88rem; }

.steps-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.steps-grid li { background: #fff; border-radius: var(--radius); padding: 1.1rem; border: 1px solid var(--line); }
.step-num {
    display: inline-grid; place-items: center; width: 2rem; height: 2rem;
    border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; margin-bottom: .5rem;
}

.area-pills { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.area-pills li {
    display: flex; align-items: center; gap: .3rem;
    background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .45rem .8rem; font-weight: 600;
}
.area-pills svg { width: 1rem; color: var(--brass); }

.category-block { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.1rem; margin-bottom: 1rem; }
.category-head { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; margin-bottom: .8rem; }
.category-head .text-link { grid-column: 2; font-weight: 700; }
.service-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.service-list a {
    display: flex; justify-content: space-between; gap: .6rem; align-items: center;
    background: var(--cream); border-radius: 14px; padding: .85rem 1rem; min-height: 3.1rem; font-weight: 600; color: var(--ink);
}
.service-list small { color: var(--brass); font-weight: 700; }

.split { display: grid; gap: 1.2rem; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.2rem; height: fit-content; }
.plain-list { padding-left: 1.1rem; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.gallery img { width: 100%; height: 9rem; object-fit: cover; border-radius: 14px; }

.estimate-form {
    background: #fff; color: var(--ink); border-radius: 24px; padding: 1.15rem;
    box-shadow: var(--shadow);
}
.form-steps { list-style: none; padding: 0; margin: 0; }
.estimate-form label { display: block; font-weight: 700; margin: 0 0 .9rem; }
.estimate-form input, .estimate-form select, .estimate-form textarea {
    display: block; width: 100%; margin-top: .35rem;
    min-height: 3rem; border: 1.5px solid var(--line); border-radius: 12px;
    padding: .7rem .85rem; font: inherit; background: var(--paper);
}
.estimate-form textarea { min-height: 7rem; }
.grid-2 { display: grid; gap: .7rem; }
.catalog-picker { display: grid; gap: .55rem; margin: 1rem 0; }
.picker-cat { background: var(--cream); border-radius: 14px; overflow: hidden; }
.picker-cat summary {
    list-style: none; display: flex; gap: .7rem; align-items: center;
    padding: .85rem 1rem; cursor: pointer; font-weight: 700; min-height: 3.3rem;
}
.picker-cat summary small { display: block; font-weight: 500; color: var(--muted); }
.picker-list { padding: 0 1rem 1rem; display: grid; gap: .35rem; }
.check-row { display: flex; gap: .6rem; align-items: flex-start; font-weight: 600; }
.check-row input { width: 1.2rem; height: 1.2rem; margin-top: .2rem; accent-color: var(--navy); }
.review-tag { color: var(--warn); font-style: normal; font-size: .78rem; margin-left: .3rem; }
.selected-chips { display: flex; flex-wrap: wrap; gap: .4rem; min-height: .5rem; }
.chip { background: var(--navy); color: #fff; border-radius: 999px; padding: .25rem .7rem; font-size: .82rem; }
.upload-callout {
    display: flex; gap: .5rem; align-items: center; background: #edf3f7;
    border-radius: 14px; padding: .8rem 1rem; font-size: 1rem;
}
.upload-callout svg { width: 1.3rem; color: var(--navy); flex-shrink: 0; }
.preview-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.preview-row img { width: 4.4rem; height: 4.4rem; object-fit: cover; border-radius: 10px; }
.step-nav { display: flex; gap: .6rem; margin-top: .4rem; }
.alert { border-radius: 14px; padding: .85rem 1rem; }
.alert-error { background: #fde8e8; color: var(--err); }
.alert-warn { background: #fff3d6; color: var(--warn); }
.alert-ok { background: #e5f4ea; color: var(--ok); }
.inline-contact { display: flex; gap: 1rem; font-weight: 700; }
.thanks { text-align: center; padding: 2rem 0; }
.thanks-ico {
    width: 3.4rem; height: 3.4rem; margin: 0 auto 1rem; border-radius: 50%;
    background: var(--ok); color: #fff; display: grid; place-items: center;
}
.thanks-ico svg { width: 1.6rem; height: 1.6rem; }

.site-footer { background: var(--navy-deep); color: #d9d1c4; padding: 2.2rem 0 1.2rem; }
.site-footer a { color: #fff; display: block; margin: .25rem 0; }
.footer-grid { display: grid; gap: 1.4rem; }
.footer-brand { font-family: var(--display); color: #fff; font-size: 1.2rem; }
.footer-head { color: var(--brass-hot); font-weight: 700; }
.footer-legal { margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1rem; font-size: .88rem; }

.sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: .4rem;
    padding: .55rem .7rem calc(.55rem + env(safe-area-inset-bottom));
    background: rgba(16, 40, 60, .96); backdrop-filter: blur(8px);
}
.sticky-cta .btn { min-height: 2.9rem; font-size: .92rem; }
.sticky-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }

.legal-copy p { font-size: 1.05rem; }

@media (min-width: 780px) {
    body { padding-bottom: 0; }
    .nav-toggle { display: none; }
    .site-nav {
        display: flex; position: static; flex-direction: row; align-items: center;
        background: transparent; border: 0; padding: 0; gap: 1.1rem;
    }
    .site-nav a { font-size: .95rem; min-height: auto; }
    .card-grid { grid-template-columns: repeat(3, 1fr); }
    .popular-grid { grid-template-columns: repeat(4, 1fr); }
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
    .split { grid-template-columns: 1.4fr .8fr; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .sticky-cta { display: none; }
    .category-head { grid-template-columns: auto 1fr auto; }
    .service-list { grid-template-columns: 1fr 1fr; }
}
