:root {
    --black: #050505;
    --panel: rgba(13, 12, 10, 0.78);
    --line: rgba(209, 162, 76, 0.24);
    --gold: #d1a24c;
    --gold-2: #f5deb0;
    --text: #f8f4ec;
    --muted: rgba(248, 244, 236, 0.62);
    --soft: rgba(255, 255, 255, 0.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: radial-gradient(circle at 80% 0%, rgba(209, 162, 76, .15), transparent 32rem), var(--black);
    color: var(--text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 80px;
    padding: 0 clamp(20px, 4vw, 56px);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(22px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; object-fit: contain; border: 1px solid var(--line); padding: 4px; }
.brand strong, .brand small { display: block; text-transform: uppercase; letter-spacing: .24em; }
.brand small { color: var(--gold); font-size: 11px; }
.brand strong { font-size: 14px; }
.main-nav ul { display: flex; gap: 26px; list-style: none; padding: 0; margin: 0; }
.main-nav a { color: rgba(255,255,255,.62); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.main-nav a:hover { color: var(--gold-2); }
.header-actions { display: flex; gap: 12px; }
.menu-toggle { display: none; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #070605;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}
.btn-outline { background: transparent; color: var(--gold-2); border-color: var(--line); }
.btn:hover { filter: brightness(1.12); }

.hero {
    position: relative;
    min-height: 100vh;
    padding: 160px clamp(20px, 4vw, 56px) 100px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr minmax(320px, 540px);
    align-items: center;
    gap: 8vw;
}
.hero-static {
    min-height: 86vh;
    grid-template-columns: minmax(0, 900px);
    background-image: url('../media/uploaded-projects/uploaded-project-17.jpg');
    background-size: cover;
    background-position: center;
}
.hero video, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.94), rgba(0,0,0,.66), rgba(0,0,0,.2)), linear-gradient(180deg, transparent, #050505 96%); }
.hero-content, .hero-card { position: relative; z-index: 2; }
.eyebrow { color: var(--gold-2); font-size: 12px; font-weight: 900; letter-spacing: .24em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: .96; letter-spacing: 0; }
h1, h2, h3, p { overflow-wrap: break-word; }
.hero h1 { max-width: 800px; font-size: clamp(52px, 8vw, 116px); }
.hero h1 span, .section-head h1 span { display: block; color: var(--gold); }
.hero p:not(.eyebrow), .section-head p:not(.eyebrow), .panel p, .project-card p, .before-after p, .map-copy p { color: var(--muted); line-height: 1.75; }
.hero-content > p:not(.eyebrow) { max-width: 720px; font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.section-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-card, .panel, .quote-form, .before-after, .service-map {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.02)), var(--panel);
    box-shadow: 0 28px 90px rgba(0,0,0,.42);
}
.hero-card { padding: 38px; }
.hero-card img { margin: 0 auto 28px; max-height: 360px; object-fit: contain; }

.section { padding: clamp(76px, 9vw, 140px) clamp(20px, 4vw, 56px); }
.section-dark { border-block: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.018); }
.section-head { max-width: 860px; margin-bottom: 48px; }
.section-head h1, .section-head h2 { margin-top: 18px; font-size: clamp(42px, 6vw, 74px); }
.section-head-compact { max-width: 620px; margin-bottom: 24px; }
.section-head-compact h2 { font-size: clamp(28px, 3.6vw, 42px); }
.page-hero { min-height: 520px; padding: 170px clamp(20px, 4vw, 56px) 90px; background-size: cover; background-position: center; position: relative; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #050505, rgba(5,5,5,.72), #050505); }
.page-hero > * { position: relative; z-index: 1; }
.portfolio-hero { background-image: url('../media/estate-entry-gate.png'); }
.services-hero, .contact-hero { background-image: url('../media/luxury-metalwork-hero.png'); }
.about-hero { background-image: url('../media/floating-stair-railing.png'); }

.stats, .card-grid, .project-grid, .process-grid, .contact-grid, .footer-grid, .two-col {
    display: grid;
    gap: 18px;
}
.stats { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); padding: 0 clamp(20px, 4vw, 56px) 40px; margin-top: -64px; position: relative; z-index: 4; }
.stats div { border: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.72); padding: 26px; }
.stats strong { display: block; font-size: 46px; }
.stats span { color: rgba(255,255,255,.46); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.card-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); }
.panel { padding: 28px; }
.panel > span, .contact-cards span { display: block; color: rgba(255,255,255,.32); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 28px; }
.panel h3, .panel h2 { font-size: 28px; margin-bottom: 16px; }

