:root {
  --navy: #0b2f63;
  --navy-deep: #071f45;
  --navy-soft: #163a73;
  --green: #5ea336;
  --green-bright: #6ab340;
  --green-dark: #4a8a28;
  --sky: #1b8ad9;
  --paper: #f3f6fb;
  --white: #ffffff;
  --ink: #0b2f63;
  --muted: #3e536c;
  --line: #d5deea;
  --shadow: 0 16px 40px rgba(11, 47, 99, 0.1);
  --radius: 20px;
  --header-h: 96px;
  --wrap: 1120px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(48px, 6.5vw, 80px);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --btn-h: 48px;
  --focus: 0 0 0 3px #fff, 0 0 0 5px var(--green-bright);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

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

.wrap {
  width: min(var(--wrap), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green-bright), var(--sky));
}

.eyebrow-on-dark {
  color: var(--green-bright);
}

.eyebrow-on-dark::before {
  background: linear-gradient(90deg, var(--green-bright), var(--sky));
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

h3 {
  font-size: 1.125rem;
}

.lede {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 46ch;
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section + .section {
  padding-top: calc(var(--section-y) * 0.35);
}

.section:not(.section-paper):not(.process) + .section:not(.section-paper):not(.process) {
  padding-top: 0;
}

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

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  max-width: 640px;
}

.section-cta {
  margin-top: 22px;
}

.text-link {
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--green-bright);
  padding-bottom: 2px;
}

.text-link:hover {
  color: var(--green-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--btn-h);
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(94, 163, 54, 0.22);
}

.btn-green:hover {
  background: var(--green-dark);
  box-shadow: 0 8px 18px rgba(74, 138, 40, 0.22);
}

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

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

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

.icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-bright);
  color: var(--white);
  flex-shrink: 0;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-bright);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
}

.check::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(0.5px, -1px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 47, 99, 0.07);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: visible;
  padding-block: 8px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  overflow: visible;
  background: transparent;
}

