/* =========================================================
   LA Top Drywall — Home page styles
   ========================================================= */
:root {
  --navy: #0A3470;
  --navy-deep: #082a5c;
  --blue: #1560C4;
  --blue-bright: #1E73E0;
  --orange: #F7931E;
  --orange-deep: #EE7A0A;
  --ink: #16202e;
  --text: #2c3747;
  --muted: #5c6878;
  --line: #dde3ec;
  --bg-soft: #f2f5f9;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 2px 10px rgba(10, 52, 112, .10);
  --font-head: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-body: "Open Sans", "Segoe UI", Arial, sans-serif;
  --font-cond: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-script: "Kalam", "Segoe Print", "Comic Sans MS", cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body { margin: 0; font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
svg { fill: currentColor; }
h1, h2, h3 { font-family: var(--font-head); color: var(--ink); margin: 0; line-height: 1.15; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ---------- Section titles ---------- */
.section-title { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -.5px; margin-bottom: 18px; }
.section-title span { color: var(--blue); }
.section-title.center { text-align: center; }
.section-title.light { color: var(--white); }
.section-title.light span { color: var(--orange); }

/* ---------- Top navigation ---------- */
.topnav { position: sticky; top: 0; z-index: 50; background: var(--navy-deep); color: var(--white); }
.topnav-inner { display: flex; align-items: center; justify-content: flex-start; min-height: 56px; }
.nav-menu { margin-left: -12px; flex: 1; }
.nav-phone-item { margin-left: auto; margin-right: 6px; }
.topnav-brand { font-family: var(--font-head); font-weight: 800; text-decoration: none; font-size: 1.05rem; }
.nav-menu { list-style: none; display: flex; gap: 6px; margin: 0; padding: 0; align-items: center; }
.nav-menu a { display: block; padding: 8px 12px; text-decoration: none; font-weight: 600; font-size: .92rem; border-radius: 6px; }
.nav-menu a:hover { background: rgba(255,255,255,.1); }
.nav-menu .nav-cta { background: var(--orange); color: var(--white); }
.nav-menu a.current { color: var(--orange); }
.nav-menu .nav-cta:hover { background: var(--orange-deep); }
.nav-menu .nav-phone { display: flex; align-items: center; gap: 7px; font-weight: 800; font-size: 1rem; color: var(--white); }
.nav-phone svg, .topnav-call svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.topnav-call { display: none; align-items: center; gap: 6px; margin-left: auto; margin-right: 6px; text-decoration: none; font-weight: 800; font-size: .95rem; background: var(--orange); color: var(--white); padding: 7px 12px; border-radius: 6px; }
.topnav-call svg { color: var(--white); }

/* dropdown */
.has-dropdown { position: relative; display: flex; align-items: center; }
.dd-toggle { background: none; border: 0; color: var(--white); padding: 6px 4px; margin-left: -8px; cursor: pointer; display: flex; }
.dd-toggle svg { width: 18px; height: 18px; transition: transform .2s; }
.dropdown { list-style: none; margin: 0; padding: 8px; position: absolute; top: calc(100% + 4px); left: 0; min-width: 280px; background: var(--white); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,.2); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s, transform .15s, visibility .15s; z-index: 60; }
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: none; }
.has-dropdown:hover .dd-toggle svg, .has-dropdown.open .dd-toggle svg { transform: rotate(180deg); }
.nav-menu .dropdown a { display: flex; align-items: center; gap: 10px; color: var(--ink); padding: 10px 12px; font-weight: 700; }
.nav-menu .dropdown a:hover, .nav-menu .dropdown a[aria-current="page"] { background: #eef3fa; color: var(--navy); }
.dropdown svg { width: 20px; height: 20px; color: var(--orange); flex: none; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--white); margin: 4px 0; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.85) 70%),
    linear-gradient(115deg, #ffffff 0%, #f3f6fa 45%, #e9eef5 100%);
  padding: 24px 0 26px;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 250px 1fr 300px; gap: 24px; align-items: center; margin-bottom: 22px; }

