/* views/scraped-site/assets/style.css
   Design system ported from the hand-built Hollingsworth site, parameterized with
   CSS variables so every site keeps the same art direction with its own brand:
   - --primary / --primary-dark / --accent are injected per-site (inline <style>).
   - Derived tints/shades use color-mix so one brand color drives the whole palette.
   - --font-heading / --font-body come from the manifest's font pairing. */
:root {
  --primary: #2d6a1f;
  --primary-dark: #1a3d17;
  --accent: #f4b942;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --primary-mid: color-mix(in srgb, var(--primary), white 16%);
  --primary-light: color-mix(in srgb, var(--primary) 11%, white);
  --accent-dark: color-mix(in srgb, var(--accent) 82%, black);
  --footer-bg: color-mix(in srgb, var(--primary-dark) 52%, black);

  --white: #ffffff;
  --off-white: color-mix(in srgb, var(--primary) 3%, #fafbf9);
  --text-dark: #1a1f1a;
  --text-body: #3a423a;
  --text-muted: #6b746b;
  --border: color-mix(in srgb, var(--primary) 13%, #eef1ec);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .07);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, .12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 1.5rem; } }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 35%, transparent);
}
.btn--secondary {
  background: rgba(255, 255, 255, .15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover { background: rgba(255, 255, 255, .25); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn--lg { padding: .9rem 2rem; font-size: 1rem; }
.btn--sm { padding: .5rem 1.1rem; font-size: .8rem; }

/* Section headers */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header--light h2, .section-header--light .section-sub { color: var(--white); }
.section-header--light .section-eyebrow { color: var(--accent); }

.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .6rem;
}
.section-eyebrow--light { color: rgba(255, 255, 255, .7); }

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--text-dark); line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .75rem; }
h3 { font-size: 1.15rem; margin-bottom: .4rem; }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

/* =============================== NAVIGATION =============================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  padding: .75rem 0;
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.nav__logo { position: relative; z-index: 1003; display: flex; align-items: center; gap: .65rem; }
.nav__logo-img { height: 44px; width: 44px; object-fit: contain; flex-shrink: 0; border-radius: 6px; }
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
  transition: color 0.3s ease;
}
.nav__logo-text em {
  font-style: normal;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1px;
  transition: color 0.3s ease;
}
.site-header.is-scrolled .nav__logo-text, body.nav-open .nav__logo-text { color: var(--text-dark); }
.site-header.is-scrolled .nav__logo-text em, body.nav-open .nav__logo-text em { color: var(--primary); }

.nav__backdrop {
  position: fixed; inset: 0; z-index: 1001;
  background: color-mix(in srgb, var(--primary-dark) 42%, transparent);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; pointer-events: none; cursor: pointer;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
body.nav-open .nav__backdrop { opacity: 1; visibility: visible; pointer-events: auto; }

.nav__actions { display: flex; align-items: center; gap: .35rem; flex-shrink: 0; z-index: 1003; }

.nav__phone {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  color: var(--white);
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease;
}
.nav__phone:hover { background: rgba(255, 255, 255, 0.12); }
.nav__phone:active { transform: scale(0.96); }
.site-header.is-scrolled .nav__phone, body.nav-open .nav__phone { color: var(--primary); }
.site-header.is-scrolled .nav__phone:hover, body.nav-open .nav__phone:hover {
  background: color-mix(in srgb, var(--primary) 8%, transparent);
}
.nav__phone-icon { width: 1.28rem; height: 1.28rem; display: block; }

.nav__toggle {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 6px; width: 2.75rem; height: 2.75rem; padding: 0; border-radius: 50%;
  z-index: 1003;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav__toggle:hover { background: rgba(255, 255, 255, 0.12); }
.nav__toggle span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--white);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, background 0.3s ease;
  transform-origin: center;
}
.site-header.is-scrolled .nav__toggle span { background: var(--text-dark); }
.nav__toggle[aria-expanded="true"] { background: rgba(255, 255, 255, 0.95); box-shadow: var(--shadow-sm); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--primary); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--primary); }

.nav__links {
  display: flex; flex-direction: column;
  position: fixed; inset: 0; width: 100%;
  height: 100dvh; z-index: 1002;
  align-items: center; justify-content: center;
  padding: calc(5.25rem + env(safe-area-inset-top, 0px)) 1.75rem calc(2rem + env(safe-area-inset-bottom, 0px));
  gap: 0.2rem;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.97) 0%, color-mix(in srgb, var(--off-white) 96%, transparent) 50%, color-mix(in srgb, var(--primary-light) 95%, transparent) 100%);
  backdrop-filter: blur(16px);
  transform: translateY(-8px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.35s ease;
}
.nav__links.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }

.nav__link {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 4.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  padding: 0.85rem 2rem;
  border-radius: 999px;
  text-align: center;
  min-width: min(18rem, 100%);
  display: inline-block;
  transition: var(--transition);
}
.nav__link:hover { background: color-mix(in srgb, var(--primary) 8%, transparent); color: var(--primary); }

.nav__link--cta {
  background: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.2rem 2.75rem;
  margin-top: 3rem;
}
.nav__link--cta:hover {
  background: var(--primary-mid) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--primary) 30%, transparent);
}

@media (min-width: 1024px) {
  .nav__actions { display: none; }
  .nav__backdrop { display: none; }
  .nav__links {
    position: static; flex-direction: row; align-items: center;
    height: auto; padding: 0; width: auto; gap: .25rem;
    transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    background: transparent; backdrop-filter: none;
  }
  .nav__link {
    color: var(--white);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: 0;
    min-width: 0;
    padding: .6rem .9rem;
    border-radius: 6px;
  }
  .nav__link:hover { color: var(--accent); background: transparent; }
  .site-header.is-scrolled .nav__link { color: var(--text-dark); }
  .nav__link--cta {
    margin-top: 0; margin-left: .5rem;
    background: var(--accent);
    color: var(--text-dark) !important;
    text-transform: none; letter-spacing: .02em;
    font-size: .9rem; font-weight: 600;
    padding: .55rem 1.25rem;
  }
  .nav__link--cta:hover {
    background: var(--accent-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 40%, transparent);
  }
  .site-header.is-scrolled .nav__link--cta { background: var(--primary); color: var(--white) !important; }
  .site-header.is-scrolled .nav__link--cta:hover { background: var(--primary-mid) !important; }
}

/* ================================== HERO ================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero--short { min-height: 72svh; }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--primary-dark) 82%, transparent) 0%,
    color-mix(in srgb, var(--primary-dark) 55%, transparent) 50%,
    rgba(0, 0, 0, .3) 100%);
}
.hero__content { position: relative; z-index: 1; padding-block: 8rem 4rem; max-width: 700px; }
@media (min-width: 768px) { .hero__content { padding-block: 10rem 5rem; } }
.hero__eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .75rem;
}
.hero__headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__headline span { color: var(--accent); }
.hero__sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, .88);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.hero__trust span { font-size: .8rem; color: rgba(255, 255, 255, .8); font-weight: 500; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 1; color: var(--white); opacity: .7;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll svg { width: 2rem; height: 2rem; }
.hero__scroll:hover { opacity: 1; }

@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1); } }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ================================ SERVICES ================================ */
.services { background: var(--off-white); padding: 5rem 0; }
@media (min-width: 1024px) { .services { padding: 7rem 0; } }
.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 480px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }
.services__cta {
  text-align: center; margin-top: 3rem; padding: 2.5rem;
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.services__cta p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1rem; }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover .service-card__img-wrap img { transform: scale(1.06); }
.service-card__img-wrap { height: 180px; overflow: hidden; background: var(--primary-light); }
.service-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card__body { padding: 1.25rem; }
.service-card__body h3 {
  font-size: 1rem; font-family: var(--font-body); font-weight: 600;
  color: var(--text-dark); margin-bottom: .4rem;
}
.service-card__body p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ================================= ABOUT ================================= */
.about { padding: 5rem 0; background: var(--white); }
@media (min-width: 1024px) { .about { padding: 7rem 0; } }
.about__inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about__inner--with-image { grid-template-columns: 1fr 1.1fr; } }
.about__image { position: relative; max-width: 480px; margin-inline: auto; }
@media (min-width: 1024px) { .about__image { margin-inline: 0; } }
.about__img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5;
}
.about__img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute; bottom: 1.5rem; right: -1rem;
  background: var(--white); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .75rem;
}
@media (min-width: 1024px) { .about__badge { right: -2rem; } }
.about__badge svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }
.about__badge strong { display: block; font-size: .85rem; font-weight: 600; color: var(--text-dark); }
.about__text h2 { margin-bottom: 1rem; }
.about__text > p { color: var(--text-body); line-height: 1.75; margin-bottom: 1rem; }
.about__list { display: grid; gap: .65rem; margin-bottom: 1rem; }
.about__list li { padding-left: 1.6rem; position: relative; color: var(--text-body); font-weight: 500; }
.about__list li::before { content: "\2713"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.about__review { border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 1rem; }
.about__stars { font-size: 1.25rem; color: var(--accent); margin-bottom: .4rem; letter-spacing: .1em; }
.about__review p { margin-bottom: .85rem; color: var(--text-muted); }

/* ================================ GALLERY ================================ */
.gallery { padding: 5rem 0; background: var(--white); }
@media (min-width: 1024px) { .gallery { padding: 7rem 0; } }
.gallery__empty { color: var(--text-muted); text-align: center; }
.gallery__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
@media (min-width: 768px) { .gallery__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; } }
@media (min-width: 1024px) { .gallery__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.gallery__item {
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4 / 3; margin: 0; position: relative;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--primary-dark) 40%, transparent), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery__item:hover::after { opacity: 1; }

