:root {
  --primary: #f02d2d;
  --primary-dark: #c9141c;
  --primary-soft: #fff0f0;
  --primary-glow: rgba(240, 45, 45, .52);
  --brand-gray: #d7d7d7;
  --brand-gray-dark: #5b6069;
  --ink: #121826;
  --ink-soft: #273140;
  --muted: #667085;
  --line: #e5e7eb;
  --surface: #f7f8fb;
  --surface-dark: #eef1f5;
  --white: #ffffff;
  --steel: #2563eb;
  --shadow: 0 18px 45px rgba(18, 24, 38, .12);
  --radius: 8px;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 10000;
  background: var(--primary);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 700;
}
.skip-link:focus { left: 12px; }
.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(18,24,38,.08);
  border-color: rgba(18,24,38,.08);
  backdrop-filter: blur(14px);
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  font-weight: 800;
  color: var(--white);
}
.brand img {
  width: 178px;
  height: auto;
  max-height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.2));
}
.site-header.is-scrolled .brand,
.site-header.menu-open .brand { color: var(--ink); }
.site-header.is-scrolled .brand img,
.site-header.menu-open .brand img { filter: none; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: .9rem;
}
.site-header.is-scrolled .nav-menu,
.site-header.menu-open .nav-menu { color: var(--ink-soft); }
.nav-link,
.nav-drop-button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 12px;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-link:hover,
.nav-drop-button:hover { background: rgba(255,255,255,.12); }
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-drop-button:hover,
.site-header.menu-open .nav-link:hover,
.site-header.menu-open .nav-drop-button:hover { background: var(--primary-soft); color: var(--primary-dark); }
.nav-drop { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 300px;
  max-height: min(70vh, 540px);
  overflow: auto;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: .18s ease;
}
.nav-drop:hover .nav-dropdown-menu,
.nav-drop:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 700;
}
.nav-dropdown-menu a:hover { background: var(--primary-soft); color: var(--primary-dark); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
}
.site-header.is-scrolled .nav-phone,
.site-header.menu-open .nav-phone { color: var(--ink); }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 8px;
  border-radius: var(--radius);
}
.site-header.is-scrolled .nav-toggle,
.site-header.menu-open .nav-toggle { color: var(--ink); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  padding: 13px 20px;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  text-align: center;
  min-height: 46px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #ff3434, var(--primary-dark));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(240,45,45,.28), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover { background: linear-gradient(135deg, #ff4a4a, #a91017); }
.btn-outline { border-color: currentColor; color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-light { background: var(--white); color: var(--primary-dark); }
.btn-light:hover { background: #fff7f7; }
.btn-dark { background: var(--ink); color: var(--white); }
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero.page-hero { min-height: 70vh; text-align: left; }
.hero-media,
.hero-media img,
.hero-media video,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img,
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media video { background: #111827; }
.hero-overlay {
  background:
    radial-gradient(circle at 50% 38%, rgba(240,45,45,.26), transparent 34%),
    linear-gradient(90deg, rgba(18,24,38,.74), rgba(18,24,38,.56), rgba(18,24,38,.74)),
    rgba(10, 15, 25, .58);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 132px 0 88px;
  width: 100%;
}
.hero-center {
  max-width: 880px;
  margin-inline: auto;
}
.hero-left { max-width: 780px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  font-weight: 800;
}
.section-eyebrow {
  background: var(--primary-soft);
  color: var(--primary-dark);
  margin-bottom: 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -.025em;
}
h1 {
  font-size: clamp(2.1rem, 4.1vw, 3.75rem);
  line-height: 1.1;
  margin: 18px 0 18px;
  font-weight: 700;
  color: var(--white);
  text-shadow:
    0 0 14px rgba(240,45,45,.72),
    0 0 32px rgba(240,45,45,.38),
    0 3px 22px rgba(0,0,0,.52);
}
h2 {
  font-size: clamp(1.7rem, 2.45vw, 2.65rem);
  line-height: 1.16;
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--ink);
}
h3 { font-size: 1.12rem; line-height: 1.28; margin-bottom: 8px; font-weight: 700; }
.hero-copy {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.84);
}
.hero-left .hero-copy { margin-left: 0; }
.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-left .hero-actions { justify-content: flex-start; }
.hero-stats {
  margin: 54px auto 0;
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero-stat { border-left: 1px solid rgba(255,255,255,.22); padding-left: 22px; text-align: left; }
.hero-stat:first-child { border-left: 0; padding-left: 0; }
.hero-stat strong { display: block; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1; }
.hero-stat span { display: block; margin-top: 7px; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; font-weight: 800; }
.info-strip {
  background: linear-gradient(90deg, #c9141c, #f02d2d 50%, #5b6069);
  color: var(--white);
}
.info-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  font-size: .92rem;
  font-weight: 700;
}
.info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section { padding: 86px 0; }
.section-alt {
  background:
    linear-gradient(135deg, rgba(240,45,45,.08), transparent 34%),
    linear-gradient(180deg, #fafbfc, #f1f5f9);
}
.section-dark {
  background:
    radial-gradient(circle at 20% 20%, rgba(240,45,45,.22), transparent 35%),
    linear-gradient(135deg, #121826, #2f343d);
  color: var(--white);
}
.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-head.center { text-align: center; margin-inline: auto; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-head p,
.section-dark p { color: rgba(255,255,255,.74); }
.grid-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid rgba(240,45,45,.7);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(18,24,38,.06);
}
.section-dark .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); }
.card h3 a:hover,
.text-link:hover { color: var(--primary-dark); }
.card p,
.body-copy p,
.card li,
.body-copy li { color: var(--muted); }
.section-dark .card p,
.section-dark .card li { color: rgba(255,255,255,.74); }
.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 14px;
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--brand-gray-dark));
  box-shadow: 0 10px 22px rgba(240,45,45,.18);
  font-size: 1.35rem;
}
.card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary-dark);
  font-weight: 800;
  font-size: .9rem;
}
.photo-panel {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-panel img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; image-rendering: auto; }
.portrait-panel {
  max-width: 420px;
  min-height: 510px;
  margin-inline: auto;
  background: linear-gradient(135deg, var(--brand-gray), #f7f7f7);
}
.portrait-panel img {
  object-fit: cover;
  min-height: 510px;
}
.photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  font-weight: 800;
}
.real-photo-panel {
  background: linear-gradient(135deg, #161d2b, #343943);
}
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.project-gallery.featured {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.project-photo-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #151b28;
  box-shadow: 0 14px 32px rgba(18,24,38,.16);
  border: 1px solid rgba(255,255,255,.08);
}
.project-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  image-rendering: auto;
}
.project-photo-card.landscape {
  grid-column: span 1;
}
.project-photo-card.slim img {
  object-fit: contain;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 28%, rgba(240,45,45,.22), transparent 34%),
    linear-gradient(135deg, #151b28, #343943);
}
.project-photo-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.section-dark .project-photo-card figcaption,
.service-area-feature .project-photo-card figcaption {
  background: rgba(255,255,255,.93);
  color: var(--ink);
}
.home-project-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(240,45,45,.34), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(255,255,255,.12), transparent 25%),
    linear-gradient(135deg, #111827, #2f343d 58%, #981018);
  color: var(--white);
}
.home-project-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255,255,255,.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.05) 50%, rgba(255,255,255,.05) 75%, transparent 75%, transparent);
  background-size: 18px 18px;
  opacity: .12;
  pointer-events: none;
}
.home-project-section .container {
  position: relative;
  z-index: 1;
}
.project-showcase-grid {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.4fr);
  gap: 42px;
  align-items: center;
}
.home-project-section .section-head {
  margin-bottom: 24px;
}
.home-project-section h2 {
  color: var(--white);
  text-shadow: 0 0 24px rgba(240,45,45,.34);
}
.home-project-section .section-head p,
.project-showcase-copy p {
  color: rgba(255,255,255,.78);
}
.project-showcase-copy .section-actions {
  justify-content: flex-start;
  margin-top: 26px;
}
.project-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.project-metric {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.project-metric strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 6px;
}
.project-metric span {
  display: block;
  color: rgba(255,255,255,.7);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .68rem;
}
.project-carousel {
  min-width: 0;
}
.project-carousel-shell {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  padding: 18px;
  overflow: hidden;
}
.project-carousel-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 6px 18px;
  scrollbar-width: none;
}
.project-carousel-track::-webkit-scrollbar { display: none; }
.project-slide {
  flex: 0 0 clamp(238px, 24vw, 306px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: #121826;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.project-slide figure {
  margin: 0;
  position: relative;
}
.project-slide img {
  display: block;
  width: 100%;
  height: 392px;
  object-fit: cover;
  image-rendering: auto;
}
.project-slide.slim img {
  object-fit: contain;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 28%, rgba(240,45,45,.22), transparent 34%),
    linear-gradient(135deg, #151b28, #343943);
}
.project-slide figcaption {
  min-height: 84px;
  padding: 16px 17px 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}
.project-carousel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.carousel-buttons {
  display: flex;
  gap: 10px;
}
.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.carousel-prev svg { transform: rotate(180deg); }
.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
}
.carousel-dot.is-active {
  background: var(--primary);
  box-shadow: 0 0 18px rgba(240,45,45,.75);
}
.check-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}
.check-list svg { color: var(--primary); margin-top: 3px; }
.plain-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.link-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  font-weight: 800;
  color: var(--ink-soft);
}
.link-tile:hover { border-color: var(--primary); color: var(--primary-dark); }
.process {
  counter-reset: steps;
}
.process .card { position: relative; }
.process .card:before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}
.faq-list {
  max-width: 860px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary:after {
  content: "+";
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
}
details[open] summary:after { content: "-"; }
details p { color: var(--muted); margin-bottom: 20px; }
.quote-section { background: var(--surface-dark); }
.quote-grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(290px, 2fr); gap: 28px; align-items: start; }
.form-panel,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(18,24,38,.08);
  min-width: 0;
}
.form-panel { min-height: 735px; overflow: hidden; }
.form-panel iframe { display: block; width: 100%; height: 735px; border: 0; }
.form-panel .ep-iFrameContainer,
.form-panel .ep-wrapper,
.form-panel iframe {
  max-width: 100% !important;
  min-width: 0 !important;
}
.contact-panel { padding: 26px; }
.contact-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 0; }
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary);
}
.contact-row small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: .72rem;
  margin-bottom: 3px;
}
.contact-row strong { display: block; }
.contact-row span,
.contact-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
}
.review-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 12px;
}
.lc_reviews_widget {
  display: block;
  min-width: 100%;
  width: 100%;
  min-height: 450px;
  border: 0;
}
.map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.map-card {
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border-color: rgba(240,45,45,.38);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}
.map-card iframe {
  width: 100%;
  height: 230px;
  border: 0;
  background: var(--surface-dark);
}
.map-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 22px;
}
.map-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.map-card h3 span {
  color: var(--primary);
  filter: drop-shadow(0 0 9px rgba(240,45,45,.35));
}
.map-card h3,
.map-card h3 a {
  color: var(--ink);
}
.map-card p {
  color: var(--muted);
}
.map-card .card-cta {
  align-self: end;
  margin-top: auto;
  color: var(--primary-dark);
}
.service-area-feature {
  background:
    linear-gradient(135deg, rgba(18,24,38,.96), rgba(91,96,105,.92)),
    linear-gradient(90deg, rgba(240,45,45,.18), transparent);
  color: var(--white);
}
.service-area-feature .section-head p,
.service-area-feature .card:not(.map-card) p { color: rgba(255,255,255,.76); }
.service-area-feature h2,
.service-area-feature h3 { color: var(--white); }
.service-area-feature .map-card h3,
.service-area-feature .map-card h3 a {
  color: var(--ink);
}
.service-area-feature .map-card p {
  color: var(--muted);
}
.cta-band {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,.2), transparent 26%),
    linear-gradient(135deg, #b51018, #f02d2d 48%, #565b64);
  color: var(--white);
  text-align: center;
  padding: 72px 0;
}
.cta-band p { color: rgba(255,255,255,.85); max-width: 680px; margin: 0 auto 26px; font-size: 1.08rem; }
.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  font-weight: 700;
}
.breadcrumbs a:hover { color: var(--white); }
.site-footer {
  background: var(--ink);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding: 64px 0 40px;
}
.footer-logo { width: 190px; margin-bottom: 18px; }
.site-footer p,
.site-footer li,
.site-footer a { color: rgba(255,255,255,.74); }
.site-footer a:hover { color: var(--white); }
.site-footer h3 {
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  margin-bottom: 16px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,.68);
  font-size: .85rem;
}
.sticky-mobile-call {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 998;
  box-shadow: 0 16px 40px rgba(18,24,38,.25);
}
@media (max-width: 1040px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 8px;
    max-height: calc(100vh - 110px);
    overflow: auto;
  }
  .site-header.menu-open .nav-menu { display: flex; }
  .nav-link,
  .nav-drop-button { width: 100%; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 0;
    max-height: none;
    padding: 0 0 4px 10px;
    visibility: visible;
    opacity: 1;
    transform: none;
    display: none;
  }
  .nav-drop:hover .nav-dropdown-menu,
  .nav-drop:focus-within .nav-dropdown-menu { display: block; }
  .nav-phone { display: none; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-showcase-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 780px) {
  .container { width: min(100% - 24px, 1180px); }
  .nav { height: 74px; }
  .brand { min-width: 0; }
  .brand img { width: 140px; }
  .nav-menu { top: 74px; }
  .hero,
  .hero.page-hero { min-height: 78vh; text-align: center; }
  .hero-inner { padding: 108px 0 64px; }
  .hero-left,
  .hero-copy { margin-inline: auto; }
  .hero-left .hero-copy { margin-left: auto; }
  .hero-left .hero-actions { justify-content: center; }
  .hero-actions,
  .section-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .section-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; margin-top: 34px; max-width: 310px; }
  .hero-stat { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding: 14px 0 0; text-align: center; }
  .hero-stat:first-child { border-top: 0; }
  .info-strip .container { flex-direction: column; align-items: flex-start; }
  .section { padding: 62px 0; }
  .grid-2,
  .grid-3,
  .grid-4,
  .map-grid,
  .quote-grid,
  .link-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .photo-panel,
  .photo-panel img { min-height: 330px; }
  .project-gallery,
  .project-gallery.featured { grid-template-columns: 1fr; }
  .project-photo-card,
  .project-photo-card img { min-height: 360px; }
  .project-photo-card.landscape { grid-column: span 1; }
  .project-metrics { grid-template-columns: 1fr; }
  .project-showcase-copy .section-actions { justify-content: stretch; }
  .project-carousel-shell { padding: 12px; }
  .project-slide { flex-basis: min(314px, 82vw); }
  .project-slide img { height: 380px; }
  .project-carousel-controls { align-items: flex-start; }
  .carousel-dots { max-width: 150px; }
  .form-panel { min-height: 760px; }
  .form-panel iframe { height: 760px; }
  .sticky-mobile-call { display: inline-flex; }
  body { padding-bottom: 76px; }
}
