/* =============================================================
   extras.css — everything theme.json cannot express.
   Images referenced relative to this file: ../images/
   ============================================================= */

/* ── Reset / base ──────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
p {
  margin: 0 0 1em;
}

/* ── Kill WP layout-flow block gaps between pattern sections ── */
/* Kill WP block layout gaps between template parts and pattern sections */
.wp-site-blocks > *,
:root :where(.is-layout-flow) > section,
:root :where(.is-layout-flow) > .hero,
:root :where(.is-layout-flow) > .trust-bar,
:root :where(.is-layout-flow) > .final-cta {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}
.site-header > * { margin-block-start: 0 !important; }

/* ── Section & container utilities ─────────────────────────── */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.section {
  padding: 90px 0;
}
.section-soft {
  background: var(--wp--preset--color--bg-soft);
  padding: 90px 0;
}
.section-dark {
  background: var(--wp--preset--color--bg-dark);
  color: #fff;
  padding: 90px 0;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head p {
  color: var(--wp--preset--color--muted);
  font-size: 1.1rem;
}
.section-dark .eyebrow { color: var(--wp--preset--color--lime); }
.section-dark h2 { color: #fff; }
@media (max-width: 768px) {
  .section,
  .section-soft,
  .section-dark { padding: 60px 0; }
}

/* ── Eyebrow label ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wp--preset--color--lime-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--wp--preset--color--lime);
  flex-shrink: 0;
}

/* ── Skip link (accessibility) ─────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
  padding: 10px 14px;
  font-weight: 700;
  border-radius: 4px;
}

/* ── Button block style variations ─────────────────────────── */
/* Base shared styles applied to all wp-block-button variants */
.wp-block-button__link {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  border-radius: 4px !important;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  text-decoration: none !important;
}

.wp-block-button.is-style-primary .wp-block-button__link {
  background: var(--wp--preset--color--lime) !important;
  color: var(--wp--preset--color--black) !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(150, 230, 80, 0.4);
}
.wp-block-button.is-style-primary .wp-block-button__link:hover {
  background: var(--wp--preset--color--lime-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(150, 230, 80, 0.4);
}

.wp-block-button.is-style-dark .wp-block-button__link {
  background: var(--wp--preset--color--black) !important;
  color: #fff !important;
  border: none !important;
}
.wp-block-button.is-style-dark .wp-block-button__link:hover {
  background: var(--wp--preset--color--slate) !important;
  transform: translateY(-1px);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--wp--preset--color--lime) !important;
  color: var(--wp--preset--color--lime) !important;
}

.wp-block-button.is-style-ghost .wp-block-button__link {
  background: transparent !important;
  color: var(--wp--preset--color--ink) !important;
  border: 2px solid var(--wp--preset--color--line) !important;
}
.wp-block-button.is-style-ghost .wp-block-button__link:hover {
  border-color: var(--wp--preset--color--black) !important;
}

/* ── Top utility bar ───────────────────────────────────────── */
.top-bar {
  background: var(--wp--preset--color--black);
  color: #fff;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--wp--preset--color--lime);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
}
.top-bar a:hover { color: var(--wp--preset--color--lime); }
.top-bar-left,
.top-bar-right { display: flex; gap: 22px; align-items: center; }
.top-bar-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
  padding: 4px 10px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}
@media (max-width: 720px) {
  .top-bar-right { display: none; }
  .top-bar-left { gap: 14px; font-size: 0.82rem; }
}

/* ── Sticky site header ────────────────────────────────────── */
.wp-block-template-part.site-header,
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 var(--wp--preset--color--line);
}

/* ── Nav row ───────────────────────────────────────────────── */
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

/* ── Logo sizing ───────────────────────────────────────────── */
.site-logo a,
.logo {
  display: inline-flex;
  align-items: center;
  height: 64px;
  color: var(--wp--preset--color--ink);
  text-decoration: none;
}
.site-logo svg,
.logo svg { height: 36px; width: auto; display: block; }
.site-footer .site-logo a,
.footer-brand .logo { color: #fff; }

/* ── Desktop navigation ────────────────────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav > li { position: relative; list-style: none; }
.main-nav ul { list-style: none; padding: 0; margin: 0; }
.main-nav > li > a,
.main-nav > li > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  color: var(--wp--preset--color--ink);
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.main-nav > li > a:hover,
.main-nav > li > button:hover { color: var(--wp--preset--color--lime-dark); }

/* Caret chevron */
.caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
}

/* ── Mega menu (CSS-only :hover reveal) ────────────────────── */
.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--wp--preset--color--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  border-top: 3px solid var(--wp--preset--color--lime);
  padding: 28px 32px;
  display: none;
  width: max-content;
  min-width: 720px;
  max-width: 90vw;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  z-index: 200;
}
.main-nav li:hover > .mega,
.main-nav li:focus-within > .mega { display: grid; }

.mega-col h4 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--wp--preset--color--lime-dark);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--wp--preset--color--line);
}
.mega-col a {
  display: block;
  padding: 7px 0;
  font-size: 0.98rem;
  color: var(--wp--preset--color--ink);
  font-weight: 500;
  text-decoration: none;
}
.mega-col a:hover { color: var(--wp--preset--color--lime-dark); }

/* Single-column dropdown (Areas) */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--wp--preset--color--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  border-top: 3px solid var(--wp--preset--color--lime);
  padding: 12px 0;
  display: none;
  min-width: 200px;
  z-index: 200;
}
.main-nav li:hover > .dropdown,
.main-nav li:focus-within > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 9px 22px;
  font-size: 0.96rem;
  color: var(--wp--preset--color--ink);
  font-weight: 500;
  text-decoration: none;
}
.dropdown a:hover {
  color: var(--wp--preset--color--lime-dark);
  background: var(--wp--preset--color--bg-soft);
}

/* ── Nav phone CTA ─────────────────────────────────────────── */
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 4px;
  border-radius: 4px;
  text-decoration: none;
  color: var(--wp--preset--color--ink);
  transition: opacity 0.15s ease;
}
.nav-phone:hover { opacity: 0.8; }
.nav-phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-phone-icon svg { width: 20px; height: 20px; }
.nav-phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.nav-phone-text .lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp--preset--color--muted);
}
.nav-phone-text strong {
  font-size: 1.3rem;
  color: var(--wp--preset--color--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 4px;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wp--preset--color--ink);
  margin: 5px auto;
}

