/* ==========================================================================
   Hy-Class Paint & Panel — site styles
   Hand-authored. No build step required.
   Palette: brand green #60a834 on charcoal #171717. Display: Playfair Display.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --green: #60a834;
  --green-600: #54962c;
  --green-700: #467d22;
  --green-tint: rgba(96, 168, 52, 0.10);
  --green-tint-strong: rgba(96, 168, 52, 0.18);

  --ink: #171717;
  --ink-950: #0d0d0d;
  --ink-900: #1a1a1a;
  --ink-800: #262626;
  --ink-700: #333333;

  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --white: #ffffff;

  --text: #171717;
  --text-muted: #525252;
  --text-on-dark: #e8e8e8;
  --text-on-dark-muted: #a3a3a3;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1180px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(15, 15, 15, 0.06), 0 1px 3px rgba(15, 15, 15, 0.08);
  --shadow: 0 4px 6px rgba(15, 15, 15, 0.05), 0 10px 24px rgba(15, 15, 15, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 15, 15, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video { display: block; max-width: 100%; height: auto; }
/* Inline icons default to text-relative size; component rules below override with px. */
svg { display: inline-block; width: 1.2em; height: 1.2em; flex: none; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 3px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { color: var(--text-muted); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700); /* darker green for AA contrast on light backgrounds */
  display: inline-block;
  margin-bottom: 0.85rem;
}
/* On dark backgrounds the brand green has ample contrast, so keep it vivid. */
.section--dark .eyebrow, .page-hero .eyebrow, .hero .eyebrow { color: var(--green); }
.eyebrow--bar::before {
  content: "";
  display: inline-block;
  width: 26px; height: 2px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 4px;
}

