/* =============================================================
   BELGRAVE ELECTRICS LTD — STYLESHEET
   Vanilla CSS3. No frameworks. No border-radius anywhere.
   ============================================================= */

:root {
  /* Brand colours */
  --burgundy: #5B0F2D;
  --burgundy-dark: #3E091E;
  --burgundy-secondary: #7A1B43;
  --silver: #A3A3A3;
  --charcoal: #1F1F1F;
  --grey-mid: #666666;
  --grey-light: #F3F3F3;
  --off-white: #FAFAFA;
  --white: #FFFFFF;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;

  --section-pad: 120px;
  --container-width: 1280px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================================
   RESET
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* =============================================================
   CUSTOM CURSOR (desktop / fine-pointer only, added via JS)
   ============================================================= */
html.has-cursor { cursor: none; }

.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  opacity: 0;
}
html.has-cursor .cursor-dot,
html.has-cursor .cursor-ring { opacity: 1; }

/* The cursor dot/ring mimics a physical pointer, not a UI container,
   so it's exempt from the site-wide sharp-corner rule. */
.cursor-dot {
  width: 7px; height: 7px;
  background: #fff;
  border-radius: 50% !important;
  transition: opacity 200ms var(--ease), width 250ms var(--ease), height 250ms var(--ease);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid #fff;
  border-radius: 50% !important;
  transition: width 280ms var(--ease), height 280ms var(--ease), opacity 200ms var(--ease), background-color 280ms var(--ease);
}
.cursor-ring.is-link { width: 60px; height: 60px; background: rgba(255,255,255,0.06); }
.cursor-ring.is-view { width: 92px; height: 92px; background: rgba(255,255,255,0.08); }

@media (max-width: 960px), (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* =============================================================
   SCROLL PROGRESS
   ============================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--burgundy);
  z-index: 300;
}

/* =============================================================
   DUOTONE IMAGE TREATMENT
   ============================================================= */
.duotone { filter: grayscale(0.4) sepia(0.14) saturate(1.35) contrast(1.06); }

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

/* No border radius, ever. */
* { border-radius: 0 !important; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* Headlines use a condensed industrial display face for contrast against
   the Inter body copy — the single-typeface look is what makes a lot of
   template sites read as generic, so this pairing is deliberate. */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

h2 { font-size: 50px; }
h3 { font-size: 20px; }

@media (max-width: 720px) {
  h2 { font-size: 36px; }
}

.section-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--grey-mid);
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  transition: background-color 320ms var(--ease), color 320ms var(--ease),
              border-color 320ms var(--ease), transform 220ms var(--ease);
  white-space: nowrap;
}

.btn-large { padding: 19px 38px; }
.btn-small { padding: 12px 22px; font-size: 12px; }

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--burgundy);
}
.btn-white:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-3px);
}

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background-color 380ms var(--ease), box-shadow 380ms var(--ease),
              border-color 380ms var(--ease);
}

.topbar {
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  transition: max-height 380ms var(--ease), opacity 380ms var(--ease);
  max-height: 40px;
}
.topbar-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--white);
}
.topbar-call { font-weight: 600; }
.topbar-call:hover { color: var(--silver); }

.navbar-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  height: 58px;
  width: auto;
  transition: height 380ms var(--ease);
}

.main-nav ul {
  display: flex;
  gap: 44px;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  padding-bottom: 6px;
  transition: color 300ms var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 300ms var(--ease);
}
.nav-link:hover::after { width: 100%; }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 300ms var(--ease), opacity 300ms var(--ease), background-color 300ms var(--ease);
}

/* Scrolled state */
.site-header.scrolled {
  background: var(--charcoal);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.site-header.scrolled .topbar { max-height: 0; opacity: 0; border-bottom: none; }
.site-header.scrolled .brand-logo { height: 46px; }

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 86vw);
  height: 100vh;
  background: var(--charcoal);
  padding: 110px 36px 40px;
  transform: translateX(100%);
  transition: transform 380ms var(--ease);
  z-index: 190;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 28px; }
.mobile-nav .nav-link { font-size: 20px; color: var(--white); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.mobile-nav-actions .btn { width: 100%; }

body.nav-open { overflow: hidden; }
.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms var(--ease);
}
.nav-scrim.visible { opacity: 1; pointer-events: auto; }

