:root {
  --yellow: #ffd400;
  --yellow-dark: #d3aa00;
  --black: #050505;
  --ink: #111111;
  --graphite: #1b1b1b;
  --panel: #f3f3f0;
  --line: rgba(255, 255, 255, 0.14);
  --muted: #66645d;
  --white: #ffffff;
  --max: 1180px;
  --header: 78px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header);
  color: var(--white);
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header);
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 750;
}

.nav-links a {
  position: relative;
  padding-block: 10px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.header-cta,
.btn-primary {
  color: var(--black);
  background: var(--yellow);
  border: 1px solid var(--yellow);
}

.header-cta {
  min-height: 42px;
  padding: 11px 15px;
  font-size: 0.84rem;
}

.header-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.header-cta:hover,
.btn-primary:hover {
  background: #ffe25d;
  transform: translateY(-1px);
}

.header-cta[href^="tel:"],
.btn[href^="tel:"],
.mobile-actions a[href^="tel:"] {
  animation: callPulse 2.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.46);
}

.header-cta[href^="tel:"] svg,
.btn[href^="tel:"] svg {
  animation: callIconNudge 2.8s ease-in-out infinite;
}

@keyframes callPulse {
  0%,
  70%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 212, 0, 0);
  }

  18% {
    box-shadow: 0 0 0 7px rgba(255, 212, 0, 0.2);
  }

  34% {
    box-shadow: 0 0 0 13px rgba(255, 212, 0, 0);
  }
}

@keyframes callIconNudge {
  0%,
  58%,
  100% {
    transform: rotate(0deg);
  }

  8% {
    transform: rotate(-9deg);
  }

  14% {
    transform: rotate(9deg);
  }

  20% {
    transform: rotate(-5deg);
  }

  26% {
    transform: rotate(0deg);
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% 50%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.8) 26%, rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.78));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  align-items: center;
  gap: clamp(32px, 6vw, 74px);
  min-height: calc(100vh - var(--header));
  padding-block: clamp(62px, 9vw, 112px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.8rem, 7.3vw, 6.65rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1::after {
  display: block;
  width: 86px;
  height: 7px;
  margin-top: 26px;
  content: "";
  background: var(--yellow);
}

.service-hero {
  position: relative;
  min-height: calc(82vh - var(--header));
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.compact-service-hero {
  min-height: 58vh;
}

.service-hero-media,
.service-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: calc(82vh - var(--header));
  padding-block: clamp(76px, 10vw, 132px);
}

.hero-copy,
.service-hero-inner > div {
  min-width: 0;
}

.compact-service-hero .service-hero-inner {
  min-height: 58vh;
}

.service-hero h1 {
  max-width: min(100%, 860px);
  margin: 0;
  font-size: clamp(3.25rem, 7vw, 6.3rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.service-hero h1::after {
  display: block;
  width: 86px;
  height: 7px;
  margin-top: 26px;
  content: "";
  background: var(--yellow);
}

.hero-intro {
  max-width: min(100%, 440px);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.24rem);
  font-weight: 650;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-mobile-van {
  display: none;
}

.quote-card {
  padding: clamp(18px, 2.4vw, 26px);
  color: var(--black);
  background: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.quote-card h2 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.quote-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.74);
}

.quote-card label {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 800;
}

.quote-card input,
.quote-card textarea {
  width: 100%;
  min-height: 44px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 6px;
  outline: none;
  padding: 11px 12px;
}

.quote-card textarea {
  resize: vertical;
  min-height: 92px;
}

.quote-card input:focus,
.quote-card textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.18);
}

.quote-card ::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.form-submit {
  width: 100%;
  margin-top: 16px;
}

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

.quote-card .btn-primary:hover {
  color: var(--yellow);
  background: #111111;
  border-color: var(--black);
}

.form-status {
  min-height: 22px;
  margin-top: 12px !important;
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status.is-error {
  color: var(--black);
}

.form-status.is-success {
  color: var(--black);
}

.hp-field {
  position: absolute;
  left: -100vw;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.72);
  border: 0;
  backdrop-filter: blur(8px);
}

.quote-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.modal-quote-card {
  width: 100%;
}

.quote-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--yellow);
  background: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 8px;
}

.quote-modal-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.proof-strip {
  color: var(--black);
  background: var(--yellow);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px 22px;
  border-right: 1px solid rgba(0, 0, 0, 0.26);
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--black);
  border-radius: 8px;
}

.proof-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-grid h2 {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.05;
}

.proof-grid p {
  margin: 3px 0 0;
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.25;
}

.section {
  padding-block: clamp(68px, 9vw, 118px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
}

.rich-copy p {
  margin: 0 0 18px;
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 660px;
}

.section-heading p {
  max-width: 620px;
  margin: 0;
  font-size: 1.05rem;
}

.services,
.process-section,
.jobs-section,
.faq-section {
  background: var(--panel);
}

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

.service-photo-grid,
.local-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-photo-grid {
  margin-bottom: 22px;
}

.service-photo-card {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-radius: 10px;
  border: 1px solid #deded8;
}

.service-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.86));
}