.text-green { color: var(--green); }
.lead { font-size: 1.12rem; color: var(--text-muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--gray { background: var(--gray-100); }
.section--dark { background: var(--ink); color: var(--text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: var(--text-on-dark-muted); }
.section-head { max-width: 680px; margin: 0 auto clamp(2rem, 4vw, 3.25rem); text-align: center; }
.section-head p { margin-top: 0.75rem; font-size: 1.08rem; }

.grid { display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 1rem 1.6rem; border-radius: var(--radius-sm);
  transition: transform 0.2s var(--ease), background-color 0.2s, box-shadow 0.2s, color 0.2s;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green); color: var(--ink); box-shadow: 0 8px 20px rgba(96, 168, 52, 0.28); }
.btn--primary:hover { background: var(--green-600); box-shadow: 0 12px 26px rgba(96, 168, 52, 0.36); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-800); }
.btn--outline { background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.45); color: var(--white); }
.btn--outline:hover { border-color: var(--green); color: var(--green); }
.btn--outline-dark { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn--outline-dark:hover { background: var(--ink); color: var(--white); }
.btn--ghost { padding: 0; font-weight: 600; color: var(--ink); gap: 0.4rem; }
.btn--ghost:hover { color: var(--green-700); transform: none; } /* darker green: 4.9:1 on white (WCAG AA) */
.btn--ghost svg { transition: transform 0.2s var(--ease); }
.btn--ghost:hover svg { transform: translateX(4px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Top bar ---------- */
.topbar { background: var(--ink-950); color: var(--text-on-dark-muted); font-size: 0.82rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.topbar .container { display: flex; align-items: center; gap: 1.5rem; min-height: 40px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--text-on-dark-muted); transition: color 0.2s; }
.topbar a:hover { color: var(--green); }
.topbar svg { width: 14px; height: 14px; color: var(--green); }
.topbar__spacer { margin-left: auto; }
.topbar__hours { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar__tag { color: var(--green); font-weight: 600; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(23,23,23,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.07); transition: box-shadow 0.3s, background-color 0.3s; }
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.35); }
.nav { display: flex; align-items: center; gap: 1.5rem; min-height: 70px; }
.nav__logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.nav__logo img { width: 46px; height: auto; }
.nav__logo-text { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.05rem; line-height: 1.05; }
.nav__logo-text small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.22em; color: var(--green); text-transform: uppercase; }
.nav__menu { display: none; gap: 0.4rem; margin-inline: auto; }
.nav__menu a { position: relative; padding: 0.5rem 0.9rem; font-weight: 500; font-size: 0.93rem; letter-spacing: 0.03em; color: var(--text-on-dark); text-transform: uppercase; transition: color 0.2s; }
.nav__menu a::after { content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.1rem; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.nav__menu a:hover { color: var(--white); }
.nav__menu a:hover::after, .nav__menu a[aria-current="page"]::after { transform: scaleX(1); }
.nav__menu a[aria-current="page"] { color: var(--white); }
.nav__actions { display: none; align-items: center; gap: 1rem; }
.nav__phone { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--white); font-weight: 600; }
.nav__phone svg { width: 16px; height: 16px; color: var(--green); }
.nav__cta { padding: 0.7rem 1.2rem; font-size: 0.92rem; }
.nav__toggle { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; width: 44px; height: 44px; color: var(--white); border-radius: var(--radius-sm); }
.nav__toggle svg { width: 26px; height: 26px; }

@media (min-width: 1000px) {
  .nav__menu { display: flex; }
  .nav__actions { display: flex; }
  .nav__toggle { display: none; }
}

/* ---------- Mobile drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 90; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); opacity: 0; transition: opacity 0.3s; }
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(340px, 86vw); background: var(--ink); padding: 1.5rem; transform: translateX(100%); transition: transform 0.35s var(--ease); display: flex; flex-direction: column; overflow-y: auto; }
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.drawer__head .nav__logo-text { color: var(--white); }
.drawer__close { width: 44px; height: 44px; color: var(--white); display: inline-flex; align-items: center; justify-content: center; }
.drawer__close svg { width: 26px; height: 26px; }
.drawer__label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); margin: 0.5rem 0 0.75rem; font-weight: 700; }
.drawer__menu a { display: block; padding: 0.85rem 0; font-size: 1.1rem; font-weight: 500; color: var(--text-on-dark); border-bottom: 1px solid rgba(255,255,255,0.08); }
.drawer__menu a[aria-current="page"] { color: var(--green); }
.drawer__actions { margin-top: auto; padding-top: 1.5rem; display: grid; gap: 0.75rem; }

/* ---------- Hero (interior pages) ---------- */
.page-hero { position: relative; background: var(--ink); color: var(--white); overflow: hidden; padding-block: clamp(3.5rem, 8vw, 6rem); }
.page-hero::before { content: ""; position: absolute; inset: 0; background:
    radial-gradient(120% 90% at 80% 0%, rgba(96,168,52,0.22), transparent 55%),
    radial-gradient(80% 80% at 0% 100%, rgba(96,168,52,0.10), transparent 60%); }
.page-hero__pattern { position: absolute; inset: 0; opacity: 0.5; background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 22px 22px; }
.page-hero .container { position: relative; display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .page-hero .container { grid-template-columns: 1.5fr 1fr; } }
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--text-on-dark-muted); max-width: 46ch; margin-top: 1rem; font-size: 1.1rem; }
.page-hero__logo { justify-self: center; }
.page-hero__logo img { width: clamp(160px, 26vw, 250px); filter: drop-shadow(0 14px 30px rgba(0,0,0,0.5)); }
@media (max-width: 899px) { .page-hero__logo { display: none; } }

