/* ==========================================================================
   Bellcom — Homepage Mockup
   Custom CSS (no framework). Design tokens first, then components.
   Brand: Mullingar-based VoIP & business phone specialists.
   Teal = trust / links / highlights.  Red = important CTAs only.
   ========================================================================== */

/* Self-hosted Inter (variable, latin subset) — no external font request. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}

/* ---------------------------------------------------------------- Tokens -- */
:root {
  /* Brand colours */
  --teal:        #007070;
  --teal-dark:   #005F5F;
  --teal-light:  #2F8F8F;
  --red:         #801010;
  --red-cta:     #B01010;
  --red-dark:    #701000;

  --white:       #FFFFFF;
  --off-white:   #F7FAFA;
  --grey-light:  #EEF2F2;
  --text:        #101828;
  --text-muted:  #475467;
  --border:      #E2E9E9;

  /* Typography */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --fs-eyebrow: 0.8125rem;   /* 13px */
  --fs-body:    1rem;        /* 16px */
  --fs-lead:    1.125rem;    /* 18px */
  --fs-h3:      1.25rem;     /* 20px */
  --fs-h2:      clamp(1.6rem, 1.1rem + 2vw, 2.35rem);
  --fs-h1:      clamp(2.1rem, 1.4rem + 3.2vw, 3.4rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --section-y: clamp(3rem, 2rem + 4vw, 5.5rem);

  /* Radii & shadows */
  --radius:    12px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(16, 24, 40, 0.12);
  --shadow-teal: 0 10px 28px rgba(0, 112, 112, 0.18);

  --container: 1180px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.2; margin: 0; color: var(--text); font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* Accessible focus states (do not remove) */
:focus-visible {
  outline: 3px solid var(--teal-light);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------ Utilities -- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: 820px; }

.icon { width: 1.15em; height: 1.15em; flex: none; }

.section { padding-block: var(--section-y); }
.section--alt { background: var(--off-white); }

.section__head { max-width: 720px; margin: 0 auto var(--sp-7); text-align: center; }
.section__title { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.01em; }
.section__intro { margin-top: var(--sp-4); color: var(--text-muted); font-size: var(--fs-lead); }

/* ----------------------------------------------------------- Buttons ----- */
.btn {
  --btn-bg: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--red-cta); color: #fff; box-shadow: 0 8px 20px rgba(176, 16, 16, 0.22); }
.btn--primary:hover { background: var(--red-dark); }

.btn--outline { background: #fff; color: var(--teal-dark); border-color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }

.btn--lg { padding: 1.05rem 1.75rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ============================================================ 1. Topbar == */
.topbar {
  background: var(--teal-dark);
  color: #eafafa;
  font-size: 0.875rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 42px;
}
.topbar__contact { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #eafafa;
}
a.topbar__item:hover { color: #fff; text-decoration: none; }
.topbar__item .icon { color: var(--teal-light); }
.topbar__right { display: flex; align-items: center; gap: var(--sp-4); }
.topbar__irish { font-weight: 600; white-space: nowrap; }

/* ============================================================ 2. Header == */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  min-height: var(--header-h);
}
.header__logo { display: inline-flex; align-items: center; }
.header__logo img { width: auto; height: 42px; }

.nav { margin-left: auto; }
.nav__menu { display: flex; flex-wrap: nowrap; align-items: center; gap: 2px; }
.nav__link { white-space: nowrap; }
.nav__link {
  display: inline-block;
  padding: 0.55rem 0.7rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
}
.nav__link:hover { color: var(--teal-dark); background: var(--grey-light); text-decoration: none; }
.nav__link[aria-current="page"] { color: var(--teal-dark); }

.header__cta { flex: none; }

.nav__toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  cursor: pointer;
}
.nav__toggle-label { line-height: 1; }

/* ============================================================== 3. Hero == */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  /* Fallback if the background image fails to load. */
  background: linear-gradient(180deg, var(--off-white), #fff 78%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* White scrim: strong on the left so the heading stays readable,
   clearing toward the right where the phone image sits. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.92) 38%,
    rgba(255, 255, 255, 0.70) 58%,
    rgba(255, 255, 255, 0.42) 100%);
}
@media (max-width: 860px) {
  .hero__bg img { object-position: 68% center; }
  .hero::before {
    background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.90) 55%,
      rgba(255, 255, 255, 0.82) 100%);
  }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 2rem + 4vw, 4.5rem);
}
.hero__heading {
  font-size: clamp(2.1rem, 1.25rem + 2.9vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero__sub {
  margin-top: var(--sp-4);
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 34ch;
}
.hero__bullets { margin-top: var(--sp-5); display: grid; gap: var(--sp-3); }
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--text);
}
.icon--check { color: var(--teal); margin-top: 2px; }