.service-photo-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}

.service-photo-card span {
  display: block;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-photo-card strong {
  display: block;
  margin-top: 5px;
  font-size: 1.08rem;
  line-height: 1.05;
}

.service-photo-card:hover img {
  transform: scale(1.035);
}

.local-photo-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 24px;
}

.proof-photo-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 0, 0.22);
  border-radius: 10px;
  background: #121212;
}

.proof-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}

.proof-photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.86));
}

.proof-photo-card div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
}

.proof-photo-card span {
  display: block;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-photo-card strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.05;
}

.photo-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 150px;
  padding: 18px;
  overflow: hidden;
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.16), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 12px);
  border: 1px dashed rgba(0, 0, 0, 0.32);
  border-radius: 10px;
}

.photo-placeholder::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 34px;
  content: "";
  border: 3px solid currentColor;
  border-radius: 7px;
  opacity: 0.34;
}

.photo-placeholder::after {
  position: absolute;
  top: 47px;
  right: 28px;
  width: 24px;
  height: 16px;
  content: "";
  background: currentColor;
  clip-path: polygon(0 100%, 44% 30%, 64% 58%, 78% 38%, 100% 100%);
  opacity: 0.34;
}

.photo-placeholder span {
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-placeholder strong {
  max-width: 16ch;
  margin-top: 5px;
  font-size: 1.05rem;
  line-height: 1.05;
}

.photo-placeholder.dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.12), rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 12px);
  border-color: rgba(255, 212, 0, 0.48);
}

.photo-placeholder.dark span {
  color: var(--yellow);
}

.service-card {
  min-height: 235px;
  padding: 24px;
  background: var(--white);
  border: 1px solid #deded8;
  border-radius: 10px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 7px;
  font-weight: 950;
}

.service-card h3,
.steps h3,
.advice-grid h3,
.proof-panel h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.1;
}

.service-card p,
.steps p,
.advice-grid p,
.proof-panel p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding: 18px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #deded8;
  border-radius: 10px;
}

.section-cta p {
  margin: 0;
  font-weight: 850;
}

.section-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-cta .btn {
  min-height: 42px;
  padding: 11px 15px;
  font-size: 0.88rem;
}

.section-cta.inline {
  margin-top: 12px;
}

.section-cta.span-all {
  grid-column: 1 / -1;
}

.service-intro-section {
  background: var(--white);
}

.service-inline-photo {
  aspect-ratio: 16 / 9;
  margin-top: 28px;
  border: 1px solid #deded8;
}

.dark-photo {
  margin: 0 0 24px;
  border-color: rgba(255, 212, 0, 0.24);
}

.service-advice-section {
  background: var(--panel);
}

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-directory-section {
  background: var(--panel);
}

.service-directory-group + .service-directory-group {
  margin-top: clamp(34px, 6vw, 64px);
}

.service-directory-group .section-heading {
  margin-bottom: 18px;
}

.service-directory-group h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.service-link-card {
  display: block;
  min-height: 172px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #deded8;
  border-radius: 10px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-link-card:hover,
.service-link-card:focus-visible {
  border-color: var(--yellow-dark);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.service-link-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-link-card strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1.08;
}

.service-link-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps article {
  padding: 28px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid #deded8;
}

.steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 950;
}

.about-grid,
.emergency-grid,
.areas-grid,
.jobs-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.about-grid > div > p,
.areas-grid > div > p,
.final-grid > div > p {
  font-size: 1.08rem;
}

.tick-list,
.fault-list,
.job-list,
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tick-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 760;
}

.tick-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--yellow-dark);
  content: "✓";
  font-weight: 950;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn-dark {
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
}

.btn-dark:hover {
  color: var(--white);
  background: #141414;
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.proof-panel,
.contact-card {
  padding: clamp(24px, 4vw, 36px);
  background: var(--black);
  border-radius: 12px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.proof-panel p,
.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.emergency-section,
.final-cta {
  color: var(--white);
  background: var(--black);
}

.emergency-section h2,
.final-cta h2 {
  color: var(--white);
}

.emergency-section p,
.final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

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

.emergency-side {
  display: grid;
  gap: 16px;
}

.section-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.emergency-photo {
  aspect-ratio: 16 / 9;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 212, 0, 0.2);
}

.fault-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-weight: 800;
}

.fault-list li::before {
  position: absolute;
  top: 19px;
  left: 18px;
  width: 16px;
  height: 16px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
}

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

.advice-grid article {
  min-height: 190px;
  padding: 24px;
  background: var(--white);
  border-left: 5px solid var(--yellow);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.jobs-advice {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
}

.jobs-lead {
  position: sticky;
  top: calc(var(--header) + 24px);
  padding: clamp(26px, 4vw, 38px);
  color: var(--black);
  background: var(--yellow);
  border-radius: 14px;
}

.jobs-lead h2 {
  font-size: clamp(2.15rem, 4vw, 4.5rem);
}

.jobs-lead p {
  margin: 20px 0 0;
  color: rgba(0, 0, 0, 0.74);
  font-weight: 760;
}

.jobs-lead .section-kicker {
  color: rgba(0, 0, 0, 0.7);
}

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

.job-advice-list details {
  background: var(--white);
  border: 1px solid #deded8;
  border-radius: 12px;
  overflow: hidden;
}

.job-advice-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  list-style: none;
}

