:root {
  --black: #050505;
  --ink: #0d0e10;
  --panel: #151515;
  --panel-2: #202020;
  --yellow: #ffd200;
  --electric: #ffe45c;
  --electric-strong: #ffc400;
  --gold: #f5b800;
  --gold-dark: #c89200;
  --text: #111318;
  --muted: #616775;
  --line: #e6e7eb;
  --surface: #f6f7f9;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15.5px;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10000;
  background: var(--yellow);
  color: var(--black);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  color: var(--white);
  transition: background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled,
.site-header:has(.mobile-panel.is-open) {
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(255, 210, 0, 0.35);
}

.brand strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-size: 0.95rem;
  line-height: 1.05;
  text-transform: uppercase;
  font-style: italic;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  text-transform: uppercase;
  font-style: italic;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active,
.nav-dropdown:hover > button {
  color: var(--yellow);
}

.nav-dropdown {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 318px;
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 160ms ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  border-radius: 6px;
  padding: 9px 10px;
  color: #282b31;
  font-size: 0.88rem;
  font-weight: 750;
}

.nav-menu a:hover {
  background: #fff7c4;
  color: #000;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  color: var(--yellow);
  white-space: nowrap;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-style: italic;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-radius: 8px;
}

.mobile-panel {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 17px;
  border-radius: var(--radius);
  font-weight: 900;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-size: 0.92rem;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background: #ffe36a;
}

.btn-secondary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-secondary:hover {
  background: #222;
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline-light:hover {
  color: var(--black);
  background: var(--white);
}

.btn-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.hero {
  min-height: clamp(540px, 82vh, 760px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg,
.subhero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.56) 44%, rgba(0, 0, 0, 0.62)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.88), transparent 38%);
}

.hero-content,
.subhero-content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  color: var(--white);
}

.hero-content {
  max-width: var(--container);
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 210, 0, 0.12);
  color: var(--yellow);
  border: 1px solid rgba(255, 210, 0, 0.38);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-size: 0.72rem;
  font-style: italic;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--black);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.9);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  margin-top: 18px;
  font-size: clamp(1.82rem, 3.4vw, 3.05rem);
  font-weight: 900;
  color: var(--electric);
  background: linear-gradient(180deg, #fff4a8 0%, var(--electric) 34%, var(--electric-strong) 72%, #b97800 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(255, 210, 0, 0.28);
}

.hero-content > p,
.subhero-content > p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(780px, 100%);
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stats span {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.38);
}

.hero-stats strong,
.hero-stats small {
  display: block;
}

.hero-stats strong {
  color: var(--yellow);
  font-size: 1.03rem;
}

.hero-stats small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-strip {
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}

.info-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
}

.info-strip a,
.info-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.section {
  padding: 72px 0;
}

.dark-section {
  background: var(--black);
  color: var(--white);
}

.surface-section {
  background: var(--surface);
}

.section-intro {
  margin-bottom: 32px;
}

