:root {
  --navy: #18110b;
  --navy-deep: #050403;
  --red: #ff6a00;
  --red-dark: #e44912;
  --ink: #17120d;
  --muted: #665f55;
  --line: #eadfce;
  --soft: #fff7ec;
  --mist: #fff0d7;
  --white: #ffffff;
  --gold: #ffc400;
  --hot-red: #ff252f;
  --shadow: 0 18px 45px rgba(24, 17, 11, 0.16);
  --radius: 8px;
  --radius-sm: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 247, 236, 0.44), rgba(255, 255, 255, 0) 430px),
    var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(199, 37, 49, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--navy);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-weight: 800;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

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

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

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.narrow {
  max-width: 860px;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: 3.3rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.top-strip {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.92rem;
}

.top-strip::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--hot-red), var(--gold));
  background-size: 220% 100%;
  animation: strip-flow 8s linear infinite;
}

.top-strip .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip a {
  color: var(--white);
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(220, 228, 238, 0.85);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(16, 36, 72, 0.1);
  background: rgba(255, 255, 255, 0.985);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 236px;
  height: 74px;
  object-fit: contain;
  border-radius: 0;
  transition: transform 180ms ease;
}

.brand:hover img {
  transform: translateY(-1px);
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav a {
  position: relative;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 3px solid transparent;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--hot-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red);
  border-color: transparent;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 6px;
  padding: 0.85rem 1.05rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -55%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: left 520ms ease;
}

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

.btn:hover::before {
  left: 118%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--red) 58%, var(--hot-red));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd23b, var(--red-dark) 62%, var(--hot-red));
}

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

.btn-secondary:hover {
  background: var(--navy-deep);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero-home {
  --hero-image: url("./landing-hero-roof.webp");
}

.hero-flat {
  --hero-image: url("./flat-roof-repair.webp");
}

.hero-slate {
  --hero-image: url("./slate-repair.webp");
}

.hero-chimney {
  --hero-image: url("./chimney-flashing.webp");
}

.hero-fascia {
  --hero-image: url("./fascia-guttering.webp");
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(7, 22, 45, 0.9), rgba(7, 22, 45, 0.62), rgba(7, 22, 45, 0.18)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--hot-red));
}

.hero {
  min-height: 590px;
  display: flex;
  align-items: center;
}

.hero-full {
  min-height: 100vh;
}

.hero-content {
  width: min(760px, 100%);
  padding: 5rem 0;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #ffdadc;
}

.hero h1,
.page-hero h1 {
  color: var(--white);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}

.hero-lead {
  max-width: 680px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.6rem 0 0;
  padding: 0;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--white);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.page-hero {
  min-height: 350px;
  display: flex;
  align-items: center;
}

.page-hero-content {
  max-width: 780px;
  padding: 4rem 0;
}

.page-hero p {
  max-width: 680px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-item {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  padding: 1.2rem;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.round-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(199, 37, 49, 0.1);
  color: var(--red);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card:hover .round-icon,
.trust-item:hover .round-icon,
.contact-method:hover .round-icon {
  transform: translateY(-2px) rotate(-3deg);
  background: rgba(255, 106, 0, 0.12);
  box-shadow: 0 10px 24px rgba(255, 106, 0, 0.16);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.service-card,
.project-card,
.value-card,
.step-card,
.area-card,
.review-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(16, 36, 72, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before,
.project-card::before,
.value-card::before,
.step-card::after,
.area-card::before,
.review-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--hot-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover,
.project-card:hover,
.value-card:hover,
.step-card:hover,
.area-card:hover,
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, 0.28);
  box-shadow: 0 18px 38px rgba(24, 17, 11, 0.12);
}

.service-card:hover::before,
.project-card:hover::before,
.value-card:hover::before,
.step-card:hover::after,
.area-card:hover::before,
.review-card:hover::before {
  transform: scaleX(1);
}

.service-card {
  padding: 1.3rem;
}

.service-card .round-icon {
  margin-bottom: 1rem;
}

.service-card h3,
.value-card h3,
.step-card h3,
.area-card h3 {
  margin-bottom: 0.55rem;
}

.service-card p,
.value-card p,
.step-card p,
.area-card p {
  color: var(--muted);
}

.area-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.area-summary-grid div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

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

.area-summary-grid strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.area-summary-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.18rem;
}

.service-area-visual {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-area-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.service-area-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.service-area-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(24, 17, 11, 0.18);
}

.service-area-visual:hover::after {
  opacity: 1;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.location-list a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(16, 36, 72, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
  padding: 0.6rem 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(16, 36, 72, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.location-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 0, 0.42);
  color: var(--red);
  box-shadow: 0 12px 24px rgba(24, 17, 11, 0.1);
}

.areas-showcase {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 5.6rem;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.08), transparent 32%),
    linear-gradient(180deg, var(--white), var(--soft));
}