.hero__ctas { margin-top: var(--sp-6); display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.hero__trust {
  margin-top: var(--sp-5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.hero__trust:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 64, 64, 0.16);
  text-decoration: none;
}
.hero__trust .google-g { width: 18px; height: 18px; }
.hero__trust .star { width: 15px; height: 15px; }
.hero__trust-score { font-weight: 800; color: var(--text); font-size: 1rem; }

.stars { display: inline-flex; gap: 2px; color: #F5A623; }
.stars .star { width: 18px; height: 18px; }
.stars--lg .star { width: 24px; height: 24px; }

.hero__media { position: relative; }
.hero__phone {
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  filter: drop-shadow(0 26px 40px rgba(16, 24, 40, 0.18));
}

/* ======================================================== 4. Trust strip = */
.trust {
  background: var(--teal);
  color: #fff;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-4);
  padding-block: var(--sp-5);
}
.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}
.trust__item .icon { width: 26px; height: 26px; color: #bdeaea; }

/* =========================================================== 5. Services = */
.cards { display: grid; gap: var(--sp-5); }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cfe0e0; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,112,112,0.12), rgba(0,112,112,0.05));
  color: var(--teal);
  margin-bottom: var(--sp-4);
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: var(--fs-h3); font-weight: 700; }
.card__copy { margin-top: var(--sp-3); color: var(--text-muted); }
.card__link {
  margin-top: var(--sp-4);
  align-self: flex-start;
  font-weight: 700;
  color: var(--teal-dark);
  display: inline-flex;
  gap: 6px;
}
.card__link:hover { color: var(--red-cta); text-decoration: none; }
.card__link span { transition: transform 0.15s ease; }
.card__link:hover span { transform: translateX(3px); }

/* ============================================================ 6. Reviews = */
.reviews__badge { text-transform: none; letter-spacing: 0; font-size: 0.9375rem; }
.google-g { width: 18px; height: 18px; }
.google-g--sm { width: 20px; height: 20px; }