@media (max-width: 1024px) {
  .main-nav,
  .nav-phone-text { display: none; }
  .menu-toggle { display: block; }
  .nav-phone { padding: 0; }
}

/* ── Mobile drawer ─────────────────────────────────────────── */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--wp--preset--color--line);
  padding: 20px clamp(20px, 4vw, 56px);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--wp--preset--color--line);
  text-decoration: none;
  color: var(--wp--preset--color--ink);
}
.mobile-nav .wp-block-button { margin-top: 16px; }
.mobile-nav .wp-block-button__link { width: 100%; text-align: center; }

/* ── Hero section ──────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(13, 13, 13, 0.86) 0%, rgba(13, 13, 13, 0.55) 60%, rgba(13, 13, 13, 0.85) 100%),
    url('../images/hero-kitchen-extension.webp') center / cover;
  color: #fff;
  padding: 90px 0 110px;
  overflow: hidden;
}
/* Desktop: keep the hero + trust bar above the fold.
 * Chrome is ~200px (header ~126px + trust bar ~74px), so the hero has to fit
 * the rest. The form is the tallest element, so we tighten in steps as the
 * viewport gets shorter rather than cramping tall screens unnecessarily. */
@media (min-width: 992px) {
  .hero { padding: 36px 0 40px; }
  .hero-lede { margin-bottom: 16px; }
  .hero-pills { margin-bottom: 16px; }
  .trust-bar { padding: 16px 0; }
  .hero-form:not(.contact-form) { padding: 20px 26px 22px; }
  .hero-form:not(.contact-form) .field { margin-bottom: 8px; }
}

/* Shorter desktops / laptops (~1440x900) */
@media (min-width: 992px) and (max-height: 940px) {
  .hero { padding: 30px 0 34px; }
  .hero-lede { margin-bottom: 12px; font-size: 1.1rem; }
  .hero-pills { margin-bottom: 12px; }
  .trust-bar { padding: 14px 0; }
  .hero-form:not(.contact-form) { padding: 18px 24px 20px; }
  .hero-form:not(.contact-form) h2 { font-size: 1.25rem; }
  .hero-form:not(.contact-form) p.sub { margin-bottom: 9px; }
  .hero-form:not(.contact-form) .field { margin-bottom: 7px; }
  .hero-form:not(.contact-form) .field textarea { min-height: 46px; }
  .hero-form:not(.contact-form) .field-consent { margin: 2px 0 10px; }
}

