/* ==========================================================================
   Watson & Son Scaffolding – Design System
   Dark blue + dark red, minimal, corporate, conversion-focused
   ========================================================================== */

:root {
  /* Brand – dark blue and dark red from logo */
  --navy: #0c1929;
  --navy-mid: #132f4c;
  --navy-light: #1a3a5c;
  --charcoal: #1e293b;
  --accent: #8b1538;
  --accent-hover: #a01d42;
  --accent-muted: rgba(139, 21, 56, 0.12);
  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Layout */
  --container: 1140px;
  --section-padding: clamp(3rem, 6vw, 5rem);
  --header-height: 84px;
  /* Misc */
  --radius: 6px;
  --shadow: 0 4px 24px rgba(12, 25, 41, 0.08);
  --shadow-lg: 0 12px 40px rgba(12, 25, 41, 0.12);
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
body {
  margin: 0;
  font-family: var(--font-body);
  overscroll-behavior-y: none;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section {
  padding: var(--section-padding) 0;
}
.section:first-of-type {
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 25, 41, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--header-height);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo-link {
  display: block;
  margin-top: -6px;
}
.site-logo {
  height: 54px;
  width: auto;
  display: block;
}
.header-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}
.header-phone a {
  color: inherit;
  text-decoration: none;
}
.header-phone a:hover { text-decoration: none; color: var(--white); opacity: 0.95; }
.header-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.nav-main {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-main > li { position: relative; }
.nav-main a {
  color: var(--gray-200);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition);
}
.nav-main a:hover,
.nav-main a[aria-current="page"] { color: var(--white); }
.nav-main a:hover { text-decoration: none; }
/* Services dropdown */
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  background: none;
  border: none;
  font: inherit;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--gray-200);
  cursor: pointer;
  transition: color var(--transition);
}
.nav-dropdown-trigger:hover { color: var(--white); }
.nav-dropdown-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 0.2rem;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 50;
}
.nav-main > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-200);
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.nav-item-with-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.btn-nav:hover {
  background: var(--accent-hover);
  text-decoration: none !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  display: block;
}

@media (max-width: 900px) {
  .nav-main { display: none; }
  .nav-main.is-open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 2rem;
    gap: 0;
  }
  .nav-main.is-open > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-main.is-open > li:last-child { border-bottom: none; }
  .nav-main.is-open a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--white);
  }
  .nav-main.is-open .btn-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .nav-main.is-open .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--white);
  }
  .nav-main.is-open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0 0 0.5rem 0;
    padding: 0 0 0 1rem;
    border: none;
    box-shadow: none;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-main.is-open .nav-item-with-dropdown.is-open .nav-dropdown {
    max-height: 400px;
  }
  .nav-main.is-open .nav-dropdown a {
    padding: 0.5rem 0;
    font-size: 1rem;
  }
  .nav-toggle { display: flex; }
  .header-phone {
    font-size: 0.9375rem;
    margin-left: auto;
    margin-right: 0.5rem;
  }
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gray-100);
  color: var(--navy);
  text-decoration: none;
}

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--navy);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius);
}
.sticky-cta a:hover { color: var(--white); text-decoration: none; opacity: 0.95; }
@media (min-width: 901px) {
  .sticky-cta { display: none !important; }
}
@media (max-width: 900px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }
}

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 2rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../Assets/Gallery/RingOBellsPub-Swinton-Rotherham-1.JPG") center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: center;
}
.hero-content h1 { color: var(--white); margin-bottom: 0.35em; }
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.125rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.hero-desc {
  color: var(--gray-200);
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-buttons .btn { margin-right: 0.5rem; }
.hero-form-wrap {
  background: var(--white);
  padding: 1.15rem 1.75rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 0;
  margin-left: 1.5rem;
}
.hero-form-wrap h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  color: var(--navy);
}
/* Compact 2-column layout so the form box fits without scrolling */
.hero-form-wrap form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.85rem;
}
.hero-form-wrap .form-row,
.hero-form-wrap .form-submit { margin-bottom: 0; }
.hero-form-wrap .form-row label { margin-bottom: 0.15rem; font-size: 0.75rem; }
.hero-form-wrap .form-row input,
.hero-form-wrap .form-row select,
.hero-form-wrap .form-row textarea {
  padding: 0.35rem 0.6rem;
  font-size: 0.875rem;
}
.hero-form-wrap .form-row textarea { min-height: 42px; }
.hero-form-wrap .form-row.visually-hidden,
.hero-form-wrap .form-row:has([name="location"]),
.hero-form-wrap .form-row:has(textarea),
.hero-form-wrap .form-submit { grid-column: 1 / -1; }
.hero-form-wrap .form-submit { margin-top: 0.35rem; }
.hero-form-wrap .form-submit .btn { padding: 0.45rem 0.85rem; font-size: 0.875rem; }
@media (max-width: 380px) {
  .hero-form-wrap form { grid-template-columns: 1fr; }
  .hero-form-wrap .form-row.visually-hidden,
  .hero-form-wrap .form-row:has([name="location"]),
  .hero-form-wrap .form-row:has(textarea),
  .hero-form-wrap .form-submit { grid-column: 1; }
}
.form-row { margin-bottom: 1rem; }
.form-row .required-dot { color: var(--accent); }
.form-row label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.65rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}
.form-row textarea { min-height: 90px; resize: vertical; }
.form-submit { margin-top: 1.25rem; }
.form-submit .btn { width: 100%; }
@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-form-wrap { order: -1; margin-left: 0; }
}

