:root {
  --ink: #06101f;
  --charcoal: #101820;
  --steel: #263647;
  --mist: #eef8ff;
  --paper: #ffffff;
  --lime: #b8ff18;
  --cyan: #00aeef;
  --blue: #0758e8;
  --gold: #ffb800;
  --red: #ff263b;
  --line: rgba(6, 16, 31, 0.14);
  --shadow: 0 26px 70px rgba(6, 16, 31, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 8%, rgba(0, 174, 239, 0.25), transparent 20rem),
    radial-gradient(circle at 94% 22%, rgba(184, 255, 24, 0.25), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f2fbff 45%, #ffffff 74%, #06101f 100%);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.55;
  background-image:
    linear-gradient(90deg, rgba(6, 16, 31, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(6, 16, 31, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
  padding: 10px clamp(16px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 3px solid var(--ink);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(86px, 11vw, 132px);
  filter: drop-shadow(5px 7px 0 rgba(6, 16, 31, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  border: 2px solid transparent;
  border-radius: 7px;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--paper);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--cyan);
}

.site-nav .nav-cta,
.button.primary {
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 7px;
  box-shadow: 4px 4px 0 var(--cyan);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 3px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1.24fr);
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  min-height: calc(100vh - 88px);
  padding: clamp(44px, 6vw, 82px) clamp(16px, 5vw, 74px);
  overflow: hidden;
}

.hero::after,
.page-hero::after,
.contact-hero::after {
  position: absolute;
  inset: auto -8vw 7% auto;
  z-index: -1;
  width: min(720px, 62vw);
  height: min(240px, 22vw);
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--lime), var(--red));
  clip-path: polygon(0 38%, 100% 0, 88% 45%, 100% 100%, 7% 74%);
  filter: saturate(1.3);
}

.paint-burst {
  position: absolute;
  inset: 7% auto auto 38%;
  z-index: -1;
  width: 42vw;
  max-width: 700px;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(184, 255, 24, 0.35) 0 7%, transparent 8%),
    repeating-conic-gradient(from 18deg, rgba(0, 174, 239, 0.16) 0 8deg, transparent 8deg 17deg);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.tag,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 7px;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.tag.dark {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--lime);
}

h1 {
  max-width: 100%;
  font-size: clamp(4rem, 7.4vw, 8rem);
}

.home-hero h1 {
  max-width: 680px;
  font-size: clamp(4.2rem, 6.7vw, 7.2rem);
}

.page-hero h1,
.contact-hero h1 {
  max-width: 1000px;
  font-size: clamp(4rem, 8.5vw, 8.8rem);
}

.hero-copy > p:not(.tag),
.page-hero > p:not(.tag),
.contact-hero p,
.nottingham-cta p,
.split-showcase p,
.area-content p,
.local-seo-grid p,
.service-page-grid p,
.review-band p,
.quote-aside li {
  max-width: 720px;
  color: #354153;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.82);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--cyan);
}

.hero-points,
.service-strip,
.area-cloud,
.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points {
  margin-top: 34px;
}

.hero-points span,
.service-strip a,
.area-cloud span,
.process-grid span {
  padding: 10px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 7px;
  box-shadow: 4px 4px 0 rgba(6, 16, 31, 0.85);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 580px;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 14px 14px 0 var(--cyan), var(--shadow);
  transform: rotate(1.2deg);
}

.hero-logo {
  position: absolute;
  z-index: 4;
  left: 2%;
  top: -9%;
  width: min(34vw, 340px);
  filter: drop-shadow(8px 12px 0 rgba(6, 16, 31, 0.3));
  transform: rotate(-5deg);
}

section {
  padding: clamp(58px, 8vw, 112px) clamp(16px, 5vw, 74px);
}

.quick-services {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(-9deg, rgba(0, 174, 239, 0.13) 0 22px, rgba(184, 255, 24, 0.15) 22px 44px, rgba(255, 184, 0, 0.12) 44px 66px);
  border-block: 3px solid var(--ink);
}

.quick-services h2,
.impact-band h2,
.nottingham-cta h2,
.split-showcase h2,
.process-wall h2,
.review-band h2,
.area-content h2,
.local-seo-grid h2,
.service-page-grid h2,
.quote-aside h2 {
  max-width: 980px;
  font-size: clamp(3rem, 6.5vw, 6.4rem);
}

.local-seo-grid h2,
.service-page-grid h2 {
  max-width: 100%;
  font-size: clamp(2.2rem, 2.8vw, 3.45rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.service-strip {
  margin-top: 30px;
}

.split-showcase {
  display: grid;
  gap: 18px;
}

.split-showcase article {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  padding: clamp(16px, 2.5vw, 28px);
  background: rgba(255, 255, 255, 0.78);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 rgba(6, 16, 31, 0.14);
}

.split-showcase article:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
}

.split-showcase article:nth-child(even) img {
  order: 2;
}

.split-showcase img,
.gallery-card img,
.service-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.impact-band,
.review-band {
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(6, 16, 31, 0.9), rgba(6, 16, 31, 0.98)),
    url("assets/spray-hero.png") center / cover;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.impact-grid div,
.local-seo-grid article,
.service-page-grid article,
.quote-aside {
  overflow: hidden;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 rgba(6, 16, 31, 0.18);
}

.impact-grid div {
  color: var(--ink);
}

.impact-grid strong,
.service-page-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.impact-grid span {
  font-weight: 900;
}

.nottingham-cta,
.area-content,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.page-hero,
.contact-hero {
  position: relative;
  min-height: 56vh;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.62)),
    url("assets/spray-hero.png") center / cover;
  border-bottom: 3px solid var(--ink);
}