/* Short laptops (~1366x768): last squeeze before it stops being sensible */
@media (min-width: 992px) and (max-height: 820px) {
  .hero { padding: 22px 0 26px; }
  .hero-lede { margin-bottom: 10px; font-size: 1.05rem; }
  .hero-pills { margin-bottom: 10px; }
  .trust-bar { padding: 11px 0; }
  .hero-form:not(.contact-form) { padding: 14px 22px 16px; }
  .hero-form:not(.contact-form) .field { margin-bottom: 5px; }
  .hero-form:not(.contact-form) .field label { margin-bottom: 2px; }
  .hero-form:not(.contact-form) .field input,
  .hero-form:not(.contact-form) .field select { padding: 7px 12px; }
  .hero-form:not(.contact-form) .field textarea { min-height: 40px; }
  .hero-form:not(.contact-form) button[type="submit"] { padding: 10px !important; }
  .hero-form:not(.contact-form) .form-foot { margin-top: 6px; }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--wp--preset--color--lime) 1px, transparent 1px),
    linear-gradient(90deg, var(--wp--preset--color--lime) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.04;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.hero h1 { color: #fff; font-weight: 800; }
.hero h1 .accent { color: var(--wp--preset--color--lime); }
.hero-lede {
  font-size: 1.18rem;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.pill svg { width: 16px; height: 16px; color: var(--wp--preset--color--lime); }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0 70px; }
}

/* ── Hero contact form ─────────────────────────────────────── */
.hero-form {
  background: #fff;
  color: var(--wp--preset--color--ink);
  border-radius: 14px;
  padding: 40px 32px 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  border-top: 5px solid var(--wp--preset--color--lime);
}
.hero-form-tag {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-form h2 {
  font-size: 1.7rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  line-height: 1;
}
.hero-form p.sub {
  font-size: 0.95rem;
  color: var(--wp--preset--color--muted);
  margin-bottom: 20px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--wp--preset--color--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1.5px solid var(--wp--preset--color--line);
  border-radius: 4px;
  font: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--wp--preset--color--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--wp--preset--color--lime);
  box-shadow: 0 0 0 4px rgba(150, 230, 80, 0.4);
}
.form-success {
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--wp--preset--color--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.form-success-icon svg {
  width: 30px;
  height: 30px;
  color: var(--wp--preset--color--black);
  stroke: var(--wp--preset--color--black);
}
.form-success-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  line-height: 1.2;
  color: inherit;
}
.hero-form .form-success-heading { color: var(--wp--preset--color--ink); }
.contact-form-card .form-success-heading,
.contact-form-card .form-success-sub,
.contact-form-card .form-success-alt { color: #fff; }
.contact-form-card .form-success-sub,
.contact-form-card .form-success-alt { color: rgba(255,255,255,0.65); }
.form-success-sub {
  font-size: 1rem;
  color: var(--wp--preset--color--muted);
  margin: 0 0 20px;
  line-height: 1.6;
}
.form-success-divider {
  width: 40px;
  height: 2px;
  background: var(--wp--preset--color--lime);
  margin: 0 auto 20px;
  border-radius: 2px;
}
.form-success-alt {
  font-size: 0.9rem;
  color: var(--wp--preset--color--muted);
  margin: 0;
}
.form-foot {
  font-size: 0.82rem;
  color: var(--wp--preset--color--muted);
  text-align: center;
  margin: 12px 0 0;
}
.form-foot svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  color: var(--wp--preset--color--lime-dark);
}

/* ── Trust bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--wp--preset--color--bg-dark);
  color: #fff;
  padding: 28px 0;
  border-bottom: 1px solid #1f2024;
}
.trust-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.trust-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  border-right: 1px solid #2a2c30;
  padding-right: 36px;
  color: rgba(255, 255, 255, 0.7);
}
.trust-label strong {
  color: var(--wp--preset--color--lime);
  display: block;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.trust-logos { display: flex; flex-wrap: nowrap; gap: 12px 20px; align-items: center; }
.trust-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.trust-logo:hover {
  color: var(--wp--preset--color--lime);
  border-color: var(--wp--preset--color--lime);
}
.trust-logo svg { width: 16px; height: 16px; }
.trust-fb {
  color: #0a0a0a;
  background: var(--wp--preset--color--lime);
  border-color: var(--wp--preset--color--lime);
}
.trust-fb:hover { color: #0a0a0a; filter: brightness(1.08); border-color: var(--wp--preset--color--lime); }

@media (max-width: 768px) {
  .trust-inner { grid-template-columns: 1fr; gap: 18px; }
  .trust-logos { flex-wrap: wrap; gap: 8px; }
  .trust-label {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid #2a2c30;
    padding-bottom: 14px;
  }
}

/* ── Services grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 14px;
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 0;
  background: var(--wp--preset--color--lime);
  transition: width 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.service-card p { color: var(--wp--preset--color--muted); font-size: 0.98rem; margin-bottom: 16px; }
.service-card .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--wp--preset--color--ink);
  border-bottom: 2px solid var(--wp--preset--color--lime);
  padding-bottom: 2px;
  text-decoration: none;
}
.service-card .more:hover { color: var(--wp--preset--color--lime-dark); }
.services-foot { text-align: center; margin-top: 50px; }

@media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ── Why us ────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.6)),
    url('../images/why-us-victorian.webp') center / cover;
}
.why-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
  padding: 22px 24px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
}
.why-badge .num { font-size: 3.4rem; font-weight: 800; line-height: 1; }
.why-badge .lbl {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 6px;
}
.why-list { display: grid; gap: 22px; margin-top: 30px; }
.why-item { display: grid; grid-template-columns: 48px 1fr; gap: 18px; }
.why-item-icon {
  width: 48px;
  height: 48px;
  background: var(--wp--preset--color--bg-soft);
  border: 1.5px solid var(--wp--preset--color--lime);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--lime-dark);
}
.why-item-icon svg { width: 24px; height: 24px; }
.why-item h3 { font-size: 1.2rem; margin: 0 0 4px; }
.why-item p { margin: 0; color: var(--wp--preset--color--muted); font-size: 0.98rem; }

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--wp--preset--color--line);
  border-bottom: 1px solid var(--wp--preset--color--line);
}
.stat {
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid var(--wp--preset--color--line);
}
.stat:last-child { border-right: 0; }
.stat .n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--wp--preset--color--ink);
  line-height: 1;
}
.stat .n .accent { color: var(--wp--preset--color--lime-dark); }
.stat .l {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--muted);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--wp--preset--color--line); }
}

/* ── Case studies ──────────────────────────────────────────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.case-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #1f2024;
  color: var(--wp--preset--color--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  display: block;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
}
.case-img {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #2a2d31;
}
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.case-card:hover .case-img img { transform: scale(1.06); }
.case-tags { position: absolute; top: 16px; left: 16px; display: flex; flex-wrap: wrap; gap: 6px; max-width: calc(100% - 32px); }
.case-tag {
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.case-body { padding: 24px 26px 28px; }
.case-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--wp--preset--color--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.case-loc svg { width: 14px; height: 14px; color: var(--wp--preset--color--lime-dark); }
.case-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.case-card p { font-size: 0.98rem; color: var(--wp--preset--color--muted); margin-bottom: 14px; }
.case-card .more {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--lime-dark);
  text-decoration: none;
}

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

/* ── Testimonials ──────────────────────────────────────────── */
.review-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 40px;
}
.review-summary .stars {
  color: var(--wp--preset--color--lime);
  font-size: 1.5rem;
  letter-spacing: 4px;
}
.review-summary .score {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
}
.review-summary .text { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #1a1c1f;
  border: 1px solid #2a2d31;
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--wp--preset--color--lime);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}
.testimonial .stars {
  color: var(--wp--preset--color--lime);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.testimonial p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.6;
}
.testimonial-foot { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.t-name { font-weight: 700; color: #fff; font-size: 1rem; }
.t-loc { font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); }

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

/* ── Areas we cover ────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.areas-list-wrap h3 { font-size: 1.4rem; margin-top: 24px; margin-bottom: 12px; }
.areas-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.areas-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--wp--preset--color--line);
  text-decoration: none;
  color: var(--wp--preset--color--ink);
  transition: color 0.15s, border-color 0.15s;
}
.areas-list a:hover {
  color: var(--wp--preset--color--lime-dark);
  border-color: var(--wp--preset--color--lime);
}
.areas-list svg { width: 12px; height: 12px; color: var(--wp--preset--color--lime); flex-shrink: 0; }
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--wp--preset--color--line);
  aspect-ratio: 4 / 3;
  background: #e6e6e6;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 900px) {
  .areas-grid { grid-template-columns: 1fr; gap: 30px; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
}

/* ── FAQ accordion ─────────────────────────────────────────── */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--wp--preset--color--line); }
.faq-item:last-child { border-bottom: 1px solid var(--wp--preset--color--line); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--wp--preset--color--ink);
}
.faq-q:hover { color: var(--wp--preset--color--lime-dark); }
.faq-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon svg { width: 16px; height: 16px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 4px 24px;
  color: var(--wp--preset--color--muted);
  font-size: 1.02rem;
}

/* ── Final CTA ─────────────────────────────────────────────── */
.final-cta {
  background:
    url('../images/cta-driveway.webp') center / cover;
  position: relative;
  color: #fff;
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.78));
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.final-cta h2 { color: #fff; }
.final-cta h2 .accent { color: var(--wp--preset--color--lime); }
.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 32px;
}
.final-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #0A0A0B;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid #1f2024;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}
.footer-brand p { color: rgba(255, 255, 255, 0.6); margin-bottom: 18px; }
.footer-contact { display: grid; gap: 8px; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}
.footer-contact a:hover { color: var(--wp--preset--color--lime); }
.footer-contact svg { width: 16px; height: 16px; color: var(--wp--preset--color--lime); }
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--wp--preset--color--lime);
  display: inline-block;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.footer-col a:hover { color: var(--wp--preset--color--lime); }