/* Carousel shared (fade / slide variants) */
.carousel { position: relative; }
.carousel__viewport { position: relative; overflow: hidden; border-radius: var(--radius-md); background: var(--primary-dark); }
.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  color: var(--text-dark); font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  transition: var(--transition);
}
.carousel__arrow:hover { background: var(--primary); border-color: var(--primary); color: var(--white); box-shadow: var(--shadow-md); }
.carousel__arrow--prev { left: 12px; }
.carousel__arrow--next { right: 12px; }
.carousel__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.1rem; }
.carousel__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: var(--transition);
}
.carousel__dot.is-active { background: var(--primary); width: 24px; border-radius: 4px; }

.carousel--classic-fade .carousel__viewport { aspect-ratio: 16 / 9; }
.carousel--classic-fade .carousel__track { position: relative; width: 100%; height: 100%; }
.carousel--classic-fade .carousel__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.carousel--classic-fade .carousel__slide.is-active { opacity: 1; z-index: 1; }
.carousel--classic-fade .carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.carousel--grid-slide .carousel__viewport { border-radius: var(--radius-md); background: transparent; }
.carousel--grid-slide .carousel__track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding-bottom: .25rem;
}
.carousel--grid-slide .carousel__track::-webkit-scrollbar { display: none; }
.carousel--grid-slide .carousel__slide {
  flex: 0 0 80%; scroll-snap-align: start; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3;
}
@media (min-width: 640px) { .carousel--grid-slide .carousel__slide { flex-basis: 45%; } }
@media (min-width: 960px) { .carousel--grid-slide .carousel__slide { flex-basis: 31%; } }
.carousel--grid-slide .carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.carousel--thumbnail-strip .carousel__viewport { aspect-ratio: 16 / 9; }
.carousel--thumbnail-strip .carousel__track { position: relative; width: 100%; height: 100%; }
.carousel--thumbnail-strip .carousel__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.5s ease; }
.carousel--thumbnail-strip .carousel__slide.is-active { opacity: 1; z-index: 1; }
.carousel--thumbnail-strip .carousel__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel--thumbnail-strip .carousel__thumbs { display: flex; gap: .6rem; margin-top: .85rem; overflow-x: auto; }
.carousel--thumbnail-strip .carousel__thumb {
  flex: 0 0 84px; height: 60px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; padding: 0; cursor: pointer; opacity: .65;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.carousel--thumbnail-strip .carousel__thumb.is-active { opacity: 1; border-color: var(--accent); }
.carousel--thumbnail-strip .carousel__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================== TESTIMONIALS ============================== */
.reviews { background: var(--off-white); padding: 5rem 0; overflow: hidden; }
@media (min-width: 1024px) { .reviews { padding: 7rem 0; } }
.reviews__summary { display: flex; justify-content: center; margin-top: 1.25rem; }
.reviews__score {
  display: flex; align-items: center; gap: .6rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 50px; padding: .5rem 1.25rem;
}
.reviews__score-num { font-size: 1.3rem; font-weight: 700; font-family: var(--font-heading); color: var(--text-dark); }
.reviews__score-stars { font-size: 1rem; color: var(--accent); letter-spacing: .05em; }
.reviews__score-count { font-size: .78rem; color: var(--text-muted); font-weight: 500; }
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.reviews__read-all {
  display: block; width: fit-content; margin: 1.5rem auto 0;
  font-size: .82rem; font-weight: 600; color: var(--primary);
  text-decoration: underline; text-underline-offset: .2em;
  text-decoration-color: color-mix(in srgb, var(--primary) 35%, transparent);
  transition: var(--transition);
}
.reviews__read-all:hover { text-decoration-color: var(--primary); }

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .75rem;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-card__header { display: flex; align-items: center; gap: .85rem; }
.review-card__header strong { display: block; font-size: .9rem; font-weight: 600; color: var(--text-dark); margin-bottom: .2rem; }
.review-card__avatar {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--av-color, var(--primary));
  color: var(--white); font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: .03em;
}
.review-card__platform { display: inline-flex; align-items: center; gap: .3rem; font-size: .72rem; font-weight: 500; color: var(--text-muted); }
.review-card__stars { font-size: .95rem; color: var(--accent); letter-spacing: .05em; line-height: 1; }
.review-card blockquote {
  font-size: .88rem; color: var(--text-body); line-height: 1.7;
  flex-grow: 1; font-style: italic; border: none; padding: 0; margin: 0;
}

