:root {
  --bg: #080a0e;
  --panel: #121620;
  --panel-2: #181e2a;
  --text: #f4f7fb;
  --muted: #a9b3c3;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #ff8a1d;
  --orange-dark: #c45a08;
  --cyan: #29bfd2;
  --green: #8ccf77;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(8, 10, 14, 0.44);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(8, 10, 14, 0.9);
  border-color: var(--line);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 29, 0.44);
  background: #000;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.94rem;
  line-height: 1.1;
}

.brand small {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-cta,
.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 16px 32px rgba(255, 138, 29, 0.25);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  inset: 78px 16px auto;
  z-index: 19;
  display: none;
  padding: 14px;
  background: rgba(18, 22, 32, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 14px;
  color: var(--muted);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.96) 0%, rgba(8, 10, 14, 0.72) 46%, rgba(8, 10, 14, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 10, 14, 1) 0%, rgba(8, 10, 14, 0) 34%);
}

.hero-content {
  position: relative;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 54px;
}

.eyebrow,
.section-label {
  color: var(--orange);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7.2vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-copy {
  max-width: 640px;
  color: #dce3ee;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 46px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero-stats div {
  padding: 18px;
  background: rgba(18, 22, 32, 0.78);
}

.hero-stats dt {
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
}

section:not(.hero) {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 70px;
  align-items: end;
}

.intro p:last-child,
.coverage-copy p,
.quote-copy p,
.service-card p,
figure,
.process li {
  color: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.service-card,
figure,
.quote-form {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.service-card {
  min-height: 230px;
  padding: 26px;
}

.service-card.accent {
  background: linear-gradient(145deg, rgba(255, 138, 29, 0.24), var(--panel));
}

.icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--cyan);
  font-weight: 900;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: start;
}

label {
  display: grid;
  gap: 8px;
  color: #d7dfec;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  background: #0d1119;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  font: inherit;
}

textarea {
  padding-top: 12px;
  resize: vertical;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: #0d1119;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.input-row input {
  border: 0;
}

.input-row span {
  padding-right: 14px;
  color: var(--muted);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: stretch;
}

.map-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 138, 29, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 45%),
    #10151d;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: -30%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotate(-8deg);
  animation: mapGridDrift 18s linear infinite;
}

.north-east-silhouette {
  position: absolute;
  top: 22px;
  left: 50%;
  width: min(62%, 345px);
  height: calc(100% - 44px);
  object-fit: contain;
  object-position: center;
  transform: translateX(-50%);
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.28))
    drop-shadow(0 26px 36px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 28px rgba(255, 138, 29, 0.18));
}

.coverage-marker {
  position: absolute;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(8, 10, 14, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
  transform: translate(-50%, -50%);
}

.coverage-marker i {
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 138, 29, 0.9);
}

.coverage-marker i::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255, 138, 29, 0.7);
  border-radius: inherit;
  animation: markerPulse 2.2s ease-out infinite;
}

.coverage-marker.newcastle { top: 36%; left: 59%; }
.coverage-marker.sunderland { top: 43%; left: 62%; }
.coverage-marker.durham { top: 55%; left: 54%; }
.coverage-marker.hartlepool { top: 65%; left: 62%; }
.coverage-marker.middlesbrough { top: 77%; left: 58%; }
.coverage-marker.darlington { top: 79%; left: 52%; }

@keyframes markerPulse {
  0% {
    opacity: 0.85;
    transform: scale(0.6);
  }

  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}

@keyframes mapGridDrift {
  to {
    transform: rotate(-8deg) translate3d(42px, 42px, 0);
  }
}


.coverage-copy {
  align-self: center;
}

.coverage-copy ul {
  padding-left: 20px;
}

.coverage-copy li + li {
  margin-top: 10px;
}

.process ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.process ol::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 29, 0.85), transparent);
  box-shadow: 0 0 22px rgba(255, 138, 29, 0.32);
}