.logo img {
  display: block;
  height: 80px;
  width: auto;
  max-width: min(280px, 58vw);
  object-fit: contain;
  object-position: left center;
  background: transparent;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav > a:not(.btn) {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-soft);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav > a:not(.btn):hover,
.nav > a:not(.btn).is-active {
  color: var(--navy);
  background: var(--paper);
}

.nav-cta {
  margin-left: 10px;
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.875rem;
  box-shadow: 0 6px 14px rgba(94, 163, 54, 0.2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--paper);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 99px;
  position: relative;
  margin: auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

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

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

/* Hero */
.hero {
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding-top: clamp(2.25rem, 5vh, 3.75rem);
  padding-bottom: 1.25rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  max-width: 38rem;
  padding: 0;
}

.hero-copy h1 span {
  color: var(--green);
  display: inline-block;
  margin-top: 0.08em;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.hero-copy .lede {
  max-width: 38ch;
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  padding-top: 2px;
}

.hero-actions .btn {
  flex: 0 1 auto;
  white-space: nowrap;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 6px;
}

.hero-points li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}

.hero-brand-lines {
  width: min(220px, 70%);
  height: auto;
  margin-top: 8px;
  display: block;
}

.hero-visual {
  position: relative;
  min-height: 0;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  height: min(32rem, 68vh);
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-visual figcaption strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.hero-visual figcaption span {
  color: var(--muted);
  font-size: 0.875rem;
}

.hero-swoosh {
  display: block;
  width: 100%;
  height: 72px;
  margin-bottom: -1px;
}

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}

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

.trust-strip p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
}

.trust-strip strong {
  display: block;
  color: var(--navy);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

/* Services */
.services {
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 18px 20px;
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-card:hover {
  border-color: #c5d8f0;
  box-shadow: var(--shadow);
}

.service-card svg {
  width: 38px;
  height: 38px;
  color: var(--sky);
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Work gallery */
.work-gallery {
  position: relative;
  margin-top: 8px;
}

.work-gallery-viewport {
  overflow: hidden;
  width: 100%;
  container-type: inline-size;
  touch-action: pan-y;
  border-radius: 4px;
}

.work-gallery-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.work-gallery-pair {
  flex: 0 0 100cqw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
}

.work-gallery-item {
  margin: 0;
  background: var(--white);
  min-width: 0;
}

.work-gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.work-gallery-item img.work-focus-front {
  object-position: center 40%;
}

.work-gallery-item img.work-focus-tiles {
  object-position: 40% 48%;
}

.work-gallery-item img.work-focus-rear {
  object-position: center 38%;
}

.work-gallery-item img.work-focus-garden {
  object-position: center 44%;
}

.work-gallery-item img.work-focus-garden-after {
  object-position: center 54%;
}

.work-gallery-item img.work-focus-house70 {
  object-position: 34% 40%;
}

.work-gallery-item img.work-focus-stone {
  object-position: center 40%;
}

.work-gallery-pair-single {
  grid-template-columns: minmax(0, 36rem);
  justify-content: center;
}

.work-gallery-item figcaption {
  margin-top: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.work-gallery-item figcaption span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.work-gallery-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 18px;
}

.work-gallery-dots button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.work-gallery-dots button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #c5d0de;
}

.work-gallery-dots button.is-active::after {
  width: 18px;
  background: var(--navy);
}

.gallery-btn {
  position: absolute;
  top: calc(50% - 28px);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.18s ease;
}

.gallery-btn:hover {
  background: var(--green);
}

.gallery-btn-prev {
  left: 0;
}

.gallery-btn-next {
  right: 0;
}

.featured-after {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

.featured-shot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 36rem;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.featured-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  position: absolute;
  inset: 0;
  max-width: none;
}

.tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 999px;
}

.featured-copy {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.featured-copy h2 {
  color: #fff;
}

.featured-copy p {
  color: #c5d4ea;
  max-width: 38ch;
}

.featured-copy::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -70px;
  bottom: -80px;
  background: radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity: 0.32;
  pointer-events: none;
}

.featured-copy .btn {
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

/* Colours */
.colours-head {
  max-width: 720px;
}

.colour-block {
  margin-top: 28px;
}

.section-head + .colour-block {
  margin-top: 0;
}

.colour-block h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.colour-block > p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 58ch;
  margin-bottom: 18px;
}

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

.swatch-row-inspire {
  grid-template-columns: repeat(6, 1fr);
}

.swatch-card {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.swatch-chip {
  display: block;
  height: 88px;
  border-radius: 14px;
  border: 1px solid rgba(11, 47, 99, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.swatch-chip-light {
  border: 1px solid var(--line);
  box-shadow: none;
}

.swatch-card strong {
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.swatch-card span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.swatch-card:hover .swatch-chip {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow);
}

.colour-note,
.colour-disclaimer {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 68ch;
  line-height: 1.55;
}

.colour-cta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  justify-items: start;
}

.colour-cta h3 {
  font-size: 1.2rem;
}

.colour-cta p {
  color: var(--muted);
  max-width: 62ch;
}

.colour-cta .btn {
  margin-top: 8px;
}

/* Why spray */
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.why-copy {
  display: grid;
  gap: 14px;
}

.why-list {
  margin-top: 0;
}

.about-contact {
  font-weight: 700;
  line-height: 1.7;
}

.about-contact a:hover {
  color: var(--green-dark);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  border-radius: 24px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow);
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  position: absolute;
  inset: 0;
  max-width: none;
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-list {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.about-list li {
  list-style: none;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-list strong {
  display: block;
  margin-bottom: 2px;
}

.about-list span:not(.check) {
  color: var(--muted);
  font-size: 0.94rem;
}

.swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
}

/* Process */
.process {
  background: var(--navy-deep);
  color: #fff;
}

.process h2,
.process h3 {
  color: #fff;
}

.process .lede,
.process .step p {
  color: #b7c7de;
}

.prep-copy {
  display: grid;
  gap: 0.55em;
}

.process-intro {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}

.process-intro .lede {
  margin-top: 12px;
}

.process-photo {
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  position: relative;
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  position: absolute;
  inset: 0;
  max-width: none;
}

.process-photo .tag {
  top: auto;
  bottom: 16px;
}

.process .section-head {
  margin-bottom: 22px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 16px;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.process .section-cta {
  margin-top: 22px;
}

/* Reviews */
.reviews-carousel {
  position: relative;
  margin-top: 4px;
}

.reviews-carousel.is-empty {
  display: none;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
  container-type: inline-size;
  touch-action: pan-y;
  outline: none;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100cqw - 36px) / 3);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 24px rgba(11, 47, 99, 0.06);
  min-height: 0;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--green);
}

.review-stars svg {
  width: 14px;
  height: 14px;
}

.review-card blockquote {
  margin: 0;
  flex: 1;
}

.review-text {
  margin: 0;
  color: var(--navy);
  font-size: 0.97rem;
  line-height: 1.6;
}

.review-text.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}

.review-more {
  margin-top: 10px;
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-more:hover {
  color: var(--navy);
}

.review-meta {
  display: grid;
  gap: 2px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.review-meta strong {
  font-size: 0.92rem;
  color: var(--navy);
}

.review-meta span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.reviews-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #c5d0de;
  cursor: pointer;
}

.reviews-dots button.is-active {
  background: var(--navy);
  width: 18px;
}

.reviews-carousel .gallery-btn-prev {
  left: -6px;
}

.reviews-carousel .gallery-btn-next {
  right: -6px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
}

.contact-panel {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--sky), var(--green-bright));
}

.contact-panel h2 {
  color: #fff;
  position: relative;
}

.contact-panel > p {
  color: #c5d4ea;
  margin: 12px 0 24px;
  position: relative;
  max-width: 38ch;
}

.contact-list {
  display: grid;
  gap: 12px;
  position: relative;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  min-height: 48px;
}

.contact-list a:hover {
  color: var(--green-bright);
}

.contact-list .icon-circle {
  width: 44px;
  height: 44px;
}

.rule {
  height: 2px;
  background: var(--green-bright);
  margin: 22px 0 16px;
  width: 72px;
  position: relative;
}

.facebook-note {
  margin: 0;
  font-weight: 700;
  color: #fff;
  position: relative;
}

.facebook-note a {
  color: #fff;
}

.facebook-note a:hover {
  color: var(--green-bright);
}

.quote-form {
  background: var(--paper);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 14px;
  position: relative;
}

.quote-form h3 {
  margin-bottom: 4px;
}

.quote-form label {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  min-height: 48px;
  color: var(--navy);
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 1px;
  border-color: var(--sky);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-status {
  min-height: 1.2em;
  font-size: 0.92rem;
  color: var(--green-dark);
  font-weight: 700;
}

.quote-form .btn {
  justify-self: start;
  margin-top: 4px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.uploader {
  display: grid;
  gap: 8px;
}

.uploader-label {
  font-size: 0.86rem;
  font-weight: 700;
}

.uploader-hint {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}

.uploader-drop {
  display: grid;
  gap: 4px;
  place-items: center;
  text-align: center;
  min-height: 132px;
  padding: 20px 16px;
  border: 2px dashed var(--sky);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  color: var(--muted);
  position: relative;
}

.uploader-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.uploader-cta {
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
}

.uploader-drop:hover,
.uploader-drop.is-drag {
  border-color: var(--green);
  background: #f7fbf3;
}

.uploader-list {
  display: grid;
  gap: 8px;
  list-style: none;
}

.uploader-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
}

.uploader-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}

.uploader-item p {
  font-size: 0.82rem;
  font-weight: 700;
  word-break: break-all;
}

.uploader-item span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.75rem;
}

