/* Velocity CG — design system & layout */

:root {
  --color-primary:         #4CAF50;
  --color-primary-rgb:     76, 175, 80;
  --color-primary-light:   #80E27E;
  --color-primary-dark:    #087F23;
  --color-secondary:       #1A1A1A;
  --color-secondary-rgb:   26, 26, 26;
  --color-white:           #ffffff;
  --color-gray-50:         #f8fafc;
  --color-gray-100:        #f1f5f9;
  --color-gray-200:        #e2e8f0;
  --color-gray-400:        #94a3b8;
  --color-gray-500:        #64748b;
  --color-gray-700:        #334155;
  --color-gray-900:        #0f172a;
  --color-text:            #1e293b;
  --color-text-muted:      #64748b;
  --color-bg:              #ffffff;
  --color-bg-alt:          #f8fafc;
  --color-border:          #e2e8f0;
  --font-family-heading:   "Montserrat", system-ui, sans-serif;
  --font-family-body:      "Open Sans", system-ui, sans-serif;
  --max-width-content:     1200px;
  --container-padding:     24px;
  --radius-md:             12px;
  --radius-lg:             16px;
  --radius-full:           9999px;
  --shadow-md:             0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:             0 12px 40px rgba(0,0,0,0.10);
  --transition-base:       250ms cubic-bezier(0.4,0,0.2,1);
  --hero-bg-image:         url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80&fit=crop");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

h1, h2, h3, h4 {
  font-family: var(--font-family-heading);
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-primary-dark);
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary);
}

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width-content);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* —— Header (glassmorphism) —— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  background: rgba(var(--color-secondary-rgb), 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: height 0.3s ease, background 0.3s ease;
}

.header--scrolled {
  height: 64px;
  background: rgba(var(--color-secondary-rgb), 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width-content);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  gap: 1.5rem;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header__nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .header__nav-desktop {
    display: flex;
  }
}

.header__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
}

.header__links a:hover {
  color: var(--color-white);
}

.header__links a.is-active {
  color: var(--color-primary-light);
}

.header__nav-item--dropdown {
  position: relative;
}

.header__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  transition: color var(--transition-base);
}

.header__dropdown-toggle:hover {
  color: var(--color-white);
}

.header__dropdown-toggle.is-active {
  color: var(--color-primary-light);
}

.header__dropdown-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.header__dropdown-chevron {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.header__nav-item--dropdown.is-open .header__dropdown-chevron,
.header__nav-item--dropdown:hover .header__dropdown-chevron {
  transform: rotate(180deg);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  min-width: 17.5rem;
  background: rgba(var(--color-secondary-rgb), 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.25rem);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1001;
}

.header__nav-item--dropdown:hover .header__dropdown,
.header__nav-item--dropdown:focus-within .header__dropdown,
.header__nav-item--dropdown.is-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown a {
  display: block;
  padding: 0.65rem 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.35;
}

.header__dropdown a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

.header__dropdown a.is-active {
  color: var(--color-primary-light);
  background: rgba(var(--color-primary-rgb), 0.12);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--color-primary);
  color: var(--color-white) !important;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}

.header__cta:hover {
  background: var(--color-primary-dark);
  color: var(--color-white) !important;
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-md);
}

.header__burger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}

.header__burger-bar {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--color-white);
  margin: 0 auto;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.header__burger.is-open .header__burger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__burger.is-open .header__burger-bar:nth-child(2) {
  opacity: 0;
}

