/* DJ Russell & Son v3 — Light high-contrast
   Cool white / grey-blue surfaces · near-black text · blue accent · Source Sans 3 only
   Wider content (1320) · larger header logo · no cream/tan/brown/gold */

:root {
  /* Cool neutrals + white + blue accent — no cream/tan/brown/gold */
  --bg: #F8FAFC;
  --surface: #FFFFFF;
  --ink: #0F172A;
  --muted: #334155;
  --muted-soft: #475569;
  --accent: #1B6CA8;
  --accent-hover: #155A8C;
  --accent-soft: #E8F1F8;
  --accent-border: #A8C8DE;
  --border: #CBD5E1;
  --border-soft: #E2E8F0;
  --focus: #005FCC;
  --star: #1B6CA8;
  --shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 44px rgba(15, 23, 42, 0.11);
  --radius: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --max: 1320px;
  --header-h: 84px;
  --font-sans: "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --leading: 1.65;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: var(--leading);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-hover);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--accent);
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Typography —— */
h1, h2, h3, .display {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid var(--border);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(21, 32, 43, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.55rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 1;
  min-width: 0;
  max-width: min(340px, 42vw);
}

.brand img {
  /* Logo asset is a full lockup (icon + company name); size for clear desktop proportion */
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
}

/* Duplicate of logo lockup text — keep for a11y, hide visually */
.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: var(--ink);
  color: #FFFFFF;
  border: 0;
  border-radius: 8px;
  padding: 0.55rem 0.9rem;
  font-weight: 650;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  cursor: pointer;
}

.nav-toggle[aria-expanded="true"] {
  background: var(--accent);
  color: #FFFFFF;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.35rem;
}

.primary-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem 1.15rem;
  align-items: center;
}

.primary-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.4rem 0.1rem;
  position: relative;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--accent-hover);
}

.primary-nav a[aria-current="page"]::after,
.primary-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.15s ease;
  line-height: 1.25;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary,
a.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent-hover);
  box-shadow: 0 2px 10px rgba(27, 108, 168, 0.28);
}

.btn-primary:hover,
a.btn-primary:hover {
  background: var(--accent-hover);
  color: #FFFFFF;
  border-color: #0F4A73;
  box-shadow: 0 4px 16px rgba(21, 90, 140, 0.32);
}

.btn-secondary,
a.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border);
}

.btn-secondary:hover,
a.btn-secondary:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--muted);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* Header phone CTA — outline on light header (not a second solid blue pill) */
.btn-call {
  background: #FFFFFF;
  color: var(--accent-hover);
  border-color: var(--accent);
  box-shadow: none;
}

.btn-call:hover {
  background: var(--accent-soft);
  color: #0F4A73;
  border-color: var(--accent-hover);
}

/* Solid call variant when used on dark bands */
.cta-band .btn-call,
.section-navy .btn-call,
.hero .btn-call {
  background: #FFFFFF;
  color: var(--accent-hover);
  border-color: #FFFFFF;
}

.cta-band .btn-call:hover,
.section-navy .btn-call:hover,
.hero .btn-call:hover {
  background: var(--accent-soft);
  color: #0F4A73;
  border-color: #FFFFFF;
}

.btn-lg {
  padding: 0.95rem 1.65rem;
  font-size: 1.02rem;
}

/* —— Trust bar —— */
.trust-bar {
  background: var(--accent-soft);
  color: var(--ink);
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--accent-border);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
  font-size: 0.88rem;
  font-weight: 560;
  letter-spacing: 0.01em;
}

.trust-bar strong {
  color: var(--accent-hover);
  font-weight: 700;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* —— Hero —— */
.hero {
  position: relative;
  color: #FFFFFF;
  background: #0F1C2A;
  min-height: clamp(480px, 78vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 28, 42, 0.22) 0%, rgba(15, 28, 42, 0.1) 50%, rgba(15, 28, 42, 0.06) 100%),
    linear-gradient(to top, rgba(15, 28, 42, 0.2) 0%, transparent 45%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("../assets/pattern-grain.svg");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 1;
  margin: 3.5rem 0 3.25rem;
  padding: 1.75rem 1.6rem 1.9rem;
  max-width: 680px;
  border-radius: var(--radius-lg);
  background: rgba(15, 28, 42, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: 0 10px 36px rgba(15, 28, 42, 0.14);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #B8D4EB;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: #B8D4EB;
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  line-height: 1.1;
  font-weight: 700;
  color: #FFFFFF;
  max-width: 14ch;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-lead {
  margin: 0 0 2rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 38rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
}

.hero-ctas .btn {
  min-height: 3rem;
}

.hero-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-meta strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* —— Sections —— */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface);
}

/* Legacy class name; cool grey-blue bg (not cream/tan) */
.section-cream {
  background: var(--bg);
}

/* Light credential / CTA panels (class name kept for HTML compatibility) */
.section-navy {
  background: var(--accent-soft);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--accent-border);
}

