/* ===================================================================
   CHURCHILL PAVING LTD — Design System
   Palette: deep coursing navy + laid-brick red on a cool sett-grey stone
   Display: Big Shoulders Display (stamped/stencilled signage feel)
   Body: Public Sans (federal-grade legibility, trustworthy)
   Signature: herringbone block-paving pattern used as a structural motif
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=Public+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  /* Colour tokens */
  --navy:        #1C3357;
  --navy-dark:   #101E33;
  --navy-mid:    #2B4A78;
  --brick:       #B8432E;
  --brick-dark:  #8F2F1F;
  --brick-light: #D9694C;
  --stone:       #E7E6DF;
  --stone-deep:  #D8D6CA;
  --stone-line:  #C9C7B9;
  --charcoal:    #1B1B18;
  --ink-soft:    #4A4A44;
  --white:       #FFFFFF;
  --cream-card:  #FCFCFA;

  /* Type */
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Public Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Layout */
  --container: 1180px;
  --radius: 3px;
  --shadow-card: 0 2px 0 var(--stone-line), 0 14px 30px -18px rgba(16,30,51,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--stone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}
img, video, iframe { max-width: 100%; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 3px solid var(--brick);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Herringbone signature pattern (SVG data-uri repeat) ---------- */
.herringbone {
  background-image:
    linear-gradient(45deg, rgba(184,67,46,0.16) 25%, transparent 25%, transparent 75%, rgba(184,67,46,0.16) 75%),
    linear-gradient(-45deg, rgba(184,67,46,0.16) 25%, transparent 25%, transparent 75%, rgba(184,67,46,0.16) 75%);
  background-size: 16px 16px;
}
.herringbone-navy {
  background-image:
    linear-gradient(45deg, rgba(28,51,87,0.5) 25%, transparent 25%, transparent 75%, rgba(28,51,87,0.5) 75%),
    linear-gradient(-45deg, rgba(28,51,87,0.5) 25%, transparent 25%, transparent 75%, rgba(28,51,87,0.5) 75%);
  background-size: 16px 16px;
}
.course-strip {
  height: 10px;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    var(--brick) 0px, var(--brick) 38px,
    var(--brick-dark) 38px, var(--brick-dark) 40px
  );
}
.course-strip.navy {
  background-image: repeating-linear-gradient(
    90deg,
    var(--navy) 0px, var(--navy) 38px,
    var(--navy-dark) 38px, var(--navy-dark) 40px
  );
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  line-height: 0.98;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.4px; }
p { max-width: 62ch; color: var(--ink-soft); }
p.lead { font-size: 1.15rem; color: var(--charcoal); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brick);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--brick);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-brick {
  background: var(--brick);
  color: var(--white);
  box-shadow: 0 4px 0 var(--brick-dark);
}
.btn-brick:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--brick-dark); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 0 var(--navy-dark);
}
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--navy-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top utility bar ---------- */
.utility-bar {
  background: var(--navy-dark);
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.utility-bar a { color: var(--stone); }
.utility-bar .u-phone { color: var(--brick-light); font-weight: 600; }
.utility-bar .u-left { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  position: relative;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
  flex-wrap: nowrap;
}
.brand img { height: 62px; width: auto; }
.brand { flex-shrink: 0; }

.main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  color: var(--navy);
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: var(--stone); color: var(--brick); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: right;
}
.header-phone small {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  background: var(--navy);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-size: 1.4rem;
  cursor: pointer;
}

/* Dropdown for services */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 2px solid var(--navy);
  min-width: 240px;
  padding: 8px;
  box-shadow: 0 14px 30px -10px rgba(16,30,51,0.4);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 12px;
  font-size: 0.85rem;
}
.dropdown a:hover { background: var(--stone); }

/* ---------- Floating mobile call button ---------- */
.float-call {
  display: none;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 200;
  background: var(--brick);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.5);
  align-items: center;
  gap: 8px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.035) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.035) 75%),
    linear-gradient(-45deg, rgba(255,255,255,0.035) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.035) 75%);
  background-size: 34px 34px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: var(--white); margin: 14px 0 18px; }
.hero h1 .accent { color: var(--brick-light); }
.hero p.lead { color: var(--stone); font-size: 1.15rem; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge b {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
}
.hero-visual {
  background: var(--stone);
  border-radius: var(--radius);
  aspect-ratio: 4/3.1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  position: relative;
  border: 4px solid var(--navy-mid);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(184,67,46,0.13) 25%, transparent 25%, transparent 75%, rgba(184,67,46,0.13) 75%),
    linear-gradient(-45deg, rgba(184,67,46,0.13) 25%, transparent 25%, transparent 75%, rgba(184,67,46,0.13) 75%);
  background-size: 20px 20px;
}
.img-slot {
  background: var(--stone-deep);
  border: 2px dashed var(--stone-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-align: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.img-slot span { position: relative; z-index: 1; max-width: 22ch; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 50px 0 42px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%),
    linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.03) 75%);
  background-size: 30px 30px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-top: 10px; }