.header__burger.is-open .header__burger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: rgba(var(--color-secondary-rgb), 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1002;
  padding: 5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid rgba(255,255,255,0.08);
  overflow-y: auto;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-drawer__list a {
  display: block;
  padding: 0.875rem 0;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-drawer__list a.is-active {
  color: var(--color-primary-light);
}

.nav-drawer__item--sub {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-drawer__sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  border-radius: var(--radius-md);
}

.nav-drawer__sub-toggle:hover {
  color: var(--color-white);
}

.nav-drawer__sub-toggle.is-active {
  color: var(--color-primary-light);
}

.nav-drawer__sub-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.nav-drawer__sub-chevron {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.nav-drawer__item--sub.is-open .nav-drawer__sub-chevron {
  transform: rotate(180deg);
}

.nav-drawer__sub-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0.75rem 0.75rem;
  display: none;
  flex-direction: column;
  gap: 0.125rem;
}

.nav-drawer__item--sub.is-open .nav-drawer__sub-list {
  display: flex;
}

.nav-drawer__sub-list a {
  display: block;
  padding: 0.5rem 0;
  border-bottom: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.nav-drawer__sub-list a:hover {
  color: var(--color-primary-light);
}

.nav-drawer__sub-list a.is-active {
  color: var(--color-primary-light);
}

.nav-drawer__cta {
  margin-top: 1.5rem;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-secondary);
}

.hero--page {
  min-height: 45vh;
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero__bg {
    background-attachment: scroll;
  }
}

.hero--page .hero__bg {
  background-position: center 30%;
}

.page-about .hero__bg { background-position: 20% center; }
.page-services .hero__bg { background-position: 80% 40%; }
.page-contact .hero__bg { background-position: center 60%; }
.page-privacy .hero__bg { background-position: 50% 20%; }
.page-remedial-works .hero__bg { background-position: 15% 50%; }
.page-passive-fire-systems .hero__bg { background-position: 70% 35%; }
.page-bathroom-home-renovations-fit-outs .hero__bg { background-position: 40% 55%; }
.page-building-maintenance .hero__bg { background-position: 90% 45%; }
.page-ndis-modifications .hero__bg { background-position: 25% 40%; }
.page-sutherland .hero__bg { background-position: 60% 30%; }
.page-hurstville .hero__bg { background-position: 35% 65%; }
.page-bondi .hero__bg { background-position: 55% 25%; }
.page-randwick .hero__bg { background-position: 45% 50%; }
.page-kensington .hero__bg { background-position: 75% 40%; }
.page-centennial-park .hero__bg { background-position: 30% 35%; }
.page-bankstown .hero__bg { background-position: 65% 55%; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--color-secondary-rgb), 0.92) 0%,
    rgba(var(--color-secondary-rgb), 0.72) 50%,
    rgba(var(--color-secondary-rgb), 0.50) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  padding: calc(80px + var(--container-padding)) var(--container-padding) var(--container-padding);
}