/* Testimonial carousel: grid-stacked slides so height follows the tallest quote. */
.carousel--testimonial .carousel__viewport { background: transparent; overflow: visible; border-radius: 0; }
.carousel--testimonial .carousel__track { display: grid; }
.carousel--testimonial .carousel__slide {
  grid-area: 1 / 1; opacity: 0; pointer-events: none; transition: opacity 0.5s ease;
  max-width: 640px; margin-inline: auto; width: 100%;
}
.carousel--testimonial .carousel__slide.is-active { opacity: 1; pointer-events: auto; }
.carousel--testimonial .review-card:hover { transform: none; }
.carousel--testimonial .carousel__arrow--prev { left: -.5rem; }
.carousel--testimonial .carousel__arrow--next { right: -.5rem; }

.review-spotlight { max-width: 720px; margin: 0 auto; text-align: center; }
.review-spotlight .review-card__stars { font-size: 1.2rem; margin-bottom: 1rem; }
.review-spotlight blockquote {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-family: var(--font-heading);
  font-style: normal;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}
.review-spotlight figcaption { display: flex; justify-content: center; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.review-spotlight figcaption strong { color: var(--text-dark); }
.review-spotlight figcaption span { color: var(--text-muted); font-size: .85rem; }

/* ============================ CONTACT / CTA BAND ============================ */
.contact { position: relative; padding: 5rem 0; background: var(--primary-dark); overflow: hidden; }
@media (min-width: 1024px) { .contact { padding: 7rem 0; } }
.contact__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, color-mix(in srgb, var(--primary) 40%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 50%);
}
.contact__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 1024px) { .contact__inner { grid-template-columns: 1.1fr 1fr; } }
.contact__text h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.contact__text > p { color: rgba(255, 255, 255, .75); line-height: 1.7; margin-bottom: 2rem; }
.contact__details { display: flex; flex-direction: column; gap: .75rem; }
.contact__detail {
  display: flex; align-items: center; gap: .75rem;
  color: rgba(255, 255, 255, .85); font-weight: 500;
  transition: color 0.2s;
}
.contact__detail svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; color: var(--accent); }
.contact__detail:hover { color: var(--accent); }
.contact__ctas { display: flex; flex-direction: column; gap: 1rem; }
.contact__cta-btn {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact__cta-btn svg { width: 1.75rem; height: 1.75rem; flex-shrink: 0; }
.contact__cta-btn strong { display: block; font-size: 1rem; font-weight: 600; }
.contact__cta-btn span { font-size: .85rem; opacity: .85; }
.contact__cta-btn--call { background: var(--primary); color: var(--white); }
.contact__cta-btn--call:hover { background: var(--primary-mid); transform: translateX(4px); }
.contact__cta-btn--text { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); color: var(--white); }
.contact__cta-btn--text:hover { background: rgba(255, 255, 255, .18); transform: translateX(4px); }
.contact__review-cta {
  text-align: center; padding: 1rem;
  border: 1px dashed rgba(255, 255, 255, .2); border-radius: var(--radius-md);
}
.contact__review-cta p { font-size: .8rem; color: rgba(255, 255, 255, .55); margin-bottom: .3rem; }
.contact__review-cta a { color: var(--accent); font-weight: 600; font-size: .9rem; transition: opacity 0.2s; }
.contact__review-cta a:hover { opacity: .8; }