/* ---------- Home hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--white); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
    radial-gradient(100% 80% at 75% 10%, rgba(96,168,52,0.18), transparent 55%); z-index: 0; }
.hero__img { position: absolute; inset: 0; z-index: 0; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.hero__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 38%, rgba(23,23,23,0.55) 70%, rgba(23,23,23,0.35)); }
.hero .container { position: relative; z-index: 2; padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--green-tint-strong); border: 1px solid rgba(96,168,52,0.4); color: var(--green); font-weight: 600; font-size: 0.82rem; padding: 0.45rem 1rem; border-radius: 999px; margin-bottom: 1.4rem; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--green); display: block; }
.hero__lead { color: var(--text-on-dark); font-size: 1.15rem; max-width: 44ch; margin: 1.3rem 0 1.9rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.4rem; }
.hero__trust-item { display: flex; align-items: center; gap: 0.7rem; }
.hero__trust-item svg { width: 34px; height: 34px; padding: 7px; border-radius: var(--radius-sm); background: var(--green-tint-strong); color: var(--green); flex: none; }
.hero__trust-item b { color: var(--white); display: block; font-size: 0.95rem; }
.hero__trust-item span { color: var(--text-on-dark-muted); font-size: 0.8rem; }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 1.4rem 1rem; box-shadow: var(--shadow-lg); margin-top: 2.6rem; max-width: 420px; }
.hero__stats .stat b { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); }
.hero__stats .stat.is-green b { color: var(--green-700); }
.hero__stats .stat span { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); }
.hero__stats .stat { text-align: center; }
.hero__stats .stat + .stat { border-left: 1px solid var(--gray-200); }
@media (max-width: 420px) { .hero__stats { padding: 1.1rem 0.5rem; gap: 0.5rem; } .hero__stats .stat b { font-size: 1.4rem; } }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--gray-100); border-bottom: 1px solid var(--gray-200); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; padding-block: 1.1rem; }
.trustbar__item { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.86rem; font-weight: 500; color: var(--ink); }
.trustbar__item svg { width: 16px; height: 16px; color: var(--green-700); } /* AA contrast on the light trust bar */
.trustbar__stars { color: var(--green-700); letter-spacing: 1px; }
.trustbar__insurers { margin-left: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.trustbar__insurers span:first-child { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); margin-right: 0.25rem; }
.insurer-chip { font-size: 0.72rem; font-weight: 700; color: var(--gray-600); background: var(--white); border: 1px solid var(--gray-200); padding: 0.3rem 0.6rem; border-radius: 4px; }

/* ---------- Feature cards (why choose us) ---------- */
.feature-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.6rem; transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.feature-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.1rem; }
.feature-card__icon { width: 50px; height: 50px; border-radius: var(--radius-sm); background: var(--ink); color: var(--green); display: inline-flex; align-items: center; justify-content: center; }
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card__tag { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-700); }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.96rem; }

/* ---------- Service cards (with image) ---------- */
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__icon { position: absolute; left: 1rem; bottom: 1rem; width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--green); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow); }
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { margin-bottom: 0.5rem; }
.service-card__body p { font-size: 0.96rem; margin-bottom: 1rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.tag-list li { font-size: 0.76rem; font-weight: 600; color: var(--green-700); background: var(--green-tint); padding: 0.3rem 0.65rem; border-radius: 999px; }
.service-card__body .btn--ghost { margin-top: auto; }

/* ---------- Checklists ---------- */
.checklist { display: grid; gap: 0.7rem; margin: 1.25rem 0 1.75rem; }
.checklist li { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; color: var(--ink); }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--green); }
.section--dark .checklist li { color: var(--text-on-dark); }

/* ---------- Split / alternating media rows ---------- */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 850px) { .split { grid-template-columns: repeat(2, 1fr); gap: 3.5rem; } .split--reverse .split__media { order: 2; } }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; object-fit: cover; }
.split__icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--green); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.split__icon svg { width: 26px; height: 26px; }

/* ---------- Stats strip ---------- */
.stats-inline { display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 2rem 0; }
.stats-inline .stat { background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.1rem 1.4rem; min-width: 120px; }
.stats-inline .stat b { font-family: var(--font-display); font-size: 1.8rem; color: var(--ink); display: block; }
.stats-inline .stat.is-green b { color: var(--green-700); }
.stats-inline .stat span { font-size: 0.82rem; color: var(--gray-500); }

/* ---------- Testimonials ---------- */
.testimonials { text-align: center; }
.testimonials__stars { color: var(--green); font-size: 1.3rem; letter-spacing: 3px; }
.testimonial { max-width: 760px; margin: 1.5rem auto 0; position: relative; min-height: 180px; }
.testimonial__slide { display: none; }
.testimonial__slide.is-active { display: block; animation: fade 0.5s var(--ease); }
.testimonial__quote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-style: italic; color: var(--white); line-height: 1.5; }
.testimonial__author { margin-top: 1.25rem; font-weight: 700; color: var(--green); }
.testimonial__loc { color: var(--text-on-dark-muted); font-size: 0.9rem; }
.testimonial__controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.75rem; }
.testimonial__btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); color: var(--white); display: inline-flex; align-items: center; justify-content: center; transition: background-color 0.2s, border-color 0.2s; }
.testimonial__btn:hover { background: var(--green); border-color: var(--green); color: var(--ink); }
.testimonial__btn svg { width: 20px; height: 20px; }
.testimonial__dots { display: flex; gap: 0.5rem; }
.testimonial__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); transition: background-color 0.2s, width 0.2s; }
.testimonial__dot.is-active { background: var(--green); width: 22px; border-radius: 999px; }