.section-intro-center {
  text-align: center;
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro h2 {
  margin-top: 14px;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  font-weight: 900;
  color: var(--ink);
  text-shadow: 0 0 16px rgba(255, 210, 0, 0.12);
}

.section-intro p {
  max-width: 760px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.section-intro-center p {
  margin-left: auto;
  margin-right: auto;
}

.dark-section .section-intro p,
.dark-section p {
  color: rgba(255, 255, 255, 0.72);
}

.dark-section .section-intro h2,
.dark-section h3 {
  color: var(--electric);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 58px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
}

.lead-text {
  color: var(--muted);
  font-size: 0.98rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
}

.check-list p,
.include-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: #30333a;
  font-weight: 760;
}

.check-list svg,
.include-list svg {
  color: var(--gold-dark);
  margin-top: 4px;
}

.image-stack {
  position: relative;
  min-height: 470px;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-main,
.framed-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-main {
  height: 450px;
}

.image-small {
  position: absolute;
  width: 48%;
  height: 230px;
  right: -8px;
  bottom: -26px;
  border-radius: var(--radius);
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}

.framed-media {
  height: 460px;
  background: var(--panel);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.feature-grid article,
.process-step,
.related-card,
.contact-card,
.mini-services {
  border-radius: var(--radius);
}

.service-card {
  overflow: hidden;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.service-card-media {
  display: block;
  height: 168px;
  overflow: hidden;
}

.service-card-body {
  padding: 20px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 8px;
  margin-bottom: 14px;
}

.service-card h3,
.feature-grid h3,
.process-step h3,
.related-card h3,
.contact-card h3,
.mini-services h3 {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 900;
}

.service-card p,
.feature-grid p,
.process-step p,
.related-card p,
.mini-services p {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #8a6500;
  font-weight: 950;
}

.process-grid,
.feature-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-step,
.feature-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.dark-section .process-step,
.dark-section .feature-grid article,
.dark-section .related-card {
  background: #131313;
  border-color: rgba(255, 255, 255, 0.1);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--black);
  color: var(--yellow);
  font-weight: 950;
  margin-bottom: 18px;
}

.dark-section .process-step span {
  background: var(--yellow);
  color: var(--black);
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-preview figure {
  margin: 0;
  height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--panel);
}

.gallery-preview figcaption {
  position: absolute;
  inset: auto 8px 8px;
  padding: 7px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.area-list,
.area-grid {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.area-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.area-list li,
.area-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.area-map-section {
  background:
    linear-gradient(135deg, rgba(255, 210, 0, 0.08), rgba(255, 210, 0, 0) 35%),
    var(--black);
  color: var(--white);
}

.area-map-section .section-intro h2,
.reviews-section .section-intro h2 {
  color: var(--electric);
}

.area-map-section .section-intro p,
.reviews-section .section-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.area-map-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 22px;
  align-items: stretch;
}

.area-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.area-tab {
  border: 1px solid rgba(255, 210, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.area-tab strong,
.area-tab span {
  display: block;
}

.area-tab strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-size: 0.96rem;
  font-style: italic;
  text-transform: uppercase;
  color: var(--electric);
}

.area-tab span {
  margin-top: 3px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

.area-tab:hover,
.area-tab.is-active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.area-tab:hover strong,
.area-tab.is-active strong,
.area-tab:hover span,
.area-tab.is-active span {
  color: var(--black);
}

.map-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 490px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  border: 1px solid rgba(255, 210, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
}

.map-heading {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-heading > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
}

.map-heading h3 {
  font-size: 1.08rem;
  color: var(--electric);
}

.map-heading p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: saturate(0.9) contrast(1.04);
}

.reviews-section {
  background:
    linear-gradient(180deg, #101010, #050505);
  color: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 210, 0, 0.16);
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 210, 0, 0.12);
  color: var(--electric);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  font-style: italic;
  text-transform: uppercase;
}

.review-rating small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
}

.review-card p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.review-card footer {
  margin-top: 18px;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  color: var(--white);
  font-weight: 900;
}

.review-card footer span {
  color: var(--electric);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-specific-section {
  background: var(--surface);
}

.service-specific-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.service-detail-panel,
.service-local-copy {
  border-radius: var(--radius);
  padding: 28px;
}

.service-detail-panel {
  background: var(--black);
  color: var(--white);
}

.service-detail-panel h2 {
  margin-top: 14px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  color: var(--electric);
}

.service-detail-panel ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
}

.service-detail-panel li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.service-detail-panel li svg {
  color: var(--electric);
  margin-top: 4px;
}

.service-local-copy {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.service-local-copy h3 {
  color: var(--ink);
  font-size: 1.35rem;
}

.service-local-copy p {
  margin: 14px 0 0;
  color: var(--muted);
}

.mini-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-contact-row a,
.mini-contact-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #fff6bf;
  color: var(--black);
  font-weight: 900;
  font-size: 0.88rem;
}

.cta-band {
  padding: 56px 0;
  background: var(--yellow);
  color: var(--black);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  margin-top: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 900;
}

.cta-inner p {
  max-width: 700px;
  margin: 12px 0 0;
  font-weight: 750;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0 18px;
}

.faq-item summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  font-weight: 950;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-item p {
  color: var(--muted);
  margin: 0;
  padding: 0 0 18px;
}

.quote-section {
  background: linear-gradient(180deg, var(--surface), var(--white));
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 38px;
  align-items: start;
}

.quote-frame {
  min-height: 705px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.contact-card,
.mini-services {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.contact-card.large {
  margin-bottom: 18px;
}

.contact-card a,
.contact-card p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  font-weight: 850;
  color: #25272d;
  overflow-wrap: anywhere;
}

.subhero {
  min-height: 455px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.subhero h1 {
  max-width: 820px;
  font-size: clamp(1.72rem, 3vw, 2.75rem);
}

.include-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.include-list li {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-tags span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 210, 0, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 210, 0, 0.1);
  color: var(--yellow);
  font-weight: 900;
}

.related-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.related-card img {
  height: 180px;
}

.related-card > div {
  padding: 20px;
}

.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
  gap: 36px;
  padding: 60px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
}

.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--yellow) !important;
  font-size: 0.85rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-contact li,
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.license {
  color: var(--yellow) !important;
  font-weight: 950;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 16px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.86rem;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-panel {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    gap: 2px;
    padding: 14px 18px 22px;
    background: rgba(5, 5, 5, 0.98);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: 180ms ease;
    max-height: calc(100vh - 82px);
    overflow: auto;
  }

  .mobile-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-panel a,
  .mobile-panel span {
    padding: 12px 8px;
    border-radius: 6px;
    font-weight: 850;
  }

  .mobile-panel span {
    margin-top: 8px;
    color: var(--yellow);
    text-transform: uppercase;
    font-size: 0.78rem;
  }

  .mobile-call {
    background: var(--yellow);
    color: var(--black);
    text-align: center;
    margin-top: 8px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .quote-layout,
  .faq-layout,
  .area-map-layout,
  .service-specific-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-strip-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-shell {
    width: min(100% - 24px, 1240px);
    height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  .mobile-panel {
    top: 76px;
    max-height: calc(100vh - 76px);
  }

  .hero,
  .subhero {
    min-height: 560px;
  }

  .hero-content,
  .subhero-content {
    padding-top: 96px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .service-grid,
  .process-grid,
  .feature-grid,
  .related-grid,
  .area-grid,
  .gallery-preview,
  .reviews-grid,
  .area-tabs {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(1.58rem, 8.4vw, 2.25rem);
  }

  .section-intro h2 {
    font-size: clamp(1.22rem, 6.2vw, 1.76rem);
  }

  .map-panel {
    min-height: 430px;
  }

  .image-stack {
    min-height: auto;
  }

  .image-main,
  .framed-media {
    height: 320px;
  }

  .image-small {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    margin-top: 14px;
    border: 0;
  }

  .cta-inner {
    display: block;
  }

  .quote-frame {
    min-height: 720px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
