:root {
  --ink: #111111;
  --ink-2: #1c1c1c;
  --slate: #4d4d4d;
  --slate-2: #585759;
  --accent: #f2994b;
  --accent-hi: #f7b174;
  --accent-dk: #d97a27;
  --text: #222222;
  --muted: #5d5d61;
  --line: #e2e2e2;
  --surface: #f6f6f6;
  --white: #ffffff;
  --max: 1200px;
  --wide: 1360px;
  --r: 6px;
  --shadow: 0 10px 30px -14px rgba(17, 17, 17, 0.35);
  --shadow-sm: 0 4px 14px -8px rgba(17, 17, 17, 0.4);
  --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  /* clip, not hidden: `hidden` makes body a scroll container and breaks position: sticky */
  overflow-x: clip;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  margin: 0 0 0.6em;
  line-height: 1.18;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.35rem); font-weight: 800; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-dk); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  z-index: 9999;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 20px; }
.wrap--wide { max-width: var(--wide); }

.section { padding-block: clamp(48px, 7vw, 88px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--surface { background: var(--surface); }
.section--ink { background: var(--ink); color: #eceaea; }
.section--ink h2,
.section--ink h3 { color: #fff; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin: 0 0 12px;
}
.section--ink .eyebrow { color: var(--accent); }

.lead { font-size: 1.08rem; color: var(--muted); }
.section--ink .lead { color: #c9c6c4; }

.rule {
  width: 62px;
  height: 4px;
  background: var(--accent);
  border: 0;
  margin: 0 0 22px;
  border-radius: 2px;
}
.center { text-align: center; }
.center .rule { margin-inline: auto; }

/* two-tone headings: opening phrase in the brand orange, as on the original site */
.accent-lead { color: var(--accent-dk); }
.section--ink .accent-lead { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  min-width: 150px;
  padding: 13px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.12s ease, box-shadow 0.2s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--accent-hi); border-color: var(--accent-hi); color: var(--ink); }

.btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.btn--light:hover { background: transparent; color: #fff; border-color: #fff; }

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.center .btn-row { justify-content: center; }

.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- grids ----------
   Fixed column counts, not auto-fit, so every row stays balanced.
   --3  : for six-item grids  -> 3 / 2 / 1  (all divide evenly)
   --triple: for three-item grids -> 3 / 1  (2 columns would orphan one)
   --4  : for four-item grids -> 4 / 2 / 1
*/
.grid { display: grid; gap: 26px; align-items: stretch; }
.grid > * { min-width: 0; }

.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--triple { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1040px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 960px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--triple { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 760px) {
  .grid--2 { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .grid--3,
  .grid--4 { grid-template-columns: minmax(0, 1fr); }
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4.5vw, 60px);
  align-items: center;
}
.split--rev > .split__media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev > .split__media { order: 0; }
}

.split__media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow);
}

/* ---------- misc content ---------- */
.ticks { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 34px; }
.ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d2d2d2; }

.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;
}