/* ---------- Team cards ---------- */
.team-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 180px; display: flex; align-items: flex-end; box-shadow: var(--shadow); }
.team-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Scrim strong enough to keep the white heading legible over a light photo
   (e.g. a spray painter in a white suit), not just over dark workshop tones. */
.team-card__body { position: relative; z-index: 1; padding: 1.75rem 1.25rem 1.25rem; width: 100%;
  background: linear-gradient(rgba(13,13,13,0) 0%, rgba(13,13,13,0.72) 28%, rgba(13,13,13,0.94) 62%, rgba(13,13,13,0.97) 100%); }
.team-card__body h3 { color: var(--white); margin-bottom: 0.15rem; }
.team-card__body span { color: var(--green); font-weight: 600; font-size: 0.85rem; }
.team-card__body p { color: var(--gray-300); font-size: 0.9rem; margin-top: 0.35rem; }

/* ---------- Timeline ---------- */
.timeline { position: relative; display: grid; gap: 2rem; }
@media (min-width: 800px) { .timeline { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
@media (min-width: 800px) { .timeline--3 { grid-template-columns: repeat(3, 1fr); } }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 13px; height: 2px; background: var(--gray-200); display: none; }
@media (min-width: 800px) { .timeline::before { display: block; } }
.timeline__item { position: relative; padding-top: 2.5rem; }
.timeline__item::before { content: ""; position: absolute; top: 6px; left: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-tint); }
@media (min-width: 800px) { .timeline__item { text-align: center; padding-top: 3rem; } .timeline__item::before { left: 50%; transform: translateX(-50%); } }
.timeline__year { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--green-700); } /* AA contrast on light background */
.timeline__item h3 { font-size: 1.05rem; margin: 0.25rem 0 0.4rem; }
.timeline__item p { font-size: 0.92rem; }

/* ---------- Feature rows (about community) ---------- */
.feature-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.1rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); }
.feature-row__icon { width: 42px; height: 42px; flex: none; border-radius: var(--radius-sm); background: var(--ink); color: var(--green); display: inline-flex; align-items: center; justify-content: center; }
.feature-row__icon svg { width: 20px; height: 20px; }
.feature-row b { display: block; color: var(--ink); }
.feature-row span { font-size: 0.92rem; color: var(--text-muted); }

/* ---------- Image collage ---------- */
.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.collage img { border-radius: var(--radius); object-fit: cover; width: 100%; height: 100%; box-shadow: var(--shadow); }
.collage img:first-child { grid-row: span 2; }
@media (max-width: 560px) { .collage { grid-template-columns: 1fr; } .collage img:first-child { grid-row: auto; } }