.hero--page .hero__content {
  padding-top: calc(80px + 2rem);
  padding-bottom: 2rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero__headline {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.hero__subheadline {
  color: rgba(255,255,255,0.88);
  font-size: 1.0625rem;
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--color-white);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--dark {
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn--dark:hover {
  background: var(--color-gray-900);
  color: var(--color-white);
}

.hero__trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
}

.hero__trust-item svg {
  flex-shrink: 0;
  color: var(--color-primary-light);
}

/* Hero stagger */
.hero__badge,
.hero__headline,
.hero__subheadline,
.hero__cta-group,
.hero__trust-bar {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero__badge       { animation-delay: 0.2s; }
.hero__headline    { animation-delay: 0.4s; }
.hero__subheadline { animation-delay: 0.6s; }
.hero__cta-group   { animation-delay: 0.8s; }
.hero__trust-bar   { animation-delay: 1.0s; }

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge,
  .hero__headline,
  .hero__subheadline,
  .hero__cta-group,
  .hero__trust-bar {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* —— Wave dividers —— */
.wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.wave-divider--top svg {
  top: 0;
  bottom: auto;
}

@media (max-width: 640px) {
  .wave-divider {
    height: 40px;
  }
}

.wave-divider--white   { color: #ffffff; }
.wave-divider--light   { color: #f8fafc; }
.wave-divider--dark    { color: var(--color-secondary); }
.wave-divider--primary { color: var(--color-primary); }

/* —— Sections —— */
.section {
  padding: 4rem 0;
}

.section--white {
  background: var(--color-white);
}

.section--light {
  background: var(--color-gray-50);
}

.section--dark {
  background: var(--color-secondary);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section--dark .muted {
  color: rgba(255,255,255,0.75);
}

.section--primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.section--primary h2,
.section--primary h3 {
  color: var(--color-white);
}

.section--tight {
  padding: 3rem 0;
}

.section__intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section__intro.muted,
.muted {
  color: var(--color-text-muted);
}

.section--textured {
  position: relative;
}

.section--textured::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.section--textured > * {
  position: relative;
  z-index: 1;
}

/* —— Scroll animations —— */
.animate-on-scroll,
.animate-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1),
              transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.animate-on-scroll.is-visible,
.animate-stagger > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* —— Service cards —— */
.services-grid,
.locations-grid,
.why-grid {
  display: grid;
  gap: 1.5rem;
}

/* Keep incomplete rows visually centred */
.services-grid,
.locations-grid {
  justify-content: center;
}

.services-grid--spaced {
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .services-grid,
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 360px));
  }
  .locations-grid {
    grid-template-columns: repeat(3, minmax(0, 360px));
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1023px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px var(--color-primary);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(var(--color-primary-rgb), 0.10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
  transition: background 0.25s ease, color 0.25s ease;
}

.service-card:hover .service-card__icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.service-card__title {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.service-card__excerpt {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  flex-grow: 1;
  margin-bottom: 1rem;
}

.service-card__foot {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-primary-dark);
  margin-top: auto;
}

.service-card__arrow {
  transition: transform 0.25s ease;
}

.service-card:hover .service-card__arrow {
  transform: translateX(4px);
}

/* Location cards (same glow pattern) */
.location-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.location-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px var(--color-primary);
}

.location-card__name {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}

.location-card__meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* —— About split —— */
.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
  }
}

.about-split__media .about-photo {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* —— Stats —— */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-number {
  font-family: var(--font-family-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
}

/* —— Why us cards —— */
.why-card {
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(var(--color-primary-rgb), 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.why-card h3 {
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* —— CTA banner —— */
.cta-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-banner__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--color-secondary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.125rem;
}

.cta-banner__phone:hover {
  background: var(--color-gray-900);
  color: var(--color-white);
}

/* —— Footer —— */
.footer {
  background: var(--color-secondary);
  color: rgba(255,255,255,0.88);
  padding: 3.5rem 0 0;
}

.footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer a:hover {
  color: var(--color-primary-light);
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.1fr 0.9fr 1fr 1fr;
  }
}

.footer__col h3 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer__col p,
.footer__col li {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__contact-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__contact-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .footer__contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer__contact-item strong {
  display: block;
  color: var(--color-primary-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

/* —— Call bar (mobile) —— */
.call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  background: var(--color-secondary);
  border-top: 2px solid var(--color-primary);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  padding: 0.75rem var(--container-padding);
  gap: 1rem;
}

.call-bar.is-visible {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .call-bar {
    display: none;
  }
}

.call-bar__link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 700;
  min-width: 0;
}

.call-bar__icon-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.call-bar__pulse {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: callPulse 2s ease-out infinite;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.call-bar__icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.call-bar__dismiss {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.call-bar__dismiss:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

body.has-call-bar {
  padding-bottom: 72px;
}

@media (min-width: 1024px) {
  body.has-call-bar {
    padding-bottom: 0;
  }
}

/* —— Inner pages —— */
.page-section {
  padding: 3.5rem 0;
}

.content-narrow {
  max-width: 48rem;
}

.content-wide {
  max-width: 52rem;
}

.two-col {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .two-col--split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.values-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  padding: 1.75rem;
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

/* —— Forms —— */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.25);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: var(--color-primary-dark);
  font-size: 0.8125rem;
  margin-top: 0.35rem;
  display: none;
}

.form-group.is-invalid .form-error {
  display: block;
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: var(--color-primary-dark);
}

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(var(--color-primary-rgb), 0.12);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.form-success.is-visible {
  display: block;
}

/* —— FAQ —— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  background: var(--color-gray-50);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform var(--transition-base);
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 1.25rem;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq__answer-inner {
  padding: 0 0 1.25rem;
}

.faq__answer p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* —— Prose lists —— */
.prose-list {
  margin: 0 0 1em;
  padding-left: 1.25rem;
}

.prose-list li {
  margin-bottom: 0.5em;
}

/* —— Breadcrumb —— */
.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.8);
}

.breadcrumb span {
  color: rgba(255,255,255,0.55);
}

/* —— Privacy —— */
.privacy-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.about-split__text .btn-spacing {
  margin-top: 0.5rem;
}

.story-with-media {
  margin-top: 2.5rem;
}

.h-aside {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.stats-section__title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cta-banner__lede {
  color: rgba(255, 255, 255, 0.9);
}

/* Centre card rows when last row is not full */
.services-grid,
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.services-grid > *,
.locations-grid > * {
  width: 100%;
}

@media (min-width: 640px) {
  .services-grid > *,
  .locations-grid > * {
    width: calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .services-grid > *,
  .locations-grid > * {
    width: calc(33.333% - 1rem);
  }
}