/* ==========================================================================
   Page header (internal pages)
   ========================================================================== */
.page-header {
  background: var(--navy);
  padding: calc(var(--header-height) + 2.5rem) 0 2.5rem;
  color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: 0.25em; }
.page-header .breadcrumb {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}
.page-header .breadcrumb a { color: var(--gray-400); }
.page-header .breadcrumb a:hover { color: var(--white); }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}
.trust-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.trust-bar-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
  font-weight: 500;
}
.trust-item svg { flex-shrink: 0; color: var(--accent); }
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.trust-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}
/* Break between trust list and accreditation logos */
.trust-bar .trust-logos {
  border-top: 1px solid var(--gray-200);
  padding-top: 1.5rem;
  margin-top: 0.25rem;
  width: 100%;
}
/* Accreditation logos larger in trust bar below hero */
.trust-bar .trust-logos img {
  height: 70px;
}
.trust-bar .trust-logos img.trust-logo-safecontractor {
  height: 88px;
}
.trust-bar .trust-logos img.trust-logo-ssip {
  height: 88px;
}

/* ==========================================================================
   About page – unique layout, editorial tone, professional spacing
   ========================================================================== */
.about-page .page-header {
  text-align: center;
  padding: calc(var(--header-height) + 3rem) 1.25rem 3rem;
}
.about-page .page-header .container {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.about-page .page-header .breadcrumb {
  margin-bottom: 0.75rem;
}
.about-page .page-header h1 {
  margin-bottom: 0.75rem;
}
.about-header__tagline {
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.about-lead {
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem clamp(3rem, 6vw, 4.5rem);
  background: var(--white);
}
.about-lead .container {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.about-lead__text {
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--charcoal);
  text-align: center;
}
.about-lead__text + .about-lead__text {
  margin-top: 1rem;
}

/* About page: Leadership & Experience section */
.about-leadership {
  background: var(--off-white);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.about-leadership .container {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.about-leadership__heading {
  margin-bottom: 1.25rem;
}
.about-leadership p {
  margin-bottom: 1.25rem;
}
.about-leadership p:last-of-type {
  margin-bottom: 0;
}
.about-postnominals {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}
.about-postnominals__list {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  margin-bottom: 1.5rem !important;
}
.about-leadership__sub {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}
.about-list {
  margin: 0 0 1.25rem 1.5rem;
  padding: 0;
  list-style: disc;
}
.about-list li {
  margin-bottom: 0.35rem;
  line-height: 1.5;
}
.about-list li:last-child {
  margin-bottom: 0;
}

.about-trust {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.about-trust__heading {
  text-align: center;
  margin-bottom: 0.5rem;
}
.about-trust__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}
.about-trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 2.5rem;
}
.about-trust__logos img {
  height: 64px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}
.about-trust__logos img.about-trust-logo-safecontractor,
.about-trust__logos img.about-trust-logo-ssip {
  height: 72px;
}

.about-director {
  background: var(--off-white);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.about-director__heading {
  text-align: center;
  margin-bottom: 0.5rem;
}
.about-director__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}
.about-director__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
  justify-items: center;
  align-items: center;
}
.about-director__item {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(12, 25, 41, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}
.about-director__item img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .about-director__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .about-director__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .about-director__item {
    min-height: 100px;
    padding: 1rem;
  }
  .about-director__item img {
    max-height: 64px;
  }
}

.about-cta {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  text-align: center;
}
.about-cta__text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
}
.about-cta__sub {
  margin: 0 0 1.5rem;
  color: var(--gray-600);
  font-size: 1rem;
}
.about-cta .btn + .btn {
  margin-left: 0.75rem;
}

/* ==========================================================================
   Health & Safety page
   ========================================================================== */
.health-safety-page .page-header {
  text-align: center;
  padding: calc(var(--header-height) + 3rem) 1.25rem 3rem;
}
.health-safety-page .page-header .container {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.health-safety-header__tagline {
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.health-safety-lead {
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem clamp(2rem, 4vw, 2.5rem);
  background: var(--white);
}
.health-safety-lead .container {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.health-safety-lead__text {
  max-width: 52ch;
  margin: 0 auto;
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--charcoal);
  text-align: center;
}

.health-safety-page .section--watson-safety {
  padding-top: 0;
  padding-bottom: clamp(2rem, 4vw, 2.5rem);
}
.watson-safety-partnership__tagline a {
  color: var(--charcoal);
  font-weight: 600;
}
.watson-safety-partnership__tagline a:hover {
  color: var(--accent);
}

.health-safety-pillars {
  background: var(--off-white);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.health-safety-pillars__heading {
  text-align: center;
  margin-bottom: 1.5rem;
}
.health-safety-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
.health-safety-pillar {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(12, 25, 41, 0.06);
  border-top: 3px solid var(--accent);
}
.health-safety-pillar__title {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}
.health-safety-pillar p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .health-safety-pillars__grid {
    grid-template-columns: 1fr;
  }
}

.health-safety-cdm {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.health-safety-cdm__inner {
  max-width: 50rem;
  margin: 0 auto;
}
.health-safety-cdm__heading {
  margin-bottom: 1rem;
}
.health-safety-cdm__inner p {
  margin-bottom: 1rem;
}

.health-safety-trust {
  background: var(--off-white);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.health-safety-trust__heading {
  text-align: center;
  margin-bottom: 0.5rem;
}
.health-safety-trust__intro {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}
.health-safety-trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 2.5rem;
}
.health-safety-trust__logos img {
  height: 64px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}
.health-safety-trust__logos img.health-safety-trust-logo-safecontractor,
.health-safety-trust__logos img.health-safety-trust-logo-ssip {
  height: 72px;
}

.health-safety-insurance {
  padding: clamp(2rem, 4vw, 2.5rem) 0;
}
.health-safety-insurance__inner {
  max-width: 50rem;
  margin: 0 auto;
}
.health-safety-insurance__heading {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Section titles
   ========================================================================== */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-head h2 { margin-bottom: 0.5rem; }
.section-head p { color: var(--gray-500); margin: 0; }

/* ==========================================================================
   Service cards (grid)
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--navy-mid);
}
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.service-card p { font-size: 0.9375rem; color: var(--gray-600); margin: 0; }
.service-card .link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent);
}
.service-card .link:hover { text-decoration: none; }
.service-card .link::after { content: ' →'; }

/* ==========================================================================
   Content (prose)
   ========================================================================== */
.prose {
  max-width: 72ch;
}
.prose h2 { margin-top: 1.75em; margin-bottom: 0.5em; }
.prose h3 { margin-top: 1.25em; margin-bottom: 0.4em; }
.prose ul, .prose ol { margin: 0 0 1rem; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.35rem; }

/* Offer list: intro + styled list with checkmarks */
.prose .offer-list-intro {
  margin-top: -0.25em;
  margin-bottom: 1rem;
  color: var(--gray-600);
  font-size: 1rem;
}
.prose .offer-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.5rem;
}
.prose .offer-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--gray-200);
  line-height: 1.5;
}
.prose .offer-list li:last-child {
  border-bottom: none;
}
.prose .offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
}
.prose .offer-list li strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Text-only section: two-column layout (main + highlighted sidebar) */
.section--text-layout {
  background: linear-gradient(to bottom, var(--white) 0%, var(--off-white) 15%, var(--off-white) 85%, var(--white) 100%);
}
.text-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem 3rem;
  align-items: start;
}
.text-layout__main {
  max-width: none;
}
.text-layout__sidebar {
  align-self: center;
}
.text-layout__areas {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  font-size: 0.9375rem;
  color: var(--gray-500);
}
.text-layout__areas a {
  color: var(--gray-600);
}
.content-block {
  padding: 0;
}
.content-block--highlight {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.content-block__title {
  margin-top: 0;
  margin-bottom: 0.5em;
}
.content-block__logo-link {
  display: block;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.content-block__logo-link:hover {
  text-decoration: none;
}
.content-block__logo {
  display: block;
  width: auto;
  max-width: 180px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}
.content-block__logo--watson-banner {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}
.content-block__logo-link--watson {
  margin-bottom: 1.5rem;
}
.content-block--highlight .offer-list-intro {
  margin-bottom: 0.75rem;
}

/* Watson Safety partnership strip (third-party page) */
.watson-safety-partnership {
  text-align: center;
  padding: 2rem 1.5rem;
  margin-bottom: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.watson-safety-partnership__label {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}
.watson-safety-partnership__link {
  display: inline-block;
  text-decoration: none;
}
.watson-safety-partnership__link:hover {
  text-decoration: none;
  opacity: 0.9;
}
.watson-safety-partnership__banner {
  display: block;
  width: auto;
  max-width: 360px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  margin: 0 auto;
}
.watson-safety-partnership__tagline {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
}
@media (max-width: 600px) {
  .watson-safety-partnership__banner {
    max-width: 280px;
    max-height: 52px;
  }
}

@media (max-width: 768px) {
  .text-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .text-layout__sidebar {
    align-self: start;
  }
  .content-block--highlight {
    padding: 1.5rem 1.25rem;
    border-left-width: 4px;
  }
}

/* ==========================================================================
   Two-column content
   ========================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
.two-col--wide-media {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}
@media (max-width: 768px) {
  .two-col--wide-media {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(12, 25, 41, 0.88));
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Gallery collage: overlapping stack of 3 images + caption */
.gallery-collage {
  margin: 0;
  padding: 0;
}
.gallery-collage figcaption {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  text-align: center;
}

/* Pyramid: 1 image on top, 2 on bottom, no overlap */
.gallery-collage--pyramid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-collage--pyramid .gallery-collage__img--top {
  grid-column: 1 / -1;
  justify-self: center;
  width: 72%;
  max-width: 100%;
}
.gallery-collage--pyramid .gallery-collage__img--bottom-left,
.gallery-collage--pyramid .gallery-collage__img--bottom-right {
  min-width: 0;
  width: 100%;
}
.gallery-collage--pyramid .gallery-collage__img--bottom-left {
  grid-column: 1;
}
.gallery-collage--pyramid .gallery-collage__img--bottom-right {
  grid-column: 2;
}
.gallery-collage--pyramid .gallery-collage__img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(12, 25, 41, 0.1);
  background: var(--gray-100);
}
.gallery-collage--pyramid .gallery-collage__img::after {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.gallery-collage--pyramid .gallery-collage__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-collage--pyramid figcaption {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}
@media (max-width: 480px) {
  .gallery-collage--pyramid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .gallery-collage--pyramid .gallery-collage__img--top {
    grid-column: 1;
    max-width: 100%;
  }
  .gallery-collage--pyramid .gallery-collage__img--bottom-left,
  .gallery-collage--pyramid .gallery-collage__img--bottom-right {
    grid-column: 1;
  }
}

/* ==========================================================================
   Slideshow (residential page)
   ========================================================================== */
.slideshow {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.slideshow__track {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(12, 25, 41, 0.12);
  background: var(--gray-100);
  aspect-ratio: 4 / 3;
}
.slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}
.slideshow__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slideshow__caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  text-align: center;
}
.slideshow__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.slideshow__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--gray-300);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slideshow__dots button:hover {
  background: var(--gray-400);
}
.slideshow__dots button.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Industrial page: gallery column slightly wider than prose, stacked images */
.industrial-scaffolding-section .two-col--industrial-gallery {
  grid-template-columns: 0.85fr 1.15fr;
}
@media (max-width: 768px) {
  .industrial-scaffolding-section .two-col--industrial-gallery {
    grid-template-columns: 1fr;
  }
}

/* Residential / Commercial / Industrial page galleries: 2 columns, each image same size with caption */
.residential-gallery,
.commercial-gallery,
.industrial-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.75rem 1rem;
  margin-top: 2rem;
  margin-left: 1.5rem;
}
/* Industrial gallery: single column (stacked), full width of column */
.industrial-gallery {
  grid-template-columns: 1fr;
  margin-left: 0;
  gap: 1.5rem 0;
}
.residential-gallery__item,
.commercial-gallery__item,
.industrial-gallery__item {
  margin: 0;
}
.residential-gallery__item img,
.commercial-gallery__item img,
.industrial-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(12, 25, 41, 0.1);
}
/* Industrial gallery images: standard aspect for stacked layout */
.industrial-gallery__item img {
  aspect-ratio: 4 / 3;
}
.residential-gallery__item figcaption,
.commercial-gallery__item figcaption,
.industrial-gallery__item figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  text-align: center;
}
@media (max-width: 600px) {
  .residential-gallery,
  .commercial-gallery,
  .industrial-gallery {
    grid-template-columns: 1fr;
    margin-left: 0;
  }
}