/* ===== src/components/Header.astro ===== */
  .phonebar {
    background: var(--ink);
    color: #ddd9d6;
    font-size: 0.85rem;
  }
  .phonebar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding-block: 9px;
  }
  .phonebar__email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ddd9d6;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.83rem;
    text-decoration: none;
  }
  .phonebar__email svg { width: 15px; height: 15px; flex: none; color: var(--accent); }
  .phonebar__email:hover { color: #fff; text-decoration: underline; }
  .phonebar__actions { display: flex; gap: 8px; flex-wrap: wrap; }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 4px;
    border: 1px solid #3a3a3a;
    color: #ddd9d6;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    font-family: var(--font-head);
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  }
  .pill svg { width: 15px; height: 15px; flex: none; }
  .pill:hover { background: #262626; color: #fff; border-color: #4d4d4d; }
  .pill--solid { background: var(--accent); border-color: var(--accent); color: var(--ink); }
  .pill--solid:hover { background: var(--accent-hi); border-color: var(--accent-hi); color: var(--ink); }

  /* On desktop the logo band scrolls away and only the slim nav strip sticks.
     On mobile the whole (compact) header sticks, because the burger lives in it. */
  .header {
    position: relative;
    z-index: 900;
    background: #fff;
    box-shadow: 0 2px 14px -6px rgba(17, 17, 17, 0.28);
  }
  .nav {
    position: sticky;
    top: 0;
    z-index: 900;
  }

  /* logo centred in the white band, matching the original site */
  .header__brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: var(--wide);
    margin-inline: auto;
    padding: 12px 20px;
  }
  .logo img { width: 230px; height: auto; }

  .burger {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 44px;
    padding: 0 10px;
    background: var(--ink);
    border: 0;
    border-radius: var(--r);
    cursor: pointer;
  }
  .burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
  .burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav { background: var(--slate); }
  .nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--wide);
  }
  .nav__item { position: relative; }
  .nav__item > a {
    display: block;
    padding: 12px 15px;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.83rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.18s ease, color 0.18s ease;
  }
  .nav__item > a:hover { background: #3c3c3c; color: #fff; }
  .nav__item.is-active > a { background: var(--accent); color: var(--ink); }
  .nav__toggle { display: none; }

  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 258px;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    background: var(--ink);
    border-top: 3px solid var(--accent);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }
  /* dropdowns near the right-hand end open leftwards so they never overhang the page */
  .nav__item:nth-last-child(-n + 3) > .submenu { left: auto; right: 0; }
  .nav__item:hover > .submenu,
  .nav__item:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
  .submenu a {
    display: block;
    padding: 9px 18px;
    color: #ddd9d6;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
  }
  .submenu a:hover { background: var(--accent); color: var(--ink); }

  /* keep the nine nav items on a single row all the way down to the burger */
  @media (max-width: 1340px) {
    .nav__item > a { padding: 12px 12px; font-size: 0.79rem; }
  }
  @media (max-width: 1200px) {
    .nav__item > a { padding: 12px 9px; font-size: 0.74rem; letter-spacing: -0.01em; }
  }
  @media (max-width: 1080px) {
    .phonebar__email { display: none; }
    .phonebar__inner { justify-content: center; }
  }

  @media (max-width: 1100px) {
    .burger { display: flex; }
    .logo img { width: 168px; }
    /* the compact logo band sticks; the menu opens as a panel directly beneath it */
    .header { position: sticky; top: 0; }
    .nav {
      display: none;
      position: fixed;
      top: var(--hdr-h, 72px);
      left: 0;
      right: 0;
      max-height: calc(100dvh - var(--hdr-h, 72px));
      overflow-y: auto;
      box-shadow: 0 18px 30px -18px rgba(0, 0, 0, 0.6);
    }
    .nav.is-open { display: block; }
    .nav__list { flex-direction: column; }
    .nav__item { border-bottom: 1px solid #5d5d5d; }
    .nav__item > a { padding: 14px 20px; font-size: 0.95rem; }
    .nav__toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 0;
      right: 0;
      width: 54px;
      height: 50px;
      background: transparent;
      border: 0;
      border-left: 1px solid #5d5d5d;
      color: #fff;
      cursor: pointer;
    }
    .nav__toggle svg { width: 20px; height: 20px; transition: transform 0.2s ease; }
    .nav__toggle[aria-expanded='true'] svg { transform: rotate(180deg); }
    .submenu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      display: none;
      border-top: 0;
      box-shadow: none;
      background: #3a3a3a;
    }
    .submenu.is-open { display: block; }
    .nav__item:hover > .submenu { display: none; }
    .nav__item:hover > .submenu.is-open { display: block; }
    .submenu a { padding-left: 34px; }
  }