.process li {
  position: relative;
  min-height: 214px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 138, 29, 0.1), transparent 38%),
    var(--panel-2);
  border: 1px solid var(--line);
  counter-increment: steps;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.process li::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0.8;
}

.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 38px;
  color: var(--orange);
  background: #070a0f;
  border: 1px solid rgba(255, 138, 29, 0.56);
  box-shadow:
    inset 0 0 20px rgba(255, 138, 29, 0.08),
    0 0 26px rgba(255, 138, 29, 0.18);
  font-weight: 900;
}

.process strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.18rem;
}

.process p {
  margin: 0;
  color: var(--muted);
}

figure {
  margin: 0;
  padding: 26px;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.reviews-header .section-heading {
  margin-bottom: 0;
}

.google-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 278px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 138, 29, 0.16), transparent 46%),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.google-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #111;
  background: #fff;
  font-weight: 900;
  font-size: 1.55rem;
}

.google-summary strong {
  display: inline-block;
  margin-right: 8px;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
}

.google-summary small,
.review-card small {
  display: block;
  color: var(--muted);
}

.stars {
  color: var(--orange);
  letter-spacing: 0;
  white-space: nowrap;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
}

.review-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #111;
  background: var(--orange);
  font-weight: 900;
}

.review-card figcaption {
  color: var(--text);
  font-weight: 900;
}

blockquote {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 800;
}

.review-card blockquote {
  flex: 1;
}

.review-card small {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quote {
  width: 100%;
  max-width: none;
  padding: 92px max(40px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(120deg, rgba(255, 138, 29, 0.16), transparent 40%),
    #10141c;
}

.quote-copy {
  padding-left: clamp(0px, 1.5vw, 18px);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 48px clamp(24px, 4vw, 56px) 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 138, 29, 0.08), transparent 34%),
    #080a0e;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(2, minmax(180px, 0.75fr));
  gap: 34px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #000;
}

.footer-brand strong,
.footer-brand small,
.site-footer h2,
.site-footer a,
.site-footer span {
  display: block;
}

.footer-brand strong,
.site-footer h2 {
  color: var(--text);
}

.footer-brand small {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer p {
  max-width: 360px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a + a,
.site-footer a + span {
  margin-top: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(1160px, 100%);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.legal-page {
  min-height: 100vh;
  padding-top: 104px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 138, 29, 0.12), transparent 26%),
    var(--bg);
}

.legal-hero,
.legal-content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-hero {
  padding: 76px 0 34px;
}

.legal-hero h1 {
  max-width: none;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.legal-hero p,
.legal-content p {
  color: var(--muted);
}

.legal-content {
  padding: 28px 0 90px;
}

.legal-content h2 {
  margin: 38px 0 10px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.legal-content a {
  color: var(--orange);
  font-weight: 800;
}

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

  .menu-button {
    display: block;
  }

  .mobile-nav.open {
    display: block;
  }

  .intro,
  .coverage-layout,
  .quote {
    grid-template-columns: 1fr;
  }

  .reviews-header {
    align-items: stretch;
    flex-direction: column;
  }

  .google-summary {
    min-width: 0;
  }

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

  .process ol::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

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

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

  .hero {
    min-height: 92vh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 10, 14, 1) 0%, rgba(8, 10, 14, 0.48) 52%, rgba(8, 10, 14, 0.2) 100%),
      linear-gradient(90deg, rgba(8, 10, 14, 0.9), rgba(8, 10, 14, 0.3));
  }

  .hero-content {
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  .hero-stats,
  .service-grid,
  .review-grid,
  .process ol,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote {
    padding-left: 24px;
    padding-right: 24px;
  }

  .quote-copy {
    padding-left: 0;
  }

  section:not(.hero) {
    padding: 62px 0;
  }

  .service-card,
  .process li {
    min-height: auto;
  }

  .step-icon {
    margin-bottom: 24px;
  }

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

  .site-footer {
    align-items: flex-start;
  }

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

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