.areas-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(255, 106, 0, 0.09) 47% 48%, transparent 48% 100%),
    linear-gradient(45deg, transparent 0 48%, rgba(24, 17, 11, 0.045) 48% 49%, transparent 49% 100%);
  background-size: 118px 118px, 92px 92px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 70%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 70%);
}

.areas-showcase .container {
  width: min(1220px, calc(100% - 2rem));
}

.areas-showcase-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 2.25rem 3.5rem;
  align-items: start;
}

.areas-heading {
  grid-column: 1 / -1;
  max-width: 1080px;
}

.areas-heading h1 {
  max-width: 1080px;
  color: var(--navy);
  font-size: 3.25rem;
  line-height: 1.08;
}

.areas-heading h1 span {
  color: var(--red);
}

.areas-intro {
  max-width: 680px;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.48;
}

.areas-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 1.55rem;
}

.areas-columns ul {
  display: grid;
  gap: 0.18rem;
  margin: 0;
  padding-left: 1.15rem;
}

.areas-columns li {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.36;
}

.areas-columns li::marker {
  color: var(--navy);
  font-size: 0.9em;
}

.areas-columns .areas-beyond {
  margin-top: 0.25rem;
  color: var(--red);
  list-style: none;
}

.areas-map-frame {
  position: relative;
  z-index: 0;
  justify-self: end;
  width: min(100%, 590px);
  align-self: start;
  transform: translateZ(0);
}

.areas-map-frame::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -34px;
  z-index: -1;
  width: 92%;
  height: 88%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  box-shadow: 0 22px 34px rgba(255, 106, 0, 0.2);
  animation: map-accent-pulse 6s ease-in-out infinite;
}

.areas-map-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.areas-map-frame img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 1px solid rgba(24, 17, 11, 0.16);
  box-shadow: 0 24px 50px rgba(24, 17, 11, 0.2);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.areas-map-frame:hover img {
  transform: translate(-6px, -6px);
  box-shadow: 0 30px 60px rgba(24, 17, 11, 0.24);
}

.area-proof {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 12px 32px rgba(24, 17, 11, 0.08);
}

.area-proof-grid div {
  position: relative;
  min-height: 132px;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.25rem;
}

.area-proof-grid div::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto auto;
  width: 36px;
  height: 20px;
  border-top: 3px solid rgba(255, 106, 0, 0.34);
  border-right: 3px solid rgba(255, 106, 0, 0.34);
  transform: rotate(-45deg);
}

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

.area-proof-grid strong {
  color: var(--navy);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  line-height: 1.1;
}

.area-proof-grid span {
  max-width: 290px;
  margin-top: 0.55rem;
  color: var(--muted);
  font-weight: 700;
}

.service-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.service-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
}

.service-badges li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--navy);
  padding: 0.3rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 900;
}

.media-card img,
.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.project-card:hover img,
.media-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.03);
}

.project-card .project-body {
  padding: 1.2rem;
}

.project-card .tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  background: rgba(16, 36, 72, 0.08);
  color: var(--navy);
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 900;
}

.project-card p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.image-stack {
  position: relative;
}

.image-stack img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 42%;
  border-right: 8px solid var(--red);
  border-bottom: 8px solid var(--red);
  border-radius: 0 0 var(--radius) 0;
  pointer-events: none;
}

.check-list,
.plain-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.check-list li,
.plain-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.38rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(199, 37, 49, 0.12);
}

.quote-band {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(199, 37, 49, 0.22), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent);
  pointer-events: none;
}

.quote-band .container {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.quote-band h2,
.quote-band h3 {
  color: var(--white);
}

.quote-band p {
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.84);
}

.quote-form,
.contact-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

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

label {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 0.8rem 0.85rem;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(255, 106, 0, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.4rem;
}

.form-copy-template {
  width: 100%;
  min-height: 180px;
  margin-top: 16px;
  resize: vertical;
  font-size: 0.94rem;
  line-height: 1.55;
}

.form-whatsapp-fallback {
  margin-top: 14px;
}

.honeypot {
  display: none;
}

.privacy-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.privacy-panel > * + * {
  margin-top: 0.9rem;
}

.privacy-panel h2 {
  color: var(--navy);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  margin-top: 1.45rem;
}

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

.privacy-panel .policy-date {
  color: var(--accent-deep);
  font-weight: 900;
}

.steps {
  counter-reset: step;
}

.step-card {
  padding: 1.25rem;
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.feature-band {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
  padding: 2.1rem 0;
}

.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(255, 196, 0, 0.14) 46% 47%, transparent 47% 100%),
    linear-gradient(45deg, transparent 0 48%, rgba(255, 106, 0, 0.14) 48% 49%, transparent 49% 100%);
  background-size: 96px 96px, 72px 72px;
  opacity: 0.55;
}