/* ---------- Stat overlay card (about legacy) ---------- */
.media-stat { position: relative; }
.media-stat img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 5 / 4; object-fit: cover; }
.media-stat__card { position: absolute; right: -12px; bottom: -22px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 1rem 1.3rem; display: flex; gap: 1.5rem; }
.media-stat__card .stat { text-align: center; }
.media-stat__card .stat b { font-family: var(--font-display); font-size: 1.7rem; color: var(--ink); display: block; }
.media-stat__card .stat.is-green b { color: var(--green-700); }
.media-stat__card .stat span { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.info-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; border: 1px solid var(--gray-200); border-radius: var(--radius); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; }
.info-card + .info-card { margin-top: 1rem; }
.info-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.info-card__icon { width: 48px; height: 48px; flex: none; border-radius: var(--radius-sm); background: var(--ink); color: var(--green); display: inline-flex; align-items: center; justify-content: center; }
.info-card__icon svg { width: 22px; height: 22px; }
.info-card b { display: block; color: var(--ink); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.info-card a, .info-card span { color: var(--text-muted); }
.info-card .big { font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.contact-note { margin-top: 1rem; background: var(--green); color: var(--ink); border-radius: var(--radius); padding: 1.1rem 1.3rem; text-align: center; }
.contact-note b { display: block; font-size: 1.05rem; }
.contact-panel { background: var(--white); border: 1px solid var(--gray-200); border-top: 4px solid var(--green); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow); }
.contact-sub { border-radius: var(--radius); padding: 1.5rem; text-align: center; margin-top: 1.25rem; }
.contact-sub--dark { background: var(--ink); color: var(--white); }
.contact-sub--gray { background: var(--gray-100); }
.contact-sub--gray .head-icon { color: var(--green-700); } /* AA contrast on the light panel */
.contact-sub .head-icon { display: block; color: var(--green); margin: 0 auto 0.5rem; }
.contact-sub .head-icon svg { display: block; width: 30px; height: 30px; margin: 0 auto; }
.info-card a svg { width: 15px; height: 15px; }
.contact-sub h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.3rem; }
.contact-sub--dark h3 { color: var(--white); }
.contact-sub p { font-size: 0.92rem; margin-bottom: 1rem; }
.map-embed { border: 0; width: 100%; aspect-ratio: 16 / 7; border-radius: var(--radius-lg); box-shadow: var(--shadow); margin-top: 1.5rem; filter: grayscale(0.2); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--green-600), var(--green)); color: var(--ink); text-align: center; }
.cta-band h2 { color: var(--ink); }
.cta-band p { color: rgba(23,23,23,0.78); max-width: 50ch; margin: 0.75rem auto 1.75rem; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }
.cta-band__meta { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; color: rgba(23,23,23,0.85); font-size: 0.92rem; flex-wrap: wrap; justify-content: center; }
.cta-band__meta svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-950); color: var(--text-on-dark-muted); padding-block: 3.5rem 1.5rem; }
.site-footer .container { display: grid; gap: 2.5rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; } }
.footer-grid { display: grid; gap: 2.5rem; }
.footer__brand img { width: 44px; }
.footer__brand .nav__logo-text { color: var(--white); }
.footer__brand p { margin: 1rem 0; font-size: 0.92rem; max-width: 32ch; }
.footer__badges { display: flex; gap: 0.75rem; }
.footer__badge { background: var(--ink-800); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 0.5rem 0.8rem; font-size: 0.8rem; }
.footer__badge b { color: var(--white); }
.footer__badge .text-green { color: var(--green); }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer h4::before { content: ""; display: inline-block; width: 18px; height: 2px; background: var(--green); vertical-align: middle; margin-right: 8px; }
.site-footer nav ul { display: grid; gap: 0.6rem; }
.site-footer a { color: var(--text-on-dark-muted); font-size: 0.92rem; transition: color 0.2s; }
.site-footer a:hover { color: var(--green); }
.footer__contact { display: grid; gap: 0.6rem; }
.footer__contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; }
.footer__contact svg { width: 16px; height: 16px; color: var(--green); flex: none; margin-top: 3px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: 0.85rem; }
.footer__bottom-links { display: flex; gap: 1.5rem; }

/* ---------- Sticky mobile call bar ---------- */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.1); box-shadow: 0 -4px 20px rgba(0,0,0,0.25); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.9rem; font-weight: 600; font-size: 0.95rem; }
.callbar a svg { width: 18px; height: 18px; }
.callbar__call { background: var(--ink); color: var(--white); }
.callbar__quote { background: var(--green); color: var(--ink); }
@media (min-width: 1000px) { .callbar { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 999px) { body { padding-bottom: 56px; } }

/* ---------- 404 ---------- */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; background: var(--ink); color: var(--white); padding-block: 5rem; }
.notfound__code { font-family: var(--font-display); font-size: clamp(5rem, 18vw, 11rem); color: var(--green); line-height: 1; }
.notfound h1 { color: var(--white); }
.notfound p { color: var(--text-on-dark-muted); margin: 1rem auto 2rem; max-width: 40ch; }