/* ==========================================================================
   Testimonials (centered quotes, 2 rows, upside-down pyramid)
   ========================================================================== */
.testimonials {
  background: var(--off-white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 3rem 2rem;
  align-items: start;
  justify-items: center;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-grid .testimonial-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.testimonial-grid .testimonial-card:nth-child(2) { grid-column: 3 / 5; grid-row: 1; }
.testimonial-grid .testimonial-card:nth-child(3) { grid-column: 5 / 7; grid-row: 1; }
.testimonial-grid .testimonial-card:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }
.testimonial-grid .testimonial-card:nth-child(5) { grid-column: 4 / 6; grid-row: 2; }
@media (max-width: 52rem) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    justify-items: center;
    gap: 2.5rem;
  }
  .testimonial-grid .testimonial-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 22rem;
  margin: 0;
}
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
  color: var(--charcoal);
  text-align: center;
}
.testimonial-card .review-source {
  margin: 0;
  margin-top: auto;
}
.testimonial-card .review-source a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  text-decoration: none;
}
.testimonial-card .review-source a:hover {
  color: var(--charcoal);
  text-decoration: none;
}
.testimonial-card .review-logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   CTA block
   ========================================================================== */
.cta-block {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: var(--section-padding) 0;
}
.cta-block h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-block p { color: var(--gray-400); margin-bottom: 1.5rem; }
.cta-block .btn { margin: 0 0.5rem 0.5rem 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 2.5rem 0 2rem;
  border-top: 2px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.footer-social {
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.footer-social a {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 0;
  padding: 0;
  color: var(--gray-400);
}
.footer-social a:hover { opacity: 0.9; }
.footer-social img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.5rem; }
.footer-grid a {
  color: var(--gray-400);
  font-size: 0.9375rem;
}
.footer-grid a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
  text-align: center;
  color: var(--gray-500);
}