.footer-bottom {
  padding: 22px clamp(20px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 1280px;
  margin-inline: auto;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--wp--preset--color--lime); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.socials a:hover {
  background: var(--wp--preset--color--lime);
  border-color: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
}
.socials svg { width: 16px; height: 16px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-details h2 { font-size: 1.6rem; margin: 0 0 14px; }
.contact-details p { line-height: 1.8; color: var(--wp--preset--color--muted); }
.contact-detail-block { margin-bottom: 36px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1.5px solid var(--wp--preset--color--line);
  border-radius: 8px;
  text-decoration: none;
  color: var(--wp--preset--color--ink);
  transition: border-color 0.2s;
}
a.contact-method:hover { border-color: var(--wp--preset--color--lime); }
.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wp--preset--color--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; }
.contact-method-body { display: flex; flex-direction: column; gap: 2px; }
.contact-method-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--wp--preset--color--muted); }
.contact-method-value { font-size: 1rem; font-weight: 600; }
.contact-coverage h3 { font-size: 1.15rem; margin: 0 0 10px; }
.coverage-list { columns: 2; gap: 16px; list-style: none; padding: 0; margin: 12px 0; }
.coverage-list li { font-size: 0.95rem; padding: 4px 0; color: var(--wp--preset--color--muted); }
.coverage-list li::before { content: '→ '; color: var(--wp--preset--color--lime); font-weight: 700; }
.contact-form-wrap { position: sticky; top: 100px; }
.contact-form-card {
  background: var(--wp--preset--color--bg-dark);
  color: #fff;
  border-radius: 14px;
  padding: 40px 36px 36px;
  position: relative;
  border-top: 5px solid var(--wp--preset--color--lime);
}
.contact-form-card .hero-form { background: transparent; box-shadow: none; padding: 0; border-top: none; border-radius: 0; color: #fff; }
.contact-form-card .field label { color: rgba(255,255,255,0.75); }
.contact-form-card .field input,
.contact-form-card .field select,
.contact-form-card .field textarea {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}
.contact-form-card .field input::placeholder,
.contact-form-card .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form-card .field select option { background: #1a1c20; color: #fff; }
.contact-form-tag {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-form-card h2 { font-size: 1.7rem; margin: 0 0 6px; text-transform: uppercase; line-height: 1; }
.contact-form-card p.sub { font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { position: static; }
  .coverage-list { columns: 1; }
}

/* Services index page */
.services-index-cat { display: flex; flex-direction: column; gap: 40px; }
.services-index-cat-hed { max-width: 560px; }
.services-index-cat-hed .eyebrow { margin-bottom: 8px; display: block; }
.services-index-cat-hed h2 { margin: 0 0 12px; }
.services-index-cat-hed p { color: var(--wp--preset--color--muted); line-height: 1.7; margin: 0; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Floating mobile call CTA ───────────────────────────────── */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
  padding: 14px;
  border-radius: 50px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 99;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
}
@media (max-width: 720px) {
  .mobile-call { display: flex; }
  body { padding-bottom: 70px; }
}

/* ── Page hero (no background image) ──────────────────────── */
.page-hero {
  background: var(--wp--preset--color--bg-dark);
  color: #fff;
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--wp--preset--color--lime) 1px, transparent 1px),
    linear-gradient(90deg, var(--wp--preset--color--lime) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.03;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 56px);
  position: relative;
  z-index: 2;
}
.page-hero h1 { color: #fff; }
.page-hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
@media (max-width: 768px) { .page-hero { padding: 60px 0 70px; } }

/* ── Founder story ─────────────────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.founder-placeholder,
.team-placeholder {
  background: var(--wp--preset--color--bg-soft);
  border: 2px dashed var(--wp--preset--color--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--wp--preset--color--muted);
  font-size: 0.88rem;
  text-align: center;
  padding: 32px 24px;
  font-style: italic;
}
.founder-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
}
.team-placeholder {
  width: 100%;
  aspect-ratio: 16 / 6;
  margin-top: 48px;
}
.founder-placeholder svg,
.team-placeholder svg { width: 40px; height: 40px; opacity: 0.3; }
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-placeholder { aspect-ratio: 16 / 7; }
}

/* ── Every-trade pitch ─────────────────────────────────────── */
.trade-pitch { max-width: 760px; margin: 0 auto; }
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
}
.benefit-list li {
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 8px;
  border-left: 4px solid var(--wp--preset--color--lime);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* ── Services mini-grid (4 category tiles) ─────────────────── */
.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-tile {
  background: #fff;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--wp--preset--color--ink);
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-tile::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 4px; width: 0;
  background: var(--wp--preset--color--lime);
  transition: width 0.3s ease;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: transparent;
  color: var(--wp--preset--color--ink);
}
.service-tile:hover::before { width: 100%; }
.service-tile h3 { font-size: 1.3rem; margin: 16px 0 8px; }
.service-tile p { color: var(--wp--preset--color--muted); font-size: 0.9rem; margin-bottom: 14px; }
.service-tile .tile-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--wp--preset--color--lime-dark);
}
.services-mini-foot { text-align: center; margin-top: 40px; }
@media (max-width: 920px) { .services-mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .services-mini-grid { grid-template-columns: 1fr; } }

/* ── Team block ────────────────────────────────────────────── */
.team-content { max-width: 760px; margin: 0 auto; }

/* ── Process / how-we-work ─────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-card {
  background: #fff;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 14px;
  padding: 32px 28px;
}
.process-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--wp--preset--color--lime);
  line-height: 1;
  margin-bottom: 14px;
}
.process-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.process-card p { color: var(--wp--preset--color--muted); font-size: 0.98rem; margin: 0; }
.process-cta { text-align: center; margin-top: 48px; }
@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .process-grid { grid-template-columns: 1fr; } }

/* ── Trust & accreditations ────────────────────────────────── */
.trust-content { max-width: 800px; margin: 0 auto; }
.trust-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
}
.trust-list li {
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid var(--wp--preset--color--line);
  font-size: 1.02rem;
  line-height: 1.6;
  position: relative;
}
.trust-list li:first-child { border-top: 1px solid var(--wp--preset--color--line); }
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wp--preset--color--lime);
}