/* Google rating badge under the section heading */
.reviews__rating {
  margin-top: var(--sp-4);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 2px rgba(0, 64, 64, 0.06), 0 10px 26px -14px rgba(0, 64, 64, 0.28);
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.reviews__rating .google-g { width: 22px; height: 22px; }
.reviews__rating .star { width: 20px; height: 20px; }
.reviews__rating-score {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.reviews__grid { margin-bottom: var(--sp-6); }

/* Reviews carousel */
.reviews__carousel { position: relative; margin-bottom: var(--sp-5); }
.reviews__track {
  display: flex;
  gap: var(--sp-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 12px 6px var(--sp-5);
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-padding-left: 6px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 28px, #000 calc(100% - 28px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 28px, #000 calc(100% - 28px), transparent);
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__track:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; border-radius: var(--radius-lg); }
.reviews__track .review {
  flex: 0 0 clamp(260px, 82%, 360px);
  scroll-snap-align: start;
}
@media (min-width: 700px) {
  .reviews__track .review { flex-basis: 344px; }
}
.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(0, 64, 64, 0.16);
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.2s ease, transform 0.15s ease;
}
.reviews__arrow:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.reviews__arrow:active { transform: translateY(-50%) scale(0.94); }
.reviews__arrow:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.reviews__arrow--prev { left: -14px; }
.reviews__arrow--next { right: -14px; }
.reviews__arrow[disabled] { opacity: 0; pointer-events: none; }
.reviews__arrow svg { width: 22px; height: 22px; }
@media (max-width: 720px) {
  .reviews__arrow { display: none; } /* native swipe on touch devices */
  .reviews__carousel { margin-left: calc(-1 * var(--sp-4)); margin-right: calc(-1 * var(--sp-4)); }
  .reviews__track {
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 16px, #000 calc(100% - 16px), transparent);
    mask-image: linear-gradient(to right, transparent, #000 16px, #000 calc(100% - 16px), transparent);
  }
}

.review {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 112, 112, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: 0 1px 2px rgba(0, 64, 64, 0.04), 0 16px 32px -20px rgba(0, 64, 64, 0.22);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(0, 64, 64, 0.05), 0 24px 44px -20px rgba(0, 64, 64, 0.3);
}
@media (prefers-reduced-motion: reduce) {
  .review, .review:hover { transform: none; transition: none; }
}
.review__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
}
.review__quote {
  margin: 0;
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review__quote::before {
  content: "\201C\00A0";
  font-weight: 800;
  font-size: 1.3em;
  line-height: 0;
  color: var(--teal);
}
.review__author {
  margin-top: var(--sp-5);
  display: flex;
  align-items: center;
  gap: 12px;
}
.review__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  font-weight: 700;
}
.review__name { font-weight: 600; font-size: 0.9375rem; line-height: 1.3; }
.reviews__cta { text-align: center; }
.reviews__cta .btn { display: inline-flex; align-items: center; gap: 10px; }

/* =========================================================== 7. Coverage = */
/* Local coverage — full-width Ireland background band */
.coverage-band {
  position: relative;
  isolation: isolate;
  padding-block: clamp(3.5rem, 8vw, 7rem);
  background-color: #071627;
  background-image: url("../images/bellcom-ireland-coverage-network-wide.jpg");
  background-image: -webkit-image-set(url("../images/bellcom-ireland-coverage-network-wide.webp") type("image/webp"), url("../images/bellcom-ireland-coverage-network-wide.jpg") type("image/jpeg"));
  background-image: image-set(url("../images/bellcom-ireland-coverage-network-wide.webp") type("image/webp"), url("../images/bellcom-ireland-coverage-network-wide.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #fff;
}
.coverage-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #071627 0%, #071627 32%, rgba(7, 22, 39, 0.78) 50%, rgba(7, 22, 39, 0.28) 74%, rgba(7, 22, 39, 0) 100%);
}
.coverage-band::after {
  /* soft teal glow to lift the flat navy behind the text column */
  content: "";
  position: absolute;
  z-index: -1;
  left: -6%;
  top: 12%;
  width: 540px;
  height: 540px;
  max-width: 60vw;
  background: radial-gradient(circle, rgba(0, 112, 112, 0.38), transparent 65%);
  filter: blur(48px);
  pointer-events: none;
}
.coverage-band__inner { position: relative; }
.coverage-band .section__title {
  color: #fff;
  max-width: 15ch;
  text-wrap: balance;
}
.coverage-band .section__intro {
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
}
.coverage-band__list {
  margin-block: var(--sp-5) var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  max-width: 620px;
}
.coverage-band__list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  padding: 9px 16px 9px 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.coverage-band__list li:has(.pin--home) {
  background: rgba(176, 16, 16, 0.16);
  border-color: rgba(255, 130, 130, 0.28);
}
.coverage-band__list li:has(.pin--all) {
  background: rgba(0, 112, 112, 0.2);
  border-color: rgba(47, 143, 143, 0.4);
}
.coverage-band__list em { color: rgba(255, 255, 255, 0.65); font-style: normal; font-weight: 500; }
.coverage-band__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.coverage-band__quote-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.coverage-band__quote-link:hover { color: #fff; border-color: #fff; }
.coverage-band__quote-link span { display: inline-block; transition: transform 0.15s ease; }
.coverage-band__quote-link:hover span { transform: translateX(3px); }
@media (max-width: 640px) {
  .coverage-band { background-position: center; }
  .coverage-band::before { background: linear-gradient(180deg, rgba(7, 22, 39, 0.88), rgba(7, 22, 39, 0.82)); }
  .coverage-band .section__title { max-width: none; }
  .coverage-band__list { max-width: none; }
}
.pin {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--teal); flex: none;
  box-shadow: 0 0 0 4px rgba(0,112,112,0.12);
}
.pin--home { background: var(--red-cta); box-shadow: 0 0 0 4px rgba(176,16,16,0.14); }
.pin--all { background: var(--teal-dark); }

/* Infrastructure / SIP trunks split section */
.infra__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.infra__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}
.infra__list {
  list-style: none;
  margin: var(--sp-4) 0 var(--sp-5);
  padding: 0;
  display: grid;
  gap: 12px;
}
.infra__list li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
}
.infra__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 720px) {
  .infra__inner { grid-template-columns: 1fr; }
  .infra__media { order: -1; }
}