/* Thank you page: sticky footer and success block */
.page-thank-you {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-thank-you #main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-header--thank-you {
  padding-bottom: 1.5rem;
}
.page-header--thank-you .breadcrumb {
  margin-bottom: 0;
}

/* Thank you content card */
.thank-you-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 3rem;
  background: var(--off-white);
}
.thank-you-block__inner {
  width: 100%;
  max-width: 420px;
  text-align: center;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
  padding: 2.5rem 2rem;
}
.thank-you-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--accent-muted);
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  font-family: var(--font-body), sans-serif;
}
.thank-you-block__title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.thank-you-block__message {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}
.thank-you-block__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.thank-you-block__buttons .btn {
  min-width: 140px;
}
@media (max-width: 480px) {
  .thank-you-block__inner {
    padding: 2rem 1.5rem;
  }
  .thank-you-block__buttons {
    flex-direction: column;
  }
  .thank-you-block__buttons .btn {
    width: 100%;
    min-width: 0;
  }
}

/* 404 page (reuses thank-you layout and block) */
.page-404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-404 #main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-header--404 {
  padding-bottom: 1.5rem;
}
.page-header--404 .breadcrumb {
  margin-bottom: 0;
}
.error-404-block__icon {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ==========================================================================
   Location cards (areas)
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow var(--transition);
}
.location-card:hover { box-shadow: var(--shadow); }
.location-card h3 { margin-bottom: 0.35rem; font-size: 1.2rem; }
.location-card p { font-size: 0.9375rem; color: var(--gray-600); margin: 0 0 1rem; }
.location-card .btn { width: 100%; justify-content: center; }