.page-hero p.lead { color: var(--stone); max-width: 70ch; margin-top: 14px; }
.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--stone);
  margin-top: 18px;
}
.breadcrumbs a { color: var(--stone); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs span { color: var(--brick-light); margin: 0 6px; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-stone { background: var(--stone); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--stone); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: var(--stone); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 { margin-top: 12px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Grid utilities ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--cream-card);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card h3 { font-size: 1.25rem; }
.card p { font-size: 0.94rem; }
.card-img { aspect-ratio: 4/3; }
.card-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brick);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Service tiles on homepage */
.service-tile {
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-top: 5px solid var(--brick);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-card);
}
.service-tile h3 { font-size: 1.18rem; }
.service-tile p { font-size: 0.9rem; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--navy-dark);
  color: var(--white);
  padding: 34px 0;
}
.stats-strip .grid { text-align: center; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brick-light);
  font-weight: 900;
}
.stat span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- Google review cards ---------- */
.google-review-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.review-header { display: flex; align-items: flex-start; gap: 12px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-who { display: flex; flex-direction: column; }
.review-who b { font-family: var(--font-body); font-weight: 700; font-size: 0.94rem; color: var(--charcoal); }
.review-who span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-soft); }
.stars-google { color: #F4B400; font-size: 0.95rem; letter-spacing: 1px; }
.review-time { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-soft); margin-left: 6px; }
.google-review-card p.review-text { font-size: 0.92rem; color: var(--charcoal); font-style: normal; margin: 0; }
.review-photo-attached { aspect-ratio: 4/3; overflow: hidden; margin-top: 4px; }
.review-photo-attached img { width: 100%; height: 100%; object-fit: cover; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Design Centre: Interactive colour showcase ---------- */
.colour-showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--stone-line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 40px;
}
.colour-showcase:nth-child(even) { direction: rtl; }
.colour-showcase:nth-child(even) > * { direction: ltr; }
.showcase-media { position: relative; background: var(--stone-deep); }
.showcase-hero-wrap { aspect-ratio: 4/3; overflow: hidden; }
.showcase-hero-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.2s ease; }
.showcase-thumbs {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border-top: 1px solid var(--stone-line);
}
.showcase-thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid var(--stone-line);
  cursor: pointer;
  overflow: hidden;
  background: none;
  flex-shrink: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.showcase-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-thumb:hover { transform: translateY(-2px); }
.showcase-thumb.active { border-color: var(--brick); box-shadow: 0 0 0 2px rgba(184,67,46,0.25); }
.showcase-info { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.showcase-info .colour-card-tag { position: static; display: inline-block; margin-bottom: 14px; background: var(--stone); color: var(--navy); }
.showcase-info h3 { font-size: 1.7rem; margin-bottom: 12px; }
.showcase-info p.feel { font-style: italic; color: var(--charcoal); font-size: 0.98rem; margin-bottom: 18px; line-height: 1.65; }
.showcase-info .colour-meta { border-top: 1px solid var(--stone-line); padding-top: 18px; margin-top: 4px; margin-bottom: 22px; }

@media (max-width: 900px) {
  .colour-showcase, .colour-showcase:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .showcase-info { padding: 26px; }
}

/* ---------- Design Centre: Colour cards ---------- */
.colour-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.colour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -18px rgba(16,30,51,0.45); }
.colour-card-img { aspect-ratio: 5/4; overflow: hidden; position: relative; }
.colour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.colour-card:hover .colour-card-img img { transform: scale(1.06); }
.colour-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(16,30,51,0.85);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 30px;
}
.colour-card-body { padding: 28px; }
.colour-card-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.colour-card-body p.feel { font-style: italic; color: var(--charcoal); font-size: 0.98rem; margin-bottom: 16px; line-height: 1.65; }
.colour-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--stone-line);
}
.colour-meta-item { font-size: 0.8rem; }
.colour-meta-item b {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--brick);
  margin-bottom: 3px;
}
.popularity-dots { display: inline-flex; gap: 3px; vertical-align: middle; }
.popularity-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--stone-line); display: inline-block; }
.popularity-dots span.filled { background: var(--brick); }

/* ---------- Design Centre: Border combo cards ---------- */
.combo-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.combo-swatch { aspect-ratio: 16/9; overflow: hidden; }
.combo-swatch img { width: 100%; height: 100%; object-fit: cover; }
.combo-card-body { padding: 22px; }
.combo-card-body h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; font-family: var(--font-display); text-transform: uppercase; }
.combo-card-body p { font-size: 0.9rem; }

