:root {
    --navy: #0a1d2e;
    --navy-deep: #071523;
    --navy-soft: #16324a;
    --navy-mid: #10263a;
    --brass: #c58b28;
    --brass-hot: #d9a03a;
    --cream: #f7f5f1;
    --paper: #ffffff;
    --ink: #14202c;
    --muted: #5b6773;
    --line: #e6e1d8;
    --ok: #2f6b4f;
    --warn: #8a5a12;
    --err: #9b2c2c;
    --shadow: 0 14px 40px rgba(10, 29, 46, 0.1);
    --radius: 16px;
    --font: "Source Sans 3", "Segoe UI", sans-serif;
    --display: "Montserrat", "Source Sans 3", sans-serif;
    --serif: "Playfair Display", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: #fff;
    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; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.85rem, 5.6vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.35rem, 3.4vw, 1.85rem); font-weight: 700; }
p { margin: 0 0 1rem; }
.wrap { width: min(1160px, calc(100% - 1.5rem)); margin: 0 auto; }
.wrap.narrow { width: min(740px, 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: var(--navy);
    border-bottom: 1px solid rgba(197, 139, 40, 0.18);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.4rem; }
.brand { display: flex; align-items: center; gap: .7rem; color: #fff; }
.brand:hover { color: #fff; }
.brand-mark {
    width: 2.55rem; height: 2.55rem; flex-shrink: 0;
    display: grid; place-items: center;
}
.brand-mark img { width: 2.55rem; height: 2.55rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--display); font-size: .95rem; letter-spacing: .06em; }
.brand-text span { font-size: .68rem; color: var(--brass-hot); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.nav-toggle {
    border: 0; background: var(--brass); color: var(--navy);
    width: 2.8rem; height: 2.8rem; border-radius: 10px;
    display: grid; place-items: center;
}
.nav-toggle svg { width: 1.3rem; height: 1.3rem; }
.site-nav {
    display: none; position: absolute; inset: 4.4rem 0 auto;
    background: var(--navy-mid); border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 1rem 1.25rem 1.25rem; flex-direction: column; gap: .7rem;
}
.site-nav.is-open { display: flex; }
.site-nav a { font-weight: 600; font-size: 1.02rem; min-height: 2.5rem; display: flex; align-items: center; gap: .4rem; color: #eef3f7; }
.site-nav a:hover { color: var(--brass-hot); }
.nav-cta { justify-content: center; color: var(--navy) !important; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
    min-height: 3rem; padding: 0 1.2rem; border-radius: 8px;
    font-weight: 700; border: 0; cursor: pointer; font-family: var(--display); font-size: .86rem;
    letter-spacing: .04em; text-transform: uppercase;
}
.btn svg { width: 1.1rem; height: 1.1rem; }
.btn-accent { background: var(--brass); color: #0a1d2e; }
.btn-accent:hover { background: var(--brass-hot); color: #0a1d2e; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); color: #fff; }
.btn-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.75); }
.btn-light:hover { background: #fff; color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-xl { min-height: 3.35rem; padding: 0 1.45rem; font-size: .9rem; }
.btn-block { width: 100%; }

.hero {
    position: relative;
    min-height: min(78vh, 640px);
    display: grid; align-items: end;
    padding: 3.2rem 0 3.4rem;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7,21,35,.88) 0%, rgba(7,21,35,.55) 55%, rgba(7,21,35,.28) 100%),
        #0a1d2e url("/assets/img/hero-kitchen.jpg") center/cover no-repeat;
}
.hero-inner { position: relative; z-index: 1; max-width: 40rem; }
.hero h1 span { color: var(--brass-hot); }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700; color: var(--brass-hot); margin-bottom: .55rem; font-family: var(--display); }
.hero-lead, .lead { font-size: 1.12rem; color: var(--muted); max-width: 42rem; }
.hero .hero-lead { color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.35rem 0 1.15rem; }
.hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.hero-points li { display: flex; gap: .5rem; align-items: center; font-weight: 600; color: #fff; }
.hero-points svg { width: 1.15rem; color: var(--brass-hot); flex-shrink: 0; }

.page-hero {
    padding: 2.4rem 0 2.5rem;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7,21,35,.9), rgba(7,21,35,.72)),
        #0a1d2e url("/assets/img/hero-kitchen.jpg") center 62%/cover no-repeat;
}
.page-hero .lead, .page-hero a { color: rgba(255,255,255,.88); }
.page-hero .btn-navy { background: transparent; border: 1.5px solid #fff; }
.page-hero .btn-navy:hover { background: #fff; color: var(--navy); }

.section { padding: 3rem 0; }
.section-alt { background: var(--cream); }
.section-navy { background: var(--navy); 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.4rem; }
.section-head h2 { text-transform: none; }
.section-head a { font-weight: 700; color: var(--brass); font-size: .95rem; }
.section-head.light { color: #fff; flex-direction: column; align-items: flex-start; text-align: center; width: 100%; }
.section-head.light h2 { width: 100%; color: #fff; }
.section-head.light p { color: rgba(255,255,255,.75); margin: 0 auto; }
.kicker { color: var(--brass); font-family: var(--display); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin-bottom: .35rem; }
.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: .9rem; }
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.15rem 1rem 1.2rem; min-height: 9rem;
    display: flex; flex-direction: column; gap: .4rem;
    box-shadow: var(--shadow); color: inherit; transition: transform .15s ease, border-color .15s ease;
}
.service-card:hover { transform: translateY(-3px); color: inherit; border-color: var(--brass); }
.card-ico {
    width: 2.7rem; height: 2.7rem; border-radius: 50%;
    background: rgba(197, 139, 40, 0.12); color: var(--brass);
    display: grid; place-items: center; margin-bottom: .15rem;
}
.card-ico svg { width: 1.25rem; height: 1.25rem; }
.service-card strong { font-family: var(--display); font-size: .98rem; }
.service-card span { color: var(--muted); font-size: .88rem; }

.steps-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; position: relative; }
.steps-grid li {
    background: #fff; border-radius: var(--radius); padding: 1.25rem 1.1rem 1.2rem;
    border: 1px solid var(--line); text-align: center;
}
.step-num {
    display: inline-grid; place-items: center; width: 2.15rem; height: 2.15rem;
    border-radius: 50%; background: var(--brass); color: var(--navy);
    font-weight: 800; font-family: var(--display); margin-bottom: .55rem;
}
.step-ico { width: 2.1rem; height: 2.1rem; margin: 0 auto .55rem; color: var(--navy); }
.step-ico svg { width: 2.1rem; height: 2.1rem; }
.steps-grid h3 { font-size: 1.02rem; }
.steps-grid p { color: var(--muted); font-size: .92rem; margin: 0; }

.section-areas {
    background: var(--navy);
    color: #fff;
    overflow: hidden;
}
.areas-split { display: grid; gap: 1.5rem; align-items: center; }
.areas-copy .lead { color: rgba(255,255,255,.8); }
.areas-copy .muted { color: rgba(255,255,255,.65); }
.area-pin {
    width: 3rem; height: 3rem; border-radius: 50%;
    background: rgba(197,139,40,.15); color: var(--brass-hot);
    display: grid; place-items: center; margin-bottom: .8rem;
}
.area-pin svg { width: 1.5rem; height: 1.5rem; }
.ca-map {
    position: relative; color: rgba(197,139,40,.22);
    max-width: 220px; margin: 0 auto;
}
.ca-map img { width: 100%; height: auto; }
.ca-pin {
    position: absolute; left: 42%; top: 28%;
    width: 1.15rem; height: 1.15rem; border-radius: 50%;
    background: var(--brass); box-shadow: 0 0 0 8px rgba(197,139,40,.25);
}

.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: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px; padding: .45rem .8rem; font-weight: 600; color: #fff;
}
.area-pills svg { width: 1rem; color: var(--brass); }

.category-block { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.15rem; margin-bottom: 1rem; box-shadow: var(--shadow); }
.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; color: var(--brass); }
.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: 12px; padding: .85rem 1rem; min-height: 3.1rem; font-weight: 600; color: var(--ink);
}
.service-list small { color: var(--brass); font-weight: 700; text-transform: uppercase; font-size: .72rem; letter-spacing: .04em; }