/* ==========================================================================
   Area pages (location landing – hero, content, services, CTA)
   ========================================================================== */
.area-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 2rem) 0 3rem;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.area-hero--has-image {
  min-height: 55vh;
}
.area-hero--more-gap {
  padding-bottom: 5.5rem;
}
.area-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.area-hero__bg + .area-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 25, 41, 0.92) 0%, rgba(12, 25, 41, 0.6) 50%, rgba(12, 25, 41, 0.3) 100%);
}
.area-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.area-hero .breadcrumb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}
.area-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}
.area-hero .breadcrumb a:hover { color: var(--white); }
.area-hero h1 {
  color: var(--white);
  margin-bottom: 0.35em;
  font-size: clamp(2rem, 5vw, 3rem);
}
.area-hero__tagline {
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 36rem;
}

.area-content {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.area-content .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .area-content .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.area-content__main {
  min-width: 0;
}
.area-content__main .prose {
  max-width: none;
}
.area-content__main h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.area-content__main h2:first-child { margin-top: 0; }
.area-content__main ul {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}
.area-content__main ul li {
  margin-bottom: 0.4rem;
  line-height: 1.55;
}
.area-content__sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}
@media (max-width: 900px) {
  .area-content__sidebar { position: static; }
}
.area-content__image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-100);
}
.area-content__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.area-content__image-caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}
.area-neighbourhoods {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
}
.area-neighbourhoods__title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin: 0 0 0.5rem;
}
.area-neighbourhoods__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.area-neighbourhoods__links a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--gray-100);
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.area-neighbourhoods__links a:hover {
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}
.area-neighbourhoods__pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--gray-100);
  border-radius: 999px;
}