/* ================================= FOOTER ================================= */
.footer { background: var(--footer-bg); color: rgba(255, 255, 255, .7); }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-block: 4rem; }
@media (min-width: 768px) { .footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer__brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer__logo-row { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer__logo-img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; border-radius: 6px; }
.footer__logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
  font-size: 1.05rem; font-weight: 700; color: rgba(255, 255, 255, .9);
}
.footer__logo-text em {
  font-style: normal; font-size: .68rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-top: 2px;
}
.footer__social { display: flex; gap: .75rem; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  background: rgba(255, 255, 255, .1); border-radius: 50%;
  font-size: .8rem; font-weight: 600; color: var(--white);
  transition: var(--transition);
}
.footer__social a svg { width: 1rem; height: 1rem; color: var(--white); }
.footer__social a:hover { background: var(--primary); transform: translateY(-2px); }
.footer__links h4, .footer__contact h4 {
  font-family: var(--font-body);
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .45); margin-bottom: 1rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: .4rem; }
.footer__links li a { font-size: .88rem; color: rgba(255, 255, 255, .65); transition: color 0.2s; }
.footer__links li a:hover { color: var(--accent); }
.footer__contact a, .footer__contact p {
  display: block; font-size: .88rem; color: rgba(255, 255, 255, .65);
  margin-bottom: .4rem; transition: color 0.2s;
}
.footer__contact a:hover { color: var(--accent); }
.footer__contact .btn { margin-top: 1rem; display: inline-flex; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 1.5rem 0; }
.footer__bottom .container {
  display: flex; flex-direction: column; gap: .3rem; align-items: center; text-align: center;
}
@media (min-width: 768px) { .footer__bottom .container { flex-direction: row; justify-content: space-between; } }
.footer__bottom p { font-size: .78rem; color: rgba(255, 255, 255, .35); }