/* ── Service hero (full-bleed image hero for service pages) ── */
.service-hero {
  position: relative;
  background: center/cover no-repeat;
  color: #fff;
  padding: 90px 0 110px;
  overflow: hidden;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,.88) 0%, rgba(13,13,13,.60) 60%, rgba(13,13,13,.88) 100%);
  pointer-events: none;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: clamp(40px, 5vw, 60px);
  align-items: start;
  position: relative;
  z-index: 2;
}
.service-hero-copy { position: relative; z-index: 2; }
.service-hero h1 { color: #fff; }
.service-hero .accent { color: var(--wp--preset--color--lime); }
.service-hero-lede {
  font-size: 1.18rem;
  line-height: 1.75;
  opacity: .85;
  margin: 20px 0 32px;
  max-width: 54ch;
}
.service-hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 960px) {
  .service-hero-grid { grid-template-columns: 1fr; }
  .service-hero { padding: 60px 0 70px; }
}

/* ── Editorial 2-col (heading left / body right) ─────────────── */
.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.editorial-hed h2 { margin-bottom: 0; }
.editorial-body p + p { margin-top: 16px; }
@media (max-width: 768px) {
  .editorial-grid { grid-template-columns: 1fr; }
}

/* ── Extension types grid ───────────────────────────────────── */
.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.type-card {
  background: #fff;
  border: 1px solid var(--wp--preset--color--line);
  border-radius: 14px;
  padding: 28px 24px;
  border-top: 4px solid var(--wp--preset--color--lime);
}
.type-card-icon { font-size: 2rem; line-height: 1; margin-bottom: 14px; display: block; }
.type-card h3 { margin-bottom: 10px; }
.type-card p { margin: 0; color: var(--wp--preset--color--muted); font-size: .98rem; line-height: 1.6; }
.types-foot { color: var(--wp--preset--color--muted); font-size: 1.02rem; font-style: italic; margin: 0; }
@media (max-width: 900px) { .types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .types-grid { grid-template-columns: 1fr; } }

/* ── Inclusions checklist (2-col) ───────────────────────────── */
.service-why { max-width: 760px; }
.inclusions-intro { max-width: 720px; margin-bottom: 28px; }
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid var(--wp--preset--color--line);
}
.inclusions-grid li {
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--wp--preset--color--line);
  position: relative;
  font-size: 1.02rem;
  line-height: 1.6;
}
.inclusions-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wp--preset--color--lime);
}
.inclusions-close { color: var(--wp--preset--color--muted); font-size: 1.02rem; margin: 0; }
@media (max-width: 768px) { .inclusions-grid { grid-template-columns: 1fr; } }

/* ── Local context (area-by-area body copy) ─────────────────── */
.local-context { max-width: 800px; margin-inline: auto; }
.local-context-intro { font-size: 1.1rem; color: var(--wp--preset--color--muted); margin-bottom: 32px; }
.local-context-areas { margin: 32px 0; }
.local-area { padding: 28px 0; border-bottom: 1px solid var(--wp--preset--color--line); }
.local-area:first-child { border-top: 1px solid var(--wp--preset--color--line); }
.local-area h3 { margin-bottom: 10px; }
.local-area p { margin: 0; color: var(--wp--preset--color--muted); line-height: 1.7; }
.local-context-close { font-style: italic; color: var(--wp--preset--color--muted); margin: 0; }

/* ── 404 page ───────────────────────────────────────────────── */
.page-404 {
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
}
.page-404-num {
  display: block;
  font-family: 'Anton', Impact, 'Arial Narrow', sans-serif;
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 1;
  color: var(--wp--preset--color--lime);
  margin: 0 0 8px;
}
.page-404-hed {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.page-404-sub {
  font-size: 1.1rem;
  color: var(--wp--preset--color--muted);
  max-width: 46ch;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.page-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-inline: auto;
}
.page-404-actions .wp-block-button { flex: none; }

/* ── Projects CPT ──────────────────────────────────────────── */
.hero--compact { padding: 60px 0 40px; }
.hero--compact h1 { font-size: clamp(2rem, 5vw, 3.2rem); }

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  align-items: center;
}
.filter-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--wp--preset--color--muted);
  margin-right: 4px;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 14px;
  border: 2px solid var(--wp--preset--color--line);
  border-radius: 2px;
  color: var(--wp--preset--color--ink);
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--wp--preset--color--lime);
  background: var(--wp--preset--color--lime);
  color: var(--wp--preset--color--black);
}
.project-meta-item { min-width: 120px; }
.project-meta-item .eyebrow { font-size: .75rem; }