.area-services {
  margin-top: 2rem;
}
.area-services__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 0.75rem;
}
.area-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}
.area-services__grid a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.area-services__grid a:hover {
  border-color: var(--accent);
  background: var(--accent-muted);
  color: var(--accent);
  text-decoration: none;
}

.area-cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.area-spotlight {
  background: var(--off-white);
  padding: clamp(2rem, 4vw, 2.5rem) 0;
  margin-top: 0;
}
.area-spotlight--reverse .area-spotlight__body { order: 1; }
.area-spotlight--reverse .area-spotlight__image { order: 2; }
.area-spotlight .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .area-spotlight .container { grid-template-columns: 1fr; }
}
.area-spotlight__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.area-spotlight__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.area-spotlight__body h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}
.area-spotlight__body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==========================================================================
   Contact page form
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-layout__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--off-white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.contact-info-card h3 { margin-top: 0; margin-bottom: 1rem; font-size: 1.125rem; }
.contact-info-card p { margin: 0 0 0.5rem; font-size: 0.9375rem; }
.contact-info-card a { font-weight: 600; }

.contact-map-inline {
  margin-top: 0;
}
.contact-map-inline__heading {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
}
.contact-map__wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray-200);
}
.contact-map__wrapper::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.contact-map__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-map__link {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
}
.contact-map__link a {
  font-weight: 600;
}