.job-advice-list summary::-webkit-details-marker {
  display: none;
}

.job-advice-list summary span {
  font-size: 1.1rem;
  font-weight: 920;
}

.job-advice-list summary em {
  padding: 8px 11px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.job-advice-list details[open] summary {
  border-bottom: 1px solid #deded8;
}

.job-advice-list p {
  margin: 0;
  padding: 18px 24px 22px;
  color: var(--muted);
  font-weight: 680;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  padding: 12px 15px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-weight: 900;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.blog-section {
  background: var(--panel);
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #deded8;
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.blog-meta {
  margin: 0 0 12px;
  color: var(--yellow-dark);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.08;
}

.blog-card p:not(.blog-meta) {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 620;
}

.blog-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}

.blog-actions .btn {
  min-height: 42px;
  padding: 11px 14px;
  font-size: 0.82rem;
}

details {
  background: var(--white);
  border: 1px solid #deded8;
  border-radius: 10px;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-card .btn {
  width: 100%;
  margin-top: 20px;
}

.contact-card a:not(.btn),
.site-footer a:not(.brand) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: clamp(26px, 5vw, 62px);
  padding-block: 54px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer li {
  margin-bottom: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom p,
.site-footer p {
  margin: 0;
}

.mobile-actions {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 25;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(5, 5, 5, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-actions.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 950;
}

.mobile-actions a[href="#quote"] {
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255, 212, 0, 0.35);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .nav {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 26px;
    color: var(--white);
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .quote-card {
    max-width: 620px;
  }

  .proof-grid,
  .service-grid,
  .service-photo-grid,
  .advice-grid,
  .blog-grid,
  .service-link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid article:nth-child(2) {
    border-right: 0;
  }

  .proof-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.26);
  }

  .split,
  .about-grid,
  .emergency-grid,
  .areas-grid,
  .jobs-advice,
  .final-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .jobs-lead {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 70px;
  }

  .shell {
    width: min(100% - 28px, var(--max));
  }

  .header-cta {
    display: none;
  }

  .nav {
    grid-template-columns: auto auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 74% 50%;
    opacity: 0.75;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.74)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.86));
  }

  .hero-inner {
    min-height: auto;
    padding-block: 52px 32px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 4.9rem);
  }

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

  .proof-grid,
  .service-grid,
  .service-photo-grid,
  .steps,
  .advice-grid,
  .faq-grid,
  .local-photo-grid,
  .blog-grid,
  .service-link-grid {
    grid-template-columns: 1fr;
  }

  .service-hero,
  .service-hero-inner {
    min-height: auto;
  }

  .service-hero-inner {
    padding-block: 70px;
  }

  .service-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.25rem);
    line-height: 0.95;
  }

  .service-hero .hero-intro {
    max-width: 21rem;
    font-size: 0.94rem;
  }

  .service-hero .hero-actions {
    width: min(100%, 21rem);
  }

  .hero-mobile-van {
    position: relative;
    display: block;
    margin: 22px -14px 30px;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 16 / 9;
    background: var(--black);
  }

  .hero-mobile-van img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 50%;
  }

  .hero-mobile-van::before,
  .hero-mobile-van::after {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 1;
    height: 42%;
    content: "";
    pointer-events: none;
  }

  .hero-mobile-van::before {
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent);
  }

  .hero-mobile-van::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1), transparent);
  }

  .quote-card {
    padding: 18px;
    color: var(--black);
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: none;
    backdrop-filter: none;
  }

  .quote-card h2,
  .quote-card p,
  .quote-card label {
    color: var(--black);
  }

  .quote-card input,
  .quote-card textarea {
    color: var(--black);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(0, 0, 0, 0.32);
  }

  .quote-card input:focus,
  .quote-card textarea:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.18);
  }

  .quote-card ::placeholder {
    color: rgba(0, 0, 0, 0.5);
  }

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

  .quote-card .btn-primary:hover {
    color: var(--yellow);
    background: #111111;
    border-color: var(--black);
  }

  .quote-card .form-status.is-error,
  .quote-card .form-status.is-success {
    color: var(--black);
  }

  .brand-logo {
    height: 40px;
    max-width: 220px;
  }

  .jobs-lead {
    padding: 24px;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .section-cta div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .job-advice-list summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .job-advice-list summary em {
    justify-self: start;
  }

  .proof-grid article {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.26);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 58px;
  }

  .service-card {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-actions {
    display: grid;
  }

  body {
    padding-bottom: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .header-cta[href^="tel:"],
  .btn[href^="tel:"],
  .mobile-actions a[href^="tel:"] {
    box-shadow: none;
  }
}