/* ---------- Legal pages ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin: 2.25rem 0 0.75rem; }
.prose p, .prose li { color: var(--text-muted); margin-bottom: 0.85rem; }
.prose ul { list-style: disc; padding-left: 1.25rem; display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.prose a { color: var(--green-700); text-decoration: underline; }
.prose .updated { font-size: 0.9rem; color: var(--gray-500); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--green); color: var(--ink); padding: 0.75rem 1.25rem; font-weight: 600; border-radius: 0 0 var(--radius-sm) 0; }
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ==========================================================================
   Revision 2 — craft & trust details (July 2026)
   ========================================================================== */

/* Brand-coloured text selection — small detail, big cohesion. */
::selection { background: var(--green); color: var(--ink); }

/* Tabular figures so stat numbers align cleanly. */
.stat b, .timeline__year { font-feature-settings: "tnum"; }

/* Signature asymmetric radius on the two floating "stat" artifacts. */
.hero__stats { border-radius: var(--radius) var(--radius) var(--radius) 4px; }
.contact-note { border-radius: var(--radius) var(--radius) var(--radius) 4px; }

/* ---------- Live open/closed status pill (topbar, JS-injected) ---------- */
.open-status { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; font-size: 0.78rem; color: var(--text-on-dark-muted); border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; padding: 0.22rem 0.7rem; white-space: nowrap; }
.open-status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-400); flex: none; }
.open-status.is-open { color: var(--green); border-color: rgba(96,168,52,0.45); }
.open-status.is-open .open-status__dot { background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(96,168,52,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(96,168,52,0); }
  100% { box-shadow: 0 0 0 0 rgba(96,168,52,0); }
}
@media (prefers-reduced-motion: reduce) { .open-status.is-open .open-status__dot { animation: none; } }
@media (max-width: 640px) { .open-status { display: none; } }

/* ---------- FAQ — numbered ledger rows (native <details>, works without JS) ---------- */
.faq { max-width: 820px; margin-inline: auto; counter-reset: faq; border-top: 1px solid var(--gray-200); }
.faq details { border-bottom: 1px solid var(--gray-200); }
.faq summary {
  position: relative; display: flex; align-items: baseline; gap: 1rem;
  padding: 1.15rem 3rem 1.15rem 0.25rem; cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1.06rem; color: var(--ink);
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  counter-increment: faq; content: counter(faq, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  color: var(--green-700); flex: none; min-width: 2ch;
}
.faq summary::after {
  content: ""; position: absolute; right: 0.35rem; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg); }
.faq summary:hover { color: var(--green-700); }
.faq details[open] summary { color: var(--green-700); }
.faq .faq__answer { padding: 0 2rem 1.3rem calc(2ch + 1.25rem); }
.faq .faq__answer p { font-size: 0.98rem; }
.faq .faq__answer p + p { margin-top: 0.6rem; }

/* ---------- Service-area line ---------- */
.service-areas { margin-top: 1.75rem; text-align: center; font-size: 0.9rem; color: var(--text-muted); }
.service-areas b { color: var(--ink); font-weight: 600; }
.section--dark .service-areas { color: var(--text-on-dark-muted); }
.section--dark .service-areas b { color: var(--white); }

/* ---------- Trust bar: linked citation ---------- */
.trustbar a.trustbar__item { transition: color 0.2s; }
.trustbar a.trustbar__item:hover { color: var(--green-700); }
.trustbar a.trustbar__item svg { transition: transform 0.2s var(--ease); }
.trustbar a.trustbar__item:hover svg.link-arrow { transform: translate(1px, -1px); }

/* ---------- Testimonials: quote mark + source label ---------- */
.testimonial__quote::before { content: "“"; display: block; font-family: var(--font-display); font-size: 3rem; line-height: 0.5; color: var(--green); margin-bottom: 1.1rem; }
.testimonial__loc { display: inline-flex; align-items: center; gap: 0.35rem; }
.testimonial__loc svg { width: 13px; height: 13px; color: var(--green); }

/* ---------- Hero ambient video (progressive enhancement) ---------- */
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s var(--ease); pointer-events: none; }
.hero__video.is-playing { opacity: 0.32; } /* matches the still image treatment */