/* ==========================================================================
   Mobile-friendly (small screens only – desktop unchanged)
   ========================================================================== */

/* Narrow viewports: prevent overflow, improve touch targets */
@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .site-logo {
    height: 46px;
  }
  .header-phone {
    font-size: 0.8125rem;
    padding: 0.4rem 0.65rem;
  }
  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }
  .hero {
    padding: calc(var(--header-height) + 1.25rem) 0 2.5rem;
  }
  .hero-form-wrap {
    padding: 1.5rem 1rem;
  }
  .trust-bar-items {
    gap: 1rem;
  }
  .trust-bar .trust-logos {
    gap: 1.25rem;
    padding-top: 1.25rem;
  }
  .trust-bar .trust-logos img {
    height: 52px;
  }
  .trust-bar .trust-logos img.trust-logo-safecontractor,
  .trust-bar .trust-logos img.trust-logo-ssip {
    height: 64px;
  }
  .cta-block .btn {
    display: block;
    width: 100%;
    margin: 0 0 0.5rem 0;
  }
  .about-cta .btn + .btn {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .about-cta .btn {
    display: block;
    width: 100%;
  }
  .page-header {
    padding: calc(var(--header-height) + 1.5rem) 0 1.5rem;
  }
  .footer-grid {
    gap: 1.5rem;
  }
}

/* Prevent iOS zoom on focus – keep inputs at 16px on mobile */
@media (max-width: 768px) {
  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 16px;
  }
}

/* Touch-friendly tap targets for mobile nav */
@media (max-width: 900px) {
  .nav-main.is-open a,
  .nav-main.is-open .nav-dropdown-trigger {
    min-height: 44px;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .nav-main.is-open .nav-dropdown a {
    min-height: 44px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }
  .sticky-cta a {
    min-height: 48px;
  }
}

/* Breadcrumb and long text: allow wrap, no overflow */
.page-header .breadcrumb {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Service and location grids: single column on narrow */
@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn {
    width: 100%;
    margin-right: 0;
  }
  /* Stack button pairs inside paragraphs (prose, health & safety, about, etc.) */
  p .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  p .btn:last-child {
    margin-bottom: 0;
  }
}

/* Footer: center logo when stacked */
@media (max-width: 768px) {
  .footer-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Gallery and content images: never overflow */
.gallery-grid,
.gallery-item img,
.content-block__logo,
.watson-safety-partnership__banner {
  max-width: 100%;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.mt-0 { margin-top: 0; }
.mb-2 { margin-bottom: 2rem; }