/* ===== src/components/Hero.astro ===== */
  .hero {
    position: relative;
    isolation: isolate;
    background: var(--ink);
    overflow: hidden;
  }
  .hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
  }
  .hero__veil {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(100deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.78) 45%, rgba(10, 10, 10, 0.55) 100%);
  }

  .hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding-block: clamp(44px, 5.5vw, 74px);
  }
  @media (max-width: 980px) { .hero__inner { grid-template-columns: 1fr; } }

  .hero__copy { color: #fff; }

  .hero__kicker {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 14px;
  }

  .hero h1 {
    color: #fff;
    font-size: clamp(2.05rem, 3.9vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.45);
  }
  .hero--sentence h1 { text-transform: none; }
  .hero__accent { color: var(--accent); }

  .hero__sub {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    color: #fff;
    margin: 0 0 18px;
  }

  .hero__intro {
    color: #ded9d5;
    font-size: 1.02rem;
    max-width: 58ch;
    margin: 0 0 22px;
  }

  .hero__points {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 9px;
    color: #e8e4e1;
  }
  .hero__points li { position: relative; padding-left: 28px; }
  .hero__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 15px;
    height: 8px;
    border-left: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    transform: rotate(-45deg);
  }

  .hero__cta-line {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.93rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-hi);
    margin: 0 0 20px;
  }

  .reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 9px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 40px;
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background-color 0.18s ease, border-color 0.18s ease;
  }
  .reviews:hover { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.4); color: #fff; }
  .reviews__stars { color: var(--accent); letter-spacing: 1px; }

  @media (max-width: 980px) {
    .hero__form { max-width: 520px; width: 100%; }
  }

/* ===== src/components/ContactForm.astro ===== */
  .osam-form {
    background: #fff;
    border: 1px solid var(--line);
    border-top: 4px solid var(--accent);
    border-radius: var(--r);
    padding: clamp(22px, 3vw, 32px);
    box-shadow: var(--shadow);
  }
  .osam-form--dark {
    background: #1a1a1a;
    border-color: #2e2e2e;
    color: #ddd9d6;
  }
  .osam-form__title {
    font-size: clamp(1.15rem, 1.7vw, 1.4rem);
    margin-bottom: 18px;
  }
  .osam-form--dark .osam-form__title { color: #fff; }

  .osam-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  @media (max-width: 520px) { .osam-form__row { grid-template-columns: 1fr; } }

  .osam-form__field { display: flex; flex-direction: column; margin-bottom: 14px; }
  .osam-form__field label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .osam-form--dark .osam-form__field label { color: #e6e2df; }
  .osam-form__field label span { color: var(--accent-dk); }
  .osam-form--dark .osam-form__field label span { color: var(--accent); }

  .osam-form__field input,
  .osam-form__field textarea {
    font: inherit;
    font-size: 1rem;
    color: var(--text);
    background: #fff;
    padding: 11px 13px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    width: 100%;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
  }
  .osam-form--dark .osam-form__field input,
  .osam-form--dark .osam-form__field textarea {
    background: #262626;
    border-color: #3d3d3d;
    color: #f2f0ef;
  }
  .osam-form__field input:focus,
  .osam-form__field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(242, 153, 75, 0.25);
    outline: none;
  }
  .osam-form__field textarea { resize: vertical; }

  .osam-form__submit { width: 100%; margin-top: 4px; }

  .osam-form__error {
    margin: 0 0 12px;
    padding: 10px 13px;
    background: #fcebeb;
    border-left: 3px solid #c0392b;
    color: #8c2018;
    font-size: 0.9rem;
    border-radius: 3px;
  }

  .recaptcha-notice {
    margin: 12px 0 0;
    font-size: 0.72rem;
    line-height: 1.5;
    color: var(--muted);
  }
  .osam-form--dark .recaptcha-notice { color: #8f8b88; }
  .recaptcha-notice a { color: inherit; }

/* ===== src/components/TrustBar.astro ===== */
  /* three separate dark cards on a white ground, as on the original site */
  .trustbar { background: #fff; padding-block: clamp(30px, 4vw, 46px); }
  .trustbar__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
  }
  .trustbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 30px 24px;
    text-align: center;
    background: var(--ink);
    border-radius: var(--r);
  }
  .trustbar__item svg { width: 40px; height: 40px; color: var(--accent); flex: none; }
  .trustbar__item p {
    margin: 0;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.83rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-transform: uppercase;
    color: #eae7e5;
  }
  @media (max-width: 900px) { .trustbar__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; } }