.logo { display: grid; justify-items: center; text-decoration: none; }
.logo img { width: 100%; max-width: 250px; height: auto; }
.logo-mark { width: 190px; height: auto; margin-bottom: -18px; }
.logo-text { font-family: var(--font-head); font-weight: 900; font-size: 3.3rem; line-height: 1; color: var(--navy); letter-spacing: -1px; }
.logo-sub { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; letter-spacing: 9px; color: #4d5663; margin-top: 4px; padding-left: 9px; }

.hero-title { text-align: center; }
.hero-brand { font-family: var(--font-head); font-weight: 900; color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); margin: 0; line-height: 1.05; letter-spacing: -1px; }
.hero-title h1 { font-family: var(--font-head); font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 900; color: var(--navy); line-height: 1.08; letter-spacing: -.5px; margin: 0; }
.hero-title h1 span { display: block; color: var(--orange); font-size: .6em; font-weight: 800; letter-spacing: 0; margin-top: 8px; }
.hero-badges { list-style: none; padding: 0; margin: 14px 0 0; display: flex; justify-content: center; gap: 10px 30px; flex-wrap: wrap; }
.hero-badges li { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.hero-badges svg { width: 24px; height: 24px; color: var(--navy); }
.hero-phone { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--orange-deep); }
.hero-phone svg { color: var(--orange-deep) !important; }
.hero-lead { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: .95rem; }