.services-hero {
  min-height: 48vh;
}

.services-image-grid {
  padding-top: clamp(36px, 5vw, 70px);
}

.gallery-hero {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
    url("assets/kitchen-spraying.png") center / cover;
}

.area-hero {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.64)),
    url("assets/commercial-spraying.png") center / cover;
}

.service-page-grid,
.gallery-grid,
.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-page-grid article {
  min-height: 300px;
}

.service-photo {
  display: grid;
  gap: 16px;
  align-content: start;
}

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

.services-image-grid .service-photo {
  padding: 14px;
}

.services-image-grid .service-photo img {
  aspect-ratio: 4 / 3;
}

.services-image-grid .service-photo span {
  margin-bottom: 12px;
}

.services-image-grid .service-photo p {
  font-size: 0.96rem;
}

.process-wall {
  color: var(--paper);
  background:
    linear-gradient(120deg, rgba(6, 16, 31, 0.88), rgba(6, 16, 31, 0.95)),
    repeating-linear-gradient(-12deg, rgba(0, 174, 239, 0.22) 0 24px, rgba(184, 255, 24, 0.2) 24px 48px, rgba(255, 38, 59, 0.18) 48px 72px);
}

.process-grid {
  margin-top: 28px;
}

.gallery-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 16px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(6, 16, 31, 0.15);
}

.gallery-card.large {
  grid-column: span 2;
}

.gallery-card h2 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.review-band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 16px 0 24px;
}

.area-cloud {
  align-content: start;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
  align-items: center;
  gap: 34px;
}

.contact-hero img {
  width: min(360px, 100%);
  justify-self: center;
  filter: drop-shadow(10px 14px 0 rgba(6, 16, 31, 0.22));
}

.quote-section {
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    repeating-linear-gradient(-10deg, rgba(0, 174, 239, 0.12) 0 16px, rgba(184, 255, 24, 0.12) 16px 32px);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--cyan);
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 7px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.quote-aside ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.ba-grid,
.review-cards,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.slider-instructions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    repeating-linear-gradient(-10deg, rgba(0, 174, 239, 0.12) 0 20px, rgba(184, 255, 24, 0.16) 20px 40px);
  border-block: 4px solid var(--ink);
}

.slider-instructions h2 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.slider-instructions p:not(.tag),
.slider-help {
  color: #354153;
  font-weight: 800;
}

.instruction-steps {
  display: grid;
  gap: 12px;
}

.instruction-steps span {
  display: block;
  padding: 14px 16px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.ba-slider,
.review-cards article,
.timeline article,
.visualiser-wrap {
  padding: clamp(16px, 2.4vw, 28px);
  background: rgba(255, 255, 255, 0.9);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 9px 9px 0 rgba(6, 16, 31, 0.16);
}

.review-cards article > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.ba-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.ba-stage img,
.ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  width: 100%;
  object-position: left center;
  clip-path: inset(0 calc(100% - var(--split, 50%)) 0 0);
  border-right: 5px solid var(--lime);
  box-shadow: 8px 0 0 rgba(6, 16, 31, 0.35);
}