/* ---------- Design Centre: Pattern icons ---------- */
.pattern-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  padding: 26px 22px;
  text-align: center;
}
.pattern-icon {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 18px;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pattern-card h4 { font-size: 1rem; margin-bottom: 8px; }
.pattern-card p { font-size: 0.86rem; }

/* ---------- Design Centre: Immersive "imagine it" blocks ---------- */
.imagine-block {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.imagine-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.imagine-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16,23,35,0.92) 10%, rgba(16,23,35,0.15) 65%);
}
.imagine-content {
  position: relative;
  z-index: 2;
  padding: 44px;
  max-width: 620px;
}
.imagine-content .eyebrow { color: var(--brick-light); }
.imagine-content h3 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 10px 0 14px; }
.imagine-content p { color: var(--stone); font-size: 1.02rem; line-height: 1.7; }

/* ---------- Design Centre: property-type filter chips ---------- */
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-chip {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 9px 18px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
  border-radius: 30px;
}

@media (max-width: 760px) {
  .imagine-block { min-height: 360px; }
  .imagine-content { padding: 26px; }
  .colour-meta { grid-template-columns: 1fr; }
}

/* ---------- Process / list with paving-block markers ---------- */
.block-list { display: flex; flex-direction: column; gap: 16px; }
.block-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--stone-line);
  border-left: 5px solid var(--navy);
}
.block-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background-image:
    linear-gradient(45deg, var(--brick) 25%, transparent 25%, transparent 75%, var(--brick) 75%),
    linear-gradient(-45deg, var(--brick) 25%, transparent 25%, transparent 75%, var(--brick) 75%);
  background-size: 10px 10px;
  background-color: var(--stone-deep);
}
.block-list h4 { margin-bottom: 2px; }
.block-list p { font-size: 0.92rem; margin: 0; }

/* Numbered process (real sequence — install steps) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--stone-line);
  padding: 22px 18px;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--brick);
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}
.process-step h4 { font-size: 1.02rem; margin-bottom: 6px; }
.process-step p { font-size: 0.86rem; }

/* ---------- Testimonial / review cards ---------- */
.review-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stars { color: var(--brick); font-size: 1rem; letter-spacing: 2px; }
.review-card p { font-size: 0.92rem; font-style: italic; color: var(--charcoal); }
.review-meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: auto;
}
.review-photo-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--navy-mid);
  text-transform: uppercase;
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  border-bottom: 1px solid var(--stone-line);
}
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 18px 4px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: none;
  letter-spacing: 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--brick);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 4px 20px; font-size: 0.94rem; max-width: 74ch; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--brick);
  color: var(--white);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.06) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.06) 75%),
    linear-gradient(-45deg, rgba(255,255,255,0.06) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.06) 75%);
  background-size: 28px 28px;
}
.cta-band .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.3rem); }
.cta-band p { color: rgba(255,255,255,0.9); }

/* ---------- Map + address block ---------- */
.map-embed {
  border: 3px solid var(--navy);
  aspect-ratio: 16/10;
  width: 100%;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Location page: coverage list ---------- */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.coverage-grid a {
  background: var(--white);
  border: 1px solid var(--stone-line);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}
.coverage-grid a:hover { background: var(--navy); color: var(--white); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--stone-line);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 600;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--stone-line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--white);
  color: var(--charcoal);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--brick);
  outline: none;
}
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: var(--stone);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 54px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.site-footer h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 14px; letter-spacing: 1px; }
.site-footer ul { display: flex; flex-direction: column; gap: 9px; }
.site-footer a { font-size: 0.88rem; color: var(--stone); }
.site-footer a:hover { color: var(--brick-light); }
.footer-address { font-size: 0.88rem; color: var(--stone); margin-top: 10px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .utility-bar .u-left { display: none; }
  .utility-bar .container { justify-content: center; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .header-cta { gap: 10px; }
  .float-call { display: flex; }
  .brand img { height: 44px; }
  .header-cta .btn-brick { padding: 10px 16px; font-size: 0.85rem; }
  .nav-toggle { width: 40px; height: 40px; font-size: 1.2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .form-two { grid-template-columns: 1fr; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  section.section { padding: 48px 0; }
  .site-header.mobile-open .main-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--navy);
    padding: 10px 20px 20px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .site-header.mobile-open .main-nav ul { flex-direction: column; align-items: stretch; }
  .nav-parent-row { display: flex; align-items: center; justify-content: space-between; }
  .nav-parent-row a { flex: 1; }
  .dropdown-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    font-size: 1.1rem;
    padding: 10px 14px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .has-dropdown.open .dropdown-toggle { transform: rotate(180deg); }
  .dropdown-toggle { display: block; }
  .dropdown { position: static; display: none; border: none; box-shadow: none; padding-left: 12px; }
  .has-dropdown.open .dropdown { display: block; }
}
@media (min-width: 761px) {
  .dropdown-toggle { display: none; }
}