/* ============================== FLOATING CTA ============================== */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  display: flex; flex-direction: column; gap: .6rem;
}
@media (min-width: 1024px) { .floating-cta { display: none; } }
.floating-cta__btn {
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.floating-cta__btn svg { width: 1.3rem; height: 1.3rem; }
.floating-cta__btn:hover { transform: scale(1.1); }
.floating-cta__btn--call { background: var(--primary); color: var(--white); }
.floating-cta__btn--text { background: var(--white); color: var(--primary); border: 2px solid var(--primary-light); }

/* ========================= SECTION DESIGN VARIANTS ========================= */

/* Accent button (used by CTA variants on dark panels) */
.btn--accent { background: var(--accent); color: #1a1f1a; }
.btn--accent:hover {
  background: var(--accent-dark); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 40%, transparent);
}

/* Header over light hero variants: dark nav text before scroll */
.site-header--on-light .nav__logo-text { color: var(--text-dark); }
.site-header--on-light .nav__logo-text em { color: var(--primary); }
.site-header--on-light .nav__phone { color: var(--primary); }
.site-header--on-light .nav__phone:hover { background: color-mix(in srgb, var(--primary) 8%, transparent); }
.site-header--on-light .nav__toggle span { background: var(--text-dark); }
.site-header--on-light .nav__toggle:hover { background: color-mix(in srgb, var(--primary) 8%, transparent); }
@media (min-width: 1024px) {
  .site-header--on-light .nav__link { color: var(--text-dark); }
  .site-header--on-light .nav__link:hover { color: var(--primary); }
  .site-header--on-light .nav__link--cta { background: var(--primary); color: var(--white) !important; }
  .site-header--on-light .nav__link--cta:hover { background: var(--primary-mid) !important; }
}

/* --- Hero: split panel --- */
.hero--split {
  min-height: 0;
  display: block;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 8%, var(--white)) 0%, var(--white) 100%);
}
.hero-split__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 2.75rem; align-items: center;
  padding-block: 7.5rem 3.5rem;
}
@media (min-width: 1024px) {
  .hero-split__inner { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; padding-block: 10rem 5.5rem; }
}
.hero-split__inner--no-media { grid-template-columns: 1fr; max-width: 860px; }
.hero--split .hero__eyebrow { color: var(--primary); }
.hero--split .hero__headline { color: var(--text-dark); }
.hero--split .hero__headline span { color: var(--primary); }
.hero--split .hero__sub { color: var(--text-body); }
.hero--split .hero__trust span { color: var(--text-body); }
.hero-split__media { position: relative; max-width: 560px; margin-inline: auto; }
.hero-split__media::before {
  content: ''; position: absolute; z-index: 0;
  inset: 1.5rem -1.25rem -1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--accent) 24%, transparent);
}
.hero-split__frame {
  position: relative; z-index: 1;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 5 / 4;
}
.hero-split__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-split__badge {
  position: absolute; z-index: 2; left: -0.9rem; bottom: 1.4rem;
  display: flex; align-items: center; gap: .55rem;
  background: var(--white); border-radius: 999px;
  padding: .7rem 1.2rem; box-shadow: var(--shadow-md);
  font-size: .8rem; font-weight: 600; color: var(--text-dark);
}
.hero-split__badge svg { width: 1.1rem; height: 1.1rem; color: var(--primary); flex-shrink: 0; }