.ba-label {
  position: absolute;
  top: 12px;
  z-index: 4;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 7px;
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.before-label { left: 12px; }
.after-label { right: 12px; background: var(--lime); }

.ba-slider input {
  width: 100%;
  min-height: auto;
  margin: 18px 0 10px;
  accent-color: var(--lime);
}

.slider-help {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.ba-slider h2,
.review-cards h2,
.timeline h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.review-cards strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1.4rem;
}

.review-cards span,
.timeline strong {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

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

.visualiser-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin: clamp(42px, 6vw, 78px);
}

.colour-preview {
  --chosen-colour: #23282d;
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 174, 239, 0.25), transparent),
    repeating-linear-gradient(-10deg, rgba(184, 255, 24, 0.22) 0 28px, rgba(255, 184, 0, 0.18) 28px 56px),
    #f7fbff;
  border: 4px solid var(--ink);
  border-radius: 8px;
}

.preview-door {
  position: absolute;
  left: 12%;
  bottom: 0;
  width: 32%;
  height: 72%;
  background: var(--chosen-colour);
  border: 8px solid var(--ink);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.16), 10px 10px 0 rgba(6, 16, 31, 0.18);
}

.preview-door::after {
  position: absolute;
  right: 16px;
  top: 45%;
  width: 14px;
  height: 42px;
  content: "";
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 99px;
}

.preview-window {
  position: absolute;
  right: 10%;
  bottom: 18%;
  width: 38%;
  height: 46%;
  background: linear-gradient(135deg, #dff6ff, #ffffff);
  border: 18px solid var(--chosen-colour);
  outline: 7px solid var(--ink);
  box-shadow: 9px 9px 0 rgba(6, 16, 31, 0.18);
}

.preview-wall {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(0, 174, 239, 0.55), transparent 20%), radial-gradient(circle at 18% 70%, rgba(184, 255, 24, 0.55), transparent 18%);
  mix-blend-mode: multiply;
}

.colour-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.colour-buttons button {
  min-height: 48px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 7px;
  box-shadow: 4px 4px 0 var(--cyan);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.colour-buttons button.is-selected {
  background: var(--lime);
  box-shadow: 4px 4px 0 var(--ink);
}

.estimate-box {
  display: block;
  padding: 22px;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 900;
  text-transform: uppercase;
}

.sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  width: calc(100vw - 24px);
  overflow: hidden;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
}

.sticky-cta a {
  display: grid;
  min-height: 50px;
  place-items: center;
  font-weight: 900;
  text-transform: uppercase;
}

.sticky-cta a:nth-child(2) {
  background: var(--lime);
  border-inline: 3px solid var(--ink);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 85;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--ink);
  background: #25d366;
  border: 4px solid var(--ink);
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--ink);
}

.whatsapp-float svg,
.sticky-cta svg,
.social-dock svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sticky-cta a {
  gap: 6px;
}

.social-dock {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  gap: 8px;
}

.social-dock a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--cyan);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-methods a {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(6, 16, 31, 0.14);
}

.contact-methods strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.3rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.contact-methods span {
  color: #354153;
  font-weight: 800;
}

.conversion-wall {
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
    repeating-linear-gradient(-12deg, rgba(0, 174, 239, 0.13) 0 20px, rgba(184, 255, 24, 0.16) 20px 40px, rgba(255, 184, 0, 0.12) 40px 60px);
  border-block: 4px solid var(--ink);
}

.conversion-wall h2 {
  max-width: 960px;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
}

.conversion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.conversion-grid article {
  min-height: 220px;
  padding: 22px;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(6, 16, 31, 0.16);
}

.conversion-grid strong {
  display: block;
  margin-bottom: 32px;
  color: var(--red);
  font-weight: 900;
}

.conversion-grid h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.conversion-grid p {
  color: #354153;
  font-weight: 800;
}

.booking-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border-block: 4px solid var(--ink);
}

.booking-strip h2,
.colour-library h2 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.booking-strip p:not(.tag) {
  color: #354153;
  font-weight: 800;
}

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

.callback-panel {
  display: grid;
  gap: 18px;
}