@media (max-width: 960px) {
  .main-nav { display: none; }
  .navbar-actions .btn-small { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .topbar-text { display: none; }
}

/* =============================================================
   HERO — asymmetric split, not a full-bleed photo banner
   ============================================================= */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 780px;
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 48px 70px max(64px, calc((100vw - var(--container-width)) / 2 + 64px));
}

.hero-watermark {
  position: absolute;
  top: -70px;
  left: -50px;
  width: 320px;
  height: auto;
  color: rgba(255,255,255,0.05);
  z-index: 0;
  pointer-events: none;
}
.hero-watermark polyline {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: boltDraw 1800ms var(--ease) 300ms forwards;
}
@keyframes boltDraw { to { stroke-dashoffset: 0; } }

.hero-accent-block {
  display: block;
  width: 60px;
  height: 8px;
  background: var(--burgundy);
  transform: skewX(-22deg);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.hero-eyebrow.in { opacity: 1; transform: translateY(0); }

.hero-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: normal;
  color: var(--burgundy-secondary);
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero-title .line-inner {
  display: block;
  transform: translateY(115%);
  transition: transform 950ms var(--ease);
}
.hero-title .line-inner.in { transform: translateY(0); }

.hero-sub {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 40ch;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease) 380ms, transform 700ms var(--ease) 380ms;
}
.hero-sub.in { opacity: 1; transform: translateY(0); }

/* Rating proof, placed right before the CTAs so trust lands before the ask */
.hero-trust {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease) 460ms, transform 700ms var(--ease) 460ms;
}
.hero-trust.in { opacity: 1; transform: translateY(0); }

.hero-trust-item { display: flex; align-items: center; gap: 9px; }
.hero-trust-logo { height: 14px; width: auto; }
.hero-trust-icon { height: 17px; width: 17px; }
.hero-trust-text {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.hero-trust-text strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.hero-trust-stars { color: #E0A526; font-size: 11px; letter-spacing: 1px; }
.hero-trust-divider { width: 1px; height: 22px; background: rgba(255,255,255,0.2); }

@media (max-width: 720px) {
  .hero-trust { gap: 12px; margin-bottom: 26px; }
  .hero-trust-divider { display: none; }
  .hero-trust-text { font-size: 12px; }
}

.hero-ctas {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease) 520ms, transform 700ms var(--ease) 520ms;
}
.hero-ctas.in { opacity: 1; transform: translateY(0); }

.hero-image {
  position: relative;
  overflow: hidden;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
  background: var(--burgundy-dark);
}
.hero-bg {
  position: absolute;
  inset: -40px;
  background-image: url('images/projects/consumer-unit-installation.webp');
  background-size: cover;
  background-position: center;
  transform: translateY(var(--parallax, 0px)) scale(1.16);
  animation: heroZoom 18s ease-out forwards;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: translateY(var(--parallax, 0px)) scale(1.22); }
  to { transform: translateY(var(--parallax, 0px)) scale(1.16); }
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,31,31,0) 45%, rgba(31,31,31,0.72) 100%);
}
.hero-image-tag {
  position: absolute;
  left: 44px;
  bottom: 34px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-image-tag span:first-child {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--silver);
}
.hero-image-tag span:last-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 960px) {
  .hero-shell { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { clip-path: none; height: 320px; }
  .hero-text { padding: 130px 24px 56px; }
  .hero-watermark { width: 220px; top: -40px; left: -30px; }
}

@media (max-width: 720px) {
  .hero-title { font-size: 44px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-image { height: 260px; }
}

/* =============================================================
   MARQUEE TICKER
   ============================================================= */
.marquee {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  /* --marquee-shift is set by JS to the exact pixel width of one repeated
     content unit, so the loop is seamless regardless of viewport width or
     how many copies were needed to fill it. Falls back to 50% (assumes
     exactly two authored copies) if JS hasn't run. */
  to { transform: translateX(calc(-1 * var(--marquee-shift, 50%))); }
}

.marquee-hero {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 70px;
  padding: 20px 0;
}
.marquee-hero .marquee-track {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
}
.marquee-hero .marquee-sep { color: var(--burgundy-secondary); font-size: 10px; }

.marquee-band {
  background: var(--burgundy);
  padding: 20px 0;
}
.marquee-band .marquee-track-alt {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
}
.marquee-band .marquee-sep { color: rgba(255,255,255,0.45); font-size: 14px; }

@media (max-width: 720px) {
  .marquee-hero { margin-top: 40px; padding: 14px 0; }
  .marquee-band .marquee-track-alt { font-size: 16px; }
}

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  clip-path: inset(0 0 14% 0);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease), clip-path 700ms var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0% 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-bg, .hero-eyebrow, .hero-sub, .hero-ctas, .hero-title .line-inner, .marquee-track, .hero-watermark polyline {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .hero-watermark polyline { stroke-dashoffset: 0 !important; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* =============================================================
   SERVICES — editorial index list with a hover-swapped preview
   image, instead of the icon-grid-card pattern.
   ============================================================= */
.services {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.services-index {
  border-top: 1px solid #E3E3E3;
}

.service-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 4px;
  border-bottom: 1px solid #E3E3E3;
  position: relative;
  transition: padding-left 320ms var(--ease);
}
.service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--burgundy);
  transition: width 320ms var(--ease);
}
.service-row:hover,
.service-row:focus-visible {
  padding-left: 20px;
}
.service-row:hover::before,
.service-row:focus-visible::before {
  width: 4px;
}

.service-row-num {
  font-size: 15px;
  font-weight: 700;
  color: var(--silver);
  letter-spacing: 0.04em;
}

.service-row-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.service-row-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  transition: color 300ms var(--ease);
}
.service-row-desc {
  font-size: 14px;
  color: var(--grey-mid);
}
.service-row:hover .service-row-title,
.service-row:focus-visible .service-row-title {
  color: var(--burgundy);
}