.section-navy::before {
  content: none;
}

.section-navy > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3rem;
}

.section-head .eyebrow {
  justify-content: center;
  color: var(--accent);
}

.section-head .eyebrow::before {
  background: var(--accent);
}

.section-head h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3.4vw, 2.45rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-navy .section-head h2 {
  color: var(--ink);
}

.section-navy .section-head p {
  color: var(--muted);
}

.section-navy .section-head .eyebrow {
  color: var(--accent-hover);
}

.section-navy .section-head .eyebrow::before {
  background: var(--accent-hover);
}

.prose {
  max-width: 68ch;
}

.prose p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.prose h2 {
  margin: 2.75rem 0 0.85rem;
  font-size: 1.75rem;
}

.prose h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.25rem;
  color: var(--accent-hover);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose em {
  color: var(--ink);
}

/* —— Cards / grids —— */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.55rem;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-border);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  flex: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  border: 1px solid var(--accent-border);
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card a.card-link {
  margin-top: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card a.card-link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.service-card a.card-link:hover::after {
  transform: translateX(3px);
}

/* Who we are / split */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.split h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.split > div > p {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 42rem;
}

.split > div > p a {
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
}

.split > div > p a:hover {
  text-decoration: underline;
}

.split-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.split-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 0 0 2px 2px;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-weight: 520;
  font-size: 0.98rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.3 2.3 4.7-5' fill='none' stroke='%231B6CA8' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.stat {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.1rem 0.85rem;
  text-align: center;
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.65rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.1;
}

.stat span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Licences */
.licence-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.licence-item {
  background: var(--surface);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.licence-item .label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.licence-item .num {
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--accent-hover);
}

/* Testimonials */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.65rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: var(--font-sans);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-soft);
  position: absolute;
  top: 0.85rem;
  right: 1.25rem;
  pointer-events: none;
}

.stars {
  color: var(--star);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.testimonial blockquote {
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.98rem;
  color: var(--ink);
  flex: 1;
  line-height: 1.62;
}

.testimonial cite {
  font-style: normal;
  font-weight: 720;
  font-size: 0.92rem;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}

.testimonial .source {
  font-weight: 550;
  font-size: 0.78rem;
  color: var(--muted-soft);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4.5rem 0;
}

.cta-band h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  color: var(--ink);
}

.cta-band p {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-band .btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border);
}

.cta-band .btn-ghost:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1rem;
}

/* Page hero (inner) — light banner */
.page-hero {
  background: var(--surface);
  color: var(--ink);
  padding: 3.5rem 0 3.25rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  opacity: 1;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  margin-bottom: 0.65rem;
  color: var(--accent);
}

.page-hero .eyebrow::before {
  background: var(--accent);
}

.page-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--ink);
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.contact-card:hover {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
}

.contact-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
}

.contact-card p,
.contact-card ul {
  margin: 0;
  color: var(--muted);
}

.contact-card ul {
  list-style: none;
  padding: 0;
}

.contact-card li {
  margin-bottom: 0.45rem;
}