.project-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); }
.project-card { position: relative; min-height: 460px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.project-card.is-filtered-out { display: none; }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.project-card:hover img { transform: scale(1.05); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,.86)); }
.project-card div { position: absolute; z-index: 2; inset: auto 0 0 0; padding: 30px; }
.project-card h3 { font-size: 34px; }
.project-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.project-filters button {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.035);
    color: rgba(255,255,255,.72);
    padding: 11px 14px;
    cursor: pointer;
}
.project-filters button.is-active, .project-filters button:hover { border-color: var(--gold); color: #050505; background: var(--gold); }
.photo-wall { margin-top: 34px; display: grid; gap: 20px; }
.photo-wall-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; }
.photo-wall-grid a {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    background: #050505;
}
.photo-wall-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, opacity .45s ease; }
.photo-wall-grid a:hover img { transform: scale(1.05); opacity: .86; }
.photo-wall:not(.is-expanded) .photo-wall-grid .is-extra { display: none; }
.photo-wall-toggle { justify-self: start; }
.home-gallery-section { padding-block: clamp(66px, 7vw, 104px); }
.home-gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.home-gallery-grid a {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    background: #050505;
}
.home-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .5s ease; }
.home-gallery-grid a:hover img { transform: scale(1.05); opacity: .86; }
.home-gallery-grid span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    color: var(--gold-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.home-gallery-grid a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0,0,0,.86)); }
.home-map-section { padding-block: clamp(66px, 7vw, 104px); }
.home-map-section .service-area-map { min-height: 340px; }
.home-map-section .area-svg { min-height: 340px; }
.home-map-section .area-copy { padding: 32px; }
.home-map-section .area-copy h2 { font-size: clamp(34px, 4vw, 48px); }

.before-after { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; padding: 28px; align-items: center; }
.home-cta { grid-template-columns: 1fr auto; }
.home-cta .actions { margin-top: 0; justify-content: flex-end; }
.ba-stage { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #000; }
.ba-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after-wrap { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 0 0 var(--ba-pos, 56%)); }
.ba-stage::before { content: ""; position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 56%); z-index: 3; width: 2px; background: var(--gold); box-shadow: 0 0 24px rgba(209,162,76,.75); transform: translateX(-1px); }
.ba-stage input { position: absolute; z-index: 5; left: 20px; right: 20px; bottom: 20px; width: calc(100% - 40px); accent-color: var(--gold); cursor: ew-resize; }
.ba-label { position: absolute; z-index: 4; top: 16px; padding: 8px 10px; background: rgba(0,0,0,.72); color: var(--gold-2); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

.testimonial { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; border: 1px solid var(--line); padding: 34px; background: var(--panel); }
.testimonial blockquote { margin: 0; font-size: clamp(28px, 4vw, 54px); line-height: 1.08; }
.testimonial button { border: 1px solid var(--line); background: transparent; color: var(--gold-2); padding: 12px 16px; }
.reviews-wrap { display: grid; gap: 18px; max-width: 1220px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.review-card, .live-reviews {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.018)), var(--panel);
    padding: 20px;
}
.review-card blockquote { margin: 0 0 18px; font-size: clamp(17px, 1.7vw, 22px); line-height: 1.3; }
.review-card .stars { color: var(--gold); letter-spacing: .12em; }
.review-card span, .reviews-note { color: rgba(255,255,255,.45); }
.reviews-note { margin: 0; font-size: 14px; line-height: 1.7; }