.service-row-arrow {
  font-size: 22px;
  color: var(--silver);
  transition: transform 320ms var(--ease), color 320ms var(--ease);
}
.service-row:hover .service-row-arrow,
.service-row:focus-visible .service-row-arrow {
  color: var(--burgundy);
  transform: translate(4px, -4px);
}

.services-preview {
  position: sticky;
  top: 130px;
  height: 460px;
  overflow: hidden;
  background: var(--charcoal);
}
.services-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 260ms var(--ease);
}

@media (max-width: 960px) {
  .services-layout { grid-template-columns: 1fr; gap: 0; }
  .services-preview { display: none; }
  .service-row { grid-template-columns: 40px 1fr auto; gap: 16px; padding: 24px 0; }
  .service-row-title { font-size: 21px; }
  .service-row-desc { font-size: 13px; }
}

/* =============================================================
   PROJECTS
   ============================================================= */
.projects {
  padding: var(--section-pad) 0;
  background: var(--grey-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 4px;
}

.project-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  perspective: 900px;
}
.project-item::before {
  content: '';
  position: absolute; inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.35) sepia(0.1) saturate(1.3) contrast(1.05);
  transition: transform 500ms var(--ease), filter 500ms var(--ease);
  transform: scale(1.001) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  will-change: transform;
}
.project-item:hover::before { filter: grayscale(0.1) sepia(0.06) saturate(1.35) contrast(1.05); }
/* Every row group below sums to exactly 6 columns (3+3, 4+2, 4+2, 6) so
   the grid's auto-placement can never strand a gap — sparse packing only
   leaves holes when a row is left under-filled. */
.project-large { grid-column: span 3; grid-row: span 3; }
.project-tall  { grid-column: span 3; grid-row: span 3; }
.project-small { grid-column: span 2; grid-row: span 2; }
.project-wide  { grid-column: span 4; grid-row: span 2; }
.project-medium{ grid-column: span 2; grid-row: span 2; }
.project-full  { grid-column: span 6; grid-row: span 2; }