.feature-band .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.feature-band h2 {
  color: var(--white);
  font-size: 1.8rem;
}

.feature-band p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.4rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.6rem;
}

.stat {
  border-left: 4px solid var(--red);
  padding-left: 1rem;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1.85rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-weight: 800;
}

.review-card {
  padding: 1.25rem;
}

.review-card p {
  color: var(--muted);
  margin-top: 0.55rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 36, 72, 0.05);
}

.faq-list summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  padding: 1rem 1.1rem;
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-list p {
  padding: 1rem 1.1rem 1.1rem;
  color: var(--muted);
}

.mini-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(16, 36, 72, 0.06);
}

.mini-cta h3 {
  margin-bottom: 0.25rem;
}

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

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-method strong {
  display: block;
  color: var(--navy);
}

.contact-method a,
.contact-method span {
  color: var(--muted);
}

.map-panel {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16, 36, 72, 0.92), rgba(16, 36, 72, 0.78)),
    url("./hero-roof-repair.webp") center / cover;
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.map-panel h3 {
  color: var(--white);
  font-size: 2rem;
}

.map-panel p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 0.85fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer h3,
.footer h4 {
  color: var(--white);
}

.footer-logo {
  width: 260px;
  height: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 4px;
  padding: 0;
  margin-bottom: 1rem;
}

.footer p {
  margin-top: 0.8rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1rem 0;
  font-size: 0.9rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.mobile-action-bar {
  display: none;
}

@keyframes strip-flow {
  to {
    background-position: 220% 0;
  }
}

@keyframes map-accent-pulse {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(6px, -4px);
  }
}

html.has-js [data-animate] {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
  transition: opacity 620ms ease, transform 620ms ease, filter 620ms ease;
}

html.has-js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html.has-js [data-animate] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 4.4rem;
  }

  .areas-heading h1 {
    font-size: 3.55rem;
  }
}

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

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

  .split,
  .split.reverse,
  .quote-band .container {
    grid-template-columns: 1fr;
  }

  .feature-band .container {
    grid-template-columns: 1fr;
  }

  .areas-showcase {
    padding: 4rem 0 4.6rem;
  }

  .areas-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .areas-heading h1 {
    font-size: 3.2rem;
  }

  .areas-map-frame {
    justify-self: start;
    width: min(100%, 660px);
  }

  .areas-map-frame img {
    min-height: 360px;
  }

  .area-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 74px;
  }

  .top-strip .container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 0.65rem 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 190px;
    height: 62px;
  }

  .brand span {
    width: 1px;
    height: 1px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 128px 1rem auto;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0.45rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0.95rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero {
    min-height: 560px;
  }

  .hero::before,
  .page-hero::before {
    background-image:
      linear-gradient(180deg, rgba(7, 22, 45, 0.86), rgba(7, 22, 45, 0.76)),
      var(--hero-image);
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .section {
    padding: 3.8rem 0;
  }

  .grid-2,
  .grid-3,
  .trust-grid,
  .footer-main,
  .stat-row,
  .areas-columns,
  .area-summary-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
  }

  .form-field.full {
    grid-column: auto;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--navy-deep);
    box-shadow: 0 -10px 28px rgba(16, 36, 72, 0.22);
  }

  .mobile-action-bar a {
    min-height: 64px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--navy);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-action-bar a:first-child {
    background: var(--red);
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.25rem, 1120px);
  }

  .hero-content,
  .page-hero-content {
    padding: 3.3rem 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  .areas-showcase {
    padding: 3.2rem 0 3.7rem;
  }

  .areas-heading h1 {
    font-size: 2.34rem;
  }

  .areas-intro {
    font-size: 1rem;
  }

  .areas-columns {
    gap: 0.35rem;
    margin-top: 1.45rem;
  }

  .areas-columns li {
    font-size: 1rem;
  }

  .areas-map-frame::before {
    right: -14px;
    bottom: -14px;
  }

  .areas-map-frame img {
    min-height: 285px;
  }

  .area-proof-grid div {
    min-height: auto;
  }

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

  .btn {
    width: 100%;
  }

  .hero-points li {
    width: 100%;
    border-radius: 6px;
  }

  .quote-form,
  .contact-panel {
    padding: 1rem;
  }
}