.uploader-remove {
  min-height: 40px;
  min-width: 40px;
  border: 0;
  background: var(--paper);
  color: var(--navy);
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.uploader-error,
.form-status.is-error {
  color: #9b1c1c;
  font-weight: 700;
  font-size: 0.88rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #9fb3d1;
  padding: 28px 0 32px;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-contact {
  list-style: none;
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: #d5e2f4;
  font-weight: 600;
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--green-bright);
}

.site-footer strong {
  color: #fff;
}

.site-footer a:hover {
  color: #fff;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .swatch-row-inspire {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-visual img {
    height: min(28rem, 58vh);
  }

  .hero-copy {
    padding-right: 0;
  }

  .about-grid,
  .process-intro,
  .why-grid,
  .featured-after {
    gap: 28px;
  }

  .review-card {
    flex-basis: calc((100cqw - 18px) / 2);
  }
}

@media (max-width: 900px) {
  .section-head {
    margin-bottom: 22px;
  }

  .featured-after {
    margin-top: 22px;
  }

  .colour-cta {
    margin-top: 22px;
    padding-top: 18px;
    justify-items: center;
    text-align: center;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 0;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
  }

  .logo img {
    object-position: center;
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .hero-copy,
  .section-head,
  .colours-head,
  .why-copy,
  .about-copy,
  .process-intro > div:first-child,
  .featured-copy,
  .contact-panel,
  .colour-block,
  .colour-cta p,
  .colour-note,
  .colour-disclaimer,
  .trust-strip p {
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy,
  .section-head,
  .hero-copy .lede,
  .lede {
    max-width: none;
  }

  .hero-copy {
    align-items: center;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-brand-lines {
    margin-inline: auto;
  }

  .hero-visual figcaption,
  .section-cta,
  .facebook-note,
  .colour-block > p {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero-visual {
    margin-inline: auto;
  }

  .service-card {
    text-align: center;
    justify-items: center;
  }

  .swatch-card {
    text-align: center;
    justify-items: center;
  }

  .work-gallery-item figcaption {
    justify-content: center;
    text-align: center;
  }

  .featured-copy {
    align-items: center;
  }

  .featured-copy .btn,
  .colour-cta .btn {
    align-self: center;
  }

  .contact-list a {
    justify-content: center;
  }

  .contact-panel .rule {
    margin-inline: auto;
  }

  .about-contact {
    text-align: center;
  }

  .why-list,
  .about-list {
    margin-inline: auto;
    max-width: 36rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact {
    justify-items: center;
    width: 100%;
  }

  .footer-contact a {
    justify-content: center;
  }

  .hero-grid,
  .featured-after,
  .about-grid,
  .process-intro,
  .why-grid,
  .steps,
  .contact-grid,
  .form-row,
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    max-width: none;
    padding: 0;
    gap: 1rem;
  }

  .hero-grid {
    padding-top: 2rem;
    padding-bottom: 0.5rem;
    gap: 1.5rem;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8.4vw, 2.7rem);
  }

  .hero-copy .lede {
    max-width: 46ch;
    margin-inline: auto;
  }

  .hero-visual img {
    height: min(22rem, 58vw);
    object-position: 50% 40%;
  }

  .hero-swoosh {
    height: 56px;
  }

  .swatch-row,
  .swatch-row-inspire {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 12px;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 0;
  }

  .swatch-card {
    flex: none;
    gap: 6px;
    min-width: 0;
    width: 100%;
  }

  .swatch-chip {
    width: min(100%, 80px);
    height: auto;
    aspect-ratio: 1 / 1;
    min-width: 64px;
    border-radius: 8px;
    margin-inline: auto;
  }

  .swatch-card strong {
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .swatch-card span {
    font-size: 0.72rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .work-gallery-pair {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .work-gallery-item figcaption {
    font-size: 0.78rem;
    gap: 6px;
  }

  .review-card {
    flex-basis: 100cqw;
  }

  .reviews-track {
    gap: 16px;
  }

  .gallery-btn-prev {
    left: 4px;
  }

  .gallery-btn-next {
    right: 4px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px var(--gutter) 20px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    display: none;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav > a:not(.btn) {
    padding: 12px 10px;
    min-height: 44px;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    min-height: 48px;
  }

  .mobile-bar {
    display: grid;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 50;
    background: var(--navy);
    border-radius: 999px;
    padding: 6px;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  }

  .mobile-bar a {
    color: #fff;
    text-align: center;
    min-height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 0 10px;
  }

  .mobile-bar a.primary {
    background: var(--green);
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .featured-shot,
  .about-photo,
  .process-photo {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  .featured-shot img {
    inset: auto;
    width: 132%;
    height: 132%;
    top: -6%;
    left: -22%;
    object-position: 50% 32%;
  }

  .quote-form .btn,
  .hero-actions .btn {
    width: auto;
  }
}

@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .logo img {
    height: 64px;
    max-width: calc(100vw - 92px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual img {
    height: 18.5rem;
  }

  .quote-form {
    padding: 22px 18px;
  }

  .contact-panel,
  .featured-copy {
    padding: 28px 22px;
  }

  .section-cta .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .hero-points {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .mobile-bar a {
    font-size: 0.78rem;
  }
}

@media (max-width: 359px) {
  .swatch-row,
  .swatch-row-inspire {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .work-gallery-track {
    will-change: auto;
  }

  .reviews-track {
    will-change: auto;
    transition: none !important;
  }

  .swatch-card:hover .swatch-chip {
    transform: none;
  }
}