/* --- Hero: centered spotlight --- */
.hero--minimal {
  min-height: 0;
  display: block;
  background: radial-gradient(ellipse at 50% -20%,
    color-mix(in srgb, var(--primary) 55%, var(--primary-dark)) 0%,
    var(--primary-dark) 62%);
}
.hero-minimal__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-block: 8.5rem 4.5rem;
}
.hero--minimal .hero__sub { margin-inline: auto; }
.hero--minimal .hero__ctas, .hero--minimal .hero__trust { justify-content: center; }
.hero-minimal__media {
  margin-top: 3.25rem; width: min(100%, 880px);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .16);
}
.hero-minimal__media img { width: 100%; max-height: 460px; object-fit: cover; }

/* --- Hero: floating card over photo --- */
.hero--card { align-items: center; }
.hero-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg,
    color-mix(in srgb, var(--primary-dark) 45%, transparent) 0%,
    rgba(0, 0, 0, .15) 60%,
    transparent 100%);
}
.hero-card__inner { position: relative; z-index: 1; padding-block: 8.5rem 4.5rem; }
.hero-card__panel {
  max-width: 620px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2.25rem;
}
@media (min-width: 768px) { .hero-card__panel { padding: 3rem 2.75rem; } }
.hero--card .hero__eyebrow { color: var(--primary); }
.hero--card .hero__headline { color: var(--text-dark); font-size: clamp(2rem, 4.5vw, 3.1rem); }
.hero--card .hero__headline span { color: var(--primary); }
.hero--card .hero__sub { color: var(--text-body); }
.hero--card .hero__trust span { color: var(--text-body); }

/* --- Hero: angled color block + photo --- */
.hero--angled {
  min-height: 0; display: block; overflow: hidden;
  background: linear-gradient(135deg,
    var(--primary-dark) 0%,
    color-mix(in srgb, var(--primary) 70%, var(--primary-dark)) 100%);
}
.hero-angled__content { position: relative; z-index: 1; padding-block: 8rem 4rem; max-width: 620px; }
.hero-angled__media { position: relative; clip-path: polygon(0 14%, 100% 0, 100% 100%, 0 100%); }
.hero-angled__media img { width: 100%; height: 280px; object-fit: cover; display: block; }
@media (min-width: 1024px) {
  .hero-angled__content { padding-block: 11rem 6.5rem; max-width: 560px; }
  .hero-angled__media {
    position: absolute; inset: 0 0 0 auto; width: 46%;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  }
  .hero-angled__media img { height: 100%; }
  .hero-angled__media::after {
    content: ''; position: absolute; inset: 0;
    background: color-mix(in srgb, var(--primary-dark) 22%, transparent);
  }
}