.split { display: grid; gap: 1.2rem; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.25rem; height: fit-content; box-shadow: var(--shadow); }
.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: 20px; padding: 1.25rem 1.15rem 1.3rem;
    box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.form-steps { list-style: none; padding: 0; margin: 0; }
.estimate-form h2 { font-size: 1.25rem; }
.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: 10px;
    padding: .7rem .85rem; font: inherit; background: var(--cream);
}
.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: 12px; overflow: hidden; border: 1px solid var(--line); }
.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::-webkit-details-marker { display: none; }
.picker-cat summary small { display: block; font-weight: 500; color: var(--muted); }
.picker-cat .cat-ico { color: var(--brass); width: 1.4rem; }
.picker-cat .cat-ico svg { width: 1.4rem; height: 1.4rem; }
.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(--brass); }
.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: rgba(197,139,40,.1);
    border-radius: 12px; padding: .8rem 1rem; font-size: 1rem;
}
.upload-callout svg { width: 1.3rem; color: var(--brass); 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: 12px; 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: #c9d3dc; padding: 2.6rem 0 1.3rem; }
.site-footer a { color: #fff; display: block; margin: .28rem 0; }
.footer-grid { display: grid; gap: 1.5rem; }
.footer-brand-row { display: flex; gap: .7rem; align-items: center; margin-bottom: .6rem; }
.footer-brand { font-family: var(--display); color: #fff; font-size: 1.05rem; letter-spacing: .04em; margin: 0; }
.footer-head { color: var(--brass-hot); font-weight: 700; font-family: var(--display); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-contact { display: flex; flex-direction: column; gap: .45rem; margin-top: .7rem; }
.footer-contact a { display: flex; align-items: center; gap: .55rem; margin: 0; font-weight: 600; }
.footer-contact svg { width: 1.1rem; color: var(--brass); flex-shrink: 0; }
.footer-legal { margin-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; font-size: .86rem; color: #9aabba; }

.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(7, 21, 35, .96); backdrop-filter: blur(8px);
}
.sticky-cta .btn { min-height: 2.9rem; font-size: .78rem; }
.sticky-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }

.legal-copy p { font-size: 1.05rem; }

.estimate-hero {
    color: #fff;
    padding: 2.8rem 0 2.6rem;
    background:
        linear-gradient(90deg, rgba(7,21,35,.9) 0%, rgba(7,21,35,.62) 70%),
        #0a1d2e url("/assets/img/hero-kitchen.jpg") center 58%/cover no-repeat;
}
.estimate-hero h1 span { color: var(--brass-hot); }
.estimate-hero .hero-lead { color: rgba(255,255,255,.86); max-width: 38rem; }
.trust-row { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .8rem; }
.trust-row li { display: grid; grid-template-columns: 2.2rem 1fr; gap: .15rem .65rem; align-items: start; }
.trust-row span { grid-row: 1 / 3; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: rgba(197,139,40,.18); color: var(--brass-hot); display: grid; place-items: center; }
.trust-row svg { width: 1.1rem; height: 1.1rem; }
.trust-row strong { font-size: .92rem; }
.trust-row small { color: rgba(255,255,255,.72); }

.estimate-page { background: var(--cream); }
.estimate-layout { display: grid; gap: 1.4rem; }
.estimate-full { background: transparent; box-shadow: none; padding: 0; }
.form-block {
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    padding: 1.2rem 1.1rem 1.25rem; margin-bottom: 1rem; box-shadow: var(--shadow);
}
.form-block-head { display: flex; align-items: center; gap: .7rem; margin-bottom: .85rem; }
.form-block-head span {
    width: 2rem; height: 2rem; border-radius: 50%;
    background: var(--navy); color: #fff; display: grid; place-items: center;
    font-family: var(--display); font-weight: 800; font-size: .9rem; flex-shrink: 0;
}
.form-block-head h2 { margin: 0; font-size: 1.12rem; }
.estimate-full label { display: block; font-weight: 700; margin: 0 0 .9rem; }
.estimate-full input, .estimate-full select, .estimate-full textarea {
    display: block; width: 100%; margin-top: .35rem;
    min-height: 3rem; border: 1.5px solid var(--line); border-radius: 10px;
    padding: .7rem .85rem; font: inherit; background: var(--cream);
}
.estimate-full textarea { min-height: 8rem; }
.field-label { font-weight: 700; margin-bottom: .4rem; }
.char-count { display: block; text-align: right; color: var(--muted); font-weight: 500; }
.grid-3 { display: grid; gap: .7rem; }

.need-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin: 1rem 0; }
.need-card {
    position: relative; display: flex; flex-direction: column; align-items: center;
    gap: .45rem; text-align: center; padding: 1rem .6rem .9rem;
    border: 1.5px solid var(--line); border-radius: 14px; background: #fff;
    cursor: pointer; font-weight: 700; min-height: 7.2rem; color: var(--ink);
}
.need-card input { position: absolute; opacity: 0; pointer-events: none; }
.need-ico { width: 2.4rem; height: 2.4rem; color: var(--navy); }
.need-ico svg { width: 2.4rem; height: 2.4rem; }
.need-card strong { font-size: .82rem; line-height: 1.25; font-family: var(--display); }
.need-check {
    position: absolute; top: .45rem; right: .45rem; width: 1.2rem; height: 1.2rem;
    border-radius: 50%; border: 1.5px solid var(--line); color: transparent;
    display: grid; place-items: center;
}
.need-check svg { width: .85rem; height: .85rem; }
.need-card.is-selected { border-color: var(--brass); background: #f8efdc; }
.need-card.is-selected .need-check { background: var(--brass); border-color: var(--brass); color: var(--navy); }
.need-jobs { background: var(--cream); border-radius: 12px; padding: .9rem; margin-bottom: .7rem; }
.need-jobs h3 { font-size: .95rem; margin-bottom: .55rem; }
.job-grid { display: flex; flex-wrap: wrap; gap: .4rem; }
.job-chip { margin: 0; font-weight: 600; }
.job-chip input { display: none; }
.job-chip span {
    display: inline-block; padding: .45rem .7rem; border-radius: 999px;
    border: 1px solid var(--line); background: #fff; font-size: .82rem;
}
.job-chip input:checked + span { background: var(--navy); color: #fff; border-color: var(--navy); }

.photo-split { display: grid; gap: 1rem; }
.dropzone {
    position: relative; display: grid; justify-items: center; gap: .4rem; text-align: center;
    border: 2px dashed #cfc6b6; border-radius: 14px; padding: 1.3rem 1rem;
    background: #fbfaf7; cursor: pointer; font-weight: 600;
}
.dropzone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.drop-ico { color: var(--brass); width: 2.4rem; height: 2.4rem; }
.drop-ico svg { width: 2.4rem; height: 2.4rem; }
.tips-card { background: var(--cream); border-radius: 14px; padding: 1rem 1.1rem; }
.tips-card h3 { font-size: .95rem; }
.tips-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.secure-note { display: flex; align-items: center; justify-content: center; gap: .4rem; color: var(--muted); font-size: .88rem; margin-top: .7rem; }
.secure-note svg { width: 1rem; color: var(--ok); }

.estimate-side { display: grid; gap: 1rem; height: fit-content; }
.side-navy { background: var(--navy); color: #fff; border-radius: 18px; padding: 1.25rem 1.15rem; }
.side-navy h3 { color: #fff; font-size: 1.05rem; }
.next-steps { list-style: none; padding: 0; margin: 0; }
.next-steps li {
    position: relative; padding: 0 0 1.1rem 1.4rem; border-left: 2px dashed rgba(197,139,40,.45);
    margin-left: .45rem;
}
.next-steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.next-steps li::before {
    content: ""; position: absolute; left: -7px; top: .2rem;
    width: .75rem; height: .75rem; border-radius: 50%; background: var(--brass);
}
.next-steps strong { display: block; }
.next-steps span { color: rgba(255,255,255,.7); font-size: .9rem; }
.why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.why-list li { display: flex; gap: .65rem; align-items: flex-start; }
.why-list svg { width: 1.2rem; color: var(--brass); flex-shrink: 0; margin-top: .15rem; }
.why-list span { color: var(--muted); }
.why-list strong { display: block; color: var(--ink); }
.call-card { text-align: center; }
.call-ico {
    width: 3rem; height: 3rem; margin: 0 auto .6rem; border-radius: 50%;
    background: rgba(197,139,40,.12); color: var(--brass); display: grid; place-items: center;
}
.call-ico svg { width: 1.4rem; height: 1.4rem; }
.call-num { font-family: var(--display); font-size: 1.35rem; font-weight: 800; color: var(--navy); margin: .2rem 0 .35rem; }
.call-card small { display: block; color: var(--muted); margin-bottom: .8rem; }

@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.15rem;
    }
    .site-nav a { font-size: .88rem; min-height: auto; letter-spacing: .02em; }
    .hero { align-items: center; padding: 5.5rem 0; }
    .card-grid { grid-template-columns: repeat(3, 1fr); }
    .popular-grid { grid-template-columns: repeat(4, 1fr); }
    .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
    .steps-grid li { background: transparent; border: 0; box-shadow: none; position: relative; }
    .steps-grid li:not(:last-child)::after {
        content: "";
        position: absolute; top: 1.05rem; left: calc(50% + 1.2rem); right: calc(-50% + 1.2rem);
        height: 2px; background: #ead9b3;
    }
    .split { grid-template-columns: 1.4fr .8fr; }
    .footer-grid { grid-template-columns: 1.4fr 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; }
    .areas-split { grid-template-columns: 1.2fr .8fr; }
    .section { padding: 3.6rem 0; }
    .trust-row { grid-template-columns: repeat(3, 1fr); max-width: 46rem; }
    .estimate-layout { grid-template-columns: 1.7fr .85fr; align-items: start; }
    .need-grid { grid-template-columns: repeat(4, 1fr); }
    .photo-split { grid-template-columns: 1.4fr .8fr; }
    .grid-3 { grid-template-columns: 1.2fr .7fr .7fr; }
    .estimate-side { position: sticky; top: 5.2rem; }
    .ecard-grid { grid-template-columns: 1fr 1fr; }
    .estimate-stage { padding: 3.2rem 0 4rem; }
}

.estimate-stage {
    min-height: calc(100vh - 4.4rem);
    padding: 2rem 0 3rem;
    background:
        linear-gradient(180deg, rgba(7,21,35,.32), rgba(7,21,35,.45)),
        #0a1d2e url("/assets/img/hero-kitchen.jpg") center/cover no-repeat;
}
.estimate-stage-inner { width: min(640px, calc(100% - 1.5rem)); }
.estimate-callout { text-align: center; color: #fff; margin-top: 1.1rem; text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.estimate-callout a { color: var(--brass-hot); display: inline; }

.estimate-card {
    background: #10263c;
    color: #eef3f7;
    border: 1px solid rgba(197,139,40,.28);
    border-radius: 22px;
    padding: 1.4rem 1.2rem 1.3rem;
    box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.ecard-badge {
    display: inline-block; margin: 0 0 .7rem;
    border: 1px solid var(--brass); color: var(--brass-hot);
    font-family: var(--display); font-size: .68rem; letter-spacing: .16em;
    text-transform: uppercase; padding: .28rem .6rem; border-radius: 4px; font-weight: 700;
}
.ecard-title {
    font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.35rem);
    font-weight: 700; color: #fff; letter-spacing: 0; margin-bottom: .4rem;
}
.ecard-lead { color: rgba(255,255,255,.72); margin-bottom: 1.15rem; }
.ecard-grid { display: grid; gap: .75rem; }
.dfield { display: block; position: relative; margin-bottom: .8rem; }
.dfield-label { display: block; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.78); margin-bottom: .35rem; }
.dfield-label em { color: var(--brass-hot); font-style: normal; }
.dfield-ico {
    position: absolute; left: .85rem; top: 2.35rem; color: var(--brass-hot); width: 1.15rem; height: 1.15rem; pointer-events: none;
}
.dfield-ico svg { width: 1.15rem; height: 1.15rem; }
.estimate-card input, .estimate-card select, .estimate-card textarea {
    width: 100%; min-height: 3.05rem; border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12);
    background: #0c1c2c; color: #fff;
    padding: .7rem .9rem .7rem 2.5rem; font: inherit;
}
.estimate-card select { padding-left: .9rem; }
.estimate-card textarea {
    min-height: 8rem; resize: vertical; padding-top: .85rem; line-height: 1.45;
}
.estimate-card input::placeholder, .estimate-card textarea::placeholder { color: rgba(255,255,255,.38); }
.estimate-card input:focus, .estimate-card select:focus, .estimate-card textarea:focus {
    outline: 2px solid rgba(197,139,40,.55); border-color: var(--brass);
}
.dfield-area .dcount { position: absolute; right: .8rem; bottom: .55rem; color: rgba(255,255,255,.4); font-size: .78rem; }
.dfield-select { margin-bottom: .8rem; }
.dselect-btn {
    width: 100%; min-height: 3.05rem; border-radius: 12px;
    border: 1px solid rgba(255,255,255,.12); background: #0c1c2c; color: #fff;
    padding: .7rem 2.4rem .7rem 2.5rem; font: inherit; text-align: left;
    display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.dselect-btn svg { width: 1.1rem; color: var(--brass-hot); }
.dselect-panel {
    margin-top: .45rem; max-height: 16rem; overflow: auto;
    background: #0c1c2c; border: 1px solid rgba(197,139,40,.3); border-radius: 12px; padding: .55rem;
}
.dselect-hint { color: rgba(255,255,255,.5); font-size: .8rem; margin: .2rem .4rem .5rem; }
.dselect-cat { border-bottom: 1px solid rgba(255,255,255,.06); }
.dselect-cat summary {
    list-style: none; display: flex; align-items: center; gap: .5rem;
    padding: .55rem .4rem; cursor: pointer; font-weight: 700; color: #fff;
}
.dselect-cat summary svg { width: 1.1rem; color: var(--brass-hot); }
.dselect-jobs { display: grid; gap: .2rem; padding: 0 .4rem .55rem 1.6rem; }
.dselect-jobs label { display: flex; gap: .5rem; align-items: center; font-weight: 500; color: rgba(255,255,255,.82); }
.dselect-jobs input { width: 1rem; height: 1rem; accent-color: var(--brass); padding: 0; min-height: 0; }

.edrop { margin: .4rem 0 1rem; }
.edrop-box {
    position: relative; display: grid; justify-items: center; gap: .25rem; text-align: center;
    border: 1.5px dashed rgba(197,139,40,.7); border-radius: 14px; padding: 1.15rem .8rem;
    background: rgba(197,139,40,.06); cursor: pointer; overflow: hidden;
}
.edrop-box input {
    position: absolute; inset: 0; opacity: 0; cursor: pointer;
    width: 100%; height: 100%; min-height: 0; padding: 0; font-size: 0;
}
.edrop-ico { color: var(--brass-hot); width: 1.8rem; height: 1.8rem; }
.edrop-ico svg { width: 1.8rem; height: 1.8rem; }
.edrop-box strong { color: #fff; }
.edrop-box small, .edrop-note { color: rgba(255,255,255,.5); font-size: .82rem; }
.edrop-note { margin: .4rem 0 0; }

.econtact { border: 0; padding: 0; margin: 0 0 1.1rem; }
.econtact legend { font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.78); margin-bottom: .5rem; }
.econtact legend em { color: var(--brass-hot); font-style: normal; }
.econtact-opts { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .4rem; }
.econtact-opts label {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center; min-height: 2.8rem;
    border-radius: 10px; border: 1px solid rgba(255,255,255,.12); background: #0c1c2c;
    font-weight: 700; font-size: .82rem; cursor: pointer; color: rgba(255,255,255,.8);
}
.econtact-opts input {
    position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; padding: 0;
    width: 100%; height: 100%; min-height: 0;
}
.econtact-opts label.is-on { border-color: var(--brass); color: var(--navy); background: var(--brass); }
.ecard-submit { margin-top: .2rem; }
.ecard-secure { display: flex; justify-content: center; align-items: center; gap: .4rem; color: rgba(255,255,255,.5); font-size: .84rem; margin: .8rem 0 0; }
.ecard-secure svg { width: 1rem; color: var(--brass-hot); }

.estimate-home .estimate-card { margin: 0 auto; }

.contact-hero {
    color: #fff; padding: 3.2rem 0 0;
    background:
        linear-gradient(90deg, rgba(7,21,35,.92) 0%, rgba(7,21,35,.62) 55%, rgba(7,21,35,.38) 100%),
        #0a1d2e url("/assets/img/hero-kitchen.jpg") center 52%/cover no-repeat;
}
.contact-hero-inner { padding-bottom: 2.4rem; }
.contact-hero h1 {
    font-family: var(--serif); font-weight: 700; letter-spacing: 0;
    max-width: 14ch; margin-bottom: .7rem;
}
.contact-hero h1 span { color: var(--brass-hot); }
.contact-hero .hero-lead { color: rgba(255,255,255,.86); max-width: 38rem; }
.contact-trust {
    list-style: none; padding: 1.05rem 1.1rem; margin: 1.7rem 0 0;
    display: grid; gap: 1rem;
    background: rgba(7, 21, 35, .55);
    border: 1px solid rgba(197,139,40,.28);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}
.contact-trust li { display: flex; gap: .75rem; align-items: flex-start; }
.contact-trust span {
    width: 2.4rem; height: 2.4rem; border-radius: 50%; flex-shrink: 0;
    background: rgba(197,139,40,.2); color: var(--brass-hot);
    display: grid; place-items: center;
}
.contact-trust svg { width: 1.15rem; height: 1.15rem; }
.contact-trust strong { display: block; font-size: .92rem; margin-bottom: .15rem; }
.contact-trust small { color: rgba(255,255,255,.72); }
.contact-main { background: var(--cream); }
.contact-split { display: grid; gap: 1.25rem; }
.contact-card {
    background: #fff; border: 1px solid var(--line); border-radius: 22px;
    padding: 1.45rem 1.25rem 1.4rem; box-shadow: var(--shadow);
}
.info-card { height: fit-content; }
.contact-card-head { display: flex; gap: .85rem; align-items: flex-start; margin-bottom: 1.2rem; }
.contact-card-head h2 { margin: 0 0 .3rem; font-size: 1.28rem; }
.contact-card-head p { margin: 0; color: var(--muted); }
.contact-ico {
    width: 2.85rem; height: 2.85rem; border-radius: 50%; flex-shrink: 0;
    background: rgba(197,139,40,.12); color: var(--brass); display: grid; place-items: center;
}
.contact-ico svg { width: 1.3rem; height: 1.3rem; }
.contact-form .req { color: #c45c4a; font-style: normal; font-weight: 800; }
.contact-form label { display: block; font-weight: 700; margin-bottom: .9rem; color: var(--navy); }
.contact-form input:not([type="radio"]):not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
    display: block; width: 100%; margin-top: .4rem; min-height: 3.05rem;
    border: 1.5px solid var(--line); border-radius: 10px; padding: .7rem .9rem;
    font: inherit; background: #fff; color: var(--ink);
}
.contact-form textarea { min-height: 8.5rem; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: 2px solid rgba(197,139,40,.45); border-color: var(--brass);
}
.contact-form .msg-field { position: relative; }
.contact-form .char-count { display: block; text-align: right; color: var(--muted); font-weight: 500; margin-top: .25rem; }
.c-pref { border: 0; padding: 0; margin: .2rem 0 1.15rem; }
.c-pref legend { font-weight: 700; margin-bottom: .55rem; color: var(--navy); }
.c-pref-opts { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .45rem; }
.c-pref-opts label {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center; min-height: 2.85rem; margin: 0;
    border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
    cursor: pointer; font-size: .86rem; font-weight: 700; color: var(--navy);
}
.c-pref-opts input {
    position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; padding: 0;
    width: 100%; height: 100%; min-height: 0; display: block;
}
.c-pref-opts label.is-on { border-color: var(--brass); background: var(--brass); color: var(--navy); }
.info-row {
    display: flex; gap: .8rem; align-items: flex-start;
    padding: 1rem 0; border-top: 1px solid var(--line);
}
.info-row:first-of-type { border-top: 0; padding-top: 0; }
.info-row p { margin: 0; color: var(--muted); }
.info-row small { display: block; color: var(--muted); margin-top: .15rem; }
.info-row strong { display: block; font-family: var(--display); margin-bottom: .2rem; font-size: .92rem; }
.info-ico {
    width: 2.2rem; height: 2.2rem; border-radius: 50%; flex-shrink: 0;
    background: rgba(197,139,40,.12); color: var(--brass);
    display: grid; place-items: center; margin-top: .1rem;
}
.info-ico svg { width: 1.05rem; height: 1.05rem; }
.info-phone { display: block; font-family: var(--display); font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.info-email { font-weight: 700; word-break: break-word; }
.info-actions { display: flex; gap: .45rem; margin-top: .7rem; flex-wrap: wrap; }
.info-actions .btn { min-height: 2.6rem; font-size: .78rem; padding: 0 .9rem; }
.social-row { display: flex; gap: .5rem; margin-top: .5rem; }
.social-row a, .social-off {
    width: 2.55rem; height: 2.55rem; border-radius: 50%; background: var(--navy); color: #fff;
    display: grid; place-items: center;
}
.social-row a:hover { background: var(--brass); color: var(--navy); }
.social-off { opacity: .38; }
.social-row svg { width: 1.1rem; height: 1.1rem; }
.city-checks { list-style: none; padding: 0; margin: 1.05rem 0 0; display: grid; gap: .5rem; }
.city-checks li { display: flex; gap: .5rem; align-items: center; font-weight: 700; color: var(--navy); }
.city-checks svg { width: 1.15rem; color: var(--brass); flex-shrink: 0; }
.contact-map {
    position: relative;
    overflow: hidden;
    min-height: 28rem;
    background: #d9e2ea;
}
.contact-map-bg {
    position: absolute; inset: 0;
    pointer-events: none;
}
.contact-map-bg iframe {
    width: 100%; height: 100%; border: 0;
    filter: saturate(.85) contrast(.96);
}
.contact-map-marker {
    display: none;
    position: absolute; left: 62%; top: 48%;
    transform: translate(-50%, -70%);
    z-index: 2; pointer-events: none;
    justify-items: center;
}
.map-radius {
    position: absolute; left: 50%; top: 62%;
    width: 13rem; height: 13rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(197, 139, 40, .22);
    box-shadow: 0 0 0 18px rgba(197, 139, 40, .1);
}
.map-flag {
    position: relative; z-index: 1;
    background: #fff; color: var(--navy);
    font-family: var(--display); font-weight: 800; font-size: .78rem;
    padding: .28rem .55rem; border-radius: 6px;
    box-shadow: 0 6px 16px rgba(10, 29, 46, .18);
    margin-bottom: .35rem;
}
.map-pin {
    position: relative; z-index: 1;
    width: 3.4rem; height: 3.4rem; border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: var(--navy);
    display: grid; place-items: center;
    box-shadow: 0 10px 22px rgba(10, 29, 46, .28);
}
.map-pin img {
    width: 1.7rem; height: 1.7rem;
    transform: rotate(45deg);
}
.contact-map-inner {
    position: relative; z-index: 3;
    display: grid; gap: 1.4rem;
    padding: 2.4rem 0;
    min-height: 28rem;
    align-items: center;
}
.contact-map-card {
    background: #fff; color: var(--ink); border-radius: 18px;
    padding: 1.45rem 1.3rem 1.35rem;
    box-shadow: 0 18px 40px rgba(10, 29, 46, .18);
    max-width: 26rem;
}
.contact-map-card h2 {
    display: flex; align-items: center; gap: .55rem;
    margin-bottom: .55rem; font-size: 1.2rem;
}
.contact-map-card h2 svg { width: 1.35rem; color: var(--navy); flex-shrink: 0; }
.contact-map-card p { color: var(--muted); margin-bottom: .2rem; }
.cta-banner { background: var(--navy-deep); color: #fff; padding: 1.55rem 0; border-top: 1px solid rgba(197,139,40,.18); }
.cta-banner-inner { display: grid; gap: 1rem; align-items: center; }
.cta-banner-inner > div { display: flex; gap: .85rem; align-items: center; }
.cta-banner strong { display: block; font-family: var(--display); font-size: 1.15rem; }
.cta-banner p { margin: 0; color: rgba(255,255,255,.75); }
.cta-ico {
    width: 3rem; height: 3rem; border-radius: 50%; flex-shrink: 0;
    background: rgba(197,139,40,.15); color: var(--brass-hot); display: grid; place-items: center;
}
.cta-ico svg { width: 1.35rem; }

@media (min-width: 900px) {
    .contact-hero { padding-top: 4.2rem; }
    .contact-trust { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; padding: 1.15rem 1.3rem; }
    .contact-split { grid-template-columns: 1.2fr .8fr; align-items: start; }
    .contact-card { padding: 1.7rem 1.55rem 1.55rem; }
    .info-card { position: sticky; top: 5.2rem; }
    .city-checks { grid-template-columns: 1fr 1fr; }
    .contact-map { min-height: 32rem; }
    .contact-map-inner { min-height: 32rem; padding: 2.8rem 0; }
    .contact-map-marker { display: grid; left: 64%; }
    .map-radius { width: 16rem; height: 16rem; }
    .cta-banner-inner { grid-template-columns: 1fr auto; }
}