/* ===== src/components/Accreditations.astro ===== */
  .accred { background: #fff; padding-block: 40px; border-block: 1px solid var(--line); }
  .accred__label {
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 24px;
  }
  .accred__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-items: center;
    align-items: center;
    gap: clamp(22px, 4vw, 48px);
  }
  @media (max-width: 860px) { .accred__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  .accred__list img {
    width: auto;
    max-width: 150px;
    max-height: 62px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.66;
    transition: filter 0.2s ease, opacity 0.2s ease;
  }
  .accred__list a:hover img { filter: none; opacity: 1; }

/* ===== src/components/Testimonial.astro ===== */
  .quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  .quote__stars { color: var(--accent); font-size: 1.35rem; letter-spacing: 3px; margin-bottom: 14px; }
  .quote__job {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-dk);
    margin-bottom: 18px;
  }
  blockquote { margin: 0 0 18px; }
  blockquote p {
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    line-height: 1.6;
    color: var(--ink);
    font-style: italic;
  }
  figcaption { font-family: var(--font-head); font-weight: 700; color: var(--muted); }
  .quote__link { display: inline-block; margin-top: 18px; font-weight: 700; font-size: 0.92rem; }

/* ===== src/components/CtaBand.astro ===== */
  .ctaband {
    background: var(--ink);
    color: #ddd9d6;
    padding-block: clamp(46px, 6vw, 76px);
    border-top: 4px solid var(--accent);
  }
  .ctaband h2 { color: #fff; }
  .ctaband__text { max-width: 720px; margin: 0 auto 26px; color: #c9c6c4; font-size: 1.05rem; }

/* ===== src/components/ServicePage.astro ===== */
  .narrow { max-width: 900px; }

/* ===== src/components/Footer.astro ===== */
  .footer {
    background: var(--ink);
    color: #b8b4b1;
    font-size: 0.93rem;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 34px;
    padding-block: clamp(44px, 6vw, 68px);
  }
  @media (max-width: 1000px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }

  .footer h3 {
    color: #fff;
    font-size: 1.02rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
  }
  .footer__h3-sm { margin-top: 26px; }
  .footer__logo { width: 150px; height: auto; margin-bottom: 18px; background: #fff; padding: 8px 10px; border-radius: var(--r); }
  .footer p { margin-bottom: 0.9em; }
  .footer__accred { font-size: 0.85rem; color: #918d8a; }
  .footer__hours { margin: 0; }

  .footer__links,
  .footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
  }
  .footer a { color: #cfcbc8; text-decoration: none; }
  .footer a:hover { color: var(--accent); text-decoration: underline; }
  .footer__contact strong { color: #fff; }

  .social { display: flex; gap: 12px; list-style: none; margin: 14px 0 0; padding: 0; }
  .social img { width: 34px; height: 34px; border-radius: 50%; }
  .social a { display: block; transition: transform 0.18s ease; }
  .social a:hover { transform: translateY(-2px); }

  .footer__base {
    border-top: 1px solid #2e2e2e;
    padding-block: 22px;
    text-align: center;
    font-size: 0.82rem;
    color: #8f8b88;
  }
  .footer__base p { margin: 0 0 7px; }
  .footer__copy { color: #b8b4b1; }
  .footer__legal { font-size: 0.78rem; }
  .footer__legal a { color: #8f8b88; }

/* ===== src/components/CookieBanner.astro ===== */
  .cookie {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1100px;
    margin-inline: auto;
    padding: 18px 22px;
    background: var(--ink);
    color: #ddd9d6;
    border-top: 3px solid var(--accent);
    border-radius: var(--r);
    box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.7);
  }
  .cookie[hidden] { display: none; }
  .cookie__text { margin: 0; font-size: 0.9rem; flex: 1 1 320px; }
  .cookie__text a { color: var(--accent); }
  .cookie__actions { display: flex; gap: 10px; }
  .cookie__btn {
    min-width: 118px;
    min-height: 44px;
    padding: 11px 22px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.18s ease;
  }
  .cookie__btn--reject { background: #6b7280; color: #fff; }
  .cookie__btn--reject:hover { background: #7d8592; }
  .cookie__btn--accept { background: var(--accent); color: var(--ink); }
  .cookie__btn--accept:hover { background: var(--accent-hi); }
  @media (max-width: 520px) {
    .cookie__actions { width: 100%; }
    .cookie__btn { flex: 1; min-width: 0; }
  }

/* ===== src/pages/404.astro ===== */
  .msg { padding-block: clamp(56px, 8vw, 104px); }
  .msg p { max-width: 620px; margin-inline: auto; }
  .msg .btn-row { margin-top: 28px; }
  .quick {
    list-style: none;
    margin: 36px 0 26px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .quick a {
    display: inline-block;
    padding: 9px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 40px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--text);
    text-decoration: none;
  }
  .quick a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

/* ===== src/pages/contact-us.astro ===== */
  .contact-list { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 18px; }
  .contact-list li { display: grid; gap: 3px; padding-left: 18px; border-left: 3px solid var(--accent); }
  .contact-list__label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .contact-list a { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; text-decoration: none; }
  .contact-list a:hover { text-decoration: underline; }

  .connect-heading { margin-top: 30px; font-size: 1.1rem; }
  .connect { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
  .connect a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
  }
  .connect a:hover { color: var(--accent-dk); }
  .connect img { width: 30px; height: 30px; border-radius: 50%; }

  .map-intro { max-width: 760px; margin-inline: auto; }
  .map {
    margin: 34px 0 30px;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow);
    line-height: 0;
  }
  .map iframe { width: 100%; height: clamp(300px, 45vw, 460px); border: 0; }

  .area-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .area-links a {
    display: inline-block;
    padding: 9px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 40px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--text);
    text-decoration: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  }
  .area-links a:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

/* ===== src/pages/index.astro ===== */
  .strong-line {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--ink);
    font-size: 1.05rem;
  }

  .svc-grid { margin-top: 38px; }
  .svc { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; height: 100%; }
  .svc__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .svc:hover .svc__link { transform: translateY(-4px); }
  .svc:hover { box-shadow: var(--shadow); border-color: #d4d4d4; }
  .svc__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface); }
  .svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
  .svc:hover .svc__media img { transform: scale(1.04); }
  .svc__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
  .svc__body h3 { margin-bottom: 10px; }
  .svc__body p { color: var(--muted); font-size: 0.97rem; flex: 1; }
  .svc__more {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--accent-dk);
  }
  .svc:hover .svc__more { color: var(--ink); }

  /* "Why choose us" as a single bulleted list beside an image, as on the original site */
  .why-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 18px; }
  .why-list li { position: relative; padding-left: 34px; }
  .why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 18px;
    height: 10px;
    border-left: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
    transform: rotate(-45deg);
  }
  .why-list strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.02rem;
    color: #fff;
    margin-bottom: 2px;
  }
  .why-list span { color: #b8b4b1; font-size: 0.96rem; }

  /* six images, always an even 3 x 2 (2 x 3 on tablet, 1 column on phones) */
  .gallery {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r);
    aspect-ratio: 4 / 3;
  }
  @media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
  @media (max-width: 560px) { .gallery { grid-template-columns: minmax(0, 1fr); } }