.breadcrumb {
  font-size: .875rem;
  color: var(--wp--preset--color--muted);
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.breadcrumb a { color: var(--wp--preset--color--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--wp--preset--color--lime-dark); }
.hero .breadcrumb,
.hero--compact .breadcrumb { color: rgba(255,255,255,.6); text-shadow: 0 1px 3px rgba(0,0,0,.5); }
.hero .breadcrumb a,
.hero--compact .breadcrumb a { color: rgba(255,255,255,.6); }
.hero .breadcrumb a:hover,
.hero--compact .breadcrumb a:hover { color: var(--wp--preset--color--lime); }
.hero-location { font-size: 1rem; margin-top: 8px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; text-shadow: 0 1px 3px rgba(0,0,0,.5); }

/* ── Areas CPT ──────────────────────────────────────────────── */
.area-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; align-items: stretch; }
.area-card {
  height: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--wp--preset--color--line);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: var(--wp--preset--color--ink);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.area-card:hover { border-color: var(--wp--preset--color--lime); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.area-card-name { font-size: 1.2rem; font-weight: 700; margin: 0; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; }
.area-card-county { font-size: 0.82rem; color: var(--wp--preset--color--muted); margin: 0; }
.area-card-distance { font-size: 0.82rem; color: var(--wp--preset--color--lime-dark); font-weight: 600; }
.area-card-demand { font-size: 0.82rem; color: var(--wp--preset--color--muted); margin-top: 4px; }
.area-card-arrow { margin-top: auto; padding-top: 12px; font-size: 0.88rem; color: var(--wp--preset--color--lime); font-weight: 600; }
.area-subareas { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.area-subarea-pill { font-size: 0.78rem; padding: 3px 9px; border: 1px solid var(--wp--preset--color--line); border-radius: 12px; color: var(--wp--preset--color--muted); }
.area-nearby-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.area-nearby-pill { padding: 5px 12px; border: 1px solid var(--wp--preset--color--line); border-radius: 20px; font-size: 0.85rem; color: var(--wp--preset--color--muted); }
.area-sub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-top: 32px; }
.area-sub-card {
  border: 1.5px solid var(--wp--preset--color--line);
  border-radius: 6px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--wp--preset--color--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.2s;
}
.area-sub-card:hover { border-color: var(--wp--preset--color--lime); }
.area-sub-card-name { font-weight: 700; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 1.05rem; }
.area-sub-card-arrow { color: var(--wp--preset--color--lime); font-weight: 700; }

/* ── Reviews page ───────────────────────────────────────────── */
.reviews-aggregate { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: center; padding: 32px; background: #fff; border-radius: 8px; border: 1.5px solid var(--wp--preset--color--line); }
.reviews-aggregate-score { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.reviews-big-score { font-family: 'Barlow Condensed', sans-serif; font-size: 3.5rem; font-weight: 700; line-height: 1; color: var(--wp--preset--color--ink); }
.reviews-stars-row { display: flex; gap: 4px; }
.reviews-aggregate-count { font-size: 0.82rem; color: var(--wp--preset--color--muted); text-align: center; margin: 0; }
.reviews-aggregate-body p { line-height: 1.8; color: var(--wp--preset--color--muted); margin: 0 0 8px; }
.reviews-grid { columns: 2; column-gap: 24px; }
.review-card { break-inside: avoid; border: 1.5px solid var(--wp--preset--color--line); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.review-card > *:not(.rev-slider) { padding: 0 24px; }
.review-card > .review-card-head { padding-top: 24px; }
.review-card > .review-card-foot { padding-bottom: 24px; }
.rev-slider { position: relative; overflow: hidden; margin: 0; background: #111; }
.rev-slider-track { position: relative; height: 240px; }
.rev-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease; }
.rev-slide.active { opacity: 1; }
.rev-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rev-slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.45); color: #fff; border: 0; width: 36px; height: 36px; border-radius: 50%; font-size: 1.4rem; line-height: 1; cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.rev-slider-btn:hover { background: rgba(0,0,0,.7); }
.rev-prev { left: 10px; }
.rev-next { right: 10px; }
.rev-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.rev-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: background .2s; }
.rev-dot.active { background: #fff; }
.review-title { font-size: 1rem; font-weight: 700; line-height: 1.4; color: var(--wp--preset--color--ink); margin: 0; }
.review-card-head { display: flex; align-items: center; justify-content: space-between; }
.review-stars { display: flex; gap: 3px; }
.review-source { font-size: 0.78rem; color: var(--wp--preset--color--muted); display: inline-flex; align-items: center; gap: 4px; }
.review-text { font-size: 0.97rem; line-height: 1.75; color: var(--wp--preset--color--ink); margin: 0; flex: 1; }
.review-card-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card-foot .t-name { font-weight: 700; color: var(--wp--preset--color--ink); font-size: .95rem; }
.review-card-foot .t-loc { font-size: 0.82rem; color: var(--wp--preset--color--muted); }
.review-date { margin-left: auto; font-size: 0.78rem; color: var(--wp--preset--color--muted); white-space: nowrap; }
.review-project-link { font-size: 0.85rem; font-weight: 600; line-height: 1.4; color: var(--wp--preset--color--lime-dark); text-decoration: none; display: inline-flex; align-items: flex-start; gap: 5px; }
.review-project-link svg { flex-shrink: 0; margin-top: 2px; }
.review-project-link:hover { color: var(--wp--preset--color--lime); }
/* ── Review image lightbox ──────────────────────────────────── */
#rev-lb { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
#rev-lb.open { display: flex; }
#rev-lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.88); }
#rev-lb-img-wrap { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
#rev-lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; display: block; }
#rev-lb-close { position: fixed; top: 20px; right: 24px; z-index: 2; background: rgba(255,255,255,.15); color: #fff; border: 0; width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; transition: background .2s; }
#rev-lb-close:hover { background: rgba(255,255,255,.3); }
#rev-lb-prev, #rev-lb-next { position: fixed; top: 50%; transform: translateY(-50%); z-index: 2; background: rgba(255,255,255,.15); color: #fff; border: 0; width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; line-height: 1; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; }
#rev-lb-prev:hover, #rev-lb-next:hover { background: rgba(255,255,255,.3); }
#rev-lb-prev { left: 20px; }
#rev-lb-next { right: 20px; }
#rev-lb-count { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.7); font-size: .85rem; font-weight: 600; letter-spacing: .05em; }
/* ── Service social proof ───────────────────────────────────── */
.proof-projects { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.proof-carousel { position: relative; margin-bottom: 32px; }
.proof-carousel-track { display: flex; align-items: stretch; gap: 24px; overflow-x: scroll; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.proof-carousel-track::-webkit-scrollbar { display: none; }
.proof-carousel-slide { flex: 0 0 calc(50% - 12px); scroll-snap-align: start; display: flex; }
.proof-review-card { background: var(--wp--preset--color--bg-soft); border: 1.5px solid var(--wp--preset--color--line); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; width: 100%; box-sizing: border-box; }
.proof-review-text { font-size: .97rem; line-height: 1.75; color: var(--wp--preset--color--ink); margin: 0; flex: 1; }
.proof-carousel-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.proof-carousel-dots { display: flex; gap: 8px; align-items: center; }
.proof-dot { width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--wp--preset--color--ink); background: transparent; padding: 0; cursor: pointer; transition: background .2s, border-color .2s; }
.proof-dot.active { background: var(--wp--preset--color--lime); border-color: var(--wp--preset--color--lime); }
.proof-carousel-nav { display: flex; gap: 8px; }
.proof-nav-btn { background: var(--wp--preset--color--ink); color: #fff; border: 0; width: 40px; height: 40px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.proof-nav-btn:hover { background: var(--wp--preset--color--lime-dark); }
.proof-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.services-foot { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 640px) {
  .proof-projects { grid-template-columns: 1fr; }
  .proof-carousel-slide { flex: 0 0 85%; }
}
@media (max-width: 768px) {
  .reviews-aggregate { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .reviews-grid { columns: 1; }
}


/* ── Legal pages ────────────────────────────────────────────── */
.legal-content { max-width: 780px; }
.legal-updated { font-size: .85rem; color: var(--wp--preset--color--muted); margin-bottom: 40px; }
.legal-content h2 { font-size: 1.35rem; margin: 48px 0 12px; padding-top: 16px; border-top: 1px solid var(--wp--preset--color--line); }
.legal-content h3 { font-size: 1.05rem; margin: 28px 0 8px; }
.legal-content p, .legal-content li { line-height: 1.85; font-size: 1rem; color: var(--wp--preset--color--ink); }
.legal-content ul { padding-left: 20px; margin: 12px 0 20px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content a { color: var(--wp--preset--color--lime-dark); }
.legal-content a:hover { color: var(--wp--preset--color--lime); }
.legal-content hr { border: 0; border-top: 2px solid var(--wp--preset--color--line); margin: 48px 0; }
.legal-table { width: 100%; border-collapse: collapse; font-size: .9rem; margin: 16px 0 24px; }
.legal-table th { background: var(--wp--preset--color--bg-soft); text-align: left; padding: 10px 14px; font-weight: 700; border-bottom: 2px solid var(--wp--preset--color--line); }
.legal-table td { padding: 10px 14px; border-bottom: 1px solid var(--wp--preset--color--line); vertical-align: top; }

/* ── Reduced motion (brand doc §5.8) ───────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ── GDPR consent checkbox on enquiry forms ───────────────────
 * Deliberately NOT using .field — the `.field label` rules (uppercase,
 * bold, display:block) are more specific and would override this row.
 */
.field-consent { margin: 2px 0 14px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  line-height: 1.4;
  /* Default: forms sit on a WHITE card (hero quote forms, quote modal). */
  color: var(--wp--preset--color--muted, #555);
  cursor: pointer;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.consent-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  flex: 0 0 auto;
  accent-color: var(--wp--preset--color--lime);
  cursor: pointer;
}
.consent-label a { color: var(--wp--preset--color--lime-dark, #3a7d1f); text-decoration: underline; }
/* Contact page: the form sits on a DARK card, so flip to light text. */
.contact-form-card .consent-label { color: rgba(255, 255, 255, 0.72); }
.contact-form-card .consent-label a { color: var(--wp--preset--color--lime); }

/* ── Compact hero quote form (not the full contact-page form) ────────── */
.hero-form:not(.contact-form) { padding: 22px 26px 24px; border-radius: 12px; }
.hero-form:not(.contact-form) h2 { font-size: 1.35rem; }
.hero-form:not(.contact-form) p.sub { font-size: 0.86rem; margin-bottom: 12px; }
.hero-form:not(.contact-form) .field { margin-bottom: 9px; }
.hero-form:not(.contact-form) .field label { font-size: 0.76rem; margin-bottom: 3px; }
.hero-form:not(.contact-form) .field input,
.hero-form:not(.contact-form) .field select,
.hero-form:not(.contact-form) .field textarea {
  padding: 9px 12px;
  font-size: 0.95rem;
}
.hero-form:not(.contact-form) .field textarea { min-height: 58px; }
.hero-form:not(.contact-form) button[type="submit"] { padding: 12px !important; font-size: 1rem !important; }
.hero-form:not(.contact-form) .form-foot { font-size: 0.76rem; margin-top: 8px; }
.hero-form:not(.contact-form) .field-consent { margin-top: 2px; }

/* ── Cookie consent banner ──────────────────────────────────── */
.gsm-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100000;
  max-width: 720px;
  margin-inline: auto;
  background: var(--wp--preset--color--bg-dark, #111213);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.gsm-cookie-banner[hidden] { display: none; }
.gsm-cc-text { margin: 0; flex: 1 1 300px; font-size: 0.88rem; line-height: 1.45; color: rgba(255, 255, 255, 0.82); }
.gsm-cc-text a { color: var(--wp--preset--color--lime); text-decoration: underline; }
.gsm-cc-actions { display: flex; gap: 10px; margin-left: auto; }
.gsm-cc-actions button {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.gsm-cc-reject { background: transparent; color: #fff; }
.gsm-cc-reject:hover { border-color: #fff; }
.gsm-cc-accept { background: var(--wp--preset--color--lime); color: #0a0a0a; border-color: var(--wp--preset--color--lime); }
.gsm-cc-accept:hover { filter: brightness(1.08); }

/* ── Top-bar Facebook reviews pill: keep dark text on hover ─────── */
/* Must out-specify `.top-bar a:hover { color: lime }`, which would otherwise
   turn the pill's text lime on a lime background (invisible). */
.top-bar a.top-bar-pill { text-decoration: none; transition: filter 0.15s ease; }
.top-bar a.top-bar-pill:hover,
.top-bar a.top-bar-pill:focus {
  filter: brightness(1.08);
  color: var(--wp--preset--color--black);
  text-decoration: none;
}

/* ── Quote modal ────────────────────────────────────────────── */
body.gsm-modal-open { overflow: hidden; }
.gsm-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 16px;
  overflow-y: auto;
  background: rgba(10, 10, 12, 0.62);
  backdrop-filter: blur(2px);
}
.gsm-modal[hidden] { display: none; }
.gsm-modal-panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #fff;
  color: var(--wp--preset--color--ink);
  border-radius: 12px;
  border-top: 5px solid var(--wp--preset--color--lime);
  padding: 28px 26px 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.gsm-modal-panel .hero-form-tag { top: -14px; right: 24px; }
.gsm-modal-panel h2 { font-size: 1.5rem; margin-bottom: 4px; text-transform: uppercase; line-height: 1.05; }
.gsm-modal-panel p.sub { font-size: 0.9rem; color: var(--wp--preset--color--muted); margin-bottom: 16px; }
.gsm-modal-panel .hero-form { background: transparent; box-shadow: none; border-top: none; border-radius: 0; padding: 0; }
.gsm-modal-panel .field { margin-bottom: 10px; }
.gsm-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--wp--preset--color--muted);
  cursor: pointer;
  border-radius: 6px;
}
.gsm-modal-close:hover { background: var(--wp--preset--color--bg-soft, #f2f2f0); color: var(--wp--preset--color--ink); }

/* ── Reviews page: Facebook source badge links to the FB reviews page ── */
.review-source--link { text-decoration: none; transition: color 0.15s ease; }
.review-source--link:hover,
.review-source--link:focus { color: #1877F2; text-decoration: underline; }

/* ── Form submit buttons: undo core's .wp-block-button__link{height:100%} ──
 * Our submit buttons reuse the button class for styling, but core stretches
 * them to the full height of the form card. Pin back to content height.
 */
form button[type="submit"].wp-block-button__link,
form button[type="submit"].wp-element-button {
  height: auto;
  align-content: unset;
  line-height: 1.25;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE PASS
   Fixes for small screens: overflow, stacked CTAs, tap targets,
   and iOS input zoom.
   ══════════════════════════════════════════════════════════════ */

/* 1. Border-box everywhere. Without this, width:100% + padding + border is
      WIDER than its container, which is what pushed buttons and cards off
      screen on small viewports. */
*, *::before, *::after { box-sizing: border-box; }

/* Never allow sideways scrolling, and keep media inside its box. */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video, iframe { max-width: 100%; }

/* Grid/flex children default to min-width:auto, which refuses to shrink below
   their content and overflows the track. */
.testimonial-grid > *, .case-grid > *, .services-grid > *,
.reviews-grid > *, .proof-projects > *, .hero-grid > * { min-width: 0; }

/* 2. Grids that had no mobile fallback (fixed px column + 1fr would
      overflow a 375px screen). */
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-hero-grid { grid-template-columns: 1fr; }
}

/* 3. Home "What Customers Say" summary: stars + score + text could not
      wrap, so the row overflowed. */
.review-summary { flex-wrap: wrap; }
@media (max-width: 600px) {
  .review-summary { gap: 10px; justify-content: center; text-align: center; }
  .review-summary .text { flex: 1 0 100%; }
}

/* 4. CTA rows: stack full width with real spacing instead of colliding. */
@media (max-width: 600px) {
  .hero-cta-row,
  .final-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 100%;
  }
  .hero-cta-row .wp-block-button,
  .final-cta-row .wp-block-button { width: 100%; max-width: 100%; }
  .hero-cta-row .wp-block-button__link,
  .final-cta-row .wp-block-button__link {
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: center;
    white-space: normal;      /* long labels wrap instead of overflowing */
    padding: 12px 14px !important;
    font-size: 0.98rem !important;
  }
}

/* 5. Comfortable tap targets (Apple/Google guidance is ~44px). */
@media (max-width: 782px) {
  .wp-block-button__link,
  .gsm-cc-actions button,
  .gsm-wa-submit,
  .hero-form button[type="submit"] { min-height: 46px; }
  .main-nav a, .mobile-nav a { min-height: 44px; display: flex; align-items: center; }
}

/* 6. iOS zooms the page when a focused input is under 16px. Force 16px on
      touch widths so tapping a field never zooms the layout. */
@media (max-width: 782px) {
  .field input, .field select, .field textarea,
  .hero-form:not(.contact-form) .field input,
  .hero-form:not(.contact-form) .field select,
  .hero-form:not(.contact-form) .field textarea,
  .gsm-wa-field input, .gsm-wa-field select, .gsm-wa-field textarea {
    font-size: 16px;
  }
}

/* 7. Tighter vertical rhythm so pages are not endless scrolls. */
@media (max-width: 600px) {
  .section, .section-soft, .section-dark { padding: 56px 0; }
  .final-cta { padding: 60px 0; }
  .section-head { margin-bottom: 28px; }
  .hero { padding: 44px 0 48px; }
}

/* 8. Mega menu is desktop-only, but stop its 720px min-width ever
      forcing a scrollbar on a narrow viewport. */
@media (max-width: 1024px) {
  .mega { min-width: 0; max-width: 100vw; }
}

/* 9. Modals: full-height friendly on small screens. */
@media (max-width: 600px) {
  .gsm-modal, .gsm-wa-modal { padding: 12px; align-items: flex-start; }
  .gsm-modal-panel, .gsm-wa-panel { padding: 20px 18px 18px; }
}

/* 10. Cookie banner: compact on mobile. Keep the buttons side by side rather
       than stacking, so it stays a slim strip instead of a half-screen panel. */
@media (max-width: 600px) {
  .gsm-cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 11px 13px;
    gap: 9px;
    border-radius: 8px;
  }
  .gsm-cc-text { font-size: 0.76rem; line-height: 1.35; flex: 1 1 100%; }
  .gsm-cc-actions { margin-left: 0; width: 100%; gap: 8px; }
  .gsm-cc-actions button {
    flex: 1;
    padding: 8px 10px;
    font-size: 0.82rem;
    min-height: 38px;
  }
}

/* 11. Cards: trim generous desktop padding so content keeps its width. */
@media (max-width: 600px) {
  .testimonial { padding: 24px 20px; }
  .testimonial::before { font-size: 4rem; right: 14px; }
  .service-card, .case-card .case-body, .review-card > *:not(.rev-slider) { padding-left: 18px; padding-right: 18px; }
}

/* 12. Mobile bottom bar: the Call bar and the WhatsApp button sit as a single
       row. Call is the primary action (brand lime, takes the space); WhatsApp
       is a dark square with its green glyph, so the two greens stop competing. */
@media (max-width: 720px) {
  .mobile-call {
    height: 52px;
    padding: 0 18px;
    right: 82px;              /* leave room for the WhatsApp button */
    border-radius: 26px;
    font-size: 0.98rem;
    gap: 8px;
  }
}