.callback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    repeating-linear-gradient(-10deg, rgba(0, 174, 239, 0.1) 0 18px, rgba(184, 255, 24, 0.12) 18px 36px);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--cyan);
}

.callback-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.slot-grid button {
  display: grid;
  min-height: 92px;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.slot-grid button:hover,
.slot-grid button.is-selected {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--cyan);
}

.slot-grid button.is-selected {
  outline: 4px solid var(--lime);
}

.slot-note {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  padding: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--cyan);
  font-weight: 900;
}

.colour-library {
  background: rgba(255, 255, 255, 0.82);
  border-top: 4px solid var(--ink);
}

.colour-library-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.colour-library-grid article {
  min-height: 230px;
  padding: 20px;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 7px 7px 0 rgba(6, 16, 31, 0.16);
}

.colour-library-grid span {
  display: block;
  width: 100%;
  height: 70px;
  margin-bottom: 18px;
  background: var(--chip);
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.colour-library-grid h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.colour-library-grid p {
  color: #354153;
  font-weight: 800;
}

.faq-grid {
  counter-reset: faq;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background:
    radial-gradient(circle at 12% 10%, rgba(184, 255, 24, 0.28), transparent 22rem),
    radial-gradient(circle at 90% 15%, rgba(0, 174, 239, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(6, 16, 31, 0.94), rgba(6, 16, 31, 0.86)),
    url("assets/spray-hero.png") center / cover;
  border-block: 4px solid var(--lime);
}

.faq-grid::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(-8deg, rgba(255, 255, 255, 0.04) 0 18px, transparent 18px 42px),
    linear-gradient(180deg, transparent, rgba(6, 16, 31, 0.36));
}

.faq-grid details {
  counter-increment: faq;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 126px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(0, 174, 239, 0.95);
}

.faq-grid details[open] {
  box-shadow: 8px 8px 0 var(--lime);
}

.faq-grid summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.75rem, 2.6vw, 2.65rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

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

.faq-grid summary::before {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  content: counter(faq, decimal-leading-zero);
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1;
}

.faq-grid summary::after {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  content: "+";
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.faq-grid details[open] summary::after {
  content: "-";
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
}

.faq-grid details p {
  margin: 0;
  padding: 0 22px 22px 84px;
  color: #354153;
  font-size: 1.02rem;
  font-weight: 800;
}

.content-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    repeating-linear-gradient(-10deg, rgba(0, 174, 239, 0.1) 0 22px, rgba(184, 255, 24, 0.12) 22px 44px);
  border-block: 4px solid var(--ink);
}

.content-panel h2 {
  max-width: 920px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.content-panel p:not(.tag) {
  max-width: 780px;
  margin-top: 14px;
  color: #354153;
  font-weight: 800;
}

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

.content-list span {
  display: block;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.support-card {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 8%, rgba(184, 255, 24, 0.25), transparent 9rem),
    radial-gradient(circle at 8% 100%, rgba(0, 174, 239, 0.3), transparent 11rem),
    linear-gradient(145deg, rgba(6, 16, 31, 0.98), rgba(6, 16, 31, 0.9)),
    url("assets/spray-hero.png") center / cover;
  border: 4px solid var(--ink);
  border-radius: 10px;
  box-shadow: 10px 10px 0 var(--cyan);
}

.support-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  content: "";
  background: var(--lime);
  border: 4px solid var(--ink);
  border-radius: 50%;
  opacity: 0.9;
}

.mini-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 7px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.support-card h3 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0;
  color: var(--paper);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.support-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.support-steps span {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 rgba(184, 255, 24, 0.95);
  font-weight: 900;
}

.support-steps strong {
  display: grid;
  min-width: 42px;
  min-height: 34px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 6px;
  font-size: 0.8rem;
}

.support-email {
  position: relative;
  z-index: 1;
  display: inline-flex;
  max-width: 100%;
  margin-top: 18px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--lime);
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 28px clamp(16px, 5vw, 74px);
  color: var(--paper);
  background: var(--ink);
  border-top: 4px solid var(--lime);
}

.site-footer img {
  width: 96px;
}

