/* ==========================================================================
   MASTER TEMPLATE STYLESHEET
   Single file — no preprocessors
   ========================================================================== */

/* ==========================================================================
   SWAP: Brand accent colour — this is the ONLY value that changes per site.
   Line 11. Change --accent to your client's primary brand colour.
   ========================================================================== */
:root {
  --accent: #e63946;
  --text-dark: #1a1a1a;
  --text-muted: #888888;
  --border: #eeeeee;
  --bg-light: #f5f5f5;
  --bg-off: #f9f9f9;
  --bg-dark: #1a1a1a;
  --white: #ffffff;
  --max-width: 1140px;
  --radius: 4px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Eyebrow label */
.eyebrow {
  display: block;
  font-size: 0.75rem;         /* 12px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  transition: none; /* no animations — performance first */
}

/* Primary: solid accent */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Secondary: outlined on dark backgrounds */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--text-dark);
}

/* Text link style */
.link-accent {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-accent:hover {
  opacity: 0.8;
}

/* ==========================================================================
   TOP BAR
   Dark background, accent top border, contact left, social right.
   ========================================================================== */
.top-bar {
  width: 100%;
  background: var(--bg-dark);
  /* SWAP: accent top border — pulls from --accent automatically */
  border-top: 3px solid var(--accent);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

.top-bar-contact a:hover {
  color: var(--white);
}

.top-bar-contact svg {
  flex-shrink: 0;
  color: var(--accent);
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-social a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
}

.top-bar-social a:hover {
  color: var(--accent);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

/* Sticky wrapper — wraps .top-bar + .site-nav together in the HTML */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* SWAP: nav height — increase or decrease this one value */
  height: 90px;
}

/* SWAP: logo text styling — remove if using img */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

/* Nav menu — desktop: flex row */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-menu a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

/* Hamburger button — hidden on desktop (>767px), floated right on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
}

/* ==========================================================================
   SECTIONS — shared padding
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

/* ==========================================================================
   SECTION: Hero
   ========================================================================== */
.hero {
  background: var(--bg-off);
  /* SWAP: hero vertical padding — increase for a taller hero */
  padding: 120px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 48px;
  align-items: center;
}

.hero-content .hero-subtext {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 1.5rem;
}

/* Trust list with checkmarks */
.hero-trust {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.hero-trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.hero-trust li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* SWAP: widget embed — replace inner content with iframe or form -->
/* To show this widget on mobile, add class "widget-visible" or remove the mobile hide rule below */
.hero-widget {
  background: var(--bg-light);
  border: 1px solid var(--border);
  min-height: 300px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-placeholder {
  font-family: monospace;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
}

/* ==========================================================================
   SECTION: Intro Strip
   ========================================================================== */
.intro {
  background: var(--white);
  padding: 80px 0;
}

.intro-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.intro-inner p {
  font-size: 1.0625rem;
  color: #444;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SECTION: Features / Services Cards
   ========================================================================== */
.features {
  background: var(--bg-off);
  padding: 80px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

/* SWAP: icon placeholder — replace this div with <img> or inline SVG -->
.icon-placeholder {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 20px;
  /* SWAP: add SVG background-image or replace entirely with <img width="48" height="48"> */
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: #444;
  margin-bottom: 1rem;
}

/* ==========================================================================
   SECTION: CTA Strip
   ========================================================================== */
.cta-strip {
  /* SWAP: toggle between light, accent, or dark background:
     Use background: var(--bg-light) for light grey
     Use background: var(--accent) for brand colour
     Use background: var(--bg-dark) for near-black */
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.cta-strip h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-strip p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ==========================================================================
   SECTION: Alternating Image / Text
   ========================================================================== */
.alt-blocks {
  background: var(--white);
  padding: 80px 0;
}

.alt-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

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

/* Image right variant — reverses column order */
.alt-block.img-right {
  direction: rtl;
}

.alt-block.img-right > * {
  direction: ltr;
}

/* SWAP: image placeholder — replace this div with <img width="..." height="..." loading="lazy"> -->
.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--bg-light);
  border-radius: var(--radius);
  /* SWAP: set explicit dimensions in the img tag when replacing:
     <img src="/images/your-image.jpg" alt="Description" width="540" height="405" loading="lazy"> */
}

.alt-block-text h2 {
  margin-bottom: 1rem;
}

.alt-block-text p {
  color: #444;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   SECTION: FAQ Accordion
   ========================================================================== */
.faq {
  background: var(--bg-off);
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  user-select: none;
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.7;
}

/* Open state — toggled by main.js adding .open class */
.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  content: "×";
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo .logo-text {
  color: var(--white);
  font-size: 1.125rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/* SWAP: social icon row — uncomment in footer.php */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  opacity: 0.6;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact a:hover {
  color: var(--white);
}

/* Copyright bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 0;
}

.footer-copy a {
  color: var(--text-muted);
}

.footer-copy a:hover {
  color: var(--white);
}

/* ==========================================================================
   RESPONSIVE — MOBILE 767px
   Matches Elementor / standard mobile breakpoint.
   Everything collapses here: nav hamburger, grids, section padding.
   ========================================================================== */
@media (max-width: 767px) {

  /* Section padding halved on mobile */
  .section,
  .hero,
  .intro,
  .features,
  .cta-strip,
  .alt-blocks,
  .faq {
    padding: 40px 0;
  }

  /* Hero: stack columns */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .alt-block {
    margin-bottom: 40px;
  }

  /* Hero CTA stack */
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  /* SWAP: widget hidden on mobile by default.
     To show on mobile, delete the rule below or add class "widget-visible" to .hero-widget */
  .hero-widget {
    display: none;
  }

  /* Features: single column */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Alternating blocks: stack, image always on top */
  .alt-block,
  .alt-block.img-right {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  /* Footer: single column */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }

  /* ── NAV: hamburger menu ────────────────────────────────────────────── */

  /* Hide top bar contact text on mobile — too cramped */
  .top-bar-contact a span,
  .top-bar-contact {
    display: none;
  }

  /* Keep top bar visible but social-icons only, centred */
  .top-bar-inner {
    justify-content: center;
  }

  /* Show hamburger button, floated right via margin-left: auto on the element */
  .nav-hamburger {
    display: flex;
  }

  /* Hide nav links until toggled */
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 90px; /* matches .nav-inner height */
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
    z-index: 99;
  }

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

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

}

/* Nav position context for mobile dropdown — .site-header handles sticky */
.site-nav {
  position: relative;
  z-index: 100;
}

/* ============================================================
   FEATURE CARD IMAGE
   Full-width image below the heading, rounded corners,
   consistent aspect ratio across all three cards.
   ============================================================ */
.feature-card-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin: 12px 0 16px;
}

/* ============================================================
   ALT BLOCK — REAL IMAGE
   Replaces .img-placeholder. Same sizing, covers the slot,
   rounded corners to match card style.
   ============================================================ */
.alt-block-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* On mobile the alt-block stacks; give the image a sensible height */
@media (max-width: 767px) {
  .alt-block-img {
    height: 260px;
    width: 100%;
  }
}

/* ============================================================
   REVIEWS SLIDER
   Dark section, 3-up on desktop, 2 on tablet, 1 on mobile.
   Vanilla JS drives .reviews-track translateX().
   ============================================================ */
.reviews-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-header h2 {
  color: #fff;
  margin-bottom: 16px;
}

.reviews-header .eyebrow {
  color: var(--accent);
}

.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 16px 6px 10px;
  margin-top: 8px;
}

.reviews-google-label {
  color: #e0eeff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.reviews-stars-badge {
  color: #fbbc05;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.reviews-track-outer {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
  flex: 0 0 33.333%;
  padding: 0 12px;
  box-sizing: border-box;
}

.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: #fbbc05;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-text {
  margin: 0;
  flex: 1;
}

.review-text p {
  color: #c8d8f0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

.review-location {
  color: #7a9abd;
  font-size: 0.8rem;
  margin: 2px 0 0;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.reviews-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.reviews-btn:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.reviews-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.reviews-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .review-slide {
    flex: 0 0 100%;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .review-slide {
    flex: 0 0 50%;
  }
}

/* ==========================================================================
   SERVICE PAGE — Page Hero / Breadcrumb Banner
   Light gradient background. SWAP gradient colours per site.
   ========================================================================== */
.page-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  /* SWAP: update gradient colours per site */
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 50%, #f5f0ff 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 60px 0;
}

.page-hero h1 {
  color: var(--text-dark);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.page-hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* Breadcrumb nav */
.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 6px;
  color: var(--border);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumb [aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

/* ==========================================================================
   SERVICE PAGE — Two-column layout: content + sidebar
   ========================================================================== */
.service-layout {
  background: var(--bg-off);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* ==========================================================================
   SERVICE PAGE — Left: Main content
   ========================================================================== */
.service-content {
  background: var(--white);
  padding: 40px;
}

.service-lead-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.service-content h2 {
  color: var(--text-dark);
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}

.service-content h2:first-of-type {
  margin-top: 0;
}

.service-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Alternating image + text block */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-block-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
}

.service-block-text h2 {
  margin-top: 0;
}

/* Checklist */
.service-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.service-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' 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-repeat: no-repeat;
  background-position: center;
}

/* Inline CTA block */
.service-cta-inline {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 24px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.service-cta-inline p {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  min-width: 200px;
}

/* ==========================================================================
   SERVICE PAGE — Right: Sidebar
   ========================================================================== */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px; /* clears the sticky nav height */
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
}

.sidebar-heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

/* Contact widget */
.sidebar-contact {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  text-align: center;
}

.sidebar-phone {
  margin: 0 0 4px;
}

.sidebar-phone a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

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

.sidebar-emergency {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  letter-spacing: 0.3px;
}

.sidebar-btn {
  width: 100%;
  display: block;
  text-align: center;
}

/* Services list widget */
.sidebar-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-services li {
  border-bottom: 1px solid var(--border);
}

.sidebar-services li:last-child {
  border-bottom: none;
}

.sidebar-services a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}

.sidebar-services a::after {
  content: '→';
  color: var(--accent);
  font-size: 0.85rem;
}

.sidebar-services a:hover {
  color: var(--accent);
  padding-left: 4px;
}

/* Contact details widget */
.sidebar-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.sidebar-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.sidebar-contact-list a {
  color: var(--text-dark);
  text-decoration: none;
}

.sidebar-contact-list a:hover {
  color: var(--accent);
}

/* ==========================================================================
   SERVICE PAGE — Responsive
   ========================================================================== */
@media (max-width: 1023px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 280px;
    padding: 40px 0;
  }

  .service-content {
    padding: 24px 20px;
  }

  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block-img {
    height: 220px;
  }

  .service-cta-inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-cta-inline .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   PAGE BANNER — shared across all non-homepage, non-suppress pages
   Rendered by header.php when $is_homepage and $suppress_banner are both empty.
   SWAP: background-image to site's shared banner.webp.
   Overlay is baked into the image during Photoshop export — do NOT add
   a CSS gradient/rgba overlay on top. The .page-banner-overlay div is
   kept for legacy markup compatibility only.
   ========================================================================== */
.page-banner {
  min-height: 350px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Transparent by default — overlay is baked into the image.
     Only add a background here if using a placeholder image without
     a baked-in overlay during development. */
}

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

.page-banner-title {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin: 0;
}

@media (max-width: 767px) {
  .page-banner {
    min-height: 240px;
  }
}

/* ==========================================================================
   POST HERO — blog/guide articles with shared banner background
   ========================================================================== */
.post-hero {
  min-height: 350px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 40px 0;
}

.post-hero .page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.post-hero-inner {
  position: relative;
  z-index: 1;
}

.post-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.post-hero .breadcrumb a {
  color: rgba(255,255,255,0.7);
}

.post-hero .breadcrumb a:hover {
  color: var(--white);
}

.post-hero .breadcrumb li {
  color: rgba(255,255,255,0.5);
}

.post-hero .breadcrumb [aria-current="page"] {
  color: var(--white);
}

.post-hero .breadcrumb li + li::before {
  color: rgba(255,255,255,0.3);
}

.post-date {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .post-hero {
    min-height: 260px;
  }
}

/* ==========================================================================
   POST BODY — article content area
   ========================================================================== */
.post-container {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 60px;
}

.post-body {
  margin-bottom: 3rem;
}

.post-body h2 {
  margin-top: 2.5rem;
}

.post-body p {
  color: #444;
  line-height: 1.8;
}

/* Featured image — article's own image, rendered as in-content figure */
.post-featured-figure {
  margin: 0 0 2rem;
}

.post-featured-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Bio card */
.bio-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--bg-off);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.bio-photo {
  border-radius: 50%;
  flex-shrink: 0;
}

.bio-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.bio-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.bio-desc {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .bio-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   BLOG LISTING — card grid
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.blog-card-img-wrap {
  display: block;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: var(--text-dark);
}

.blog-card-title a:hover {
  color: var(--accent);
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 1rem;
}

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

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap h2 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-feedback {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.contact-feedback--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.contact-feedback--error {
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

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

  .contact-details {
    position: static;
  }
}

/* ==========================================================================
   CONTENT-NARROW — centred max-width for text-heavy pages (about, privacy, terms)
   ========================================================================== */
.content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.content-narrow h2 {
  margin-top: 2.5rem;
}

.content-narrow h2:first-of-type {
  margin-top: 0;
}

.content-narrow p {
  color: #444;
  line-height: 1.8;
}

/* ==========================================================================
   NEWSLETTER BAND
   ========================================================================== */
.newsletter-band {
  background: var(--bg-dark);
  padding: 60px 0;
}

.newsletter-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-band-text h2 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.newsletter-band-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  min-width: 180px;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.newsletter-feedback {
  width: 100%;
  margin-top: 12px;
  font-size: 0.9rem;
}

.newsletter-feedback--success {
  color: #a5d6a7;
}

.newsletter-feedback--error {
  color: #ef9a9a;
}

@media (max-width: 767px) {
  .newsletter-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input[type="text"],
  .newsletter-form input[type="email"] {
    width: 100%;
  }
}

/* ==========================================================================
   NAV DROPDOWN — chevron rotation, desktop dropdown, mobile inline
   ========================================================================== */
.nav-chevron {
  transition: transform 0.2s;
}

.nav-has-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}

.nav-has-dropdown {
  position: relative;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 0;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-has-dropdown.is-open .nav-dropdown {
  display: block;
}

.nav-dropdown li {
  list-style: none;
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.nav-dropdown a:hover {
  background: var(--bg-off);
  color: var(--accent);
}

@media (max-width: 767px) {
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    padding: 0 0 0 12px;
    margin: 0;
    min-width: 0;
  }

  .nav-dropdown a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-dropdown li:last-child a {
    border-bottom: none;
  }
}


/* ============================================================
   SERVICE PAGE — full width content
   ============================================================ */

.service-content {
  padding: 60px 0;
}

.section-gap {
  margin-top: 64px;
}

.service-intro .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   SERVICE PAGE — showcase grid (2-col)
   ============================================================ */

.showcase-section h2 {
  margin-bottom: 8px;
}

.showcase-section > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.showcase-item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}

.showcase-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.showcase-item:hover img {
  transform: scale(1.02);
}

/* ============================================================
   PAGE BANNER — h1 overlay on banner image
   ============================================================ */

.page-banner {
  position: relative;
  overflow: hidden;
  max-height: 320px;
}

.page-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  display: flex;
  align-items: center;
}

.page-banner-overlay h1 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 8px;
}

.page-banner-overlay p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

  .service-content {
    padding: 40px 0;
  }
}


/* ============================================================
   SERVICE PAGE — remove grey background around container
   ============================================================ */

.site-main {
  background: var(--white);
}

.service-layout {
  background: var(--white);
}


/* ============================================================
   SERVICE HERO — dark bg, headline left / form right
   ============================================================ */

.service-hero {
  background: var(--bg-dark);
  padding: 72px 0;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-hero-text h1 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-hero-accent {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

.service-hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-hero-list li {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  padding-left: 24px;
  position: relative;
}

.service-hero-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

/* Form panel */
.service-hero-form {
  background: #fff;
  border-radius: 12px;
  padding: 36px 32px;
}

.service-hero-form h2 {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-form .form-group {
  margin-bottom: 14px;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s;
}

.hero-form input:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.hero-form textarea {
  resize: vertical;
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}

@media (max-width: 767px) {
  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-hero {
    padding: 48px 0;
  }
}


/* Showcase 3-col variant */
.showcase-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.showcase-privacy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: -8px;
}

@media (max-width: 767px) {
  .showcase-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   QR TRACKING PROMO BAND — dark, full width break
   ============================================================ */

.qr-promo {
  background: var(--bg-dark);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 64px;
  margin-bottom: 64px;
  padding: 80px 40px;
}

.qr-promo-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.qr-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.qr-promo-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.qr-promo-text h2 {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin-bottom: 12px;
  line-height: 1.3;
}

.qr-promo-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 600px;
}

.qr-promo-text p:last-child {
  margin-bottom: 0;
}

.qr-promo-cta {
  flex-shrink: 0;
}

.btn-accent-outline {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

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

@media (max-width: 767px) {
  .qr-promo {
    width: calc(100% + 48px);
    left: -24px;
    margin-left: 0;
    margin-right: 0;
    padding: 40px 24px;
    position: relative;
  }

  .qr-promo-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    max-width: 100%;
  }
}


/* ============================================================
   CARD FINISHES SECTION
   ============================================================ */

.section-intro-text {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 700px;
}

.finishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.finishes-col h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.finishes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.finishes-list li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.finishes-list strong {
  color: var(--text-dark);
}

.finishes-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   DESIGN OPTIONS — 3 tier cards
   ============================================================ */

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.option-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-card--featured {
  border-color: var(--accent);
  border-width: 2px;
}

.option-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.option-card h3 {
  font-size: 1.0625rem;
  margin: 0;
}

.option-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

/* ============================================================
   EDITORIAL SECTION
   ============================================================ */

.editorial-section {
  max-width: 780px;
}

.editorial-section p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.editorial-section p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */

@media (max-width: 767px) {
  .finishes-grid,
  .options-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   FINISHES BAND — full width light grey
   ============================================================ */

.finishes-band {
  background: var(--bg-light);
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 64px 40px;
}

.finishes-band-inner {
  max-width: 1140px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .finishes-band {
    width: calc(100% + 48px);
    left: -24px;
    margin-left: 0;
    margin-right: 0;
    padding: 40px 24px;
  }
}


/* ============================================================
   GOOGLE REVIEW CARDS SECTION
   ============================================================ */

.review-card-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
}

.review-card-text .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.review-card-text h2 {
  margin-bottom: 16px;
}

.review-card-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.review-card-visual {
  display: flex;
  justify-content: center;
}

.review-card-mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  width: 100%;
  max-width: 320px;
}

.review-mock-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.review-mock-headline {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.review-mock-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.review-mock-qr {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.review-mock-url {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
  margin: 0;
}

@media (max-width: 767px) {
  .review-card-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* Fix list text colour in review card section (light bg) */
.review-card-text .service-hero-list li {
  color: var(--text-muted);
}

.review-card-text .service-hero-list li::before {
  top: 8px;
}


/* Options grid — 2 column variant for table tents */
.options-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}