/* --- Hero: editorial oversized headline --- */
.hero--editorial {
  min-height: 0; display: block;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 7%, var(--white)) 0%, var(--white) 100%);
}
.hero-editorial__inner { position: relative; z-index: 1; padding-block: 8rem 4.5rem; }
@media (min-width: 768px) { .hero-editorial__inner { padding-block: 10rem 5rem; } }
.hero--editorial .hero__eyebrow { color: var(--primary); }
.hero--editorial .hero__headline {
  color: var(--text-dark);
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  letter-spacing: -.02em;
  max-width: 16ch;
}
.hero--editorial .hero__headline span { color: var(--primary); }
.hero--editorial .hero__sub { color: var(--text-body); max-width: 620px; }
.hero--editorial .hero__trust span { color: var(--text-body); }
.hero-editorial__media {
  margin-top: 3.25rem;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-editorial__media img { width: 100%; height: clamp(260px, 42vw, 480px); object-fit: cover; display: block; }

/* --- About: editorial columns + wide photo --- */
.about-editorial__cols { max-width: 880px; margin-inline: auto; }
@media (min-width: 900px) { .about-editorial__cols { columns: 2; column-gap: 3.25rem; } }
.about-editorial__cols p { break-inside: avoid; margin-bottom: 1rem; color: var(--text-body); line-height: 1.8; }
.about-editorial__cols p:first-child::first-letter {
  font-family: var(--font-heading);
  font-size: 3.1em; line-height: .82; float: left;
  padding-right: .14em; color: var(--primary); font-weight: 700;
}
.about-editorial__list {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 680px; margin-inline: auto;
}
.about-editorial__banner {
  margin-top: 3rem; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.about-editorial__banner img { width: 100%; max-height: 480px; object-fit: cover; }
.about-editorial__review { max-width: 560px; margin: 2.5rem auto 0; text-align: center; border-top: none; padding-top: 0; }

/* --- About: overlapping panel card --- */
.about--panel { background: var(--off-white); }
.about-panel__inner { position: relative; display: grid; grid-template-columns: 1fr; }
.about-panel__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-panel__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.about-panel__card {
  position: relative; z-index: 1;
  background: var(--white); border-radius: var(--radius-lg);
  border-top: 4px solid var(--accent);
  padding: 2rem; margin: -3rem 1rem 0;
  box-shadow: var(--shadow-lg);
}
.about-panel__card h2 { margin-bottom: 1rem; }
.about-panel__card > p { color: var(--text-body); line-height: 1.75; margin-bottom: 1rem; }
@media (min-width: 1024px) {
  .about-panel__inner { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .about-panel__media { grid-column: 1; grid-row: 1; height: 100%; min-height: 560px; }
  .about-panel__card { grid-column: 2; grid-row: 1; margin: 0 0 0 -5rem; padding: 3rem; }
}
.about-panel__card--no-media { margin: 0 auto; max-width: 720px; }
@media (min-width: 1024px) { .about-panel__card--no-media { grid-column: 1 / -1; margin: 0 auto; } }
.about-panel__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--primary-light); border-radius: 999px;
  padding: .6rem 1.1rem; margin-top: .25rem;
  font-size: .82rem; color: var(--text-dark);
}
.about-panel__badge svg { width: 1.1rem; height: 1.1rem; color: var(--primary); flex-shrink: 0; }

/* --- Services: alternating feature rows --- */
.services--alt { background: var(--white); }
.services-alt__list { display: flex; flex-direction: column; gap: 3.25rem; }
.services-alt__row { display: grid; grid-template-columns: 1fr; gap: 1.75rem; align-items: center; }
@media (min-width: 900px) {
  .services-alt__row { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .services-alt__row--flip .services-alt__media { order: 2; }
}
.services-alt__media {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 3 / 2;
}
.services-alt__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.services-alt__row:hover .services-alt__media img { transform: scale(1.04); }
.services-alt__num {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-heading); font-size: .9rem; font-weight: 700;
  letter-spacing: .18em; color: var(--accent-dark); margin-bottom: .75rem;
}
.services-alt__num::after { content: ''; width: 2.25rem; height: 2px; background: var(--accent); }
.services-alt__body h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin-bottom: .6rem; }
.services-alt__body p { color: var(--text-body); line-height: 1.75; max-width: 46ch; margin-bottom: 1rem; }
.services-alt__link {
  font-size: .88rem; font-weight: 600; color: var(--primary);
  transition: var(--transition);
}
.services-alt__link:hover { color: var(--primary-dark); letter-spacing: .01em; }

/* --- Services: numbered minimal tiles --- */
.services-tiles__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .services-tiles__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-tiles__grid { grid-template-columns: repeat(3, 1fr); } }
.service-tile {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.9rem 1.6rem 1.6rem;
  transition: var(--transition);
}
.service-tile::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-tile:hover::before { transform: scaleX(1); }
.service-tile__num {
  display: block; margin-bottom: .8rem; line-height: 1;
  font-family: var(--font-heading); font-size: 2rem; font-weight: 700;
  color: color-mix(in srgb, var(--primary) 24%, transparent);
}
.service-tile h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; }
.service-tile p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

/* --- FAQ --- */
.faq { padding: 5rem 0; background: var(--white); }
@media (min-width: 1024px) { .faq { padding: 7rem 0; } }
.faq__list { max-width: 760px; margin-inline: auto; display: grid; gap: .75rem; }
.faq__item {
  background: var(--off-white);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; padding: 1.1rem 1.35rem;
  font-weight: 600; font-size: .95rem; color: var(--text-dark);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { font-size: 1.35rem; line-height: 1; color: var(--primary); transition: transform 0.3s ease; }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__item > p { padding: 0 1.35rem 1.2rem; font-size: .9rem; color: var(--text-body); line-height: 1.7; }
.faq__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .faq__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; } }
.faq__block { padding-left: 1.1rem; border-left: 3px solid var(--accent); }
.faq__block h3 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: .4rem; }
.faq__block p { font-size: .9rem; color: var(--text-body); line-height: 1.7; }
.faq__more { text-align: center; margin-top: 2.5rem; font-size: .9rem; color: var(--text-muted); }
.faq__more a {
  color: var(--primary); font-weight: 600;
  text-decoration: underline; text-underline-offset: .2em;
}

