:root {
  --ink: #191a18;
  --ink-soft: #4e504b;
  --paper: #f2f0e9;
  --paper-light: #faf9f5;
  --line: #d8d6ce;
  --accent: #d9ff43;
  --blue: #8ccce4;
  --white: #fff;
  --radius: 24px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
section[id] { scroll-margin-top: 100px; }
body { max-width: 100%; overflow-x: clip; margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -60px; background: var(--accent); padding: 12px 18px; border-radius: 10px; }
.skip-link:focus { top: 16px; }

.site-header { height: 92px; background: rgba(250,249,245,.94); border-bottom: 1px solid rgba(25,26,24,.1); position: -webkit-sticky; position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); box-shadow: 0 8px 30px rgba(0,0,0,.035); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { display: block; flex: 0 0 auto; width: 50px; height: 50px; }
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { font-size: 16px; letter-spacing: .08em; line-height: 1; white-space: nowrap; }
.brand-copy small { color: #73756f; font-size: 11px; letter-spacing: .05em; }
.desktop-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.desktop-nav a { font-size: 14px; font-weight: 750; line-height: 1; letter-spacing: .045em; text-transform: uppercase; transition: opacity .2s; white-space: nowrap; }
.desktop-nav a:hover { opacity: .55; }
.desktop-nav a.active { color: #78911c; }
.header-contact { display: grid; justify-items: end; gap: 4px; padding-left: 20px; border-left: 1px solid var(--line); }
.status-dot { font-size: 11px; color: #6b6e67; text-transform: uppercase; letter-spacing: .08em; }
.status-dot i { display: inline-block; width: 8px; height: 8px; margin-right: 7px; background: #45b95a; border-radius: 50%; animation: statusPulse 1.8s ease-out infinite; }
@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(69,185,90,.48); }
  55% { box-shadow: 0 0 0 7px rgba(69,185,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(69,185,90,0); }
}
.phone { font-size: 19px; font-weight: 750; letter-spacing: -.02em; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--ink); position: relative; }
.menu-toggle span { width: 19px; height: 2px; background: #fff; position: absolute; left: 13px; transition: .25s; }
.menu-toggle span:first-child { top: 17px; }.menu-toggle span:last-child { top: 24px; }
.menu-toggle.active span:first-child { transform: translateY(3px) rotate(45deg); }.menu-toggle.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { min-height: 690px; height: calc(100vh - 92px); max-height: 840px; position: relative; overflow: hidden; background: #312f2a; color: #fff; }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transform: scale(1.025); transition: opacity 1s ease, transform 7s ease; }
.hero-slide.active { opacity: 1; transform: scale(1.005); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,17,15,.91) 0%, rgba(16,17,15,.78) 35%, rgba(16,17,15,.2) 66%, rgba(16,17,15,.02) 100%), linear-gradient(0deg, rgba(0,0,0,.2), transparent 35%); }
.hero-content { height: 100%; display: flex; align-items: center; position: relative; z-index: 2; padding-bottom: 30px; }
.hero-copy { width: 620px; transform: translateY(-34px); }
.eyebrow { display: flex; align-items: center; gap: 16px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 28px; }
.eyebrow span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.34); border-radius: 30px; }
.eyebrow i { font-style: normal; color: rgba(255,255,255,.64); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
h1 { font-size: clamp(54px, 6vw, 86px); letter-spacing: -.06em; line-height: .94; margin-bottom: 27px; font-weight: 650; }
h1 em, .final-copy em { color: var(--accent); font-family: Georgia, serif; font-weight: 400; }
.hero-copy > p { max-width: 540px; font-size: 19px; line-height: 1.55; color: rgba(255,255,255,.76); margin-bottom: 31px; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.button { min-height: 54px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 28px; border-radius: 13px; border: 0; font-weight: 750; font-size: 14px; cursor: pointer; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-accent { background: var(--accent); color: var(--ink); }
.button-accent:hover { background: #e3ff75; }
.button-dark { background: var(--ink); color: #fff; }
.button-light { background: #fff; color: var(--ink); }
.text-link { font-size: 14px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 7px; }
.text-link span { margin-left: 8px; color: var(--accent); }
.hero-points { list-style: none; display: flex; gap: 0; padding: 0; margin: 52px 0 0; }
.hero-points li { display: grid; gap: 6px; padding-right: 28px; margin-right: 28px; border-right: 1px solid rgba(255,255,255,.22); }
.hero-points li:last-child { border: 0; }
.hero-points b { font-size: 15px; }.hero-points span { color: rgba(255,255,255,.55); font-size: 11px; }
.hero-note { position: absolute; z-index: 3; right: max(24px, calc((100vw - var(--container))/2)); bottom: 32px; background: rgba(250,249,245,.94); backdrop-filter: blur(10px); color: var(--ink); padding: 14px 19px 14px 14px; border-radius: 16px; display: flex; align-items: center; gap: 13px; box-shadow: 0 16px 45px rgba(0,0,0,.14); }
.hero-note-icon { width: 40px; height: 40px; background: var(--accent); display: grid; place-items: center; border-radius: 12px; }
.hero-note-icon svg { width: 22px; fill: none; stroke: var(--ink); stroke-width: 1.8; }
.hero-note p { margin: 0; font-size: 11px; line-height: 1.5; color: #6f716b; }.hero-note b { font-size: 12px; color: var(--ink); }
.hero-switch { position: absolute; z-index: 4; right: max(24px, calc((100vw - var(--container))/2)); bottom: 132px; display: flex; gap: 5px; padding: 5px; border: 1px solid rgba(255,255,255,.15); background: rgba(21,22,20,.68); backdrop-filter: blur(12px); border-radius: 13px; }
.hero-switch button { height: 38px; padding: 0 13px; border: 0; border-radius: 9px; background: transparent; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; cursor: pointer; transition: background .25s, color .25s; }
.hero-switch button i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: rgba(255,255,255,.35); transition: background .25s; }
.hero-switch button.active { color: var(--ink); background: var(--accent); }
.hero-switch button.active i { background: var(--ink); }

.trust-strip { background: var(--accent); }
.trust-row { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.trust-row span { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 750; }
.trust-row svg { width: 24px; height: 24px; stroke: var(--ink); stroke-width: 1.8; fill: none; }

.about { background: var(--paper-light); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.about-heading h2 em { color: #879c30; font-family: Georgia, serif; font-weight: 400; }
.about-story { padding-top: 34px; }
.about-label { display: inline-flex; align-items: center; gap: 10px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 30px; color: #6f716a; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.about-label i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(217,255,67,.25); }
.about-lead { margin: 27px 0 20px; font-family: Georgia, serif; font-size: 25px; line-height: 1.48; letter-spacing: -.015em; }
.about-story > p:not(.about-lead) { max-width: 570px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.about-sign { display: flex; align-items: center; gap: 18px; margin-top: 28px; color: #777970; font-size: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }
.about-sign svg { width: 70px; height: 36px; fill: none; stroke: #878a81; stroke-width: 1.2; }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 70px; }
.about-value { min-height: 205px; padding: 24px; border: 1px solid var(--line); border-radius: 17px; display: flex; flex-direction: column; justify-content: space-between; transition: background .25s, transform .25s; }
.about-value:hover { background: var(--accent); transform: translateY(-3px); }
.about-value > span { color: #92948d; font-size: 10px; }
.about-value h3 { font-size: 17px; margin-bottom: 10px; }.about-value p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.6; }
.about-stats { margin-top: 14px; padding: 30px 32px; border-radius: 17px; background: var(--ink); color: #fff; display: grid; grid-template-columns: repeat(4,1fr); }
.about-stats > div { display: flex; align-items: center; gap: 17px; padding: 0 25px; border-right: 1px solid rgba(255,255,255,.14); }
.about-stats > div:first-child { padding-left: 0; }.about-stats > div:last-child { border: 0; padding-right: 0; }
.about-stats b { color: var(--accent); font-size: 27px; letter-spacing: -.04em; white-space: nowrap; }.about-stats span { color: rgba(255,255,255,.55); font-size: 10px; line-height: 1.45; }

.section { padding: 118px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 54px; }
.section-head > div { flex: 1; }.section-head > p { max-width: 410px; margin: 0 0 7px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.kicker { display: inline-block; color: #71736c; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .13em; margin-bottom: 20px; }
h2 { font-size: clamp(42px, 5vw, 68px); line-height: 1.02; letter-spacing: -.055em; font-weight: 620; margin-bottom: 0; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card { border-radius: var(--radius); padding: 34px 36px 30px; min-height: 590px; display: flex; flex-direction: column; overflow: hidden; }
.service-card.electric { background: var(--ink); color: #fff; }.service-card.plumbing { background: #dbeef4; color: var(--ink); }
.service-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 45px; }
.service-number { font-size: 12px; opacity: .48; }
.service-icon { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); }
.plumbing .service-icon { background: #fff; }.service-icon svg { width: 43px; height: 43px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.electric .service-icon svg { fill: var(--ink); stroke: none; }
.service-card h3 { font-size: 42px; letter-spacing: -.04em; margin-bottom: 16px; }
.service-card > p { max-width: 440px; font-size: 15px; line-height: 1.65; opacity: .68; margin-bottom: 28px; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 32px; border-top: 1px solid rgba(255,255,255,.16); }
.plumbing ul { border-color: rgba(25,26,24,.15); }
.service-card li { display: flex; justify-content: space-between; gap: 18px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 13px; }
.plumbing li { border-color: rgba(25,26,24,.15); }.service-card li b { white-space: nowrap; }
.card-link { margin-top: auto; font-size: 13px; font-weight: 750; display: flex; justify-content: space-between; align-items: center; }
.card-link span { font-size: 20px; }
.urgent-banner { background: var(--accent); border-radius: 20px; margin-top: 20px; padding: 24px 28px; display: grid; grid-template-columns: auto 1.4fr 1fr auto; gap: 22px; align-items: center; }
.urgent-icon { width: 52px; height: 52px; background: var(--ink); color: var(--accent); border-radius: 14px; display: grid; place-items: center; }.urgent-icon svg { width: 30px; fill: var(--accent); }
.urgent-banner span { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }.urgent-banner h3 { font-size: 17px; margin: 4px 0 0; }.urgent-banner p { font-size: 13px; line-height: 1.5; margin: 0; }

.process { background: var(--paper-light); }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.process-intro { position: sticky; top: 120px; }.process-intro h2 { margin-bottom: 26px; }.process-intro p { max-width: 400px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin-bottom: 30px; }
.steps { list-style: none; padding: 0; margin: 0; }
.steps li { display: grid; grid-template-columns: 55px 1fr; gap: 28px; padding: 31px 0 38px; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }.steps li > span { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 750; }
.steps li:nth-child(3) > span { background: var(--accent); border-color: var(--accent); }
.steps h3 { font-size: 21px; margin-bottom: 10px; }.steps p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.65; max-width: 500px; }

.prices { background: #e7e5dc; }
.price-panel { background: var(--paper-light); border-radius: var(--radius); padding: 20px; }
.tabs { background: #e8e6de; padding: 5px; border-radius: 14px; display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 12px; }
.tab { border: 0; background: transparent; height: 52px; border-radius: 10px; cursor: pointer; font-size: 14px; font-weight: 750; }.tab.active { background: var(--ink); color: #fff; }
.price-content { display: none; }.price-content.active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } }
.price-row { min-height: 64px; padding: 0 22px; display: flex; justify-content: space-between; align-items: center; gap: 30px; border-bottom: 1px solid var(--line); font-size: 14px; }.price-row b { white-space: nowrap; font-size: 15px; }
.price-footer { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; padding: 23px 22px 3px; }
.price-footer-info { display: grid; justify-items: start; gap: 12px; }
.price-footer > span,.price-footer-info > span { color: #73756f; font-size: 12px; }
.all-services-button { min-height: 48px; padding: 0 20px; border-radius: 13px; background: var(--ink); color: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 16px; font-size: 14px; font-weight: 750; transition: transform .2s,background .2s,color .2s; }
.all-services-button:hover { transform: translateY(-2px); background: var(--accent); color: var(--ink); }
.application-button { min-height: 52px; padding: 0 24px; border: 0; border-radius: 14px; background: var(--accent); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 750; cursor: pointer; transition: transform .2s, background .2s; }
.application-button:hover { transform: translateY(-2px); background: #c9f42e; }

.works { background: var(--paper-light); }
.works-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.work-card { background: var(--paper); border: 1px solid #dfddd5; border-radius: 20px; overflow: hidden; }
.work-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr .85fr; }
.work-photo { min-height: 350px; position: relative; overflow: hidden; background: #ddd; }
.work-card-wide .work-photo { min-height: 500px; }
.work-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .7s ease; }
.work-card:hover .work-photo img { transform: scale(1.035); }
.work-photo > span { position: absolute; left: 18px; top: 18px; padding: 9px 12px; background: rgba(25,26,24,.8); color: #fff; backdrop-filter: blur(10px); border-radius: 30px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.work-info { padding: 25px; display: flex; flex-direction: column; justify-content: space-between; gap: 36px; }
.work-card-wide .work-info { padding: 38px; }
.work-info small { color: #85877f; font-size: 9px; text-transform: uppercase; letter-spacing: .09em; }.work-info h3 { font-size: 24px; letter-spacing: -.035em; margin: 10px 0 12px; }.work-card-wide h3 { font-size: 34px; }.work-info p { color: var(--ink-soft); font-size: 13px; line-height: 1.6; max-width: 410px; margin: 0; }
.work-info dl { display: flex; gap: 38px; margin: 0; padding-top: 20px; border-top: 1px solid var(--line); }.work-info dl div { display: grid; gap: 5px; }.work-info dt { color: #8b8d85; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }.work-info dd { margin: 0; font-size: 13px; font-weight: 750; }
.works-cta { margin-top: 18px; padding: 20px 22px 20px 28px; border: 1px solid var(--line); border-radius: 17px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }.works-cta p { margin: 0; display: grid; gap: 6px; }.works-cta p b { font-size: 15px; }.works-cta p span { color: var(--ink-soft); font-size: 11px; }

.area { background: var(--ink); color: #fff; overflow: hidden; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.area-copy > p { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.7; max-width: 470px; margin: 27px 0 34px; }
.districts { display: flex; flex-wrap: wrap; gap: 9px; max-width: 530px; }.districts span { border: 1px solid rgba(255,255,255,.17); padding: 10px 13px; border-radius: 30px; font-size: 11px; color: rgba(255,255,255,.74); }
.map-card { min-height: 500px; position: relative; border-radius: 28px; background: #222420; overflow: hidden; border: 1px solid rgba(255,255,255,.1); }
.map-lines { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(217,255,67,.18); stroke-width: 2; }.map-lines path:nth-child(even) { stroke: rgba(255,255,255,.09); }
.map-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(217,255,67,.17); border-radius: 50%; transform: translate(-50%,-50%); }.ring-1 { width: 260px; height: 260px; }.ring-2 { width: 410px; height: 410px; }
.map-pin { position: absolute; display: flex; align-items: center; gap: 8px; background: #31332e; padding: 9px 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 9px; font-size: 10px; box-shadow: 0 8px 20px rgba(0,0,0,.22); }.map-pin i { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 5px rgba(217,255,67,.12); }
.pin-1 { left: 47%; top: 45%; }.pin-2 { right: 16%; top: 20%; }.pin-3 { left: 18%; bottom: 22%; }
.map-badge { position: absolute; left: 22px; bottom: 22px; background: var(--accent); color: var(--ink); padding: 17px 20px; border-radius: 14px; display: grid; gap: 3px; }.map-badge b { font-size: 24px; letter-spacing: -.04em; }.map-badge span { font-size: 10px; }

.reviews { background: var(--paper-light); }
.review-head { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 52px; }
.rating { display: flex; align-items: center; gap: 15px; padding-bottom: 5px; }.rating > strong { font-size: 52px; letter-spacing: -.06em; }.rating > span { color: #d29e22; letter-spacing: .12em; font-size: 15px; }.rating small { display: block; color: #777971; letter-spacing: 0; font-size: 10px; margin-top: 6px; white-space: nowrap; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.review-card { background: var(--paper); border: 1px solid #dfddd6; padding: 25px; border-radius: 18px; min-height: 300px; display: flex; flex-direction: column; }
.review-meta { display: grid; grid-template-columns: 44px 1fr auto; gap: 12px; align-items: center; }.avatar { width: 44px; height: 44px; display: grid; place-items: center; background: var(--ink); color: var(--accent); border-radius: 50%; font-weight: 700; }.review-meta div { display: grid; gap: 5px; }.review-meta b { font-size: 12px; }.review-meta small { font-size: 9px; color: #74766f; }.review-meta i { font-style: normal; font-size: 11px; background: var(--accent); padding: 6px 8px; border-radius: 6px; font-weight: 750; }
.review-card > p { font-family: Georgia, serif; font-size: 17px; line-height: 1.6; margin: 35px 0 25px; }.review-card time { color: #8a8c85; font-size: 10px; margin-top: auto; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }.faq-lead { max-width: 330px; margin: 26px 0 13px; color: var(--ink-soft); line-height: 1.6; }.text-phone { font-size: 19px; font-weight: 750; border-bottom: 1px solid; }
.faq-item { border-top: 1px solid var(--line); }.faq-item:last-child { border-bottom: 1px solid var(--line); }.faq-item button { width: 100%; padding: 25px 0; background: none; border: 0; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; font-weight: 700; }
.faq-item button i { width: 24px; height: 24px; position: relative; flex: 0 0 auto; }.faq-item button i::before,.faq-item button i::after { content:""; position:absolute; left:5px; right:5px; top:11px; height:1.5px; background:var(--ink); transition:.2s; }.faq-item button i::after { transform: rotate(90deg); }.faq-item.open button i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }.faq-answer p { overflow: hidden; margin: 0; color: var(--ink-soft); line-height: 1.65; font-size: 14px; max-width: 590px; }.faq-item.open .faq-answer { grid-template-rows: 1fr; }.faq-item.open .faq-answer p { padding-bottom: 26px; }

.contacts { background: #dfe3d5; }
.contacts-head { display: flex; justify-content: space-between; align-items: end; gap: 70px; margin-bottom: 50px; }
.contacts-head h2 em { color: #778d24; font-family: Georgia, serif; font-weight: 400; }
.contacts-head > p { max-width: 410px; margin: 0 0 6px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.contacts-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; }
.contact-main { min-height: 440px; padding: 38px; border-radius: 22px; background: var(--ink); color: #fff; display: flex; flex-direction: column; align-items: flex-start; }
.contact-caption { color: rgba(255,255,255,.45); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.contact-big-phone { margin: 30px 0 14px; color: var(--accent); font-size: clamp(29px,8.2vw,45px); font-weight: 650; line-height: 1; letter-spacing: -.045em; white-space: nowrap; }
.contact-main > p { color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.65; }
.contact-actions { display: flex; gap: 10px; margin-top: auto; }
.contact-outline { color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.25); }
.contact-outline:hover { background: #fff; color: var(--ink); }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-card { min-height: 210px; padding: 24px; border: 1px solid rgba(25,26,24,.12); border-radius: 18px; background: rgba(250,249,245,.62); display: flex; flex-direction: column; align-items: flex-start; transition: transform .25s, background .25s; }
a.contact-card:hover { transform: translateY(-3px); background: var(--paper-light); }
.contact-card-wide { grid-column: 1 / -1; min-height: 210px; }
.contact-card-icon { width: 42px; height: 42px; margin-bottom: 26px; border-radius: 12px; background: var(--accent); display: grid; place-items: center; }
.contact-card-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-card small { color: #777a70; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.contact-card strong { margin-top: 8px; font-size: 16px; line-height: 1.35; }
.contact-card i { margin-top: auto; color: #777a70; font-size: 10px; font-style: normal; }

.final-cta { padding: 110px 0; background: #2b2d29; color: #fff; }
.final-grid { display: grid; grid-template-columns: 1fr 440px; gap: 100px; align-items: center; }.kicker.light { color: rgba(255,255,255,.5); }.final-copy h2 { font-size: clamp(48px, 5.5vw, 74px); }.final-copy p { color: rgba(255,255,255,.59); line-height: 1.6; max-width: 420px; margin: 27px 0 0; }
.quick-form { display: grid; gap: 15px; }.quick-form label, .modal form label { display: grid; gap: 8px; }.quick-form label > span, .modal form label > span { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.52); }
input,select,textarea { width: 100%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.07); color: #fff; border-radius: 11px; padding: 0 15px; outline: none; transition: border .2s; }.quick-form input,.quick-form select { height: 52px; }.quick-form select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,#aaa 50%),linear-gradient(135deg,#aaa 50%,transparent 50%); background-position: calc(100% - 18px) 22px,calc(100% - 13px) 22px;background-size:5px 5px;background-repeat:no-repeat; }.quick-form select option { color: #111; }
input:focus,select:focus,textarea:focus { border-color: var(--accent); }.quick-form .button { width: 100%; margin-top: 4px; }.quick-form small, .modal form small { color: rgba(255,255,255,.4); font-size: 9px; text-align: center; line-height: 1.5; }
.form-captcha { min-width: 0; padding: 10px 11px 10px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.06); display: grid; grid-template-columns: minmax(0,1fr) 84px 40px; gap: 9px; align-items: center; }
.form-captcha-copy { min-width: 0; display: grid; gap: 3px; }
.form-captcha-copy small { color: rgba(255,255,255,.48); font-size: 8px; text-align: left; text-transform: uppercase; letter-spacing: .09em; }
.form-captcha-copy strong { color: #fff; font-size: 14px; }
.form-captcha input { width: 84px; height: 42px; padding: 0 8px; border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.09); text-align: center; }
.captcha-refresh { width: 40px; height: 40px; padding: 0; border: 0; border-radius: 10px; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-size: 19px; cursor: pointer; }
.captcha-refresh:hover { background: #c9f42e; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.modal .form-captcha { border-color: #dedbd1; background: #edebe4; }
.modal .form-captcha-copy small { color: #85877f; }
.modal .form-captcha-copy strong { color: var(--ink); }
.modal .form-captcha input { border-color: #d4d1c7; background: #faf9f5; color: var(--ink); }

.footer { background: #151614; color: #fff; padding: 62px 0 22px; }.footer-top { display: grid; grid-template-columns: 1fr 1.1fr .7fr; gap: 70px; padding-bottom: 54px; }.brand-footer { align-self: start; }.brand-footer .brand-copy small { color: rgba(255,255,255,.45); }.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }.footer-links div { display: grid; gap: 12px; align-content: start; }.footer-links b { color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; margin-bottom: 6px; }.footer-links a { font-size: 13px; color: rgba(255,255,255,.72); }.footer-contact { display: grid; gap: 8px; align-content: start; }.footer-contact span { color: rgba(255,255,255,.4); font-size: 10px; }.footer-contact a:first-of-type { font-size: 19px; font-weight: 750; }.footer-contact a:nth-of-type(2) { font-size: 12px; color: var(--accent); }.footer-contact p { color: rgba(255,255,255,.4); font-size: 11px; line-height: 1.5; margin-top: 15px; }.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding-top: 20px; display: flex; justify-content: space-between; gap: 30px; color: rgba(255,255,255,.28); font-size: 9px; }
.footer .brand-copy strong { font-size: 18px; }
.footer .brand-copy small { font-size: 12px; }
.footer-links b { font-size: 12px; }
.footer-links a { font-size: 15px; line-height: 1.4; }
.footer-contact span { font-size: 12px; }
.footer-contact a:first-of-type { font-size: 22px; }
.footer-contact a:nth-of-type(2) { font-size: 14px; }
.footer-contact p { font-size: 13px; }
.footer-bottom { color: #fff; font-size: 11px; line-height: 1.5; }
.footer-bottom a { color: #fff; }
.developer-credit { font-weight: 700; white-space: nowrap; }
.developer-credit:hover { color: var(--accent); }

.mobile-bar { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: .25s; }.modal.open { opacity: 1; visibility: visible; }.modal-backdrop { position: absolute; inset: 0; background: rgba(10,11,9,.72); backdrop-filter: blur(5px); }.modal-card { position: relative; width: min(500px,100%); max-height: calc(100vh - 40px); overflow-y: auto; background: var(--paper-light); border-radius: 24px; padding: 38px; transform: translateY(15px) scale(.98); transition: .25s; }.modal.open .modal-card { transform: none; }.modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #e6e4dc; font-size: 24px; cursor: pointer; }.modal-card h2 { font-size: 38px; margin-bottom: 13px; }.modal-card > p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; margin-bottom: 25px; max-width: 390px; }.modal form { display: grid; gap: 13px; }.modal form label > span { color: #74766f; }.modal input,.modal textarea { background: #edebe4; border-color: #dedbd1; color: var(--ink); }.modal input { height: 50px; }.modal textarea { padding-top: 13px; resize: vertical; }.modal form small { color: #8b8d86; }
.toast { position: fixed; z-index: 150; right: 24px; bottom: 24px; background: var(--accent); color: var(--ink); border-radius: 14px; padding: 16px 22px; display: grid; gap: 4px; box-shadow: 0 15px 40px rgba(0,0,0,.2); transform: translateY(140%); transition: .35s; }.toast.show { transform: none; }.toast b { font-size: 13px; }.toast span { font-size: 10px; }
.toast.error { background: #fff0e7; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }.js .reveal.visible { opacity: 1; transform: none; }

/* Readable typography */
.brand-copy strong { font-size: 17px; }.brand-copy small,.status-dot { font-size: 12px; }.desktop-nav a { font-size: 15px; }
.eyebrow,.kicker { font-size: 12px; }.hero-points span { font-size: 13px; }.hero-note p,.hero-note b { font-size: 13px; }.hero-switch button { font-size: 12px; }.trust-row span { font-size: 14px; }
.about-label,.about-sign,.about-value > span,.about-stats span { font-size: 12px; }.about-story > p:not(.about-lead),.about-value p { font-size: 15px; }
.button,.tab { font-size: 15px; }.service-number { font-size: 13px; }.service-card li,.card-link { font-size: 14px; }.urgent-banner span { font-size: 12px; }.urgent-banner p { font-size: 14px; }.steps li > span { font-size: 12px; }
.price-row { font-size: 15px; }.price-row b { font-size: 16px; }.price-footer > span,.price-footer-info > span { font-size: 14px; }.application-button { font-size: 15px; }
.work-photo > span,.work-info small,.work-info dt { font-size: 11px; }.work-info p,.work-info dd { font-size: 14px; }.works-cta p span { font-size: 13px; }
.districts span { font-size: 13px; }.map-pin,.map-badge span,.rating small { font-size: 12px; }
.review-meta b { font-size: 14px; }.review-meta small { font-size: 11px; }.review-meta i,.review-card time { font-size: 12px; }
.contact-caption { font-size: 12px; }.contact-main > p { font-size: 15px; }.contact-card small { font-size: 11px; }.contact-card i { font-size: 12px; }
.quick-form label > span,.modal form label > span { font-size: 12px; }.quick-form small,.modal form small { font-size: 11px; }.form-captcha-copy small { font-size: 10px; }
.footer-bottom { font-size: 12px; }.toast b { font-size: 15px; }.toast span { font-size: 12px; }

@media (max-width: 1200px) {
  .desktop-nav,.header-contact { display: none; }.menu-toggle { display: block; }.mobile-menu { display: block; position: absolute; inset: 92px 0 auto; max-height: calc(100vh - 92px); overflow-y: auto; background: var(--paper-light); padding: 25px 24px 30px; transform: translateY(-10px); opacity: 0; visibility: hidden; transition: .25s; border-bottom: 1px solid var(--line); }.mobile-menu.open { transform: none; opacity: 1; visibility: visible; }.mobile-menu nav { display: grid; }.mobile-menu nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }.mobile-menu nav a.active { color: #78911c; }.mobile-menu-phone { font-size: 23px; font-weight: 750; display: block; margin: 23px 0 16px; }
  .hero { min-height: 670px; }.hero-copy { width: 570px; }.hero-note { display: none; }.hero-switch { bottom: 28px; }
  .section { padding: 90px 0; }.about-grid { gap: 60px; }.about-stats > div { padding: 0 14px; }.service-card { min-height: 570px; }.urgent-banner { grid-template-columns: auto 1fr auto; }.urgent-banner > p { display: none; }
  .process-layout { gap: 55px; }.area-grid { gap: 45px; }.faq-layout { gap: 50px; }.contacts-grid { grid-template-columns: 1fr 1fr; }.contact-main { padding: 30px; }.final-grid { grid-template-columns: 1fr 390px; gap: 50px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, var(--container)); }.site-header { height: 72px; }.mobile-menu { top: 72px; }.brand-mark { width: 44px; height: 44px; }.brand-copy strong { font-size: 15px; }.brand-copy small { font-size:12px; }
  h2 br { display: none; }
  .hero { height: auto; max-height: none; min-height: 790px; }.hero-slide { object-position: 62% center; }.hero-shade { background: linear-gradient(90deg,rgba(15,16,14,.92) 0%,rgba(15,16,14,.65) 78%,rgba(15,16,14,.35)),linear-gradient(0deg,rgba(0,0,0,.45),transparent 45%); }.hero-content { min-height: 790px; align-items: flex-start; padding: 64px 0 106px; }.hero-copy { width: 100%;transform:none; }.eyebrow { margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }.eyebrow i { display: none; } h1 { font-size: clamp(49px,15vw,68px); }.hero-copy > p { font-size: 16px; max-width: 400px; }.hero-actions { align-items: stretch; flex-direction: column; gap: 17px; max-width: 330px; }.text-link { align-self: flex-start; }.hero-points { margin-top: 38px; overflow-x: auto; padding-bottom: 5px; }.hero-points li { min-width: 125px; padding-right: 15px; margin-right: 15px; }.hero-switch { left: 16px; right: auto; bottom: 28px; }
  .trust-row { min-height: 68px; overflow-x: auto; justify-content: flex-start; }.trust-row span { flex: 0 0 auto; }.trust-row svg { width: 20px; }
  .section { padding: 72px 0; }.section-head,.review-head { display: block; }.section-head > p { margin-top: 26px; }.section-head { margin-bottom: 34px; } h2 { font-size: 44px; }
  .about-grid { grid-template-columns: 1fr; gap: 12px; }.about-story { padding-top: 15px; }.about-lead { font-size: 21px; }.about-values { grid-template-columns: 1fr; margin-top: 45px; }.about-value { min-height: 165px; }.about-stats { grid-template-columns: 1fr 1fr; gap: 26px 0; padding: 26px 20px; }.about-stats > div,.about-stats > div:first-child,.about-stats > div:last-child { padding: 0 15px; border: 0; }.about-stats > div:nth-child(odd) { padding-left: 0; border-right: 1px solid rgba(255,255,255,.14); }.about-stats b { font-size: 24px; }
  .service-grid { grid-template-columns: 1fr; }.service-card { min-height: auto; padding: 26px 22px; }.service-top { margin-bottom: 25px; }.service-card h3 { font-size: 36px; }.service-card li { font-size: 14px; }.card-link { margin-top: 12px; }.urgent-banner { grid-template-columns: auto 1fr; padding: 20px; }.urgent-banner .button { grid-column: 1 / -1; }
  .process-layout { grid-template-columns: 1fr; }.process-intro { position: static; }.steps li { grid-template-columns: 44px 1fr; gap: 18px; }
  .price-panel { padding: 10px; }.price-row { min-height:70px;padding:12px 10px;font-size:15px;line-height:1.45; }.price-row b { font-size:16px; }.price-footer { display: grid; padding: 20px 10px 5px; }.price-footer-info { width:100%; }.price-footer .button,.price-footer .application-button { width: 100%; justify-content: center; }
  .works-grid { grid-template-columns: 1fr; }.work-card-wide { grid-column: auto; display: block; }.work-photo,.work-card-wide .work-photo { min-height: 320px; }.work-card-wide .work-info,.work-info { padding: 23px; }.work-card-wide h3,.work-info h3 { font-size: 25px; }.works-cta { align-items: stretch; flex-direction: column; padding: 22px; }.works-cta .button { width: 100%; }
  .area-grid { grid-template-columns: 1fr; }.map-card { min-height: 390px; }.pin-2 { right: 8%; }.ring-2 { width: 330px; height: 330px; }
  .rating { margin-top: 28px; }.review-grid { grid-template-columns: 1fr; }.review-card { min-height: 275px; }
  .faq-layout { grid-template-columns: 1fr; }.faq-list { margin-top: 5px; }
  .contacts-head { display: block; }.contacts-head h2 { font-size: 40px; }.contacts-head > p { margin-top: 25px; }.contacts-grid { grid-template-columns: 1fr; }.contact-main { min-height: 390px; padding: 25px; }.contact-actions { width: 100%; flex-direction: column; }.contact-actions .button { width: 100%; }.contact-cards { grid-template-columns: 1fr; }.contact-card-wide { grid-column: auto; }.contact-card { min-height: 195px; }
  .final-grid { grid-template-columns: 1fr; }.final-cta { padding: 72px 0 85px; }.final-copy h2 { font-size: 48px; }
  h1,h2,h3,.breadcrumbs span { overflow-wrap:break-word;word-break:normal; }.form-captcha { grid-template-columns:minmax(0,1fr) 72px 40px;gap:8px;padding:9px 10px; }.form-captcha input { width:72px; }.modal-card { padding:30px 20px 22px;border-radius:20px; }.modal-card h2 { padding-right:38px;font-size:32px; }.modal-close { top:12px;right:12px; }
  .footer { padding-bottom: calc(85px + env(safe-area-inset-bottom,0px)); }.footer-top { grid-template-columns: 1fr; gap: 38px; }.footer-bottom { flex-direction: column; gap: 10px; }.mobile-bar { display: grid; grid-template-columns: .85fr 1.15fr; position: fixed; z-index: 80; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom,0px)); height: 58px; padding: 5px; border-radius: 16px; background: var(--ink); box-shadow: 0 10px 35px rgba(0,0,0,.3); }.mobile-bar a,.mobile-bar button { border: 0; display: flex; align-items: center; justify-content: center; border-radius: 11px; font-weight: 750; font-size: 13px; }.mobile-bar a { color: #fff; gap: 6px; }.mobile-bar a svg { width: 18px; fill: none; stroke: #fff; stroke-width: 1.7; }.mobile-bar button { background: var(--accent); }.toast { top: calc(84px + env(safe-area-inset-top,0px)); bottom: auto; left: 16px; right: 16px; padding: 13px 17px; transform: translateY(-400%); }.toast.show { transform: none; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } .status-dot i { animation: none; box-shadow: 0 0 0 4px rgba(69,185,90,.16); } .js .reveal { opacity: 1; transform: none; } }