.site-footer strong {
  display: block;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-footer a {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .hero,
  .nottingham-cta,
  .area-content,
  .quote-section,
  .contact-hero,
  .slider-instructions,
  .content-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-logo {
    left: 1%;
    top: -16%;
    width: min(48vw, 330px);
  }

  .impact-grid,
  .service-page-grid,
  .gallery-grid,
  .local-seo-grid,
  .faq-grid,
  .ba-grid,
  .review-cards,
  .contact-methods,
  .conversion-grid,
  .colour-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .visualiser-wrap {
    grid-template-columns: 1fr;
    margin: 24px 16px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 78px;
    width: 100%;
    max-width: 100vw;
  }

  .nav-toggle {
    display: grid;
    margin-left: auto;
    z-index: 70;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 3px);
    right: 14px;
    left: 14px;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    width: auto;
    max-width: none;
    padding: 14px;
    background: var(--paper);
    border: 3px solid var(--ink);
    border-radius: 8px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .site-nav a {
    min-width: 0;
    padding: 10px 8px;
    text-align: center;
  }

  .site-nav .nav-cta {
    box-shadow: 3px 3px 0 var(--ink);
  }

  .site-nav.is-open {
    display: grid;
  }

  .brand img {
    width: 82px;
  }

  .hero {
    display: block;
    width: 100%;
    max-width: 100vw;
    padding-top: 34px;
    overflow: hidden;
  }

  .hero > *,
  .page-hero > *,
  .contact-hero > * {
    max-width: calc(100vw - 28px);
  }

  .hero-copy > p:not(.tag),
  .page-hero > p:not(.tag),
  .contact-hero p {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: 0.98rem;
  }

  .hero-copy {
    width: calc(100vw - 70px);
    max-width: calc(100vw - 70px);
  }

  .hero-copy h1 {
    width: 100%;
  }

  h1,
  .page-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.75rem, 10.8vw, 4.2rem);
    overflow-wrap: normal;
  }

  .home-hero h1 {
    font-size: clamp(3.8rem, 13vw, 5.8rem);
  }

  .hero-logo {
    position: relative;
    top: auto;
    left: auto;
    width: min(360px, 86vw);
    margin: 0 auto -18px;
  }

  .hero-image {
    aspect-ratio: 4 / 3;
  }

  .split-showcase article,
  .split-showcase article:nth-child(even),
  .service-photo {
    grid-template-columns: 1fr;
  }

  .split-showcase article:nth-child(even) img {
    order: 0;
  }

  .impact-grid,
  .service-page-grid,
  .gallery-grid,
  .local-seo-grid,
  .faq-grid,
  .ba-grid,
  .review-cards,
  .contact-methods,
  .conversion-grid,
  .booking-strip,
  .colour-library-grid,
  .timeline,
  .quote-form,
  .callback-form {
    grid-template-columns: 1fr;
  }

  .services-image-grid {
    grid-template-columns: 1fr;
  }

  .service-photo,
  .gallery-card.large,
  .quote-form .full,
  .callback-form .full {
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .sticky-cta {
    display: grid;
  }

  .social-dock {
    display: none;
  }

  .whatsapp-float {
    bottom: 82px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .button,
  .hero-actions,
  .contact-buttons {
    width: 100%;
  }

  .hero-copy,
  .hero-copy > p:not(.tag) {
    width: calc(100vw - 96px);
    max-width: calc(100vw - 96px);
  }

  .hero-points span,
  .service-strip a,
  .area-cloud span,
  .process-grid span {
    width: 100%;
  }

  .quick-services h2,
  .impact-band h2,
  .nottingham-cta h2,
  .split-showcase h2,
  .process-wall h2,
  .review-band h2,
  .area-content h2,
  .local-seo-grid h2,
  .service-page-grid h2,
  .quote-aside h2 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .faq-grid summary {
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 76px;
    padding: 14px;
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .faq-grid summary::before {
    grid-column: 1 / -1;
    width: fit-content;
    min-width: 46px;
    height: 34px;
  }

  .faq-grid details p {
    padding: 0 16px 18px;
  }

  .home-hero h1 {
    font-size: clamp(3.4rem, 15vw, 4.9rem);
  }

  .visualiser-wrap {
    margin: 18px 12px;
  }

  .colour-preview {
    min-height: 390px;
  }

  .colour-buttons {
    grid-template-columns: 1fr;
  }

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

  body {
    padding-bottom: 74px;
  }
}
