:root {
  --ink: #070b10;
  --ink-soft: #2c3642;
  --muted: #657483;
  --surface: #ffffff;
  --surface-soft: #f4f9fc;
  --surface-blue: #eaf7fd;
  --line: #d8e7ef;
  --brand: #2ea9df;
  --brand-dark: #087db4;
  --brand-deep: #07354d;
  --partner: #095ee8;
  --shadow: 0 24px 70px rgba(7, 53, 77, 0.16);
  --radius: 8px;
  --max-width: 1180px;
  --header-height: 78px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(216, 231, 239, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max-width), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  min-width: fit-content;
  text-decoration: none;
}

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

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
  color: var(--brand-deep);
}

.header-call,
.button,
.text-link,
.plan-card a,
.contact-methods a,
.contact-methods span {
  min-height: 44px;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #fff;
  background: var(--ink);
  padding: 0.68rem 0.9rem;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(7, 11, 16, 0.16);
}

.header-call svg,
.button svg,
.proof-item svg,
.service-card svg,
.feature-list svg,
.contact-methods svg,
.about-values svg {
  width: 1.08rem;
  height: 1.08rem;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4.7vw, 3.45rem);
}

h3 {
  font-size: 1.18rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: var(--brand-deep);
}

.hero {
  min-height: clamp(610px, 84svh, 780px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(4rem, 9vw, 6.8rem) max(16px, calc((100% - var(--max-width)) / 2)) 5rem;
  background:
    linear-gradient(90deg, rgba(5, 17, 25, 0.9), rgba(7, 53, 77, 0.74) 44%, rgba(7, 53, 77, 0.14)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=2100&q=84") center / cover;
}

.hero-content {
  max-width: 780px;
}

.hero .eyebrow,
.page-hero .eyebrow,
.brand-band .eyebrow,
.contact-page .eyebrow {
  color: #aee3fb;
}

.hero-copy,
.page-hero p,
.brand-band p,
.contact-copy p {
  max-width: 700px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2.1vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
  margin-top: 2rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 1.15rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.68rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 820;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.86rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border 160ms ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.plan-card a:hover,
.plan-card a:focus-visible,
.contact-methods a:hover,
.contact-methods a:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--partner);
  box-shadow: 0 16px 34px rgba(9, 94, 232, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #064bc0;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.proof-strip {
  width: min(var(--max-width), calc(100% - 32px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 84px;
  padding: 1rem;
  background: #fff;
  color: var(--ink-soft);
  font-weight: 850;
}

.proof-item svg,
.service-card svg,
.feature-list svg,
.about-values svg {
  color: var(--brand-dark);
}

.section {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4.2rem, 9vw, 7rem) 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 2rem;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: end;
}

.section-heading p,
.audience-card p,
.service-card p,
.trust-intro p,
.problem-grid p,
.package-card p,
.business-split p,
.response-section p,
.response-grid p,
.process-step p,
.plan-card p,
.story-section p,
.partner-section p,
.about-values p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.audience-grid,
.service-grid,
.process-grid,
.plan-grid,
.business-split,
.story-section,
.partner-section,
.contact-page,
.site-footer {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
}

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

.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.trust-intro {
  min-width: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.trust-grid article {
  min-height: 138px;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(7, 53, 77, 0.07);
}

.trust-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.15;
}

.trust-grid span {
  display: block;
  margin-top: 0.62rem;
  color: var(--muted);
}

.coverage-copy p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.coverage-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.42rem 0.68rem;
  color: var(--brand-deep);
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 820;
}

.coverage-map {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.coverage-map img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.sussex-boundary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sussex-boundary-halo,
.sussex-boundary-line {
  fill: rgba(225, 29, 46, 0.06);
  vector-effect: non-scaling-stroke;
}

.sussex-boundary-halo {
  stroke: #fff;
  stroke-width: 10;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.sussex-boundary-line {
  stroke: #e11d2e;
  stroke-width: 4;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.audience-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(7, 53, 77, 0.08);
}

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

.audience-card div {
  padding: 1.25rem;
}

.text-link,
.plan-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 1rem;
  color: var(--partner);
  font-weight: 850;
  text-decoration: none;
}

.service-preview {
  border-top: 1px solid var(--line);
}

.solutions-section {
  padding-bottom: clamp(3rem, 7vw, 5.8rem);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.solution-tile {
  display: flex;
  min-width: 0;
  min-height: 260px;
  flex-direction: column;
  padding: 1.25rem;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.solution-tile:hover,
.solution-tile:focus-visible {
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.solution-tile svg {
  width: 2rem;
  height: 2rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.solution-tile span {
  color: var(--partner);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-tile h3 {
  margin-top: 0.75rem;
}

.solution-tile p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.problem-section,
.package-section {
  border-top: 1px solid var(--line);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.problem-grid article {
  min-height: 245px;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.problem-grid svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}

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

.service-grid-large {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.process-step,
.plan-card,
.about-values article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  min-height: 240px;
  padding: 1.2rem;
}

.service-card svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
}

.brand-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(3.2rem, 7vw, 5rem) max(16px, calc((100% - var(--max-width)) / 2));
  color: #fff;
  background:
    linear-gradient(120deg, rgba(5, 17, 25, 0.94), rgba(7, 53, 77, 0.92)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.brand-band h2 {
  max-width: 760px;
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: clamp(4rem, 9vw, 6.6rem) max(16px, calc((100% - var(--max-width)) / 2));
}

.page-hero > div {
  max-width: 850px;
}

.repairs-hero {
  background:
    linear-gradient(90deg, rgba(5, 17, 25, 0.9), rgba(7, 53, 77, 0.58)),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.business-hero {
  background:
    linear-gradient(90deg, rgba(5, 17, 25, 0.9), rgba(7, 53, 77, 0.56)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(5, 17, 25, 0.9), rgba(7, 53, 77, 0.54)),
    url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1900&q=84") center / cover;
}

.process-section {
  border-top: 1px solid var(--line);
}

.repair-journey {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(4.2rem, 8vw, 6.4rem) max(16px, calc((100% - var(--max-width)) / 2));
  color: #fff;
  border-top: 0;
  background:
    linear-gradient(120deg, rgba(7, 53, 77, 0.98), rgba(7, 11, 16, 0.96)),
    linear-gradient(180deg, rgba(46, 169, 223, 0.18), rgba(46, 169, 223, 0));
  overflow: hidden;
}

.repair-journey .section-heading {
  margin-bottom: 1.2rem;
}

.repair-journey .eyebrow {
  color: #8edafd;
}

.repair-journey h2 {
  max-width: 840px;
  color: #fff;
}

.repair-journey .process-lede {
  align-self: end;
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.process-promise {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  min-height: 76px;
  max-width: 920px;
  padding: 0.85rem 1rem;
  margin: 0 0 1.3rem;
  color: #fff;
  background: rgba(46, 169, 223, 0.16);
  border: 1px solid rgba(142, 218, 253, 0.42);
  border-radius: var(--radius);
}

.process-promise svg {
  width: 1.35rem;
  height: 1.35rem;
  color: #8edafd;
}

.process-promise strong {
  font-size: 0.95rem;
}

.process-promise span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.76);
}

.process-grid,
.plan-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.process-step,
.plan-card {
  padding: 1.25rem;
}

.repair-journey .process-grid {
  position: relative;
  gap: 1rem;
  margin-top: 0;
}

.repair-journey .process-step {
  position: relative;
  min-height: 285px;
  padding: 1.25rem;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff, #f3fbff);
  border-color: rgba(142, 218, 253, 0.42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.repair-journey .process-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--partner));
}

.repair-journey .process-step::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -34px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(46, 169, 223, 0.16);
  border-radius: 999px;
}

.process-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  color: #fff;
  background: var(--partner);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(9, 94, 232, 0.22);
}

.process-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.process-step span {
  display: inline-block;
  color: var(--partner);
  font-weight: 950;
  margin-bottom: 1.2rem;
}

.repair-journey .process-step span {
  position: absolute;
  top: 1.3rem;
  right: 1.25rem;
  margin: 0;
  color: rgba(7, 53, 77, 0.16);
  font-size: 2.45rem;
  line-height: 1;
}

.repair-journey .process-step h3,
.repair-journey .process-step p {
  position: relative;
  z-index: 1;
}

.repair-journey .process-step h3 {
  font-size: 1.28rem;
}

.business-split,
.landing-section,
.story-section,
.partner-section,
.contact-page {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  align-items: center;
}

.landing-section {
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  min-height: 64px;
  padding: 0.78rem;
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.plans-section {
  padding-top: 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.package-card,
.plan-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
}

.package-card {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.package-featured,
.plan-featured {
  border-color: rgba(46, 169, 223, 0.65);
  box-shadow: var(--shadow);
}

.package-card span,
.plan-card > span {
  width: fit-content;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.9rem;
  color: var(--partner);
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card ul,
.plan-card ul {
  display: grid;
  gap: 0.42rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.package-card li,
.plan-card li {
  position: relative;
  padding-left: 1.15rem;
}

.package-card li::before,
.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--brand);
}

.package-card a {
  margin-top: auto;
  color: var(--partner);
  font-weight: 850;
  text-decoration: none;
}

.plan-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--brand-deep);
  background: var(--surface-blue);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.plan-card a {
  margin-top: auto;
}

.response-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.response-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.response-grid article {
  min-height: 170px;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.response-grid strong {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.8rem;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 50%;
}

.about-values {
  display: grid;
  gap: 0.9rem;
}

.about-values article {
  padding: 1rem;
}

.about-values svg {
  width: 1.6rem;
  height: 1.6rem;
  margin-bottom: 0.8rem;
}

.partner-section {
  padding-top: 0;
}

.partner-section img {
  width: min(420px, 100%);
  margin-inline: auto;
}

.sectors-section {
  border-top: 1px solid var(--line);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.sector-grid span {
  min-width: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0.85rem;
  color: var(--brand-deep);
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.partner-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  align-items: center;
  gap: clamp(1rem, 3vw, 1.8rem);
  margin-top: 1.4rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(7, 53, 77, 0.08);
}

.partner-callout p {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.partner-callout img {
  width: min(360px, 100%);
  justify-self: center;
}

.contact-page {
  min-height: calc(100svh - var(--header-height));
  padding: clamp(4.2rem, 8vw, 6.8rem) max(16px, calc((100% - var(--max-width)) / 2));
  color: #fff;
  background:
    linear-gradient(120deg, rgba(5, 17, 25, 0.94), rgba(7, 53, 77, 0.9)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.contact-methods {
  display: grid;
  gap: 0.78rem;
  margin-top: 1.5rem;
}

.contact-methods a,
.contact-methods span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  text-decoration: none;
  font-weight: 820;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.86rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 0.42rem;
}

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

.field-full,
.contact-form .button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form label span {
  color: var(--muted);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.form-helper {
  margin: 0.1rem 0 0;
  padding: 0.72rem;
  color: var(--brand-deep);
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.45;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.76rem 0.84rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  border: 0;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--partner);
  font-weight: 780;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 2.4rem 0;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(0, 1fr));
  align-items: start;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0.8rem 0 0;
}

.footer-column {
  display: grid;
  gap: 0.48rem;
}

.footer-column h2 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span,
.footer-links a {
  color: var(--muted);
  font-weight: 780;
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--brand-dark);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  text-align: right;
}

@media (max-width: 1080px) {
  .service-grid,
  .solution-grid,
  .problem-grid,
  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .header-call span {
    display: none;
  }

  .hero,
  .audience-grid,
  .split-heading,
  .trust-section,
  .business-split,
  .landing-section,
  .response-section,
  .story-section,
  .partner-section,
  .contact-page,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .process-grid,
  .plan-grid,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-callout,
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    align-items: end;
  }

  .site-footer,
  .copyright {
    text-align: left;
  }
}

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

  .brand-logo {
    height: 48px;
  }

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

  .nav-links {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0.55rem 16px 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 42px rgba(7, 53, 77, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .nav-links a::after {
    display: none;
  }

  .header-call {
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .hero,
  .page-hero,
  .contact-page {
    padding-inline: 16px;
  }

  .hero {
    min-height: 720px;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-position: 58% center;
  }

  .page-hero {
    min-height: 570px;
  }

  .proof-strip,
  .coverage-section,
  .service-grid,
  .solution-grid,
  .trust-grid,
  .problem-grid,
  .package-grid,
  .response-grid,
  .sector-grid,
  .process-grid,
  .plan-grid,
  .feature-list,
  .contact-form,
  .partner-callout {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .proof-item {
    min-height: 70px;
  }

  .section {
    width: min(100% - 32px, var(--max-width));
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .repair-journey {
    width: 100%;
    padding-inline: 16px;
  }

  .repair-journey .section-heading {
    gap: 1rem;
  }

  .process-promise {
    grid-template-columns: auto 1fr;
  }

  .process-promise span {
    grid-column: 1 / -1;
  }

  .section > *,
  .hero-content,
  .page-hero > div,
  .partner-callout > * {
    min-width: 0;
  }

  .plans-section,
  .partner-section {
    padding-top: 0;
  }

  .brand-band {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 480px) {
  .nav-shell,
  .site-footer {
    width: min(100% - 24px, var(--max-width));
  }

  h1 {
    font-size: clamp(2.2rem, 10.5vw, 2.95rem);
  }

  h2 {
    font-size: clamp(1.72rem, 8.5vw, 2.25rem);
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero p,
  .hero-copy {
    font-size: 1rem;
  }

  .hero-points span {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .repair-journey .process-step {
    min-height: auto;
  }

  .repair-journey .process-step span {
    font-size: 2rem;
  }
}

@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;
  }
}