/* --- Service area --- */
.service-area { padding: 5rem 0; background: var(--primary-light); }
@media (min-width: 1024px) { .service-area { padding: 6.5rem 0; } }
.service-area--columns { background: var(--white); }
.service-area__chips {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem; max-width: 820px; margin-inline: auto;
}
.service-area__chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 999px;
  padding: .55rem 1.05rem;
  font-size: .85rem; font-weight: 500; color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-area__chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.service-area__chip svg { width: .95rem; height: .95rem; color: var(--primary); flex-shrink: 0; }
.service-area__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .7rem 1.5rem; max-width: 880px; margin-inline: auto;
}
.service-area__cols li { display: flex; align-items: center; gap: .5rem; font-size: .92rem; font-weight: 500; color: var(--text-body); }
.service-area__cols svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; }
.service-area__note { text-align: center; margin-top: 2.25rem; font-size: .9rem; color: var(--text-muted); }
.service-area__note a {
  color: var(--primary); font-weight: 600;
  text-decoration: underline; text-underline-offset: .2em;
}

/* --- CTA: centered statement --- */
.contact-centered__inner {
  position: relative; z-index: 1;
  max-width: 800px; text-align: center;
}
.contact-centered__inner h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 1rem; }
.contact-centered__sub { color: rgba(255, 255, 255, .78); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.25rem; }
.contact-centered__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-bottom: 2rem; }
.contact-centered__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; }
.contact--centered .contact__review-cta { max-width: 420px; margin: 2.5rem auto 0; }

/* --- CTA: compact gradient banner --- */
.contact--banner { background: var(--white); padding: 4.5rem 0; }
.contact-banner__panel {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: grid; grid-template-columns: 1fr; gap: 1.75rem; align-items: center;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) { .contact-banner__panel { grid-template-columns: 1.3fr auto; padding: 3.25rem 3.5rem; } }
.contact-banner__panel::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
}
.contact-banner__text { position: relative; z-index: 1; }
.contact-banner__text h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: .5rem; }
.contact-banner__text p { color: rgba(255, 255, 255, .8); line-height: 1.65; }
.contact-banner__email { margin-top: 1rem; }
.contact-banner__btns { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: stretch; gap: .75rem; }
.contact-banner__btns .btn { justify-content: center; }
.contact-banner__review {
  text-align: center; font-size: .85rem; font-weight: 600;
  color: var(--accent); transition: opacity 0.2s;
}
.contact-banner__review:hover { opacity: .8; }

/* ================================ UTILITY ================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--primary-mid); border-radius: 3px; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

/* =============================== EXTRA CONTENT ===============================
   Freeform blocks from sites/{slug}/site-extra.md (rendered by sections/extra.ejs). */
.extra { padding: 5rem 0; background: var(--off-white); }
@media (min-width: 1024px) { .extra { padding: 7rem 0; } }
.extra__block { max-width: 760px; margin-inline: auto; }
.extra__block + .extra__block { margin-top: 4rem; }
.extra__header { margin-bottom: 2rem; }
.extra__prose { color: var(--text-muted); line-height: 1.8; }
.extra__prose p { margin-bottom: 1rem; }
.extra__prose h3, .extra__prose h4 { margin-top: 1.75rem; margin-bottom: .6rem; }
.extra__prose ul, .extra__prose ol { margin: 0 0 1rem 1.25rem; display: grid; gap: .4rem; }
.extra__prose ul li { list-style: none; position: relative; padding-left: 1.35rem; }
.extra__prose ul li::before {
  content: '';
  position: absolute;
  left: 0; top: .5em;
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: var(--primary);
  opacity: .75;
}
.extra__prose ol li { list-style: decimal; margin-left: .25rem; }
.extra__prose a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.extra__prose a:hover { color: var(--primary-dark); }
.extra__prose strong { color: var(--text-dark); }
.extra__prose blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  font-style: italic;
}
.extra__prose blockquote p { margin: 0; }
.extra__prose img {
  display: block;
  max-width: 100%;
  border-radius: 12px;
  margin: 1.5rem auto;
}