.hero-city { position: relative; height: 200px; }
.hero-city img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 35%); mask-image: linear-gradient(90deg, transparent 0, #000 35%); }
.script-tag { position: absolute; right: -4px; top: 8px; margin: 0; font-family: var(--font-script); font-size: 1.55rem; line-height: 1.1; color: var(--navy); text-align: right; transform: rotate(-6deg);
  text-shadow: 0 0 6px #fff, 0 0 12px #fff; }
.script-tag::after { content: ""; display: block; margin: 6px 0 0 auto; width: 110px; height: 6px; background: var(--orange); border-radius: 6px; transform: rotate(-4deg); }

/* Photo strip */
.photo-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.photo-card { position: relative; display: block; border-radius: 4px; overflow: hidden; text-decoration: none; background: var(--navy); }
.photo-card img { width: 100%; aspect-ratio: 136 / 150; object-fit: cover; object-position: center top; }
.photo-label { display: flex; align-items: center; gap: 10px; background: var(--navy); color: var(--white); padding: 10px 12px; font-family: var(--font-head); font-weight: 800; font-size: .9rem; text-transform: uppercase; line-height: 1.15; min-height: 56px; }
.photo-label svg { width: 28px; height: 28px; flex: none; }

/* ---------- Services ---------- */
.services { background: var(--bg-soft); padding: 34px 0 40px; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 10px 18px; text-decoration: none; transition: border-color .15s, transform .15s; }
.service-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.service-card svg { width: 46px; height: 46px; color: var(--navy); margin-bottom: 10px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); }

/* ---------- Overview ---------- */
.overview { display: grid; grid-template-columns: 57% 43%; background: var(--white); }
.overview-text { padding: 40px 40px 40px max(20px, calc((100vw - 1240px) / 2 + 20px)); align-self: center; }
.overview-text p { margin: 0; font-size: 1.02rem; }
.overview-text a:not([class]), .faq-a a { color: var(--blue); font-weight: 700; }
.cta-icons a { display: flex; flex-direction: column; align-items: center; gap: 8px; color: inherit; text-decoration: none; }
.cta-icons a:hover { color: var(--orange); }
.overview-media { position: relative; min-height: 340px; }
.overview-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Brush-stroke badges */
.brush-badge {
  position: absolute; right: 18px; bottom: 26px; margin: 0;
  background: var(--navy); color: var(--white);
  font-family: var(--font-script); font-size: 1.5rem; line-height: 1.12; text-align: center;
  padding: 18px 30px 22px; transform: rotate(-10deg);
  border-radius: 14px 40px 12px 36px / 30px 12px 36px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
.brush-badge::after { content: ""; position: absolute; left: 50%; bottom: 10px; width: 55%; height: 5px; transform: translateX(-50%) rotate(-3deg); background: var(--orange); border-radius: 5px; }
.brush-badge.small { font-size: 1.3rem; padding: 14px 24px 20px; right: 10px; bottom: 20px; }

/* ---------- About + Why ---------- */
.about-why { display: grid; grid-template-columns: 60% 40%; }
.about { background: linear-gradient(160deg, var(--navy-deep), #0d4390); color: #e8eef8; padding: 40px 40px 40px max(20px, calc((100vw - 1240px) / 2 + 20px)); }
.about p { margin: 0 0 14px; font-size: 1rem; }
.why { position: relative; background: linear-gradient(180deg, #fff, #eef2f7); padding: 40px max(20px, calc((100vw - 1240px) / 2 + 20px)) 150px 32px; overflow: hidden; }
.check-list { list-style: none; margin: 0; padding: 0; position: relative; z-index: 2; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink); padding: 8px 0; }
.check-list svg { width: 26px; height: 26px; flex: none; background: var(--orange); color: var(--white); border-radius: 50%; padding: 4px; }
.why-worker { position: absolute; right: 0; top: 20px; height: 68%; opacity: .9; width: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 55%); mask-image: linear-gradient(90deg, transparent 0, #000 55%); }

/* ---------- Estimate + Book ---------- */
.estimate-book { background: var(--bg-soft); padding: 34px 0; }
.estimate-book-grid { display: grid; grid-template-columns: 57fr 43fr; gap: 24px; }
.panel { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }
.table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; font-size: .98rem; }
.price-table thead th { background: var(--navy); color: var(--white); text-align: left; padding: 11px 14px; font-weight: 700; }
.price-table thead th + th { border-left: 1px solid rgba(255,255,255,.3); }
.price-table tbody th { text-align: left; font-weight: 600; color: var(--ink); padding: 13px 14px; }
.price-table td { color: var(--orange-deep); font-weight: 700; padding: 13px 14px; }
.price-table tbody tr:nth-child(even) { background: #f5f7fb; }
.price-table tbody tr { border-bottom: 1px solid var(--line); }
.note { display: flex; gap: 12px; align-items: center; background: #e8f0fb; border-radius: var(--radius); padding: 14px 16px; margin: 22px 0 0; font-size: .9rem; color: var(--ink); }
.note svg { width: 30px; height: 30px; flex: none; color: var(--navy); }
.note a, .faq-a a, .area-note a[href^="tel"] { color: var(--blue); font-weight: 700; white-space: nowrap; }
.book-call { margin: -6px 0 16px; font-weight: 600; color: var(--muted); }
.book-call a { display: inline-flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 800; font-size: 1.1rem; text-decoration: none; white-space: nowrap; }
.book-call svg { width: 18px; height: 18px; color: var(--orange); }

.field { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 10px; margin-bottom: 10px; }
.field label { font-weight: 700; font-size: .88rem; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: .9rem; color: var(--ink); border: 1px solid #c9d2de; border-radius: 6px; padding: 8px 10px; background: var(--white); }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,96,196,.18); }
.field .invalid { border-color: #d33; }
.form-status { margin: 4px 0 10px; font-weight: 600; font-size: .92rem; min-height: 1em; }
.form-status.ok { color: #1c7c3a; }
.form-status.err { color: #c62828; }

.btn-orange { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; border: 0; cursor: pointer; background: linear-gradient(180deg, #ff9f2e, var(--orange-deep)); color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; padding: 14px 20px; border-radius: 6px; text-decoration: none; box-shadow: 0 4px 12px rgba(238,122,10,.35); }
.btn-orange:hover { filter: brightness(1.05); }
.btn-orange svg { width: 22px; height: 22px; }

/* ---------- Before & After ---------- */
.before-after { background: var(--white); padding: 38px 0 42px; }
.section-sub { text-align: center; color: var(--muted); margin: -8px auto 26px; max-width: 620px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ba-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; }
.ba-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.ba-card p { margin: 12px 0 0; color: var(--muted); font-size: .92rem; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ba-pair figure { position: relative; margin: 0; border-radius: 6px; overflow: hidden; }
.ba-pair img { width: 100%; aspect-ratio: 6 / 5; object-fit: cover; transition: transform .3s; }
.ba-pair figure:hover img { transform: scale(1.04); }
.ba-tag { position: absolute; left: 8px; top: 8px; color: var(--white); font-family: var(--font-head); font-weight: 800; font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.ba-tag.before { background: var(--navy); }
.ba-tag.after { background: var(--orange); }

/* ---------- FAQ ---------- */
.faq { padding: 36px 0 44px; background: var(--white); }
.faq .section-title { color: var(--ink); }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 34px; }
.faq-col { min-width: 0; }
.faq-item { border-bottom: 1px solid var(--line); padding: 10px 0; }
.faq-item h3 { font-size: 1rem; font-weight: 700; }
.faq-item button { all: unset; box-sizing: border-box; width: 100%; display: flex; align-items: center; gap: 14px; cursor: pointer; font-family: var(--font-head); font-weight: 700; color: var(--ink); padding: 4px 0; }
.faq-item button:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.faq-item button b { flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: var(--white); display: grid; place-items: center; font-size: .95rem; }
.faq-item button span { flex: 1; }
.faq-item button svg { width: 22px; height: 22px; flex: none; transition: transform .2s; }
.faq-item button[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a { padding-left: 50px; overflow: hidden; }
.faq-a p { margin: 2px 0 4px; color: var(--muted); font-size: .92rem; }
.faq-a[hidden] { display: none; }

/* ---------- Service Area ---------- */
.service-area { background: var(--bg-soft); padding: 38px 0 44px; }
.area-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 24px; align-items: stretch; }
.area-map-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 8px; }
.area-map { width: 100%; height: 100%; min-height: 480px; border-radius: 6px; overflow: hidden; background: #dfe8f3; position: relative; z-index: 0; }
.area-list { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.area-list h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.city-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 10px; }
.city-chip { width: 100%; display: flex; align-items: center; gap: 8px; text-align: left; background: #f5f7fb; border: 1px solid var(--line); border-radius: 6px; padding: 7px 10px; font: 600 .88rem var(--font-body); color: var(--ink); cursor: pointer; transition: background .15s, border-color .15s; }
.city-chip svg { width: 16px; height: 16px; flex: none; color: var(--orange); }
.city-chip:hover, .city-chip.active { background: #e8f0fb; border-color: var(--blue); }
.city-chip.active { color: var(--navy); }
.area-note { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0 0; font-size: .88rem; color: var(--muted); }
.area-note svg { width: 22px; height: 22px; flex: none; color: var(--navy); }
.area-note a { color: var(--blue); font-weight: 700; }


/* Google Maps */
.gmap-frame { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }


/* ---------- CTA band ---------- */
.cta { position: relative; background: var(--navy-deep); color: var(--white); overflow: hidden; }
.cta-bg { position: absolute; right: 0; top: 0; height: 100%; width: 46%; object-fit: cover; object-position: right center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 35%); mask-image: linear-gradient(90deg, transparent 0, #000 35%); }
.cta::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--navy-deep) 50%, rgba(8,42,92,.6) 62%, rgba(8,42,92,0) 82%); }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 44px; padding-bottom: 44px; }
.cta h2 { font-family: var(--font-cond); font-weight: 700; color: var(--white); text-transform: uppercase; font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.05; letter-spacing: .5px; }
.cta h2 span { color: var(--orange); }
.cta-icons { list-style: none; display: flex; gap: 0; padding: 0; margin: 26px 0 24px; }
.cta-icons li { display: flex; flex-direction: column; align-items: center; gap: 8px; font-weight: 700; font-size: .95rem; padding: 0 22px; border-left: 1px solid rgba(255,255,255,.3); }
.cta-icons li:first-child { border-left: 0; padding-left: 0; }
.cta-icons svg { width: 40px; height: 40px; }
.cta-btn { width: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-call { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--white); color: var(--navy); font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; padding: 14px 20px; border-radius: 6px; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,.25); }
.btn-call:hover { background: #eef3fa; }
.btn-call svg { width: 22px; height: 22px; color: var(--orange); }
.paper-badge { margin: 0; background: var(--white); color: var(--ink); font-family: var(--font-script); font-size: 1.35rem; line-height: 1.2; text-align: center; padding: 20px 28px 26px; transform: rotate(-6deg); border-radius: 30px 8px 28px 10px / 10px 28px 8px 30px; box-shadow: 0 8px 22px rgba(0,0,0,.3); position: relative; flex: none; }
.paper-badge::after { content: ""; position: absolute; left: 50%; bottom: 12px; width: 45%; height: 5px; background: var(--orange); border-radius: 5px; transform: translateX(-50%) rotate(-3deg); }


.site-footer { background: #061f45; color: #b9c6da; text-align: center; font-size: .88rem; padding: 18px 0; }
.site-footer p { margin: 0; }
.site-footer a { color: var(--white); font-weight: 700; text-decoration: none; white-space: nowrap; }

/* ---------- Service pages ---------- */
.page-hero-title h1.page-h1 { font-family: var(--font-head); font-weight: 900; color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -1px; margin: 0; }
.page-tag { font-family: var(--font-head); font-weight: 800; color: var(--orange); font-size: clamp(1.1rem, 2vw, 1.4rem); margin: 4px 0 0; }
.breadcrumbs { padding-top: 12px; padding-bottom: 12px; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: .88rem; color: var(--muted); }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; color: #9aa6b6; }
.breadcrumbs a { color: var(--blue); text-decoration: none; font-weight: 600; }
.res-intro { background: var(--white); padding: 4px 0 40px; }
.intro-banner { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 28px rgba(10,52,112,.18); }
.intro-banner img { width: 100%; aspect-ratio: 12 / 5; object-fit: cover; object-position: center 40%; }
.intro-banner .brush-badge { right: 28px; bottom: 30px; font-size: 1.7rem; }
.intro-body { padding-top: 30px; }
.intro-body p { margin: 0 0 14px; font-size: 1.02rem; }
.intro-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.btn-call.dark { background: var(--navy); color: var(--white); }
.btn-call.dark:hover { background: var(--navy-deep); }
.jump { background: var(--navy); padding: 14px 0; }
.jump-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.jump-list a { display: flex; align-items: center; gap: 8px; color: var(--white); text-decoration: none; font-weight: 700; font-size: .9rem; padding: 8px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 30px; }
.jump-list a:hover { background: var(--orange); border-color: var(--orange); }
.jump-list svg { width: 18px; height: 18px; color: var(--orange); }
.jump-list a:hover svg { color: var(--white); }
.split { padding: 44px 0; background: var(--white); scroll-margin-top: 60px; }
.split.soft { background: var(--bg-soft); }
.split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split.reverse .split-media { order: -1; }
.split-text p { margin: 0 0 14px; }
.split-media { position: relative; }
.split-media img { position: relative; z-index: 1; width: 100%; border-radius: var(--radius); box-shadow: 0 10px 28px rgba(10,52,112,.18); aspect-ratio: 16 / 10; object-fit: cover; }
.split-media::after { content: ""; position: absolute; left: -12px; bottom: -12px; width: 38%; height: 38%; border-left: 6px solid var(--orange); border-bottom: 6px solid var(--orange); border-radius: 0 0 0 10px; z-index: 0; }
.split.reverse .split-media::after { left: auto; right: -12px; border-left: 0; border-right: 6px solid var(--orange); border-radius: 0 0 10px 0; }
.detail-section { padding: 44px 0; background: var(--bg-soft); scroll-margin-top: 60px; }
.detail-section.navy { background: linear-gradient(160deg, var(--navy-deep), #0d4390); }
.detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.detail-grid.three { grid-template-columns: repeat(3, 1fr); }
.detail-grid.five { grid-template-columns: repeat(6, 1fr); }
.detail-grid.five > * { grid-column: span 2; }
.detail-grid.five > :nth-child(n+4) { grid-column: span 3; }
#rooms, .detail-section.white { background: var(--white); }
.detail-grid.two { grid-template-columns: repeat(2, 1fr); }
.detail-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; border-top: 4px solid var(--orange); scroll-margin-top: 70px; }
.detail-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.detail-head svg { width: 44px; height: 44px; flex: none; color: var(--white); background: var(--navy); border-radius: 50%; padding: 10px; }
.level-badge { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--orange); color: var(--white); display: grid; place-items: center; font-family: var(--font-head); font-weight: 900; font-size: 1rem; }
.detail-card h2 { font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.detail-card p { margin: 0 0 10px; font-size: .95rem; }
.detail-card p:last-child { margin-bottom: 0; }
.solutions p { margin: 0 0 14px; }
.repair-section { background: var(--bg-soft); padding: 0 0 44px; scroll-margin-top: 60px; }
.repair-panel { border-top: 4px solid var(--orange); }
.repair-intro p { margin: 0 0 12px; }
.repair-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 24px; margin: 8px 0 12px; }
.process-steps { grid-template-columns: repeat(4, 1fr); display: grid; gap: 20px; margin: 18px 0 14px; }
.process-steps li { flex-direction: column; background: #f5f7fb; border-radius: var(--radius); padding: 18px; gap: 10px; }
.process-section { padding-top: 44px; }
.process-steps.three-steps { grid-template-columns: repeat(3, 1fr); }
.res-panel .detail-head { margin-bottom: 14px; }
.res-panel .detail-head h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin: 0; color: var(--ink); }
.res-panel p { margin: 0 0 12px; }
.repair-close a, .split-text .text-link, .detail-card .text-link { color: var(--blue); font-weight: 700; text-decoration: none; }
.repair-close { margin: 6px 0 0; font-weight: 600; color: var(--navy); }
.solutions .check-list { margin-top: 6px; }

/* ---------- Contact page ---------- */
.page-hero { background: linear-gradient(115deg, #ffffff 0%, #f3f6fa 45%, #e9eef5 100%); padding: 24px 0; }
.page-hero-inner { display: grid; grid-template-columns: 250px 1fr 300px; gap: 24px; align-items: center; }
.page-hero-title { text-align: center; }
.page-hero-title h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--navy); line-height: 1.05; letter-spacing: -1px; margin: 0; }
.page-hero-title h1 span { display: block; color: var(--orange); font-size: .47em; font-weight: 800; letter-spacing: 0; margin-top: 8px; }
.contact { background: var(--bg-soft); padding: 36px 0 44px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: start; }
.contact-info { display: grid; gap: 24px; }
.contact-info .panel > p { margin: 0 0 18px; }
.contact-phone { display: flex; align-items: center; gap: 14px; background: var(--navy); color: var(--white); text-decoration: none; border-radius: var(--radius); padding: 16px 20px; margin-bottom: 20px; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; line-height: 1.1; }
.contact-phone:hover { background: var(--navy-deep); }
.contact-phone svg { width: 44px; height: 44px; flex: none; background: var(--orange); border-radius: 50%; padding: 10px; }
.contact-phone small { display: block; font-size: .8rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-email { background: var(--white); color: var(--navy); border: 2px solid var(--navy); font-size: 1.25rem; word-break: break-all; }
.contact-email:hover { background: #eef3fa; }
.contact-facts.contact-address-fact { margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.contact-facts, .steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.contact-facts li, .steps li { display: flex; gap: 14px; align-items: flex-start; }
.contact-facts svg { width: 26px; height: 26px; flex: none; color: var(--orange); margin-top: 2px; }
.contact-facts h3, .steps h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.contact-facts p, .steps p { margin: 0; color: var(--muted); font-size: .92rem; }
.contact-facts a { color: var(--blue); font-weight: 700; }
.steps b { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: var(--white); display: grid; place-items: center; font-family: var(--font-head); }
.contact-form { position: sticky; top: 76px; }

/* ---------- Legal pages ---------- */
.legal { background: var(--bg-soft); padding: 30px 0 44px; }
.legal-grid { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; }
.legal-toc { position: sticky; top: 76px; padding: 20px; }
.legal-toc h2 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.legal-toc ol { margin: 0; padding-left: 20px; font-size: .9rem; }
.legal-toc li { margin: 6px 0; }
.legal-toc a { color: var(--text); text-decoration: none; }
.legal-toc a:hover { color: var(--blue); }
.legal-body { padding: 32px 36px; }
.legal-body section { scroll-margin-top: 76px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.legal-body section:last-child { border-bottom: 0; margin-bottom: 0; }
.legal-body h2 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.legal-body p { margin: 0 0 12px; }
.legal-body ul { margin: 0 0 12px; padding-left: 22px; }
.legal-body li { margin: 4px 0; }
.legal-body a { color: var(--blue); font-weight: 600; }
.legal-address { font-style: normal; background: #f5f7fb; border-left: 4px solid var(--orange); border-radius: 6px; padding: 14px 18px; line-height: 1.7; }

/* ---------- Footer ---------- */
.footer-inner { display: grid; gap: 10px; justify-items: center; }
.footer-address { display: flex; align-items: center; gap: 8px; color: #dfe7f3; font-weight: 600; flex-wrap: wrap; justify-content: center; text-align: center; }
.footer-address svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 22px; }
.site-footer .footer-links a { color: var(--white); font-weight: 700; text-decoration: none; }
.site-footer .footer-links a:hover { color: var(--orange); text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-menu { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--navy-deep); flex-direction: column; align-items: stretch; padding: 8px 20px 16px; }
  .nav-menu.open { display: flex; }
  .has-dropdown { flex-wrap: wrap; }
  .has-dropdown > a { flex: 1; }
  .dd-toggle { margin-left: 0; padding: 8px 12px; }
  .dropdown { position: static; width: 100%; min-width: 0; box-shadow: none; background: rgba(255,255,255,.08); display: none; opacity: 1; visibility: visible; transform: none; margin: 2px 0 6px; }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown:hover .dd-toggle svg { transform: none; }
  .has-dropdown.open .dd-toggle svg { transform: rotate(180deg); }
  .nav-menu .dropdown a { color: var(--white); }
  .nav-menu .dropdown a:hover, .nav-menu .dropdown a[aria-current="page"] { background: rgba(255,255,255,.12); color: var(--white); }
  .topnav-inner { position: relative; }
  .topnav-call { display: inline-flex; }
  .nav-toggle { order: -1; margin-left: -10px; }
  .nav-menu { margin-left: 0; }
  .nav-phone-item { display: none; }
}
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 200px 1fr; }
  .hero-city { display: none; }
  .page-hero-inner { grid-template-columns: 200px 1fr; }
  .logo-mark { width: 160px; }
  .logo-text { font-size: 2.7rem; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .field { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 900px) {
  .faq-cols { gap: 0; }
  .hero-inner, .page-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-body { padding: 24px 20px; }
  .contact-grid, .split-inner, .detail-grid.three, .detail-grid.two, .detail-grid.five { grid-template-columns: 1fr; }
  .detail-grid.five > * { grid-column: auto !important; }
  .repair-list, .process-steps { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-media { order: 0; }
  .intro-banner img { aspect-ratio: 16 / 9; }
  .intro-banner .brush-badge { font-size: 1.1rem; right: 12px; bottom: 14px; padding: 12px 20px 18px; }
  .contact-form { position: static; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .overview, .about-why, .estimate-book-grid, .faq-cols, .ba-grid, .area-grid { grid-template-columns: 1fr; }
  .area-map { min-height: 380px; }
  .overview-text, .about { padding: 34px 20px; }
  .why { padding: 34px 20px 150px; }
  .overview-media { min-height: 300px; }
  .cta-bg { position: absolute; right: 0; top: 0; height: 100%; width: 46%; object-fit: cover; object-position: right center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 35%); mask-image: linear-gradient(90deg, transparent 0, #000 35%); }
  .cta::before { background: linear-gradient(180deg, rgba(8,42,92,.95) 45%, rgba(8,42,92,.65)); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .paper-badge { align-self: center; }
}
@media (max-width: 560px) {
  .repair-list, .process-steps, .process-steps.three-steps { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-card:last-child { grid-column: span 2; }
  .photo-card:last-child img { aspect-ratio: 16 / 9; object-position: center 25%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-icons { flex-wrap: wrap; row-gap: 16px; }
  .cta-icons li { padding: 0 14px; }
  .brush-badge { font-size: 1.2rem; }
  .panel { padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