.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,31,31,0) 40%, rgba(31,31,31,0.85) 100%);
  transition: background-color 380ms var(--ease);
}
.project-item:hover .project-overlay {
  background: linear-gradient(180deg, rgba(91,15,45,0.35) 0%, rgba(31,31,31,0.9) 100%);
}
.project-item:hover::before {
  transform: scale(1.06) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
.project-item.tilt {
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 300ms var(--ease);
}
/* .tilt owns the transform property on these items; the scroll-reveal
   system only contributes opacity + clip-path here to avoid the two
   animations fighting over a single CSS transform value. */
.project-item.reveal { transform: none; }
.project-item.reveal.in-view { transform: none; }

.project-label {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 20px;
}

.projects-cta { margin-top: 48px; text-align: center; }

@media (max-width: 960px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .project-large, .project-tall, .project-small, .project-wide, .project-medium, .project-full { grid-column: span 2; grid-row: span 1; }
}

/* =============================================================
   WHY BELGRAVE + REVIEWS (combined section)
   ============================================================= */
.why-reviews {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.why-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.reviews-col {
  border-left: 1px solid #E3E3E3;
  padding-left: 80px;
}

.points-list { border-top: 1px solid #E3E3E3; }
.point-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 20px;
  row-gap: 6px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid #E3E3E3;
}
.point-number {
  grid-column: 1;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--silver);
}
.point-row h3 {
  grid-column: 2;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 700;
}
.point-row p { grid-column: 2; color: var(--grey-mid); font-size: 15px; }

@media (max-width: 960px) {
  .why-reviews-grid { grid-template-columns: 1fr; gap: 64px; }
  .reviews-col { border-left: none; padding-left: 0; padding-top: 64px; border-top: 1px solid #E3E3E3; }
}
@media (max-width: 720px) {
  .point-row { grid-template-columns: 1fr; gap: 8px; padding: 26px 0; }
  .point-number { font-size: 26px; }
}

/* =============================================================
   ACCREDITATIONS & AWARDS
   ============================================================= */
.accreditations {
  padding: var(--section-pad) 0;
  background: var(--grey-light);
}

.accred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #E3E3E3;
  border-left: 1px solid #E3E3E3;
}
.accred-item {
  background: var(--white);
  border-right: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  min-height: 160px;
  transition: background-color 320ms var(--ease);
}
.accred-item:hover { background: var(--off-white); }
.accred-logo {
  height: 40px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.accred-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.accred-source {
  margin-top: 28px;
  font-size: 14px;
  color: var(--grey-mid);
}
.accred-source a {
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 300ms var(--ease);
}
.accred-source a:hover { color: var(--burgundy-dark); }

@media (max-width: 820px) {
  .accred-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .accred-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   SERVICE AREA MAP + FAQ (combined section)
   ============================================================= */
.map-faq {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.map-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--grey-light);
  border: 1px solid #E3E3E3;
  overflow: hidden;
  margin-top: 8px;
}
.map-embed iframe { display: block; width: 100%; height: 100%; }

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  transition: color 300ms var(--ease);
}
.map-link .arrow { transition: transform 300ms var(--ease); }
.map-link:hover { color: var(--burgundy); }
.map-link:hover .arrow { transform: translate(3px, -3px); }

.faq-col {
  border-left: 1px solid #E3E3E3;
  padding-left: 80px;
}

@media (max-width: 960px) {
  .map-faq-grid { grid-template-columns: 1fr; gap: 56px; }
  .faq-col { border-left: none; padding-left: 0; padding-top: 56px; border-top: 1px solid #E3E3E3; }
  .map-embed { aspect-ratio: 16 / 10; }
}

/* =============================================================
   REVIEWS (right column of .why-reviews)
   ============================================================= */
.review-scores {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.score-badge {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid #E3E3E3;
  background: var(--white);
  min-width: 150px;
  transition: border-color 300ms var(--ease), transform 220ms var(--ease);
}
.score-badge:hover { border-color: var(--burgundy); transform: translateY(-3px); }
.score-brand-logo { height: 16px; width: auto; }
.score-brand-icon { height: 20px; width: 20px; }
.score-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--charcoal);
}
.score-value small { font-size: 14px; font-weight: 600; color: var(--grey-mid); }
.score-stars { font-size: 13px; letter-spacing: 1px; color: #E0A526; }
.score-meta {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-mid);
}

.review-card {
  position: relative;
  background: var(--grey-light);
  border-left: 4px solid var(--burgundy);
  padding: 56px 48px;
  overflow: hidden;
}
.review-quote-mark {
  position: absolute;
  top: -18px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  color: rgba(91,15,45,0.08);
  pointer-events: none;
}

.review-body { position: relative; z-index: 1; }
.review-quote {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 28px;
  transition: opacity 320ms var(--ease);
}
.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(31,31,31,0.1);
  padding-top: 22px;
}
.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 320ms var(--ease);
}