.contact-card a {
  font-weight: 700;
  text-decoration: none;
  color: var(--accent);
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Buttons inside contact cards must keep button colours (not link accent) */
.contact-card a.btn {
  text-decoration: none;
  font-weight: 700;
}

.contact-card a.btn:hover {
  text-decoration: none;
}

.contact-card a.btn-primary,
.contact-card a.btn-primary:hover {
  color: #FFFFFF;
}

.contact-card a.btn-secondary,
.contact-card a.btn-secondary:hover {
  color: var(--ink);
}

.contact-card a.btn-call {
  color: var(--accent-hover);
}

.contact-card a.btn-call:hover {
  color: #0F4A73;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.65rem;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 550;
  color: var(--ink);
}

.hours-table th {
  color: var(--muted);
  font-weight: 650;
  width: 42%;
}

/* About storytelling */
.story-stack {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.story-block {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}

.story-block:last-of-type {
  border-bottom: 0;
}

.story-block .eyebrow {
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.story-block .eyebrow::before {
  background: var(--accent);
}

.story-block h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.8vw, 1.95rem);
}

.story-block p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.story-block p:last-child {
  margin-bottom: 0;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.vision-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.vision-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  color: var(--accent-hover);
}

.vision-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* FAQ */
.faq {
  max-width: 48rem;
  display: grid;
  gap: 1.15rem;
  margin-inline: auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.75rem;
  box-shadow: var(--shadow);
}

.faq-item h2 {
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
}

.faq-item p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.faq-list {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.faq-list li {
  margin-bottom: 0.4rem;
}

.faq-list strong {
  color: var(--ink);
}

/* Mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 24px rgba(21, 32, 43, 0.1);
  gap: 0.55rem;
}

.mobile-call-bar .btn {
  flex: 1;
  padding: 0.85rem 0.5rem;
  border-radius: 10px;
}

.mobile-call-bar .btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border);
}

/* Footer — light */
.site-footer {
  background: var(--surface);
  color: var(--muted);
  padding: 3.5rem 0 2.25rem;
  position: relative;
  border-top: 1px solid var(--border);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
}

.site-footer h2 {
  margin: 0 0 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-hover);
  font-weight: 720;
}

.site-footer p {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.site-footer p strong {
  color: var(--ink);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 0.85rem;
  border-radius: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: var(--muted-soft);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 650;
}

/* Utility */
.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;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-0 { margin-top: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 720px; }

[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

/* Service detail page accent */
.service-detail .card {
  padding: 1.75rem;
}

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

.service-detail .card-icon {
  margin-bottom: 1rem;
}

/* —— Responsive —— */
@media (max-width: 1100px) {
  .brand {
    max-width: min(280px, 36vw);
  }

  .brand img {
    height: 50px;
  }

  .primary-nav {
    gap: 0.25rem 0.85rem;
  }

  .primary-nav ul {
    gap: 0.1rem 0.75rem;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .header-actions .btn {
    padding-inline: 1.05rem;
  }
}

@media (max-width: 960px) {
  .grid-3,
  .vision-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brand {
    max-width: min(260px, 48vw);
  }

  .brand img {
    height: 48px;
  }

  .header-inner {
    gap: 0.75rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    box-shadow: var(--shadow-lg);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav a {
    display: block;
    padding: 0.9rem 0.35rem;
    border-bottom: 1px solid var(--border-soft);
  }

  .primary-nav a::after {
    display: none;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    margin-top: 0.85rem;
    gap: 0.65rem;
  }

  .header-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .grid-3,
  .grid-2,
  .vision-grid,
  .footer-grid,
  .licence-bar,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mobile-call-bar {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }

  .hero {
    min-height: clamp(440px, 72vh, 620px);
    align-items: center;
  }

  /* Keep readable inset — do not zero horizontal padding */
  .hero-content {
    margin: 1.75rem 0 2rem;
    padding: 1.35rem 1.15rem 1.5rem;
    max-width: none;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-ctas .btn {
    width: 100%;
    white-space: normal;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
    padding-inline: 0.15rem;
  }

  .trust-bar-inner {
    gap: 0.55rem 1.25rem;
    font-size: 0.8rem;
    justify-content: flex-start;
  }

  /* ~1.25rem inset each side on narrow phones */
  .container {
    width: min(100% - 2.5rem, var(--max));
  }

  .brand {
    max-width: calc(100% - 6.5rem);
  }

  .brand img {
    height: 44px;
  }

  .card,
  .split-panel,
  .contact-card,
  .vision-card,
  .testimonial {
    padding-inline: 1.25rem;
  }

  .split > div > p,
  .story-block p,
  .page-hero p,
  .prose p,
  .section-head p,
  .coverage-note {
    max-width: 40rem;
  }

  .page-hero {
    padding: 2.75rem 0 2.5rem;
  }

  .cta-band {
    padding: 3.25rem 0;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-actions .btn {
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 2rem, var(--max));
  }

  .brand img {
    height: 40px;
  }

  .hero-content {
    padding: 1.2rem 1rem 1.35rem;
  }
}

@media (min-width: 761px) {
  .header-phone-desktop {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .header-phone-desktop {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .primary-nav a::after, .service-card a.card-link::after {
    transition: none;
  }
  .card:hover { transform: none; }
}

.reviews-cta {
  margin-top: 2rem;
}

/* Coverage map (Leaflet + MarkerCluster) */
.coverage-map-wrap {
  margin-top: 0.5rem;
}

.coverage-map-frame {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--surface);
}

#coverage-map {
  width: 100%;
  height: min(62vh, 520px);
  min-height: 280px;
  z-index: 0;
}

@media (max-width: 760px) {
  #coverage-map {
    height: min(55vh, 420px);
    min-height: 260px;
  }
}

.coverage-note {
  margin: 1rem auto 0;
  max-width: 42rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

/* MarkerCluster theme aligned to blue accent */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  background-color: rgba(27, 108, 168, 0.22);
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
  background-color: rgba(27, 108, 168, 0.85);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
}

.leaflet-container {
  font-family: var(--font-sans);
}

.leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.leaflet-popup-content {
  margin: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: var(--ink);
}