/* Industries page — per-sector banner images */
.industry-figure {
  margin: 18px 0 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  line-height: 0;
}
.industry-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

/* ========================================================= 8. Lead gen === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: var(--sp-4);
}
.step__title { font-size: var(--fs-h3); font-weight: 700; }
.step__copy { margin-top: var(--sp-2); color: var(--text-muted); }
.lead-gen__cta { text-align: center; margin-top: var(--sp-7); }

/* ======================================================== 9. Case study == */
.case {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.case__media {
  background: linear-gradient(150deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: var(--sp-6);
}
.case__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}
.case__badge svg { width: 56px; height: 56px; color: #bdeaea; }
.case__body { padding: var(--sp-6); }
.case__title { font-size: 1.5rem; font-weight: 800; }
.case__location {
  margin-top: var(--sp-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  font-weight: 600;
}
.case__copy { margin-top: var(--sp-4); color: var(--text-muted); }
.case__results {
  margin-top: var(--sp-4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2) var(--sp-4);
}
.case__results li { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.case .card__link { margin-top: var(--sp-5); }

/* =============================================================== 10. FAQ = */
.accordion { display: grid; gap: var(--sp-3); }
.accordion__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion__heading { margin: 0; }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.accordion__trigger:hover { color: var(--teal-dark); }
.accordion__chevron { width: 20px; height: 20px; color: var(--teal); transition: transform 0.2s ease; flex: none; }
.accordion__trigger[aria-expanded="true"] .accordion__chevron { transform: rotate(180deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.25s ease, visibility 0.25s ease;
}
.accordion__panel p { padding: 0 1.25rem 1.2rem; color: var(--text-muted); margin: 0; }
.accordion__item.is-open .accordion__panel { max-height: 400px; visibility: visible; }

/* =========================================================== 11. Contact = */
.contact {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(160deg, var(--teal), var(--teal-dark));
  color: #fff;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact__title { color: #fff; font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.01em; }
.contact__lead { margin-top: var(--sp-3); font-size: var(--fs-lead); color: #daf2f2; }
.contact__details { margin-top: var(--sp-6); display: grid; gap: var(--sp-4); }
.contact__details li { display: flex; align-items: center; gap: 12px; font-size: 1.0625rem; }
.contact__details .icon { color: #bdeaea; width: 22px; height: 22px; }
.contact__details a { color: #fff; font-weight: 600; }
.contact__reassure {
  margin-top: var(--sp-6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.contact__reassure .icon--check { color: #9be8b0; }

/* Form */
.contact__form-wrap { }
.lead-form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  box-shadow: var(--shadow-lg);
}
.lead-form__title { font-size: 1.35rem; font-weight: 800; margin-bottom: var(--sp-4); }
.field { margin-bottom: var(--sp-4); display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.field label { font-weight: 600; font-size: 0.9375rem; margin-bottom: 6px; }
.req { color: var(--red-cta); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--off-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,112,112,0.15);
}
.field textarea { resize: vertical; }
.field.is-invalid input,
.field.is-invalid select { border-color: var(--red-cta); background: #fff5f5; }
.field__error { color: var(--red-cta); font-size: 0.8125rem; font-weight: 600; margin-top: 5px; min-height: 1em; }
.lead-form__note { margin-top: var(--sp-3); font-size: 0.8125rem; color: var(--text-muted); text-align: center; }

.lead-form__success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: #eefaf1;
  border: 1.5px solid #b7e6c4;
  border-radius: var(--radius);
}
.lead-form__success .icon { color: #1a8a45; width: 26px; height: 26px; flex: none; }
.lead-form__success strong { display: block; }
.lead-form__success span { color: var(--text-muted); font-size: 0.9375rem; }

/* ============================================================ 12. Footer = */
.footer { background: #0c2a2a; color: #cddede; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-block: var(--sp-8) var(--sp-6);
}
.footer__logo {
  height: 40px;
  width: auto;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
}
.footer__desc { margin-top: var(--sp-4); color: #a9c4c4; max-width: 42ch; font-size: 0.9375rem; }
.footer__contact { margin-top: var(--sp-4); display: grid; gap: 6px; font-size: 0.9375rem; }
.footer__contact a { color: #eafafa; }
.footer__heading { font-size: 0.9375rem; font-weight: 700; color: #fff; margin-bottom: var(--sp-3); text-transform: uppercase; letter-spacing: 0.05em; }
.footer__col ul { display: grid; gap: 8px; }
.footer__col a { color: #cddede; font-size: 0.9375rem; }
.footer__col a:hover { color: #fff; }

.footer__bar { border-top: 1px solid rgba(255,255,255,0.12); }
.footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-block: var(--sp-4);
  font-size: 0.875rem;
  color: #9bb6b6;
  flex-wrap: wrap;
}

/* ===================================================== Sticky call (mob) = */
.sticky-call {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  align-items: center;
  gap: 8px;
  background: var(--red-cta);
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px rgba(176,16,16,0.4);
}
.sticky-call:hover { text-decoration: none; background: var(--red-dark); }
.sticky-call .icon { width: 20px; height: 20px; }

/* ============================================================ Responsive = */
@media (max-width: 1024px) {
  .trust__inner { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  /* Collapse primary nav into hamburger */
  .nav__toggle { display: inline-flex; }
  .header__cta { display: none; }
  .nav__menu {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: var(--sp-3);
  }
  .nav__menu.is-open { display: flex; }
  .nav__link { padding: 0.85rem 0.75rem; border-radius: 8px; font-size: 1rem; }
  .header { position: sticky; }
  .nav { position: static; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: 2; }
  .hero__text { order: 1; }
  .hero__phone { max-width: 460px; }
  .hero__sub { max-width: none; }

  .coverage__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; }
  .case__media { min-height: 180px; }
}

@media (max-width: 640px) {
  .topbar__contact { gap: var(--sp-4); }
  /* On mobile keep the phone number prominent; hide secondary items */
  .topbar__item--location, .topbar__right { display: none; }

  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .cards--3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .coverage__list { grid-template-columns: 1fr; }
  .case__results { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .hero__ctas .btn { width: 100%; }
  .sticky-call { display: inline-flex; }
  .footer__bar-inner { justify-content: center; text-align: center; }
}

@media (max-width: 380px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .btn:hover, .card:hover { transform: none; }
  .accordion__panel { transition: none; }
}

/* ====================================================== v2 additions ===== */

/* Hero secondary actions */
.btn--ghost { background: transparent; color: var(--teal-dark); border-color: transparent; padding-inline: 0.5rem; }
.btn--ghost:hover { background: transparent; color: var(--red-cta); }
.hero__alt-actions {
  margin-top: var(--sp-4);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 0.9375rem; color: var(--text-muted);
}
.link-wa { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: #128C4B; }
.link-wa .icon { width: 18px; height: 18px; }
.link-plain { font-weight: 600; color: var(--teal-dark); }

/* Featured service */
.featured {
  display: grid; grid-template-columns: 1.35fr 1fr;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: var(--sp-5);
}
.featured__body { padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.featured__tag {
  display: inline-block; font-weight: 700; font-size: 0.8125rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal);
  background: rgba(0,112,112,0.1); padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill); margin-bottom: var(--sp-3);
}
.featured__title { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2rem); font-weight: 800; letter-spacing: -0.01em; }
.featured__copy { margin-top: var(--sp-3); color: var(--text-muted); font-size: var(--fs-lead); max-width: 48ch; }
.featured__list { margin-top: var(--sp-4); display: grid; gap: var(--sp-2); }
.featured__list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.featured__ctas { margin-top: var(--sp-5); display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2); }
.featured__aside {
  background: linear-gradient(160deg, var(--teal), var(--teal-dark));
  color: #fff; display: flex; align-items: center;
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
.featured__panel-icon {
  display: inline-flex; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.15); align-items: center; justify-content: center;
  margin-bottom: var(--sp-3);
}
.featured__panel-icon svg { width: 26px; height: 26px; color: #fff; }
.featured__panel-title { font-weight: 800; font-size: 1.1rem; margin-bottom: var(--sp-3); }
.featured__panel ul { display: grid; gap: 10px; }
.featured__panel li { display: flex; align-items: center; gap: 10px; color: #eafafa; font-weight: 500; }
.featured__panel li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #bdeaea; flex: none; }

/* Supporting cards */
.cards--auto { grid-template-columns: repeat(4, 1fr); }
.card--sm { padding: var(--sp-5); }
.card--sm .card__icon { width: 46px; height: 46px; margin-bottom: var(--sp-3); }
.card--sm .card__title { font-size: 1.0625rem; }

/* Why Bellcom / comparison */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.compare__col { border-radius: var(--radius-lg); padding: clamp(1.25rem, 1rem + 1.5vw, 2rem); border: 1px solid var(--border); }
.compare__col--good { background: #fff; border-color: #bfe0e0; box-shadow: var(--shadow-md); }
.compare__col--bad { background: var(--grey-light); }
.compare__title { font-size: 1.25rem; font-weight: 800; margin-bottom: var(--sp-4); color: var(--text); min-height: 34px; display: flex; align-items: center; }
.compare__title--muted { color: var(--text-muted); }
.compare__logo { height: 30px; width: auto; display: block; }
.compare__list { display: grid; gap: var(--sp-3); }
.compare__list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.compare__col--bad .compare__list li { color: var(--text-muted); }
.ic-yes { width: 22px; height: 22px; color: var(--teal); flex: none; margin-top: 1px; }
.ic-no { width: 22px; height: 22px; color: #B42318; flex: none; margin-top: 1px; opacity: 0.75; }
.switch-note {
  margin-top: var(--sp-5); display: flex; align-items: center; gap: var(--sp-4);
  background: #fff; border: 1px solid var(--border); border-left: 5px solid var(--teal);
  border-radius: var(--radius); padding: var(--sp-5); box-shadow: var(--shadow-sm);
}
.switch-note > .icon { width: 32px; height: 32px; color: var(--teal); flex: none; }
.switch-note p { flex: 1; color: var(--text-muted); margin: 0; }
.switch-note strong { color: var(--text); }
.switch-note .btn { flex: none; }

/* Compatibility strip */
.compat { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding-block: var(--sp-6); }
.compat__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--sp-4) var(--sp-5); text-align: center; }
.compat__label { font-weight: 700; color: var(--text); }
.compat__chips { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }
.compat__chips li {
  font-weight: 600; font-size: 0.9375rem; color: var(--teal-dark);
  background: var(--off-white); border: 1px solid var(--border);
  padding: 0.5rem 0.9rem; border-radius: var(--radius-pill);
}
.compat__chips li.compat__chip--brand { display: inline-flex; align-items: center; gap: 8px; }
.compat__chips li.compat__chip--brand img { width: 20px; height: auto; }

/* Referential brand mark floated in page content (e.g. Teams page) */
.prose .brand-float {
  float: right;
  width: clamp(64px, 9vw, 92px);
  height: auto;
  margin: 0 0 var(--sp-4) var(--sp-4);
}

.footer__legal {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.65;
  padding: 2px var(--sp-4) 12px;
  max-width: 920px;
  margin-inline: auto;
}

/* Lead-gen grid + callback form */
.lead-gen__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.steps--stack { grid-template-columns: 1fr; gap: var(--sp-4); }
.step--row { display: flex; align-items: flex-start; gap: var(--sp-4); padding: var(--sp-5); }
.step--row .step__num { margin-bottom: 0; }
.callback { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2rem); box-shadow: var(--shadow-md); }
.callback__title { font-size: 1.35rem; font-weight: 800; }
.callback__sub { margin-top: var(--sp-2); color: var(--text-muted); margin-bottom: var(--sp-4); }
.callback__form .field { margin-bottom: var(--sp-3); }
.callback__or { margin-top: var(--sp-3); text-align: center; color: var(--text-muted); font-size: 0.9375rem; }
.callback__or a { font-weight: 700; }
.callback__success { margin-top: var(--sp-3); display: flex; gap: 10px; align-items: center; background: #eefaf1; border: 1.5px solid #b7e6c4; border-radius: var(--radius); padding: var(--sp-3) var(--sp-4); font-weight: 600; }
.callback__success .icon { color: #1a8a45; width: 22px; height: 22px; flex: none; }

/* Sticky mobile action bar (call + WhatsApp) */
.sticky-actions { display: none; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; gap: 10px; }
.sticky-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; padding: 0.9rem 1rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-lg); }
.sticky-btn--call { background: var(--red-cta); color: #fff; }
.sticky-btn--call:hover { background: var(--red-dark); text-decoration: none; }
.sticky-btn--wa { background: #128C4B; color: #fff; }
.sticky-btn--wa:hover { background: #0F7A41; text-decoration: none; }
.sticky-btn .icon { width: 20px; height: 20px; }

/* v2 responsive */
@media (max-width: 1024px) {
  .cards--auto { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .featured { grid-template-columns: 1fr; }
  .lead-gen__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .compare { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cards--auto { grid-template-columns: 1fr; }
  .switch-note { flex-direction: column; align-items: flex-start; }
  .sticky-actions { display: flex; }
  body { padding-bottom: 74px; }   /* room for the fixed action bar */
}

/* ================================================ Articles / blog ======== */

/* Page header band (articles index, archives, single) */
.page-hero {
  background:
    radial-gradient(900px 380px at 80% -20%, rgba(0,112,112,0.08), transparent 60%),
    linear-gradient(180deg, var(--off-white), #fff 85%);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(2rem, 1.5rem + 3vw, 3.5rem);
}
.page-hero__title { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.02em; max-width: 20ch; }
.page-hero__sub { margin-top: var(--sp-3); font-size: var(--fs-lead); color: var(--text-muted); max-width: 60ch; }

/* Breadcrumbs */
.breadcrumbs { font-size: 0.875rem; color: var(--text-muted); margin-bottom: var(--sp-3); }
.breadcrumbs a { color: var(--teal-dark); font-weight: 600; }
.breadcrumbs span[aria-current] { color: var(--text-muted); }
.breadcrumbs .sep { margin: 0 6px; opacity: 0.6; }

/* Article grid + cards */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.article-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #cfe0e0; }
.article-card__media { display: block; aspect-ratio: 16 / 9; background: var(--grey-light); overflow: hidden; }
.article-card__media img { width: 100%; height: 100%; object-fit: cover; }
.article-card__ph {
  display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;
  background: linear-gradient(150deg, var(--teal), var(--teal-dark)); color: #bdeaea;
}
.article-card__ph svg { width: 48px; height: 48px; }
.article-card__body { padding: var(--sp-5); display: flex; flex-direction: column; flex: 1; }
.article-card__cat {
  align-self: flex-start; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--teal); background: rgba(0,112,112,0.1);
  padding: 0.3rem 0.6rem; border-radius: var(--radius-pill); margin-bottom: var(--sp-3);
}
.article-card__title { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
.article-card__title a { color: var(--text); }
.article-card__title a:hover { color: var(--teal-dark); text-decoration: none; }
.article-card__excerpt { margin-top: var(--sp-2); color: var(--text-muted); flex: 1; }
.article-card__meta {
  margin-top: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.875rem; color: var(--text-muted);
}
.article-card__read { font-weight: 700; color: var(--teal-dark); }

/* Single article */
.article__header { padding-top: var(--sp-6); }
.article__cat {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--teal); background: rgba(0,112,112,0.1);
  padding: 0.3rem 0.6rem; border-radius: var(--radius-pill); margin-bottom: var(--sp-3);
}
.article__title { font-size: clamp(1.8rem, 1.3rem + 2.4vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; }
.article__meta { margin-top: var(--sp-3); color: var(--text-muted); font-size: 0.9375rem; }
.article__hero { margin-block: var(--sp-6); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.article__hero img { width: 100%; height: auto; display: block; }
.article__content { padding-block: var(--sp-5) var(--sp-7); }

/* Long-form prose typography */
.prose { font-size: 1.075rem; line-height: 1.75; color: var(--text); }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: 1.6rem; font-weight: 800; margin-top: 1.8em; letter-spacing: -0.01em; }
.prose h3 { font-size: 1.3rem; font-weight: 700; margin-top: 1.5em; }
.prose p, .prose ul, .prose ol { color: var(--text); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-top: 0.4em; list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--teal-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--red-cta); }
.prose img { border-radius: var(--radius); margin-block: 1.5em; }
.prose blockquote {
  border-left: 4px solid var(--teal); padding: 0.25em 0 0.25em 1.1em;
  color: var(--text-muted); font-style: italic;
}
.prose code { background: var(--grey-light); padding: 0.15em 0.4em; border-radius: 6px; font-size: 0.9em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }

/* Article CTA band */
.article__cta {
  margin-top: var(--sp-7);
  background: linear-gradient(160deg, var(--teal), var(--teal-dark));
  color: #fff; text-align: center; padding-block: var(--section-y);
}
.article__cta h2 { color: #fff; font-size: var(--fs-h2); font-weight: 800; }
.article__cta p { margin-top: var(--sp-3); color: #daf2f2; font-size: var(--fs-lead); }
.article__cta .btn { margin-top: var(--sp-5); }

/* Pagination */
.pagination { margin-top: var(--sp-7); display: flex; justify-content: center; }
.pagination .nav-links { display: inline-flex; flex-wrap: wrap; gap: 6px; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px;
  padding: 0 12px; border: 1px solid var(--border); border-radius: 10px;
  font-weight: 700; color: var(--teal-dark); background: #fff;
}
.pagination a.page-numbers:hover { background: var(--grey-light); text-decoration: none; }
.pagination .page-numbers.current { background: var(--teal); color: #fff; border-color: var(--teal); }

@media (max-width: 1024px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .article-grid { grid-template-columns: 1fr; } }

/* ================================================ Location landing ======= */
.loc-hero__ctas { margin-top: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.loc-intro { font-size: 1.075rem; }
.loc-intro > *:first-child { margin-top: 0; }
@media (max-width: 640px) { .loc-hero__ctas .btn { width: 100%; } }

/* ================================================ Forms: spam + errors === */
/* Honeypot — visually hidden but not display:none (so bots still see it). */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-error {
  margin-top: var(--sp-3);
  padding: 0.7rem 0.9rem;
  background: #fff5f5;
  border: 1.5px solid #f3c0c0;
  border-radius: var(--radius);
  color: #b42318;
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Reviews: empty star + relative timestamp */
.star--empty { color: #d0d5dd; }
.review__when { display: block; color: var(--text-muted); font-weight: 500; font-size: 0.8125rem; margin-top: 2px; }

/* Contact: multi-line address + embedded map */
.contact__details li { align-items: flex-start; }
.contact__details .icon { margin-top: 3px; }
.contact__map { margin-top: var(--sp-5); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(255, 255, 255, 0.18); }
.contact__map iframe { display: block; width: 100%; }

/* ============================================ Banner CTA (image band) = */
.banner-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 360px;
}
.banner-cta__bg { position: absolute; inset: 0; z-index: -2; }
.banner-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.banner-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.85) 40%,
    rgba(255,255,255,0.35) 64%,
    rgba(255,255,255,0) 84%);
}
.banner-cta__inner { padding-block: var(--sp-7); }
.banner-cta__content { max-width: 560px; }
.banner-cta__title {
  font-size: var(--fs-h2);
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 var(--sp-3);
}
.banner-cta__lead {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  margin: 0 0 var(--sp-5);
}
.banner-cta__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

@media (max-width: 720px) {
  .banner-cta { min-height: 440px; }
  .banner-cta__bg img { object-position: 74% center; }
  .banner-cta::before {
    background: linear-gradient(180deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.86) 50%,
      rgba(255,255,255,0.72) 100%);
  }
  .banner-cta__actions .btn { width: 100%; }
}

/* ---------------------------------------------- Consent checkbox (forms) = */
.field--consent { margin-top: var(--sp-2); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9375rem; line-height: 1.4; color: var(--text-muted); cursor: pointer; }
.consent input { margin-top: 2px; flex: none; width: 18px; height: 18px; accent-color: var(--teal); }
.consent a { color: var(--teal-dark); }

/* -------------------------------------------- Secondary phone (landline) = */
.contact__note, .footer__note { color: var(--text-muted); font-size: 0.85em; }
.contact__sep { color: var(--text-muted); margin: 0 2px; }