.service-area-map { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr); min-height: 460px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.018)), var(--panel); box-shadow: 0 28px 90px rgba(0,0,0,.42); }
.map-svg-wrap { position: relative; min-height: 460px; background: radial-gradient(circle at 50% 15%, rgba(201,168,76,.16), transparent 38%), #050505; overflow: hidden; }
.area-svg { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 460px; }
.area-land { fill: rgba(255,255,255,.04); stroke: rgba(201,168,76,.32); stroke-width: 2; }
.area-ny { fill: rgba(201,168,76,.055); }
.area-svg text { fill: var(--gold-2); font-size: 16px; font-weight: 900; pointer-events: none; }
.area-point { position: absolute; z-index: 3; transform: translate(-50%, -50%); width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 999px; background: rgba(0,0,0,.72); color: var(--gold-2); cursor: pointer; box-shadow: 0 0 0 8px rgba(201,168,76,.08); transition: transform .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease; }
.area-point span { font-weight: 900; }
.area-point:hover, .area-point.is-active { transform: translate(-50%, -50%) scale(1.1); background: #c9a84c; color: #050505; box-shadow: 0 0 0 12px rgba(201,168,76,.16), 0 0 32px rgba(201,168,76,.44); }
.area-copy { display: grid; align-content: center; gap: 18px; padding: 44px; background: rgba(0,0,0,.46); }
.area-copy h2 { font-size: clamp(40px, 4.5vw, 60px); }
.area-copy p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.maps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.map-embed {
    border: 1px solid var(--line);
    background: var(--panel);
    overflow: hidden;
}
.map-embed > div { padding: 24px; }
.map-embed h2 { font-size: clamp(26px, 3vw, 40px); }
.map-embed iframe {
    width: 100%;
    min-height: 380px;
    border: 0;
    filter: grayscale(1) invert(.92) contrast(.9);
}

.contact-grid { grid-template-columns: .78fr 1.22fr; }
.contact-cards { display: grid; gap: 14px; }
.contact-cards strong { font-size: 22px; line-height: 1.25; }
.quote-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 32px; }
.quote-form label { color: var(--muted); font-size: 14px; }
.quote-form input, .quote-form select, .quote-form textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.035);
    color: #fff;
    padding: 14px;
}
.quote-form .full, .quote-form .btn, .notice { grid-column: 1 / -1; }
.quote-form select.project-select { min-height: 50px; }
.quote-form select.project-select option {
    padding: 10px 12px;
    background: #090908;
    color: #fff;
}
.quote-form select.project-select option:checked {
    background: var(--gold);
    color: #050505;
}
.upload { border: 1px dashed var(--line); padding: 24px; }
.notice { border: 1px solid var(--line); background: rgba(209,162,76,.12); padding: 14px; color: var(--gold-2); }
.notice-error { border-color: rgba(255, 120, 120, .35); background: rgba(255, 80, 80, .08); color: #ffd6d6; }
.captcha-field {
    border: 1px solid rgba(209,162,76,.28);
    background: rgba(209,162,76,.06);
    padding: 18px;
}
.captcha-field input { max-width: 180px; }
.captcha-label { margin: 0 0 12px; color: var(--gold-2); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.location-list { display: grid; gap: 14px; margin-top: 24px; }
.location-list a { border: 1px solid rgba(255,255,255,.1); background: var(--soft); padding: 18px; }
.location-list span { display: block; color: var(--muted); margin-top: 6px; }
.logo-panel { border: 1px solid var(--line); background: #000; padding: 42px; }
.two-col { grid-template-columns: .8fr 1.2fr; align-items: center; }
.article-lead { max-width: 980px; }
.reason-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 16px; }
.reason-card { min-height: 100%; }
.reason-card strong { display: block; margin-bottom: 12px; color: var(--gold-2); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.local-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.review-carousel-head { margin-top: 42px; }
.testimonial-carousel { overflow: hidden; border: 1px solid var(--line); background: #0a0a0a; padding: 18px; }
.testimonial-track { display: flex; gap: 14px; width: max-content; animation: testimonialSlide 40s linear infinite; }
.testimonial-carousel:hover .testimonial-track { animation-play-state: paused; }
.testimonial-card { width: min(310px, calc(100vw - 74px)); min-height: 190px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.045); padding: 18px; display: grid; grid-template-rows: auto 1fr auto; gap: 12px; }
.testimonial-card blockquote { margin: 0; font-size: 17px; line-height: 1.38; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.testimonial-card .stars { color: #c9a84c; letter-spacing: .12em; }
.testimonial-card strong { color: rgba(255,255,255,.52); }

.home-service-selector { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); gap: 18px; align-items: stretch; }
.service-picker { display: grid; gap: 10px; }
.service-option {
    display: grid;
    grid-template-columns: 88px 1fr;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.035);
    color: var(--text);
    padding: 10px;
    text-align: left;
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.service-option:hover { transform: translateX(4px); border-color: var(--line); background: rgba(255,255,255,.06); }
.service-option.is-active { border-color: #c9a84c; background: rgba(201,168,76,.16); }
.service-option img { width: 88px; height: 74px; object-fit: cover; border: 1px solid rgba(255,255,255,.1); }
.service-option small { display: block; color: var(--gold-2); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; }
.service-option strong { display: block; font-size: 18px; line-height: 1.15; }
.service-showcase { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.018)), var(--panel); box-shadow: 0 28px 90px rgba(0,0,0,.42); overflow: hidden; }
.service-showcase-media { min-height: 430px; background: #000; }
.service-showcase-media img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; transition: opacity .25s ease, transform .45s ease; }
.service-showcase-copy { display: grid; align-content: center; gap: 16px; padding: clamp(26px, 4vw, 46px); }
.service-showcase-copy h3 { font-size: clamp(34px, 4vw, 58px); }
.service-showcase-copy p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.service-showcase-copy ul { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.service-showcase-copy li { border-left: 2px solid #c9a84c; padding-left: 12px; color: rgba(255,255,255,.74); }

.faq-accordion, .quote-calculator, .inspiration-quiz { border: 1px solid var(--line); background: #0a0a0a; padding: clamp(22px, 4vw, 42px); }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035); }
.faq-question { width: 100%; border: 0; background: transparent; color: var(--gold-2); padding: 18px; text-align: left; font-size: 18px; font-weight: 900; cursor: pointer; }
.faq-question::after { content: "+"; float: right; color: #c9a84c; }
.faq-question[aria-expanded="true"]::after { content: "-"; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .34s ease; }
.faq-answer p { margin: 0; padding: 0 18px 18px; color: var(--muted); line-height: 1.7; }

.calc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.calc-grid label { color: var(--muted); font-size: 13px; font-weight: 800; }
.calc-grid select { width: 100%; margin-top: 8px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: #fff; padding: 14px; }
.calc-grid option { background: #090908; color: #fff; }
.calc-result { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; margin-top: 24px; }
.calc-result strong { font-size: clamp(30px, 5vw, 56px); line-height: 1.04; color: var(--gold-2); }
.calc-note { flex: 1 1 100%; max-width: 820px; margin: 0; color: var(--muted); line-height: 1.65; }

.quiz-progress { height: 5px; background: rgba(255,255,255,.1); overflow: hidden; margin-bottom: 24px; }
.quiz-progress span { display: block; height: 100%; width: 25%; background: #c9a84c; transition: width .25s ease; }
.quiz-step { display: none; }
.quiz-step.is-active { display: block; }
.quiz-step h3 { margin: 0 0 18px; font-size: clamp(24px, 3vw, 36px); }
.quiz-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.quiz-options button { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: var(--gold-2); padding: 0; cursor: pointer; overflow: hidden; text-align: left; transition: transform .24s ease, border-color .24s ease; }
.quiz-options button:hover { transform: translateY(-2px); border-color: #c9a84c; }
.quiz-options img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.quiz-options span { display: block; padding: 14px; font-weight: 900; }
.quiz-step p { color: var(--muted); font-size: 18px; line-height: 1.65; }
.quiz-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.chat-widget { position: fixed; right: 22px; bottom: 22px; z-index: 9999; }
.chat-toggle { width: 62px; height: 62px; border-radius: 999px; border: 1px solid rgba(201,168,76,.82); background: #c9a84c; color: #070707; font-weight: 900; box-shadow: 0 18px 50px rgba(0,0,0,.42); cursor: pointer; }
.chat-panel { position: absolute; right: 0; bottom: 76px; width: min(360px, calc(100vw - 32px)); border: 1px solid rgba(201,168,76,.32); background: #0a0a0a; color: var(--text); box-shadow: 0 28px 90px rgba(0,0,0,.55); display: none; overflow: hidden; }
.chat-widget.is-open .chat-panel { display: block; }
.chat-head { padding: 16px; background: linear-gradient(135deg, rgba(201,168,76,.22), rgba(255,255,255,.03)); }
.chat-head strong { display: block; color: var(--gold-2); }
.chat-head span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.4; }
.chat-log { display: grid; gap: 10px; max-height: 340px; overflow-y: auto; padding: 14px; }
.chat-msg { padding: 11px 12px; line-height: 1.45; font-size: 14px; background: rgba(255,255,255,.06); }
.chat-msg.user { margin-left: 28px; background: rgba(201,168,76,.18); }
.chat-msg.bot { margin-right: 28px; }
.chat-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 12px; border-top: 1px solid rgba(255,255,255,.1); }
.chat-form input { min-width: 0; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: #fff; padding: 12px; }
.chat-form button { border: 1px solid #c9a84c; background: #c9a84c; color: #070707; font-weight: 900; padding: 0 14px; cursor: pointer; }

.lead-popup { position: fixed; inset: 0; z-index: 9998; display: none; align-items: center; justify-content: center; padding: 18px; background: rgba(0,0,0,.68); backdrop-filter: blur(8px); }
.lead-popup.is-visible { display: flex; }
.lead-box { width: min(440px, 100%); border: 1px solid rgba(201,168,76,.38); background: #0a0a0a; color: var(--text); padding: 28px; box-shadow: 0 28px 90px rgba(0,0,0,.55); }
.lead-box h3 { margin: 0 0 10px; font-size: 30px; line-height: 1; color: var(--gold-2); }
.lead-box p { margin: 0 0 18px; color: var(--muted); line-height: 1.6; }
.lead-form { display: grid; gap: 10px; }
.lead-form input { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.05); color: #fff; padding: 14px; }
.lead-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.lead-actions button { border: 1px solid #c9a84c; padding: 12px 14px; cursor: pointer; font-weight: 900; }
.lead-submit { background: #c9a84c; color: #070707; }
.lead-close { background: transparent; color: var(--gold-2); }
.lead-message { min-height: 20px; color: var(--gold-2); font-size: 14px; }

.whatsapp-float { position: fixed; right: 22px; bottom: 94px; z-index: 9997; display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 999px; background: #25d366; color: #06130a; font-weight: 900; box-shadow: 0 18px 50px rgba(0,0,0,.36); text-decoration: none; }
.whatsapp-float:hover { filter: brightness(1.08); }

@keyframes testimonialSlide {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 8px)); }
}

@media (prefers-reduced-motion: reduce) {
    .testimonial-track { animation: none; flex-wrap: wrap; width: 100%; }
}

.site-footer { border-top: 1px solid rgba(255,255,255,.1); background: #000; padding: 70px clamp(20px, 4vw, 56px) 24px; }
.footer-grid { grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(150px, 1fr)); }
.footer-logo { max-width: 150px; margin-bottom: 20px; }
.site-footer h2 { font-size: 12px; color: var(--gold-2); letter-spacing: .24em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a, .site-footer p { display: block; color: rgba(255,255,255,.58); line-height: 1.7; margin: 0 0 12px; }
.protected-contact.btn span { display: none; }
.protected-contact.btn strong { font-size: inherit; }
.footer-contact-link strong { display: block; color: rgba(255,255,255,.58); font-weight: 400; }
.site-footer a:hover { color: var(--gold-2); }
.site-footer span { display: block; color: rgba(255,255,255,.42); }
.copyright { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; margin-top: 50px !important; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s ease, transform .85s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
    .site-header { height: auto; min-height: 78px; flex-wrap: wrap; }
    .menu-toggle { display: inline-flex; border: 1px solid var(--line); background: transparent; color: var(--gold-2); padding: 12px 14px; }
    .main-nav, .header-actions { display: none; width: 100%; }
    .site-header.is-open .main-nav, .site-header.is-open .header-actions { display: block; }
    .main-nav ul, .header-actions { padding: 16px 0; }
    .main-nav ul { display: grid; gap: 10px; }
    .header-actions { display: none; }
    .hero, .before-after, .service-area-map, .contact-grid, .two-col, .maps-grid, .home-service-selector, .service-showcase { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .stats, .card-grid, .process-grid, .footer-grid, .reviews-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
    .project-grid { grid-template-columns: 1fr 1fr; }
    .home-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-wall-grid { grid-template-columns: repeat(4, 1fr); }
    .map-svg-wrap, .area-svg { min-height: 380px; }
    .area-copy { padding: 34px; }
    .service-picker { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-showcase-media, .service-showcase-media img { min-height: 360px; }
}

@media (max-width: 620px) {
    .brand span { display: none; }
    .hero { min-height: 92vh; padding-top: 130px; padding-bottom: 70px; }
    .hero h1 { font-size: clamp(44px, 14vw, 66px); }
    .stats, .card-grid, .project-grid, .process-grid, .footer-grid, .quote-form, .reviews-grid, .calc-grid, .quiz-options { grid-template-columns: 1fr; }
    .home-gallery-grid { grid-template-columns: 1fr 1fr; }
    .photo-wall-grid { grid-template-columns: repeat(2, 1fr); }
    .project-card { min-height: 390px; }
    .testimonial { grid-template-columns: 1fr; }
    .area-copy, .quote-form, .testimonial, .before-after, .faq-accordion, .quote-calculator, .inspiration-quiz { padding: 24px; }
    .quote-calculator .section-head { margin-bottom: 20px; }
    .calc-grid select { min-height: 52px; font-size: 16px; }
    .calc-result { align-items: stretch; }
    .calc-result strong { width: 100%; font-size: clamp(30px, 10vw, 44px); }
    .calc-note { font-size: 14px; }
    .map-svg-wrap, .area-svg { min-height: 320px; }
    .area-svg text { font-size: 12px; }
    .area-point { width: 38px; height: 38px; }
    .actions .btn, .section-actions .btn, .quote-form .btn, .local-links .btn, .quiz-actions .btn, .calc-result .btn { width: 100%; }
    .service-picker { grid-template-columns: 1fr; }
    .service-option { grid-template-columns: 76px 1fr; }
    .service-option img { width: 76px; height: 64px; }
    .service-showcase-media, .service-showcase-media img { min-height: 300px; }
    .service-showcase-copy { padding: 24px; }
    .lead-actions { grid-template-columns: 1fr; }
    .whatsapp-float { right: 18px; bottom: 88px; }
    .chat-widget { right: 18px; bottom: 18px; }
}

@media (max-width: 420px) {
    .site-header { padding-inline: 14px; }
    .section, .page-hero { padding-inline: 16px; }
    .brand img { width: 46px; height: 46px; }
    .home-gallery-grid { grid-template-columns: 1fr; }
    .photo-wall-grid { grid-template-columns: 1fr 1fr; }
    .project-card { min-height: 330px; }
}