/* ===== src/pages/services/[slug].astro ===== */
  .faq {
    margin: 38px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
  }
  @media (max-width: 960px) { .faq { grid-template-columns: minmax(0, 1fr); } }
  .faq__item {
    padding: 26px;
    background: #191919;
    border: 1px solid #2c2c2c;
    border-left: 3px solid var(--accent);
    border-radius: var(--r);
  }
  .faq dt {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 10px;
  }
  .faq dd { margin: 0; color: #b8b4b1; font-size: 0.96rem; }

  .rel-grid { margin-top: 38px; }
  .rel {
    display: block;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    text-decoration: none;
    color: var(--muted);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .rel:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); color: var(--muted); }
  .rel h3 { font-size: 1.12rem; margin-bottom: 8px; }
  .rel p { font-size: 0.95rem; margin: 0; }
  .rel__more { display: inline-block; margin-top: 14px; color: var(--accent-dk); font-size: 1.25rem; }

/* ===== src/pages/thank-you.astro ===== */
  .msg { padding-block: clamp(60px, 9vw, 120px); }
  .msg__icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    background: var(--accent);
    border-radius: 50%;
    color: var(--ink);
  }
  .msg__icon svg { width: 38px; height: 38px; }
  .msg p { max-width: 620px; margin-inline: auto; }
  .msg .btn-row { margin-top: 30px; }