.review-nav { display: flex; gap: 10px; }
.review-arrow {
  width: 44px; height: 44px;
  border: 1px solid #D8D8D8;
  background: var(--white);
  color: var(--charcoal);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 300ms var(--ease), color 300ms var(--ease), border-color 300ms var(--ease);
}
.review-arrow:hover {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

@media (max-width: 720px) {
  .review-scores { gap: 12px; }
  .score-badge { min-width: 130px; padding: 16px 18px; }
  .score-value { font-size: 26px; }
  .review-card { padding: 40px 24px; }
  .review-quote { font-size: 20px; }
  .review-quote-mark { font-size: 100px; top: -8px; left: 12px; }
  .review-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* =============================================================
   QUOTE CTA
   ============================================================= */
.quote-cta {
  position: relative;
  background: var(--burgundy);
  padding: 110px 0;
  color: var(--white);
  overflow: hidden;
}
.quote-cta-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.08);
}
.quote-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(62,9,30,0.9) 0%, rgba(91,15,45,0.94) 100%);
}
.quote-cta-inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.quote-cta-inner h2 { margin-bottom: 16px; text-transform: uppercase; }
.quote-cta-inner p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.quote-cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 600px) {
  .quote-cta-btns { flex-direction: column; }
  .quote-cta-btns .btn { width: 100%; }
}

/* =============================================================
   FAQ ACCORDION (right column of .map-faq)
   ============================================================= */
.faq-list {
  border-top: 1px solid #E3E3E3;
}
.faq-item { border-bottom: 1px solid #E3E3E3; }

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 50px 1fr 24px;
  align-items: center;
  gap: 20px;
  padding: 26px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
}
.faq-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--silver);
}
.faq-question-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  transition: color 300ms var(--ease);
}
.faq-item:hover .faq-question-text,
.faq-item.open .faq-question-text { color: var(--burgundy); }

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: end;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--charcoal);
  transition: transform 320ms var(--ease), background-color 300ms var(--ease);
}
.faq-toggle::before { width: 100%; height: 2px; top: 8px; left: 0; }
.faq-toggle::after { width: 2px; height: 100%; top: 0; left: 8px; }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); }
.faq-item.open .faq-toggle::before,
.faq-item.open .faq-toggle::after { background: var(--burgundy); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 420ms var(--ease);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p {
  padding: 0 4px 26px calc(50px + 20px);
  font-size: 15px;
  color: var(--grey-mid);
  max-width: 60ch;
}

@media (max-width: 720px) {
  .faq-question { grid-template-columns: 30px 1fr 18px; gap: 14px; padding: 22px 0; }
  .faq-question-text { font-size: 17px; }
  .faq-answer p { padding: 0 0 22px 44px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 90px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 18px;
}
.footer-col p { font-size: 14px; }
.footer-about {
  margin-top: 12px;
  max-width: 34ch;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; transition: color 300ms var(--ease); }
.footer-col ul a:hover { color: var(--white); }

.footer-col .btn { margin-top: 22px; }

.footer-divider {
  height: 1px;
  background: rgba(163,163,163,0.25);
  margin: 60px 0 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 300ms var(--ease);
}
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =============================================================
   MOBILE STICKY CTA
   ============================================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  grid-template-columns: 1fr 1fr;
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mobile-cta-call { background: var(--charcoal); color: var(--white); }
.mobile-cta-quote { background: var(--burgundy); color: var(--white); }

@media (max-width: 720px) {
  .mobile-cta-bar { display: grid; }
  body { padding-bottom: 56px; }
}

/* =============================================================
   SECTION SPACING (mobile)
   ============================================================= */
@media (max-width: 720px) {
  :root { --section-pad: 72px; }
  .quote-cta { padding: 72px 0; }
}
