/* ============================================================
   CALDWELL THEME — theme.css
   Pacific Northwest Minimalist Modern Professional
   Corporate & Business Law
   Light background theme: stone-50 / slate / moss green accent
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Stone family */
  --clr-stone-50:   #0A0A0A;
  --clr-stone-100:  #15151A;
  --clr-surface-card:   #1A1A22;
  --clr-surface-header: #0A0A0A;
  --clr-stone-200:  #1A1A22;
  --clr-stone-400:  #5C5C5A;
  --clr-stone-600:  #A8A8A8;
  --clr-stone-800:  #E8DCC4;

  /* Slate family */
  --clr-slate-50:   #0E0E10;
  --clr-slate-100:  #F0F0EC;
  --clr-slate-200:  #E6E6E2;
  --clr-slate-300:  #A8A8A8;
  --clr-slate-400:  #888888;
  --clr-slate-600:  #C9C9C9;
  --clr-slate-700:  #E0E0DE;
  --clr-slate-800:  #F4F2ED;
  --clr-slate-900:  #0A0A0A;
  --clr-slate-950:  #070707;

  /* Moss green family */
  --clr-moss-100:   #3D3424;
  --clr-moss-200:   #7A6440;
  --clr-moss-400:   #9C8048;
  --clr-moss-500:   #B8924A;
  --clr-moss-600:   #C9A55C;
  --clr-moss-700:   #D9B770;

  /* Cedar family */
  --clr-cedar-200:  #E8DCC4;
  --clr-cedar-400:  #B8924A;
  --clr-cedar-600:  #8C6E37;

  /* Base */
  --clr-white: #FFFFFF;
  --clr-black: #0A0A0A;

  /* Derived semantic tokens */
  --clr-moss-subtle: rgba(201, 165, 92, 0.10);
  --clr-moss-border: rgba(201, 165, 92, 0.30);
  --clr-hero-gradient: linear-gradient(to bottom, rgba(10,10,10,0.70) 0%, rgba(10,10,10,0.50) 50%, rgba(10,10,10,0.85) 100%);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing Scale */
  --sp-1:  0.25rem;  --sp-2:  0.5rem;   --sp-3:  0.75rem;
  --sp-4:  1rem;     --sp-5:  1.25rem;  --sp-6:  1.5rem;
  --sp-7:  1.75rem;  --sp-8:  2rem;     --sp-10: 2.5rem;
  --sp-12: 3rem;     --sp-14: 3.5rem;   --sp-16: 4rem;
  --sp-20: 5rem;     --sp-24: 6rem;     --sp-32: 8rem;

  /* Layout */
  --max-width:  1280px;
  --nav-height: 72px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows — light base (slate-tinted) */
  --shadow-sm: 0 1px 3px rgba(44,53,71,0.06), 0 1px 2px rgba(44,53,71,0.04);
  --shadow-md: 0 4px 16px rgba(44,53,71,0.08), 0 2px 6px rgba(44,53,71,0.05);
  --shadow-lg: 0 12px 40px rgba(44,53,71,0.12), 0 4px 12px rgba(44,53,71,0.06);
  --shadow-xl: 0 24px 64px rgba(44,53,71,0.16);

  --section-bg-overlay: rgba(14, 17, 23, 0.55);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--clr-slate-800);
  background-color: var(--clr-stone-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul[role="list"] { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
@media (min-width: 1080px) { .container { padding-inline: var(--sp-12); } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--clr-moss-600);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ============================================================
   SHARED SECTION ELEMENTS
   ============================================================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-moss-600);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.section-eyebrow::before { display: none; }

.section-eyebrow--light { color: var(--clr-moss-200); }
.section-eyebrow--light::before { display: none; }
.section-eyebrow--CTA { justify-content: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-slate-900);
  margin-bottom: var(--sp-6);
}
.section-title em { font-style: italic; color: var(--clr-moss-500); }
/* patch-307 — light variant for dark-bg sections */
.section-title--light { color: var(--clr-slate-100); }
.section-title--light em { color: var(--clr-moss-200); }

.section-desc {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--clr-slate-600);
  max-width: 52ch;
}

.section-header { margin-bottom: var(--sp-12); }
.section-header--centered { text-align: center; }
.section-header--centered .section-eyebrow { justify-content: center; }
.section-header--centered .section-eyebrow::before { display: none; }
.section-header--centered .section-desc { margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease-out-expo);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--lg   { padding: var(--sp-5) var(--sp-10); font-size: 0.8rem; }
.btn--sm   { padding: var(--sp-3) var(--sp-6);  font-size: 0.75rem; }
.btn--full { width: 100%; }

.btn--primary {
  background-color: var(--clr-moss-600);
  color: var(--clr-white);
  border-color: var(--clr-moss-600);
}
.btn--primary:hover {
  background-color: var(--clr-moss-500);
  border-color: var(--clr-moss-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--clr-slate-800);
  border-color: var(--clr-stone-200);
}
.btn--outline:hover {
  border-color: var(--clr-slate-800);
  background-color: var(--clr-stone-100);
}

.btn--ghost {
  background-color: transparent;
  color: var(--clr-slate-300);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost-light {
  background-color: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost-light:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost-dark {
  background-color: transparent;
  color: var(--clr-slate-800);
  border-color: var(--clr-moss-border);
}
.btn--ghost-dark:hover {
  background-color: var(--clr-moss-subtle);
  border-color: var(--clr-moss-600);
  color: var(--clr-moss-600);
}

.btn--ivory {
  background-color: var(--clr-stone-800);
  color: var(--clr-slate-50);
  border-color: var(--clr-stone-800);
}
.btn--ivory:hover {
  background-color: var(--clr-stone-600);
  border-color: var(--clr-stone-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary-light {
  background-color: var(--clr-moss-600);
  color: var(--clr-white);
  border-color: var(--clr-moss-600);
}
.btn--primary-light:hover {
  background-color: var(--clr-moss-500);
  border-color: var(--clr-moss-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary-dark {
  background-color: var(--clr-stone-800);
  color: var(--clr-slate-50);
  border-color: var(--clr-stone-800);
}
.btn--primary-dark:hover {
  background-color: var(--clr-stone-600);
  border-color: var(--clr-stone-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline-light {
  background-color: transparent;
  color: var(--clr-slate-800);
  border-color: var(--clr-stone-200);
}
.btn--outline-light:hover {
  border-color: var(--clr-slate-800);
  background-color: var(--clr-stone-100);
}

.btn--outline-dark {
  background-color: transparent;
  color: var(--clr-moss-400);
  border-color: rgba(255,255,255,0.25);
}
.btn--outline-dark:hover {
  background-color: var(--clr-moss-600);
  border-color: var(--clr-moss-600);
  color: var(--clr-white);
}

.btn--outline-accent {
  background-color: transparent;
  color: var(--clr-moss-600);
  border-color: var(--clr-moss-border);
}
.btn--outline-accent:hover {
  background-color: var(--clr-moss-subtle);
  border-color: var(--clr-moss-600);
}

/* ============================================================
   NAVIGATION — LIGHT HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--nav-height);
  background: color-mix(in srgb, var(--clr-surface-header) 96%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-stone-200);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding-inline: var(--sp-6);
  max-width: var(--max-width);
  margin-inline: auto;
}

.nav-logo {
  display: flex; align-items: center; gap: var(--sp-3);
  color: var(--clr-slate-900); flex-shrink: 0; text-decoration: none;
}
/* Dark square logo mark with display font monogram */
.nav-logo__mark {
  color: var(--clr-white);
  background: var(--clr-slate-900);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav-logo__text  { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo__name  { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; letter-spacing: 0.01em; color: var(--clr-slate-900); }
.nav-logo__sub   { font-size: 0.62rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clr-slate-400); }

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}

.nav-item { position: static; }

.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: var(--sp-2) var(--sp-4);
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--clr-slate-600);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-link:hover { color: var(--clr-slate-800); background: var(--clr-moss-subtle); }
.nav-link--trigger { }
.nav-chevron { transition: transform 0.25s var(--ease-out-expo); flex-shrink: 0; color: var(--clr-slate-400); }
.nav-link--trigger[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.nav-actions {
  display: none;
  align-items: center;
  gap: var(--sp-4);
  margin-left: var(--sp-4);
  flex-shrink: 0;
}
.nav-phone {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.04em;
  color: var(--clr-slate-600); text-decoration: none;
  transition: color 0.2s ease;
}
.nav-phone:hover { color: var(--clr-slate-900); }

/* Hamburger — ink bars (light header) */
.nav-hamburger {
  margin-left: auto; display: flex; flex-direction: column;
  justify-content: center; gap: 5px; padding: var(--sp-2);
}
.hamburger-bar {
  display: block; width: 22px; height: 1.5px;
  background: var(--clr-stone-800); border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo); transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 1080px) {
  .nav-links     { display: flex; }
  .nav-logo      { flex: 1; }
  .nav-actions   { display: flex; flex: 1; justify-content: flex-end; }
  .nav-hamburger { display: none; }
  .mobile-menu   { display: none !important; }
  .nav-wrapper   { padding-inline: var(--sp-12); }
}

/* ── Mega Menu — slate dark panel ── */
.mega-menu {
  position: fixed;
  top: var(--nav-height);
  left: max(var(--sp-12), calc(50% - var(--max-width) / 2 + var(--sp-12)));
  right: max(var(--sp-12), calc(50% - var(--max-width) / 2 + var(--sp-12)));
  background: var(--clr-slate-900);
  border: 1px solid rgba(255,255,255,0.15);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 24px 64px rgba(14,17,23,0.4), 0 4px 16px rgba(14,17,23,0.2);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.25s var(--ease-out-expo), visibility 0s linear 0.2s;
  z-index: 800;
}
.mega-menu::before {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.mega-menu.is-open {
  opacity: 1; pointer-events: all; visibility: visible; transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.25s var(--ease-out-expo), visibility 0s linear 0s;
}
.mega-menu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 260px;
  gap: 0;
  padding: var(--sp-8);
}
.mega-menu__inner--2col { grid-template-columns: 1fr 260px; }
.mega-menu__col {
  padding: var(--sp-4) var(--sp-6);
  border-right: 1px solid rgba(255,255,255,0.10);
}
.mega-menu__col:first-child { padding-left: 0; }
.mega-menu__col:last-child  { border-right: none; }
.mega-menu__heading {
  font-family: var(--font-body);
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--clr-moss-400);
  margin-bottom: var(--sp-4); padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mega-menu__col ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.mega-menu__link {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3); border-radius: var(--radius-sm);
  transition: background 0.15s ease; text-decoration: none;
}
.mega-menu__link:hover { background: rgba(255,255,255,0.05); }
.mega-menu__link strong {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--clr-slate-800); letter-spacing: 0.01em;
}
.mega-menu__link em {
  display: block; font-style: normal; font-size: 0.72rem;
  color: var(--clr-slate-400); margin-top: 1px;
}
.mega-menu__cta-card {
  background: linear-gradient(135deg, var(--clr-moss-subtle), rgba(61,84,56,0.04));
  border: 1px solid var(--clr-moss-border);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  height: 100%;
  display: flex; flex-direction: column; gap: var(--sp-4);
  align-items: stretch;
}
.mega-menu__cta-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clr-moss-400); font-weight: 500;
}
.mega-menu__cta-title {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 400; color: var(--clr-slate-800); line-height: 1.2;
}
.mega-menu__cta-desc {
  font-size: 0.78rem; color: var(--clr-slate-400); line-height: 1.6; flex: 1;
}

/* Contact Mega Buttons */
.mega-contact-btns {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: 100%;
}
.mega-contact-btn {
  width: 100%;
  box-sizing: border-box;
  flex: none;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.22s ease;
  min-height: 52px;
}
.mega-menu__cta-card .mega-contact-btn { flex: none; width: 100%; }
.mega-contact-btn:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.14); transform: translateY(-2px); }
.mega-contact-btn--accent { background: var(--clr-moss-subtle); border-color: var(--clr-moss-border); }
.mega-contact-btn--accent:hover { background: rgba(61,84,56,0.18); border-color: rgba(61,84,56,0.4); }
.mega-contact-btn__icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.05); color: var(--clr-moss-400); flex-shrink: 0;
  transition: background 0.2s ease;
}
.mega-contact-btn--accent .mega-contact-btn__icon { background: var(--clr-moss-subtle); }
.mega-contact-btn:hover .mega-contact-btn__icon { background: rgba(255,255,255,0.1); }
.mega-contact-btn__text { display: flex; flex-direction: column; gap: 3px; }
.mega-contact-btn__text strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--clr-slate-200); letter-spacing: 0.04em; }
.mega-contact-btn__text em    { display: block; font-style: normal; font-size: 0.72rem; color: var(--clr-slate-400); }

/* CTA column hidden below 1079px */
@media (max-width: 1079px) {
  .mega-menu__col--cta { display: none; }
}

/* Locations mega inner */
.mega-menu--locations { }
.mega-menu__inner--locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2px;
  padding: 0;
  width: 100%;
}
.loc-card {
  display: block; text-decoration: none;
  padding: 28px 22px 32px;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
}
.loc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: var(--clr-moss-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s;
}
.loc-card:hover { background: var(--clr-moss-subtle); border-color: var(--clr-moss-border); }
.loc-card:hover::after { transform: scaleX(1); }
.loc-card__name {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400;
  color: var(--clr-slate-800); line-height: 1.2; margin: 0 0 4px 0;
}
.loc-card__address {
  font-style: normal; font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clr-moss-400); margin: 0 0 14px 0; line-height: 1.5;
}
.loc-card__hours {
  font-size: 14px; line-height: 1.6;
  color: var(--clr-slate-400); font-weight: 300; margin: 0 0 14px 0;
}
.loc-card__links { display: flex; flex-direction: column; gap: 4px; margin-top: 12px; }
.loc-card__link {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  color: var(--clr-moss-400); transition: color 0.15s; line-height: 1.4;
}
.loc-card__link:hover { color: var(--clr-moss-700); }

/* Nav blog block */
.mega-menu__col--blog {
  min-width: 260px; max-width: 320px;
  padding: 0 var(--sp-4);
  border-left: 1px solid var(--clr-moss-border);
  display: flex; flex-direction: column;
}
.mega-menu__col--blog .mega-menu__heading {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--clr-slate-400); margin-bottom: var(--sp-3);
}
.nav-blog-block { display: flex; flex-direction: column; gap: var(--sp-3); }
.nav-blog-card {
  display: flex; flex-direction: column; gap: var(--sp-1);
  text-decoration: none; padding: var(--sp-3); border-radius: var(--radius-sm);
  transition: background 200ms ease;
}
.nav-blog-card:hover { background: var(--clr-moss-subtle); }
.nav-blog-card__category {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--clr-moss-400);
}
.nav-blog-card__title {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--clr-slate-800); line-height: 1.35;
}
.nav-blog-card__excerpt {
  font-size: 0.75rem; color: var(--clr-slate-400); line-height: 1.5; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.nav-blog-card__link {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--clr-moss-400); margin-top: var(--sp-1);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--clr-surface-header); z-index: 999;
  display: flex; flex-direction: column; padding: var(--sp-6);
  overflow-y: auto;
  border-top: 1px solid var(--clr-stone-200);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out-expo);
}
.mobile-menu.is-open { transform: translateX(0); }
body.menu-open { overflow: hidden; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 0; flex: 1; }

/* Mobile nav links */
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 0;
  font-size: 1.25rem; font-weight: 400; color: var(--clr-slate-800);
  background: none; border: none; border-bottom: 1px solid var(--clr-stone-200);
  text-align: left; cursor: pointer; text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover { color: var(--clr-moss-600); }
.mobile-chevron { flex-shrink: 0; color: var(--clr-slate-400); transition: transform 0.25s ease; }
.mobile-accordion-trigger[aria-expanded="true"] .mobile-chevron { transform: rotate(180deg); }
.mobile-accordion-panel { padding: var(--sp-2) 0 var(--sp-2) var(--sp-4); }
.mobile-nav-sublink {
  display: block; padding: 10px 0;
  font-size: 0.88rem; color: var(--clr-slate-600);
  text-decoration: none; border-bottom: 1px solid var(--clr-stone-100);
  transition: color 0.2s ease;
}
.mobile-nav-sublink:hover { color: var(--clr-slate-900); }
.mobile-accordion-group-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--clr-moss-400); padding: var(--sp-3) 0 var(--sp-1); margin: 0;
}
.mobile-contact-btns { display: flex; flex-direction: column; gap: var(--sp-3); padding-top: var(--sp-6); }

/* ============================================================
   FULLPAGE NAV
   ============================================================ */
html:not(.fullpage-nav-active) .fullpage-nav__topbar,
html:not(.fullpage-nav-active) .fullpage-nav__overlay { display: none !important; }

.fullpage-nav__topbar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height); padding: 0 var(--sp-8);
  background-color: var(--clr-slate-900);
}
.fullpage-nav__overlay {
  position: fixed; inset: 0; z-index: 999;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.5s var(--ease-out-expo);
  overflow-y: auto;
  display: flex; flex-direction: column;
  background-color: var(--clr-slate-900);
}
.fullpage-nav__overlay--open { clip-path: inset(0 0 0% 0); }
.fullpage-nav__link {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.02em;
  background: none; border: none; cursor: pointer; padding: var(--sp-2) 0;
  text-align: left; text-decoration: none; display: block; width: 100%;
  color: var(--clr-slate-100);
  opacity: 0; transform: translateX(-24px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}
.fullpage-nav__link:hover { color: var(--clr-moss-400); }
.fullpage-nav__overlay--open .fullpage-nav__link { opacity: 1; transform: translateX(0); }

/* ============================================================
   CORE LAYOUT
   ============================================================ */
/* .container defined above */
/* section-eyebrow, section-title, section-desc defined above */

/* ============================================================
   HERO — HOMEPAGE (centered layout, dark bg)
   ============================================================ */
@keyframes heroFadeUp { from { transform: translateY(28px); } to { transform: translateY(0); } }
@keyframes heroFadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  background: var(--clr-slate-900);
}
.hero--has-photo { position: relative; }
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--clr-slate-950) 0%,
    var(--clr-slate-900) 40%,
    var(--clr-moss-700) 100%
  );
  pointer-events: none;
}
.hero--has-photo .hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center top;
  z-index: 0;
  opacity: 0.25;
}

/* patch-357 — mobile-only hero focal point: consume --hero-bg-pos-mobile (hero_home photo layer only) */
@media (max-width: 767px) {
  .hero--has-photo .hero__bg::before {
    background-position: var(--hero-bg-pos-mobile, center top);
  }
}
/* No grain in Caldwell */
.hero__grain { opacity: 0; pointer-events: none; }

.hero__center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  padding: var(--sp-20) var(--sp-6) var(--sp-16);
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
}
@media (min-width: 1080px) {
  .hero__center {
    padding: var(--sp-20) var(--sp-12) var(--sp-20);
  }
}

.hero__badge {
  display: flex; align-items: center; gap: var(--sp-4);
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--clr-moss-400); margin-bottom: var(--sp-6);
}
.hero__animate { opacity: 1; animation: heroFadeUp 0.9s var(--ease-out-expo) both; }
.hero__animate--1 { animation-delay: 0.15s; }
.hero__animate--2 { animation-delay: 0.32s; }
.hero__animate--3 { animation-delay: 0.48s; }
.hero__animate--4 { animation-delay: 0.62s; }
.hero__animate--5 { animation-name: heroFadeIn; animation-duration: 0.8s; animation-delay: 0.85s; }

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300; line-height: 1.08;
  color: var(--clr-white); letter-spacing: -0.01em;
  margin-bottom: var(--sp-8); max-width: 760px;
}
.hero__heading-top { display: block; }
.hero__heading-accent { display: block; font-style: italic; color: var(--clr-slate-300); }
.hero__subtext {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 300; line-height: 1.8;
  color: var(--clr-slate-300); max-width: 500px; margin-bottom: var(--sp-10);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-bottom: var(--sp-16); }

.hero__stats-bar {
  position: relative; width: 100%; margin-top: var(--sp-12);
  padding-bottom: var(--sp-8);
}
.hero__stats {
  display: flex; flex-wrap: nowrap; gap: var(--sp-8);
  align-items: center;
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__stat { display: flex; flex-direction: column; gap: var(--sp-1); }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 400;
  color: var(--clr-white); line-height: 1;
}
.hero__stat-label {
  font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--clr-slate-400);
}
.hero__stat-divider { width: 1px; height: 40px; background: var(--clr-slate-700); }

/* Ticker — hidden in Caldwell */
.hero__ticker { display: none; }

/* Video mode */
.hero--has-video .hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero__video-overlay {
  position: absolute; inset: 0;
  background: var(--clr-hero-gradient);
  z-index: 1;
}
.hero--has-video .hero__center { position: relative; z-index: 3; }
.hero--has-video .hero__stats-bar { position: relative; z-index: 3; }

/* ============================================================
   HERO SPLIT (TWO COLUMN)
   ============================================================ */
@keyframes heroSplitFadeUp {
  from { transform: translateY(20px); }
  to   { transform: translateY(0); }
}
@keyframes heroSplitFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroSplitScaleIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-split {
  position: relative;
  min-height: 100svh;
  padding-top: var(--nav-height);
  background: var(--clr-stone-50);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-split--has-photo { position: relative; }
.hero-split__bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 60% 50% at 75% 55%, color-mix(in srgb, var(--clr-moss-500) 8%, transparent) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 85%, color-mix(in srgb, var(--clr-cedar-400) 6%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.hero-split .container { position: relative; z-index: 1; padding-block: var(--sp-20); }
.hero-split__inner {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-12); align-items: center;
}
@media (min-width: 900px) { .hero-split__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-16); } }

.hero-split__content { }
.hero-split__badge {
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clr-slate-400); margin-bottom: var(--sp-6);
}
.hero-split__animate { opacity: 1; animation: heroSplitFadeUp 0.9s var(--ease-out-expo) both; }
.hero-split__animate--1 { animation-delay: 0.10s; }
.hero-split__animate--2 { animation-delay: 0.25s; }
.hero-split__animate--3 { animation-delay: 0.40s; }
.hero-split__animate--4 { animation-delay: 0.55s; }
.hero-split__animate--5 { animation: heroSplitFadeIn 0.8s ease both; animation-delay: 0.70s; }
.hero-split__animate--media { animation: heroSplitScaleIn 1s var(--ease-out-expo) both; animation-delay: 0.20s; }

.hero-split__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--clr-slate-800); margin-bottom: var(--sp-6);
}
.hero-split__heading-top { display: block; }
.hero-split__heading-accent { display: block; font-style: italic; color: var(--clr-moss-500); }
.hero-split__subtext {
  font-size: clamp(0.9rem, 1.4vw, 1rem); font-weight: 400;
  line-height: 1.8; color: var(--clr-slate-700); max-width: 48ch; margin-bottom: var(--sp-10);
}
.hero-split__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-bottom: var(--sp-10); }
.hero-split__stats {
  display: flex; flex-wrap: nowrap; gap: var(--sp-6); align-items: center;
  padding-top: var(--sp-8); border-top: 1px solid var(--clr-stone-200);
}
.hero-split__stat { display: flex; flex-direction: column; gap: var(--sp-1); }
.hero-split__stat-num {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 400;
  color: var(--clr-slate-800); line-height: 1;
}
.hero-split__stat-label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-slate-400); }
.hero-split__stat-divider { width: 1px; height: 36px; background: var(--clr-stone-200); }

.hero-split__media { display: flex; justify-content: center; }
.hero-split__img-frame { position: relative; width: 100%; max-width: 400px; }
.hero-split__img-inner {
  aspect-ratio: 4/5; border-radius: var(--radius-xl);
  background: var(--clr-stone-100); overflow: hidden;
}
.hero-split--has-photo .hero-split__img-inner {
  background-image: var(--hero-split-img);
  background-size: cover; background-position: center top;
}
/* Caldwell accent circles — moss and cedar */
.hero-split__accent { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-split__accent--1 {
  width: 120px; height: 120px; bottom: -20px; right: -20px;
  background: var(--clr-moss-subtle); border: 1px solid var(--clr-moss-border);
}
.hero-split__accent--2 {
  width: 64px; height: 64px; top: 24px; left: -14px;
  background: color-mix(in srgb, var(--clr-cedar-400) 14%, transparent);
}

@media (max-width: 1023px) { .hero-split__media { display: none; } }

/* Video split */
.hero-split--has-video .hero-split__media { display: flex; align-items: stretch; }
.hero-split__video-wrap {
  position: relative; width: 100%; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
}
.hero-split__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-split__video-expand {
  position: absolute; bottom: 1rem; right: 1rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: color-mix(in srgb, var(--clr-moss-600) 85%, transparent);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; transition: background 0.2s ease-out;
}
.hero-split__video-expand::after {
  content: ''; display: block; width: 0; height: 0; border-style: solid;
  border-width: 8px 0 8px 14px; border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.hero-split__video-wrap:hover .hero-split__video-expand { background: var(--clr-moss-600); }
@media (max-width: 1023px) {
  .hero-split__video-wrap { cursor: default; }
  .hero-split__video-expand { display: none; }
}
.hero-video-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  align-items: center; justify-content: center;
}
.hero-video-modal--open { display: flex; }
.hero-video-modal__backdrop {
  position: absolute; inset: 0; background: rgba(14,17,23,0.85); cursor: pointer;
}
.hero-video-modal__inner {
  position: relative; z-index: 1; width: min(90vw, 1100px);
  aspect-ratio: 16/9; background: #000; border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.hero-video-modal__video { width: 100%; height: 100%; object-fit: contain; display: block; }
.hero-video-modal__close {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 1.25rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease-out;
}
.hero-video-modal__close:hover { background: color-mix(in srgb, var(--clr-moss-600) 85%, transparent); }

/* ============================================================
   PAGE HERO — SERVICE / INNER PAGES
   ============================================================ */
.page-hero {
  background: var(--clr-stone-100);
  padding-top: calc(var(--nav-height) + var(--sp-20));
  padding-bottom: var(--sp-20);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero--has-photo { position: relative; overflow: hidden; }
.page-hero--has-photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--page-hero-bg);
  background-size: cover; background-position: center;
  z-index: 0; opacity: 0.2;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, color-mix(in srgb, var(--clr-moss-500) 7%, transparent), transparent),
    var(--clr-stone-100);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-4);
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--clr-moss-600); margin-bottom: var(--sp-5);
}
.page-hero__eyebrow::before, .page-hero__eyebrow::after { display: none; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--clr-slate-800); line-height: 1.1; margin-bottom: var(--sp-6);
}
.page-hero__title em { font-style: italic; color: var(--clr-moss-500); }
.page-hero__desc {
  font-size: 1.25rem; font-weight: 300; color: var(--clr-slate-600);
  max-width: 56ch; margin-inline: auto; line-height: 1.8; margin-bottom: var(--sp-8);
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }
/* No mountain in Caldwell */

/* ============================================================
   SECTION STANDARD
   ============================================================ */
.section-standard { padding-block: var(--sp-24); background: var(--clr-stone-50); }
.section-standard--with-image .section-standard__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-16); align-items: center;
}
@media (max-width: 767px) {
  .section-standard--with-image .section-standard__grid { grid-template-columns: 1fr; }
}
.section-standard__image img {
  width: 100%; height: 100%; max-height: 480px;
  object-fit: cover; border-radius: var(--radius-lg); display: block;
}
.section-standard__image-placeholder {
  width: 100%; height: 480px;
  background: var(--clr-stone-100); border-radius: var(--radius-lg);
}
.section-standard__body { display: flex; flex-direction: column; gap: var(--sp-5); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding-block: var(--sp-24); background: var(--clr-stone-100); overflow: hidden; }
.about__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-16); align-items: center; }
@media (min-width: 900px) { .about__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-16); } }
.about__visual { position: relative; max-width: 600px; margin: 0 auto; width: 100%; }
/* patch-296 — cap mobile about image height */
@media (max-width: 767px) { .about__img-frame { max-height: 60vh; } }
.about__img-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/5; background: var(--clr-stone-200);
}
.about__img-frame--has-photo {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg); aspect-ratio: 4/5; background: var(--clr-stone-100);
}
.about__photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about__credential-card {
  position: absolute; bottom: var(--sp-6); left: 0;
  background: var(--clr-surface-card); border: 1px solid var(--clr-stone-200);
  border-radius: var(--radius-lg); padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-lg); transform: translateX(-16px);
}
.about__content { }
.about__body { font-size: 0.95rem; line-height: 1.8; color: var(--clr-slate-600); margin-bottom: var(--sp-5); }
.about__pillars {
  display: grid; grid-template-columns: auto 1fr;
  gap: var(--sp-5); align-items: start; margin-bottom: var(--sp-8);
  padding-top: var(--sp-6); border-top: 1px solid var(--clr-stone-200);
}
.about__pillar { display: contents; }
/* Moss pillar marks */
.about__pillar-mark { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--clr-moss-500); min-width: 24px; padding-top: 2px; }
.about__pillar strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--clr-slate-800); margin-bottom: var(--sp-1); letter-spacing: 0.03em; }
.about__pillar p { font-size: 0.85rem; color: var(--clr-slate-600); line-height: 1.6; margin: 0; }

/* ============================================================
   SERVICES — GRID LAYOUT
   ============================================================ */
.services { padding-block: var(--sp-24); background: var(--clr-stone-50); }
.services-grid {
  display: grid; grid-template-columns: repeat(var(--sc-cols), 1fr);
  gap: 1px; background: var(--clr-stone-200);
  border: 1px solid var(--clr-stone-200);
  border-radius: var(--radius-md); overflow: hidden;
}
@media (max-width: 639px)  { .services-grid { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 1079px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  position: relative; background: var(--clr-surface-card);
  padding: var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-4);
  transition: background 0.2s ease;
}
.service-card:hover { }
.service-card--featured { background: var(--clr-slate-900); }
.service-card--featured .service-card__title { color: var(--clr-slate-100); }
.service-card--featured .service-card__desc  { color: var(--clr-slate-400); }
.service-card--featured .service-card__link  { color: var(--clr-moss-400); }
.service-card--featured .service-card__icon  { color: var(--clr-moss-400); }
.service-card--featured::before { background: linear-gradient(90deg, var(--clr-moss-500), var(--clr-moss-600)); }
.service-card--has-image { }
.service-card__image {
  aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius-sm); margin-bottom: var(--sp-3);
  background: var(--clr-stone-100);
}
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.service-card--has-image:hover .service-card__image img { transform: scale(1.04); }
.service-card__icon {
  color: var(--clr-moss-600);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--clr-moss-subtle); border-radius: var(--radius-sm); flex-shrink: 0;
}
/* service card inline SVG icon sizing (patch-343) */
.service-card__icon svg { width: 1em; height: 1em; }
.service-card__featured-tag {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--clr-moss-400); margin-bottom: var(--sp-2);
}
.service-card__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--clr-slate-800); line-height: 1.2; }
.service-card__desc  { font-size: 0.88rem; line-height: 1.7; color: var(--clr-slate-600); flex: 1; }
.service-card__link  {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--clr-moss-600); text-decoration: none; margin-top: auto;
  display: inline-flex; align-items: center;
}
.service-card__link:hover { text-decoration: underline; }

/* ============================================================
   SERVICES — ACCORDION LAYOUT
   ============================================================ */
.services--accordion { padding-block: var(--sp-24); background: var(--clr-stone-100); }

.service-accordion { display: block; margin-top: var(--sp-12); }

.service-accordion__item { border-top: 1px solid var(--clr-moss-border); }
.service-accordion__item:last-child { border-bottom: 1px solid var(--clr-moss-border); }

.service-accordion__trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-6) 0; text-align: left;
  color: var(--clr-slate-900); transition: color 0.2s var(--ease-out-expo);
}
.service-accordion__trigger:hover { color: var(--clr-moss-600); }
.service-accordion__title { font-family: var(--font-display); font-size: 1.375rem; font-weight: 500; letter-spacing: 0.01em; line-height: 1.3; }
.service-accordion__icon {
  flex-shrink: 0; width: 1.25rem; height: 1.25rem; position: relative;
  color: var(--clr-moss-600); margin-left: var(--sp-4);
  transition: transform 0.35s var(--ease-out-expo);
}
.service-accordion__icon::before, .service-accordion__icon::after {
  content: ''; position: absolute; background: currentColor; border-radius: 1px;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.25s ease;
}
.service-accordion__icon::before { width: 100%; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.service-accordion__icon::after  { width: 1.5px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.is-open .service-accordion__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.service-accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out-expo); }
.is-open .service-accordion__panel {
  max-height: none; display: flex; flex-direction: row-reverse; gap: var(--sp-6); padding: var(--sp-4) 0;
}
.service-accordion__content { flex: 1; display: flex; flex-direction: column; gap: var(--sp-2); }
.service-accordion__image { flex: 0 0 200px; aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; }
.service-accordion__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 479px) {
  .is-open .service-accordion__panel { flex-direction: column; }
  .service-accordion__image { flex: none; width: 100%; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding-block: var(--sp-24); background: var(--clr-stone-50); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); margin-bottom: var(--sp-10); }
@media (min-width: 640px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--clr-surface-card); border: 1px solid var(--clr-stone-200);
  border-radius: var(--radius-lg); padding: var(--sp-8);
  display: flex; flex-direction: column; gap: var(--sp-6);
  transition: box-shadow 0.3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card--featured { background: var(--clr-slate-900); border-color: var(--clr-slate-900); }
.testimonial-card--featured .testimonial-card__stars    { color: var(--clr-moss-400); }
.testimonial-card--featured .testimonial-card__quote    { color: var(--clr-slate-800); }
.testimonial-card--featured .testimonial-card__name     { color: var(--clr-slate-800); }
.testimonial-card--featured .testimonial-card__location { color: var(--clr-slate-400); }
.testimonial-card--featured .testimonial-card__avatar   { background: var(--clr-moss-subtle); color: var(--clr-moss-400); border-color: var(--clr-moss-border); }
.testimonial-card__stars   { font-size: 0.95rem; color: var(--clr-moss-500); letter-spacing: 0.08em; }
.testimonial-card__quote   { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; font-weight: 400; line-height: 1.65; color: var(--clr-slate-800); flex: 1; }
.testimonial-card__author  { display: flex; align-items: center; gap: var(--sp-4); padding-top: var(--sp-5); border-top: 1px solid var(--clr-stone-200); }
.testimonial-card--featured .testimonial-card__author { border-top-color: rgba(255,255,255,0.07); }
.testimonial-card__avatar  {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--clr-stone-200); background: var(--clr-stone-100);
  color: var(--clr-slate-400); display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; flex-shrink: 0;
}
.testimonial-card__avatar-img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; object-position: center top; flex-shrink: 0;
  border: 2px solid var(--clr-moss-500);
}
.testimonial-card__name     { font-style: normal; font-weight: 500; font-size: 0.88rem; color: var(--clr-slate-800); display: block; }
.testimonial-card__location { font-size: 0.75rem; color: var(--clr-slate-400); letter-spacing: 0.04em; }

/* ============================================================
   PROCESS — slate-900 dark background
   ============================================================ */
.process { padding-block: var(--sp-24); background: var(--clr-slate-900); position: relative; overflow: hidden; }
.process__inner { position: relative; z-index: 1; }
.process .section-title { color: var(--clr-slate-800); }
.process .section-title em { color: var(--clr-moss-200); }
.process .section-eyebrow { color: var(--clr-moss-400); }

.process-steps {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md); overflow: hidden;
  margin-top: var(--sp-12);
}
@media (min-width: 768px)  { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }

.process-step {
  background: var(--clr-slate-900); padding: var(--sp-7);
  display: flex; flex-direction: column; gap: var(--sp-4);
  position: relative; overflow: hidden; transition: background 0.2s ease;
}
.process-step:hover { background: rgba(255,255,255,0.07); }
.process-step__number {
  font-family: var(--font-display); font-style: italic;
  font-size: 3rem; font-weight: 300;
  color: color-mix(in srgb, var(--clr-moss-500) 20%, transparent); line-height: 1;
  position: absolute; top: var(--sp-5); right: var(--sp-6);
}
.process-step__label  { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clr-moss-400); }
.process-step__title  { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--clr-slate-200); line-height: 1.3; max-width: 26ch; }
.process-step__desc   { font-size: 0.85rem; line-height: 1.75; color: var(--clr-slate-300); /* patch-306 WCAG AA: slate-400 → slate-300 */ }
.process-step__time   { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--clr-slate-400); /* patch-306 WCAG AA: slate-600 → slate-400 */ margin-top: auto; display: flex; align-items: center; gap: var(--sp-2); }
.process-step__time::before { content: '—'; color: var(--clr-slate-500); /* patch-306 decorative bump */ }

/* ============================================================
   VALUES — slate-900 dark background
   ============================================================ */
.values { padding-block: var(--sp-24); background: var(--clr-slate-900); position: relative; overflow: hidden; }
.values__inner { position: relative; z-index: 1; }
.values .section-title { color: var(--clr-slate-800); }
.values .section-title em { color: var(--clr-moss-200); }
.values .section-eyebrow { color: var(--clr-moss-400); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-top: var(--sp-12); }
/* patch-305 — values grid: responsive breakpoints matching services-grid */
@media (max-width: 639px)  { .values-grid { grid-template-columns: 1fr; } }
@media (min-width: 640px) and (max-width: 1079px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }

.value-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: var(--sp-7);
  display: flex; flex-direction: column; gap: var(--sp-4);
  transition: background 0.2s ease;
}
.value-card:hover { background: rgba(255,255,255,0.07); }
.value-card__numeral { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--clr-moss-500); line-height: 1; }
.value-card__title   { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; color: var(--clr-slate-200); text-transform: uppercase; }
.value-card__desc    { font-size: 0.85rem; line-height: 1.7; color: var(--clr-slate-300); }

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.inline-cta { padding-block: var(--sp-20); background: var(--clr-slate-900); text-align: center; position: relative; overflow: hidden; }
.inline-cta__content { position: relative; z-index: 1; max-width: 600px; margin-inline: auto; }
.inline-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300;
  color: var(--clr-slate-800); margin-bottom: var(--sp-4);
}
.inline-cta__title em { font-style: italic; color: var(--clr-moss-200); }
.inline-cta__desc    { font-size: 0.95rem; color: var(--clr-slate-400); line-height: 1.75; margin-bottom: var(--sp-8); }
.inline-cta__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }

.final-cta { padding-block: var(--sp-24); background: var(--clr-slate-900); text-align: center; position: relative; overflow: hidden; }
.final-cta__content { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300;
  color: var(--clr-slate-800); line-height: 1.15; margin-bottom: var(--sp-5);
}
.final-cta__title em { font-style: italic; color: var(--clr-moss-200); }
.final-cta__desc    { font-size: 0.97rem; color: var(--clr-slate-400); line-height: 1.8; margin-bottom: var(--sp-8); }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }
.final-cta__note    { font-size: 0.78rem; color: var(--clr-slate-300); margin-top: var(--sp-5); letter-spacing: 0.06em; }

/* ============================================================
   ARTICLE HERO
   ============================================================ */
.article-hero {
  background: var(--clr-slate-900);
  padding-top: calc(var(--nav-height) + var(--sp-20));
  padding-bottom: 0;
  position: relative; overflow: hidden;
}
.article-hero--has-photo { position: relative; overflow: hidden; }
.article-hero--has-photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--article-hero-bg);
  background-size: cover; background-position: center top;
  z-index: 0; opacity: 0.25;
}
.article-hero--has-photo .container { position: relative; z-index: 1; }
.article-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, color-mix(in srgb, var(--clr-moss-500) 12%, transparent), transparent),
    var(--clr-slate-900);
}
.article-hero__content {
  position: relative; z-index: 1;
  max-width: 780px; margin-inline: auto;
  padding-bottom: var(--sp-16); text-align: center;
}
.article-hero__category {
  display: inline-block;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clr-moss-400); background: var(--clr-moss-subtle);
  border: 1px solid var(--clr-moss-border);
  border-radius: 999px; padding: var(--sp-1) var(--sp-4); margin-bottom: var(--sp-6);
}
.article-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 300;
  color: var(--clr-slate-800); line-height: 1.15; margin-bottom: var(--sp-8);
}
.article-hero__title em { font-style: italic; color: var(--clr-moss-200); }
.article-hero__intro { font-size: 1.25rem; color: var(--clr-slate-400); line-height: 1.75; max-width: 56ch; margin-inline: auto; margin-bottom: var(--sp-6); }
.article-meta { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--sp-4); font-size: 0.78rem; color: var(--clr-slate-400); }
.article-meta__item { display: flex; align-items: center; gap: var(--sp-2); }
.article-meta__item svg { flex-shrink: 0; color: var(--clr-moss-400); }
.article-meta__sep { width: 3px; height: 3px; border-radius: 50%; background: var(--clr-slate-700); flex-shrink: 0; }

/* ============================================================
   BLOG GRID
   ============================================================ */
.blog-grid-section { padding-block: var(--sp-20); background: var(--clr-stone-50); }
.blog-filter-bar { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-6); justify-content: center; }
.blog-filter-pill {
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-xl); font-family: var(--font-body);
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.03em;
  border: 1px solid var(--clr-moss-border); background: transparent;
  color: var(--clr-slate-400); cursor: pointer; transition: all 200ms var(--ease-in-out);
}
.blog-filter-pill:hover { border-color: var(--clr-moss-600); color: var(--clr-moss-600); }
.blog-filter-pill--active { background: var(--clr-moss-subtle); border-color: var(--clr-moss-600); color: var(--clr-moss-600); }

.blog-grid {
  display: grid; grid-template-columns: repeat(var(--blog-grid-cols, 3), 1fr);
  gap: var(--sp-6); margin-top: var(--sp-10);
}
@media (max-width: 1023px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex; flex-direction: column;
  background: var(--clr-surface-card); border: 1px solid var(--clr-stone-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card--featured { border-color: var(--clr-moss-600); border-width: 2px; }
.blog-card__image-link { display: block; flex-shrink: 0; }
.blog-card__image { aspect-ratio: 16/9; overflow: hidden; background: var(--clr-stone-100); }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__image-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--clr-stone-100) 0%, var(--clr-stone-200) 100%); }
.blog-card__body { display: flex; flex-direction: column; gap: var(--sp-3); padding: var(--sp-6); flex: 1; }
.blog-card__category {
  display: inline-block;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clr-moss-600); background: var(--clr-moss-subtle);
  border: 1px solid var(--clr-moss-border);
  border-radius: 999px; padding: var(--sp-1) var(--sp-3); width: fit-content;
}
.blog-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; line-height: 1.35; color: var(--clr-slate-800); flex: 1; }
.blog-card__title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-card__title a:hover { color: var(--clr-moss-600); }
.blog-card__excerpt { font-size: 0.88rem; line-height: 1.72; color: var(--clr-slate-600); }
.blog-card__meta {
  display: flex; align-items: center; gap: var(--sp-4);
  font-size: 0.72rem; color: var(--clr-slate-400);
  margin-top: auto; padding-top: var(--sp-4); border-top: 1px solid var(--clr-stone-200);
}
.blog-card__author::before { content: "By "; opacity: 0.6; }
.blog-card__link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--clr-moss-600); text-decoration: none; transition: gap 0.2s;
}
.blog-card__link:hover { gap: var(--sp-4); }
.blog-grid__footer { display: flex; justify-content: center; margin-top: var(--sp-10); }

/* ============================================================
   LOCATION GRID — slate-900 dark
   ============================================================ */
@keyframes loc-pin-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.8); opacity: 0.4; }
}

.location-grid-section { padding-block: var(--sp-24); background: var(--clr-slate-900); }
.location-grid-header { max-width: 560px; margin-bottom: var(--sp-12); }
.location-grid-header .section-title     { color: var(--clr-slate-800); }
.location-grid-header .section-title em  { color: var(--clr-moss-400); }

.locations-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2px;
}
@media (max-width: 1023px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .locations-grid { grid-template-columns: 1fr; } }

.location-card {
  background: var(--clr-slate-800); padding: 40px 28px;
  display: flex; flex-direction: column; gap: var(--sp-3);
  border-top: 2px solid transparent;
  transition: border-top-color 0.3s var(--ease-out-expo), background 0.2s;
}
.location-card:hover { border-top-color: var(--clr-moss-500); background: var(--clr-slate-700); }
.location-card__city { font-family: var(--font-display); font-size: 1.35rem; font-weight: 300; color: var(--clr-slate-200); line-height: 1.3; }
.location-card__state { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clr-moss-400); font-weight: 500; }
.location-card__addr  { font-size: 15px; color: var(--clr-slate-400); line-height: 1.6; }
.location-card__phone,
.location-card__email { font-size: 14px; }
.location-card__phone a,
.location-card__email a { color: var(--clr-moss-400); text-decoration: none; transition: color 0.15s; }
.location-card__phone a:hover,
.location-card__email a:hover { color: var(--clr-moss-200); }
.location-card__hours { font-size: 13px; color: var(--clr-slate-400); line-height: 1.6; }
.location-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto; padding-top: var(--sp-4);
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--clr-moss-400); text-decoration: none;
  transition: gap 0.2s var(--ease-out-expo), color 0.15s;
}
.location-card__link:hover { gap: 14px; color: var(--clr-moss-200); }

/* ============================================================
   LOCATION SINGLE
   ============================================================ */
.location-single-section { padding-block: var(--sp-24); background: var(--clr-stone-100); }
.location-single__inner {
  width: 100%; max-width: var(--max-width); margin-inline: auto; padding-inline: var(--sp-6);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-20); align-items: start;
}
@media (min-width: 1080px) { .location-single__inner { padding-inline: var(--sp-12); } }
.location-single__content { display: flex; flex-direction: column; gap: var(--sp-6); }
.location-single__desc    { font-size: 1.25rem; line-height: 1.75; color: var(--clr-slate-600); }
.location-single__info    { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6) var(--sp-8); }
.location-info-item  { display: flex; flex-direction: column; gap: var(--sp-2); }
.location-info__label { font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--clr-moss-600); }
.location-info__value { font-family: var(--font-display); font-size: 1.25rem; font-weight: 300; line-height: 1.55; color: var(--clr-slate-800); }
.location-info__value a { color: var(--clr-slate-800); text-decoration: none; transition: color 0.15s; }
.location-info__value a:hover { color: var(--clr-moss-600); }
.location-single__map {
  position: relative; height: 500px; overflow: hidden;
  background: var(--clr-stone-200); border-radius: var(--radius-md);
}
.loc-single__map-embed { width: 100%; height: 100%; overflow: hidden; }
.loc-single__map-embed iframe { display: block; width: 100%; height: 100%; border: none; }
.loc-single__map-placeholder { position: absolute; inset: 0; background: var(--clr-stone-100); display: flex; align-items: center; justify-content: center; }
.loc-map__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--clr-moss-500) 7%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--clr-moss-500) 7%, transparent) 1px, transparent 1px);
  background-size: 48px 48px;
}
.loc-map__pin { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
.loc-map__pin-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--clr-moss-600); animation: loc-pin-pulse 2s ease-in-out infinite;
}
.loc-map__pin-label {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--clr-white);
  background: color-mix(in srgb, var(--clr-slate-900) 90%, transparent);
  padding: var(--sp-2) var(--sp-4); border-radius: var(--radius-sm); white-space: nowrap;
}
@media (max-width: 1023px) { .location-single__inner { grid-template-columns: 1fr; } .location-single__map { height: 360px; } }
@media (max-width: 479px)  { .location-single__map { height: 280px; } .location-single__info { grid-template-columns: 1fr; } }

/* ============================================================
   EMAIL FORM
   ============================================================ */
.email-form { background: var(--clr-stone-100); border-top: 1px solid var(--clr-stone-200); padding-block: var(--sp-24); }
.email-form__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-12); }
@media (min-width: 900px) { .email-form__grid { grid-template-columns: 1fr 1.5fr; align-items: start; } }
.email-form__info { }
.email-form__block { margin-bottom: var(--sp-8); padding-bottom: var(--sp-8); border-bottom: 1px solid var(--clr-stone-200); }
.email-form__block:last-child { border-bottom: none; margin-bottom: 0; }
.email-form__block-title { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clr-moss-600); margin-bottom: var(--sp-2); }
.email-form__block-value { font-size: 1.25rem; font-weight: 400; color: var(--clr-slate-800); line-height: 1.6; display: block; transition: color 150ms ease; }
.email-form__block-value--large { font-family: var(--font-display); font-size: 1.75rem; font-weight: 400; color: var(--clr-slate-900); letter-spacing: 0.02em; line-height: 1.3; }
a.email-form__block-value:hover { color: var(--clr-moss-600); }
.email-form__form-wrap {
  background: var(--clr-surface-card); padding: var(--sp-10);
  border-top: 3px solid var(--clr-moss-600);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.email-form__form-title {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 400;
  color: var(--clr-slate-900); margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6); border-bottom: 1px solid var(--clr-stone-200);
  letter-spacing: 0.02em;
}
.email-form__placeholder {
  border: 2px dashed var(--clr-stone-200);
  min-height: 200px; display: flex; align-items: center; justify-content: center;
  color: var(--clr-slate-400); font-size: 0.875rem; text-align: center; padding: var(--sp-8);
}
@media (max-width: 767px) { .email-form__form-wrap { padding: var(--sp-8); } }

/* ============================================================
   VIDEO HIGHLIGHT
   ============================================================ */
.video-highlight { padding-block: var(--sp-20); background: var(--clr-stone-100); }
.video-highlight--stacked .section-header--centered { max-width: 720px; margin-inline: auto; margin-bottom: var(--sp-10); }
.video-highlight--side-by-side .video-highlight__grid {
  display: grid; grid-template-columns: 45fr 55fr; gap: var(--sp-12); align-items: center;
}
.video-highlight__video-frame {
  aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--clr-stone-200);
}
.video-highlight__video { width: 100%; display: block; border-radius: var(--radius-md); }
.video-highlight__text { }
@media (max-width: 1023px) { .video-highlight--side-by-side .video-highlight__grid { grid-template-columns: 1fr; } }

/* ============================================================
   MEDIA GALLERY
   ============================================================ */
.media-gallery { padding-block: var(--sp-20); background: var(--clr-stone-100); }
.media-gallery .section-header { text-align: center; margin-bottom: var(--sp-10); }
.media-gallery__grid {
  display: grid; grid-template-columns: repeat(var(--mg-cols), 1fr);
  grid-auto-rows: 1fr; gap: var(--sp-3);
}
.media-gallery__item { overflow: hidden; border-radius: var(--radius-md); aspect-ratio: 1/1; }
.media-gallery__img  { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   VIDEO REEL ROW
   ============================================================ */
.video-reel-row { padding: var(--sp-20) 0; background: var(--clr-stone-50); }
.video-reel-row__inner { display: flex; align-items: center; gap: var(--sp-16); }
.video-reel-row--content-right .video-reel-row__inner { flex-direction: row-reverse; }
.video-reel-row__content { flex: 1; min-width: 0; }
.video-reel-row__body { color: var(--clr-slate-400); margin: var(--sp-4) 0 var(--sp-8); line-height: 1.7; }
.video-reel-row__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-8); }
.video-reel-row__carousel-wrap { flex: 0 0 45%; min-width: 0; }
.video-reel-row__carousel { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.video-reel-row__track { display: flex; transition: transform 0.4s var(--ease-out-expo); cursor: grab; user-select: none; }
.video-reel-row__track:active { cursor: grabbing; }
.video-reel-row__slide { flex: 0 0 88%; margin-right: 4%; position: relative; }
.video-reel-row__video-frame { position: relative; padding-bottom: 177.78%; border-radius: var(--radius-md); overflow: hidden; background: var(--clr-slate-800); }
.video-reel-row__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-reel-row__caption { margin-top: var(--sp-2); font-size: 0.8rem; color: var(--clr-slate-400); text-align: center; }
.video-reel-row__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: var(--clr-white); border: 1px solid var(--clr-stone-200);
  border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--clr-slate-800); transition: background 0.2s, color 0.2s;
}
.video-reel-row__arrow:hover { background: var(--clr-moss-600); color: var(--clr-white); border-color: var(--clr-moss-600); }
.video-reel-row__arrow--prev { left: var(--sp-2); }
.video-reel-row__arrow--next { right: var(--sp-2); }
.video-reel-row__arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.video-reel-row__dots { display: flex; justify-content: center; gap: var(--sp-2); margin-top: var(--sp-4); }
.video-reel-row__dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: var(--clr-stone-200); cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.video-reel-row__dot--active { background: var(--clr-moss-600); transform: scale(1.3); }
@media (max-width: 1023px) {
  .video-reel-row__inner { flex-direction: column; }
  .video-reel-row--content-right .video-reel-row__inner { flex-direction: column; }
  .video-reel-row__carousel-wrap { flex: 0 0 100%; width: 100%; }
  .video-reel-row__slide { flex: 0 0 80%; }
}
@media (prefers-reduced-motion: reduce) { .video-reel-row__track { transition: none; } }

/* ============================================================
   TEAM MEMBERS
   ============================================================ */
.team-members-section { padding-block: var(--sp-24); }
.team-members__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8); max-width: var(--max-width); margin-inline: auto; padding-inline: var(--sp-6);
}
.team-members__card {
  background: var(--clr-stone-100); border-radius: var(--radius-md);
  color: var(--clr-slate-800); box-shadow: var(--shadow-md); overflow: hidden;
}
@media (max-width: 767px)                    { .team-members__grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) and (max-width: 1023px) { .team-members__grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */
.article-layout { background: var(--clr-stone-50); padding-block: var(--sp-4); }
.article-layout--intro   { background: var(--clr-stone-50); padding-block: 0; }
.article-layout--section { background: var(--clr-stone-50); padding-block: 0; }
.article-layout--section:first-of-type { padding-top: var(--sp-10); }
.article-layout__inner {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-12);
  padding-top: var(--sp-10);
}
@media (min-width: 1024px) { .article-layout__inner { grid-template-columns: 1fr 320px; } }

.article-body { min-width: 0; }
.article-body p      { font-size: 0.97rem; line-height: 1.85; color: var(--clr-slate-600); margin-bottom: var(--sp-6); }
.article-body h2     {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400; color: var(--clr-slate-800); line-height: 1.2;
  margin-top: var(--sp-12); margin-bottom: var(--sp-5);
  padding-top: var(--sp-12); border-top: 1px solid var(--clr-stone-200);
}
.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-body h2 em  { font-style: italic; color: var(--clr-moss-500); }
.article-body h3     { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--clr-slate-800); margin-top: var(--sp-8); margin-bottom: var(--sp-3); }
.article-body strong { color: var(--clr-slate-800); font-weight: 600; }
.article-body a      { color: var(--clr-moss-600); text-decoration: underline; text-decoration-thickness: 1px; }
.article-body a:hover { color: var(--clr-moss-500); }
.article-body ul, .article-body ol { display: flex; flex-direction: column; gap: var(--sp-3); padding-left: 0; margin-bottom: var(--sp-6); list-style: none; }
.article-body ul li, .article-body ol li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: 0.95rem; line-height: 1.75; color: var(--clr-slate-600); counter-increment: article-list; }
.article-body ul li::before { content: '◈'; color: var(--clr-moss-600); font-size: 0.65rem; margin-top: 6px; flex-shrink: 0; }
.article-body ol { counter-reset: article-list; }
.article-body ol li::before {
  content: counter(article-list);
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--clr-moss-subtle); border: 1px solid var(--clr-moss-border);
  font-size: 0.65rem; font-weight: 600; color: var(--clr-moss-600); flex-shrink: 0; margin-top: 2px;
}

.article-pullquote {
  border-left: 3px solid var(--clr-moss-600);
  padding: var(--sp-6) var(--sp-8); margin: var(--sp-10) 0;
  background: var(--clr-stone-100); border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-pullquote p { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.6; color: var(--clr-slate-800) !important; margin-bottom: 0 !important; }
.article-pullquote cite { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-moss-600); margin-top: var(--sp-4); font-style: normal; }

.article-author {
  display: flex; align-items: flex-start; gap: var(--sp-6);
  background: var(--clr-stone-100); border: 1px solid var(--clr-stone-200);
  border-radius: var(--radius-lg); padding: var(--sp-7); margin-top: var(--sp-12);
}
.article-author__avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--clr-stone-200); flex-shrink: 0; overflow: hidden; position: relative; }
.article-author__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--clr-slate-800); margin-bottom: var(--sp-1); }
.article-author__role { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clr-moss-600); margin-bottom: var(--sp-3); }
.article-author__bio  { font-size: 0.85rem; line-height: 1.7; color: var(--clr-slate-600); }
.article-meta__item   { display: flex; align-items: center; gap: var(--sp-2); }

/* ============================================================
   SIDEBAR TOC
   ============================================================ */
.article-sidebar { display: flex; flex-direction: column; gap: var(--sp-6); }
.sidebar-toc {
  background: var(--clr-surface-card); border: 1px solid var(--clr-stone-200);
  border-radius: var(--radius-lg); padding: var(--sp-7);
  position: sticky; top: calc(var(--nav-height) + var(--sp-6));
}
.sidebar-toc__title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clr-slate-400); margin-bottom: var(--sp-5); }
.sidebar-toc__list  { display: flex; flex-direction: column; gap: var(--sp-1); list-style: none; padding: 0; }
.sidebar-toc__item  { }
.sidebar-toc__item a {
  display: block; font-size: 0.85rem; line-height: 1.5;
  color: var(--clr-slate-600); text-decoration: none;
  padding: var(--sp-2) var(--sp-3); border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}
.sidebar-toc__item a:hover { background: var(--clr-moss-subtle); color: var(--clr-stone-800); }
.sidebar-toc__item--active a { background: var(--clr-moss-subtle); color: var(--clr-moss-600); font-weight: 500; }
.article-sidebar.is-fixed { z-index: 10; }
.article-sidebar .article-pullquote { margin: 0 0 var(--sp-6) 0; padding: var(--sp-5) var(--sp-6); }

/* === Article Page Grid (patch-229) === */
.article-page { padding-block: var(--sp-4); background: var(--clr-stone-50); }
.article-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
  padding-top: var(--sp-10);
}
@media (min-width: 1024px) {
  .article-page__grid { grid-template-columns: 1fr 320px; }
}
.article-page__main { min-width: 0; }
.article-intro { margin-bottom: var(--sp-8); }
.article-page .article-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-6));
}
@media (max-width: 1023px) {
  .article-page .article-sidebar { display: none; }
  .article-page__grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-block: var(--sp-24); background: var(--clr-stone-50); }
.faq__inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-10); }
@media (min-width: 900px) { .faq__inner { grid-template-columns: 1fr 360px; align-items: start; } }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--clr-stone-200); }
.faq-item__trigger {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); width: 100%; padding: var(--sp-6) 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: inherit; transition: color 0.2s ease;
}
.faq-item__trigger:hover { color: var(--clr-moss-600); }
.faq-item__question { font-family: var(--font-display); font-size: 1.05rem; font-weight: 400; color: var(--clr-slate-800); line-height: 1.45; }
.faq-item__icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--clr-moss-600); transition: transform 0.25s var(--ease-out-expo); }
.faq-item__trigger[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { padding: 0 var(--sp-7) var(--sp-6); font-size: 0.88rem; line-height: 1.78; color: var(--clr-slate-600); }
.faq-item__answer[hidden] { display: none; }

.faq-aside-card {
  background: var(--clr-slate-900); border-radius: var(--radius-xl);
  padding: var(--sp-8); position: relative; overflow: hidden;
}
.faq-aside-card__inner  { position: relative; z-index: 1; }
.faq-aside-card__eyebrow { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clr-moss-400); margin-bottom: var(--sp-4); }
.faq-aside-card__title   { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--clr-slate-800); line-height: 1.25; margin-bottom: var(--sp-4); }
.faq-aside-card__body    { font-size: 0.85rem; line-height: 1.75; color: var(--clr-slate-400); margin-bottom: var(--sp-7); }
.faq-aside-card__detail  { font-size: 0.8rem; color: var(--clr-slate-400); }

/* ============================================================
   FOOTER — slate-950 near-black
   ============================================================ */
.site-footer { background: var(--clr-slate-950); color: var(--clr-slate-300); padding-top: var(--sp-20); }
.footer__grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-12);
  padding-bottom: var(--sp-12); border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 280px 1fr; } }
.footer__logo {
  display: flex; align-items: center; gap: var(--sp-3);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
  color: var(--clr-slate-800); text-decoration: none; margin-bottom: var(--sp-4);
}
.footer__tagline { font-size: 0.85rem; color: var(--clr-slate-400); line-height: 1.7; max-width: 26ch; margin-bottom: var(--sp-6); }
.footer__socials { display: flex; gap: var(--sp-3); }
.footer__social-link {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
  color: var(--clr-slate-400); text-decoration: none; transition: all 0.2s ease;
}
.footer__social-link:hover { border-color: var(--clr-moss-500); color: var(--clr-moss-400); }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
@media (min-width: 640px) { .footer__nav { grid-template-columns: repeat(3, 1fr); } }
.footer__nav-col  { }
.footer__nav-heading { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clr-slate-500); margin-bottom: var(--sp-5); }
.footer__nav-col ul  { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__nav-col a   { font-size: 0.85rem; color: var(--clr-slate-400); text-decoration: none; transition: color 0.2s ease; letter-spacing: 0.02em; }
.footer__nav-col a:hover { color: var(--clr-slate-800); }
.footer__address { font-size: 0.85rem; color: var(--clr-slate-400); line-height: 1.7; margin-bottom: var(--sp-3); }
.footer__phone   { font-size: 0.85rem; color: var(--clr-slate-400); text-decoration: none; transition: color 0.2s ease; letter-spacing: 0.04em; }
.footer__phone:hover { color: var(--clr-moss-400); }
.footer__bottom  { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-4); padding-block: var(--sp-6); }
.footer__copy    { font-size: 0.78rem; color: var(--clr-slate-600); }
.footer__legal   { display: flex; gap: var(--sp-5); }
.footer__legal a { font-size: 0.78rem; color: var(--clr-slate-600); text-decoration: none; transition: color 0.2s ease; }
.footer__legal a:hover { color: var(--clr-slate-400); }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404 {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: var(--sp-20) var(--sp-6);
  background: var(--clr-stone-50); padding-top: calc(var(--nav-height) + var(--sp-20));
}
.error-404__code {
  font-family: var(--font-display); font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 300; color: var(--clr-moss-100); line-height: 1; margin-bottom: var(--sp-4);
}
.error-404__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 400; color: var(--clr-slate-800); margin-bottom: var(--sp-4); }
.error-404__desc  { font-size: 1.25rem; color: var(--clr-slate-600); line-height: 1.75; max-width: 44ch; margin-inline: auto; margin-bottom: var(--sp-8); }
.error-404__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }

/* ============================================================
   SMOOTH SCROLL WRAPPER
   ============================================================ */
#smooth-wrapper {
  overflow: hidden;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
#smooth-content {
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  #smooth-wrapper {
    position: static;
    overflow: auto;
    height: auto;
  }
  #smooth-content {
    transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1023px) {
  .article-sidebar { display: none; }
  .article-layout__inner { grid-template-columns: 1fr !important; }
  .article-layout { padding-block: var(--sp-12); }
  .mega-menu__col--cta { display: none; }
}
@media (max-width: 767px) {
  .article-hero__content { padding-bottom: var(--sp-10); }
  .article-author { flex-direction: column; align-items: flex-start; }
  .mega-menu { left: var(--sp-4); right: var(--sp-4); }
}
@media (max-width: 479px) {
  .location-single__map  { height: 280px; }
  .location-single__info { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header { display: none; }
  .hero { min-height: auto; padding-top: var(--sp-8); }
  .hero-split { min-height: auto; }
}

/* === section style override === */

/* ── Section: Light ── */
.section--light {
  background-color: var(--clr-stone-50);
  color: var(--clr-slate-800);
}
.section--light .section-eyebrow {
  color: var(--clr-moss-600);
}
.section--light .section-title {
  color: var(--clr-slate-900);
}
.section--light .section-desc {
  color: var(--clr-slate-600);
}
.section--light hr,
.section--light [class*="divider"],
.section--light [class*="border"] {
  border-color: var(--clr-stone-200);
}
.section--light .btn--primary {
  background-color: var(--clr-moss-600);
  border-color: var(--clr-moss-600);
  color: var(--clr-white);
}
.section--light .btn--primary:hover {
  background-color: var(--clr-moss-500);
  border-color: var(--clr-moss-500);
}
.section--light .btn--outline,
.section--light .btn--ghost-dark {
  background-color: transparent;
  color: var(--clr-slate-800);
  border-color: var(--clr-moss-border);
}
.section--light .btn--outline:hover,
.section--light .btn--ghost-dark:hover {
  background-color: var(--clr-moss-subtle);
  border-color: var(--clr-moss-600);
  color: var(--clr-moss-600);
}

/* ── Section: Dark ── */
.section--dark {
  background-color: var(--clr-slate-950);
  color: var(--clr-slate-100);
}
.section--dark .section-eyebrow,
.section--has-bg-image .section-eyebrow {
  color: var(--clr-moss-200);
}
.section--dark .section-title,
.section--has-bg-image .section-title {
  color: var(--clr-slate-800);
}
.section--dark .section-desc,
.section--has-bg-image .section-desc {
  color: var(--clr-slate-300);
}
.section--dark hr,
.section--dark [class*="divider"],
.section--dark [class*="border"] {
  border-color: var(--clr-slate-600);
}
.section--dark .btn--primary,
.section--dark .btn--primary-dark {
  background-color: var(--clr-stone-800);
  border-color: var(--clr-stone-800);
  color: var(--clr-slate-50);
}
.section--dark .btn--primary:hover,
.section--dark .btn--primary-dark:hover {
  background-color: var(--clr-stone-600);
  border-color: var(--clr-stone-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.section--dark .btn--outline,
.section--dark .btn--outline-dark {
  background-color: transparent;
  color: var(--clr-moss-400);
  border-color: rgba(255, 255, 255, 0.25);
}
.section--dark .btn--outline:hover,
.section--dark .btn--outline-dark:hover {
  background-color: var(--clr-moss-600);
  border-color: var(--clr-moss-600);
  color: var(--clr-white);
}
.section--dark .btn--ghost,
.section--dark .btn--ghost-light {
  background-color: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.3);
}
.section--dark .btn--ghost:hover,
.section--dark .btn--ghost-light:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── Section: Dark — Hero Split overrides ── */
.section--dark .hero-split {
  background: var(--clr-slate-950);
}
.section--dark .hero-split__bg {
  background-image:
    radial-gradient(ellipse 60% 50% at 75% 55%, color-mix(in srgb, var(--clr-moss-500) 18%, transparent) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 85%, color-mix(in srgb, var(--clr-slate-800) 20%, transparent) 0%, transparent 60%);
}
.section--dark .hero-split__heading {
  color: var(--clr-slate-100);
}
.section--dark .hero-split__heading-accent {
  color: var(--clr-moss-200);
}
.section--dark .hero-split__subtext {
  color: var(--clr-slate-300);
}
.section--dark .hero-split__badge {
  color: var(--clr-moss-200);
}
.section--dark .hero-split__stat-num {
  color: var(--clr-slate-100);
}
.section--dark .hero-split__stat-label {
  color: var(--clr-slate-400);
}
.section--dark .hero-split__stats {
  border-top-color: var(--clr-slate-600);
}
.section--dark .hero-split__stat-divider {
  background: var(--clr-slate-600);
}
.section--dark .hero-split__img-inner {
  background-color: var(--clr-slate-800);
}
.section--dark .hero-split__accent--1 {
  background: color-mix(in srgb, var(--clr-moss-500) 20%, transparent);
  border-color: color-mix(in srgb, var(--clr-moss-500) 35%, transparent);
}
.section--dark .hero-split__accent--2 {
  background: color-mix(in srgb, var(--clr-cedar-400) 18%, transparent);
}

/* ── Section: Muted ── */
.section--muted {
  background-color: var(--clr-stone-100);
  color: var(--clr-slate-800);
}
.section--muted .section-eyebrow {
  color: var(--clr-moss-600);
}
.section--muted .section-title {
  color: var(--clr-slate-900);
}
.section--muted .section-desc {
  color: var(--clr-slate-700);
}
.section--muted hr,
.section--muted [class*="divider"],
.section--muted [class*="border"] {
  border-color: var(--clr-stone-200);
}
.section--muted .btn--primary {
  background-color: var(--clr-moss-600);
  border-color: var(--clr-moss-600);
  color: var(--clr-white);
}
.section--muted .btn--primary:hover {
  background-color: var(--clr-moss-500);
  border-color: var(--clr-moss-500);
}
.section--muted .btn--outline,
.section--muted .btn--ghost-dark {
  background-color: transparent;
  color: var(--clr-slate-800);
  border-color: var(--clr-moss-border);
}
.section--muted .btn--outline:hover,
.section--muted .btn--ghost-dark:hover {
  background-color: var(--clr-moss-subtle);
  border-color: var(--clr-moss-600);
  color: var(--clr-moss-600);
}


/* ============================================================
   LEGAL CONTENT
   ============================================================ */
.legal-content {
  padding-block: var(--sp-20);
}
.legal-content__inner {
  /* .article-body inside already constrains width and provides typography */
}


/* patch-309 — video reel nav row (arrows + dots side-by-side below videos) */
.video-reel-row__nav {
  display: flex; align-items: center; justify-content: center;
  gap: var(--sp-4); margin-top: var(--sp-4);
}
.video-reel-row__nav .video-reel-row__arrow {
  position: static; top: auto; transform: none; left: auto; right: auto;
}
.video-reel-row__nav .video-reel-row__dots { margin-top: 0; }


/* patch-310 — high-contrast arrow buttons (palette-independent) */
.video-reel-row__nav .video-reel-row__arrow {
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.video-reel-row__nav .video-reel-row__arrow:hover {
  background: #ffffff;
  color: #111111;
  border-color: #111111;
  transform: scale(1.06);
}
.video-reel-row__nav .video-reel-row__arrow:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.video-reel-row__nav .video-reel-row__arrow:disabled {
  opacity: 0.4;
  transform: none;
}


/* patch-313 — video_highlight centered play-overlay button (palette-independent) */
.video-highlight__video-frame { position: relative; }
.video-highlight__play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none; padding: 0; margin: 0;
  cursor: pointer;
  transition: opacity 0.25s ease, background 0.2s ease;
  z-index: 2;
}
.video-highlight__play-overlay:hover { background: rgba(0, 0, 0, 0.5); }
.video-highlight__play-overlay:focus-visible {
  outline: 2px solid #ffffff; outline-offset: -4px;
}
.video-highlight__play-overlay svg {
  width: 88px; height: 88px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s ease;
}
.video-highlight__play-overlay:hover svg { transform: scale(1.08); }
.video-highlight__play-overlay--hidden {
  opacity: 0; pointer-events: none;
}

/* iframe embed support (video_highlight + video_reel_row) */
.video-highlight__video-frame--embed {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.video-highlight__embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-reel-row__embed {
  width: 100%;
  height: 100%;
  border: 0;
}

/* patch-314 — badges component */
.badges-section {
  padding-block: var(--sp-16);
  background: var(--clr-stone-100);
}
.badges-section .section-header {
  margin-bottom: var(--sp-10);
}
.badges-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-8);
}
.badges-list__item {
  flex: 0 0 auto;
  min-width: 120px;
  max-width: 200px;
}
.badges-list__link {
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.badges-list__link:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}
.badges-list__img {
  width: 100%;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  display: block;
}
@media (max-width: 639px) {
  .badges-list { gap: var(--sp-4); }
  .badges-list__item { min-width: 90px; max-width: 140px; }
  .badges-list__img { max-height: 70px; }
}


/* patch-319 — promote media frames to own GPU layers (eliminates edge jitter under smooth scroll) */
.video-highlight__video-frame,
.video-reel-row__video-frame,
.loc-single__map-embed,
.hero__bg,
.hero-split__video-wrap {
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* ============================================================
   BLACKWOOD-CONDITIONAL OVERRIDES (patch-326)
   Activated when <html data-palette="blackwood"> is emitted by
   the renderer. These rules optimize specific selectors for the
   dark-first blackwood palette without regressing the three
   light caldwell palettes (northwest, pacific, dusk).
   ============================================================ */
:root[data-palette="blackwood"] .section-title {
  color: var(--clr-slate-100);
}
:root[data-palette="blackwood"] .location-card__city {
  color: var(--clr-slate-900);
}

/* prose paragraph spacing (patch-328) */
.section-desc p + p,
.about__body p + p,
.inline-cta__desc p + p,
.final-cta__desc p + p,
.page-hero__desc p + p,
.hero__subtext p + p,
.hero-split__subtext p + p,
.video-reel-row__body p + p,
.location-single__desc p + p,
.service-card__desc p + p,
.service-accordion__desc p + p,
.process-step__desc p + p,
.value-card__desc p + p,
.team-members__bio p + p { margin-top: var(--sp-4); }

/* ============================================================
   LIGHT MODE OVERRIDES — patch-336 (caldwell)
   Mirrors apex patches 329+330+331 — lifts dark slate-900 bands
   to moss-tinted light washes for projects using northwest/pacific/
   dusk palettes. Hidden in editor for blackwood (intrinsically dark).
   Footer and hero untouched (footer matches navbar; hero by design).
   ============================================================ */

/* .services — section level */
.theme-mode--light .services {
  background: color-mix(in srgb, var(--clr-moss-600) 6%, var(--clr-stone-50));
}
.theme-mode--light .services h1,
.theme-mode--light .services h2,
.theme-mode--light .services h3,
.theme-mode--light .services h4,
.theme-mode--light .services h5,
.theme-mode--light .services h6,
.theme-mode--light .services p,
.theme-mode--light .services li,
.theme-mode--light .services span,
.theme-mode--light .services a:not(.btn),
.theme-mode--light .services blockquote {
  color: var(--clr-slate-900);
}
.theme-mode--light .services .section-eyebrow {
  color: var(--clr-moss-600);
}
.theme-mode--light .services .section-eyebrow::before {
  background: var(--clr-moss-600);
}
.theme-mode--light .services .btn--primary {
  background-color: var(--clr-moss-600);
  color: var(--clr-white);
  border-color: var(--clr-moss-600);
}
.theme-mode--light .services .btn--primary:hover {
  background-color: var(--clr-moss-500);
  border-color: var(--clr-moss-500);
}
.theme-mode--light .services .btn--outline {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .services .btn--outline:hover {
  border-color: var(--clr-slate-900);
  background-color: rgba(22, 27, 36, 0.05);
}
.theme-mode--light .services .btn--ghost {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .services .btn--ghost:hover {
  background-color: rgba(22, 27, 36, 0.05);
  border-color: rgba(22, 27, 36, 0.5);
}
.theme-mode--light .services hr,
.theme-mode--light .services [class*="divider"] {
  border-color: var(--clr-stone-200);
}

/* .service-card--featured — card level */
.theme-mode--light .service-card--featured {
  background: var(--clr-white);
  border: 1px solid rgba(22, 27, 36, 0.08);
}
.theme-mode--light .service-card--featured .service-card__title {
  color: var(--clr-slate-900);
}
.theme-mode--light .service-card--featured .service-card__desc {
  color: var(--clr-slate-600);
}
.theme-mode--light .service-card--featured .service-card__link {
  color: var(--clr-moss-600);
}

/* .testimonial-card--featured — card level */
.theme-mode--light .testimonial-card--featured {
  background: var(--clr-white);
  border: 1px solid rgba(22, 27, 36, 0.08);
}
.theme-mode--light .testimonial-card--featured .testimonial-card__quote {
  color: var(--clr-slate-900);
}
.theme-mode--light .testimonial-card--featured .testimonial-card__name {
  color: var(--clr-slate-900);
}
.theme-mode--light .testimonial-card--featured .testimonial-card__location {
  color: var(--clr-slate-600);
}
.theme-mode--light .testimonial-card--featured .testimonial-card__author {
  border-top-color: rgba(22, 27, 36, 0.08);
}

/* .process — section level */
.theme-mode--light .process {
  background: color-mix(in srgb, var(--clr-moss-600) 6%, var(--clr-stone-50));
}
.theme-mode--light .process h1,
.theme-mode--light .process h2,
.theme-mode--light .process h3,
.theme-mode--light .process h4,
.theme-mode--light .process h5,
.theme-mode--light .process h6,
.theme-mode--light .process p,
.theme-mode--light .process li,
.theme-mode--light .process span,
.theme-mode--light .process a:not(.btn),
.theme-mode--light .process blockquote {
  color: var(--clr-slate-900);
}
.theme-mode--light .process .section-eyebrow {
  color: var(--clr-moss-600);
}
.theme-mode--light .process .section-eyebrow::before {
  background: var(--clr-moss-600);
}
.theme-mode--light .process .btn--primary {
  background-color: var(--clr-moss-600);
  color: var(--clr-white);
  border-color: var(--clr-moss-600);
}
.theme-mode--light .process .btn--primary:hover {
  background-color: var(--clr-moss-500);
  border-color: var(--clr-moss-500);
}
.theme-mode--light .process .btn--outline {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .process .btn--outline:hover {
  border-color: var(--clr-slate-900);
  background-color: rgba(22, 27, 36, 0.05);
}
.theme-mode--light .process .btn--ghost {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .process .btn--ghost:hover {
  background-color: rgba(22, 27, 36, 0.05);
  border-color: rgba(22, 27, 36, 0.5);
}
.theme-mode--light .process hr,
.theme-mode--light .process [class*="divider"] {
  border-color: var(--clr-stone-200);
}

/* .process-step — card level (inside .process) */
.theme-mode--light .process-step {
  background: var(--clr-white);
  border: 1px solid rgba(22, 27, 36, 0.08);
}
.theme-mode--light .process-step__title {
  color: var(--clr-slate-900);
}
.theme-mode--light .process-step__desc {
  color: var(--clr-slate-600);
}
.theme-mode--light .process-step__label {
  color: var(--clr-moss-600);
}
.theme-mode--light .process-step__time {
  color: var(--clr-slate-600);
}

/* .values — section level */
.theme-mode--light .values {
  background: color-mix(in srgb, var(--clr-moss-600) 6%, var(--clr-stone-50));
}
.theme-mode--light .values h1,
.theme-mode--light .values h2,
.theme-mode--light .values h3,
.theme-mode--light .values h4,
.theme-mode--light .values h5,
.theme-mode--light .values h6,
.theme-mode--light .values p,
.theme-mode--light .values li,
.theme-mode--light .values span,
.theme-mode--light .values a:not(.btn),
.theme-mode--light .values blockquote {
  color: var(--clr-slate-900);
}
.theme-mode--light .values .section-eyebrow {
  color: var(--clr-moss-600);
}
.theme-mode--light .values .section-eyebrow::before {
  background: var(--clr-moss-600);
}
.theme-mode--light .values .btn--primary {
  background-color: var(--clr-moss-600);
  color: var(--clr-white);
  border-color: var(--clr-moss-600);
}
.theme-mode--light .values .btn--primary:hover {
  background-color: var(--clr-moss-500);
  border-color: var(--clr-moss-500);
}
.theme-mode--light .values .btn--outline {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .values .btn--outline:hover {
  border-color: var(--clr-slate-900);
  background-color: rgba(22, 27, 36, 0.05);
}
.theme-mode--light .values .btn--ghost {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .values .btn--ghost:hover {
  background-color: rgba(22, 27, 36, 0.05);
  border-color: rgba(22, 27, 36, 0.5);
}
.theme-mode--light .values hr,
.theme-mode--light .values [class*="divider"] {
  border-color: var(--clr-stone-200);
}

/* .value-card — card level (inside .values) */
.theme-mode--light .value-card {
  background: var(--clr-white);
  border: 1px solid rgba(22, 27, 36, 0.08);
}
.theme-mode--light .value-card__title {
  color: var(--clr-slate-900);
}
.theme-mode--light .value-card__desc {
  color: var(--clr-slate-600);
}

/* .inline-cta — section level */
.theme-mode--light .inline-cta {
  background: color-mix(in srgb, var(--clr-moss-600) 6%, var(--clr-stone-50));
}
.theme-mode--light .inline-cta h1,
.theme-mode--light .inline-cta h2,
.theme-mode--light .inline-cta h3,
.theme-mode--light .inline-cta h4,
.theme-mode--light .inline-cta h5,
.theme-mode--light .inline-cta h6,
.theme-mode--light .inline-cta p,
.theme-mode--light .inline-cta li,
.theme-mode--light .inline-cta span,
.theme-mode--light .inline-cta a:not(.btn),
.theme-mode--light .inline-cta blockquote {
  color: var(--clr-slate-900);
}
.theme-mode--light .inline-cta .section-eyebrow {
  color: var(--clr-moss-600);
}
.theme-mode--light .inline-cta .section-eyebrow::before {
  background: var(--clr-moss-600);
}
.theme-mode--light .inline-cta .btn--primary {
  background-color: var(--clr-moss-600);
  color: var(--clr-white);
  border-color: var(--clr-moss-600);
}
.theme-mode--light .inline-cta .btn--primary:hover {
  background-color: var(--clr-moss-500);
  border-color: var(--clr-moss-500);
}
.theme-mode--light .inline-cta .btn--outline {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .inline-cta .btn--outline:hover {
  border-color: var(--clr-slate-900);
  background-color: rgba(22, 27, 36, 0.05);
}
.theme-mode--light .inline-cta .btn--ghost {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .inline-cta .btn--ghost:hover {
  background-color: rgba(22, 27, 36, 0.05);
  border-color: rgba(22, 27, 36, 0.5);
}
.theme-mode--light .inline-cta hr,
.theme-mode--light .inline-cta [class*="divider"] {
  border-color: var(--clr-stone-200);
}

/* .final-cta — section level */
.theme-mode--light .final-cta {
  background: color-mix(in srgb, var(--clr-moss-600) 6%, var(--clr-stone-50));
}
.theme-mode--light .final-cta h1,
.theme-mode--light .final-cta h2,
.theme-mode--light .final-cta h3,
.theme-mode--light .final-cta h4,
.theme-mode--light .final-cta h5,
.theme-mode--light .final-cta h6,
.theme-mode--light .final-cta p,
.theme-mode--light .final-cta li,
.theme-mode--light .final-cta span,
.theme-mode--light .final-cta a:not(.btn),
.theme-mode--light .final-cta blockquote {
  color: var(--clr-slate-900);
}
.theme-mode--light .final-cta .section-eyebrow {
  color: var(--clr-moss-600);
}
.theme-mode--light .final-cta .section-eyebrow::before {
  background: var(--clr-moss-600);
}
.theme-mode--light .final-cta .btn--primary {
  background-color: var(--clr-moss-600);
  color: var(--clr-white);
  border-color: var(--clr-moss-600);
}
.theme-mode--light .final-cta .btn--primary:hover {
  background-color: var(--clr-moss-500);
  border-color: var(--clr-moss-500);
}
.theme-mode--light .final-cta .btn--outline {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .final-cta .btn--outline:hover {
  border-color: var(--clr-slate-900);
  background-color: rgba(22, 27, 36, 0.05);
}
.theme-mode--light .final-cta .btn--ghost {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .final-cta .btn--ghost:hover {
  background-color: rgba(22, 27, 36, 0.05);
  border-color: rgba(22, 27, 36, 0.5);
}
.theme-mode--light .final-cta hr,
.theme-mode--light .final-cta [class*="divider"] {
  border-color: var(--clr-stone-200);
}

/* .location-grid-section — section level */
.theme-mode--light .location-grid-section {
  background: color-mix(in srgb, var(--clr-moss-600) 6%, var(--clr-stone-50));
}
.theme-mode--light .location-grid-section h1,
.theme-mode--light .location-grid-section h2,
.theme-mode--light .location-grid-section h3,
.theme-mode--light .location-grid-section h4,
.theme-mode--light .location-grid-section h5,
.theme-mode--light .location-grid-section h6,
.theme-mode--light .location-grid-section p,
.theme-mode--light .location-grid-section li,
.theme-mode--light .location-grid-section span,
.theme-mode--light .location-grid-section a:not(.btn),
.theme-mode--light .location-grid-section blockquote {
  color: var(--clr-slate-900);
}
.theme-mode--light .location-grid-section .section-eyebrow {
  color: var(--clr-moss-600);
}
.theme-mode--light .location-grid-section .section-eyebrow::before {
  background: var(--clr-moss-600);
}
.theme-mode--light .location-grid-section .btn--primary {
  background-color: var(--clr-moss-600);
  color: var(--clr-white);
  border-color: var(--clr-moss-600);
}
.theme-mode--light .location-grid-section .btn--primary:hover {
  background-color: var(--clr-moss-500);
  border-color: var(--clr-moss-500);
}
.theme-mode--light .location-grid-section .btn--outline {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .location-grid-section .btn--outline:hover {
  border-color: var(--clr-slate-900);
  background-color: rgba(22, 27, 36, 0.05);
}
.theme-mode--light .location-grid-section .btn--ghost {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .location-grid-section .btn--ghost:hover {
  background-color: rgba(22, 27, 36, 0.05);
  border-color: rgba(22, 27, 36, 0.5);
}
.theme-mode--light .location-grid-section hr,
.theme-mode--light .location-grid-section [class*="divider"] {
  border-color: var(--clr-stone-200);
}

/* .location-card — card level (inside .location-grid-section) */
.theme-mode--light .location-card {
  background: var(--clr-white);
  border: 1px solid rgba(22, 27, 36, 0.08);
}
.theme-mode--light .location-card__city {
  color: var(--clr-slate-900);
}
.theme-mode--light .location-card__state {
  color: var(--clr-moss-600);
}
.theme-mode--light .location-card__addr {
  color: var(--clr-slate-600);
}
.theme-mode--light .location-card__hours {
  color: var(--clr-slate-600);
}
.theme-mode--light .location-card__link {
  color: var(--clr-moss-600);
}
.theme-mode--light .location-card__phone a,
.theme-mode--light .location-card__email a {
  color: var(--clr-moss-600);
}

/* .section--dark — generic dark wrapper */
.theme-mode--light .section--dark {
  background-color: color-mix(in srgb, var(--clr-moss-600) 6%, var(--clr-stone-50));
  color: var(--clr-slate-900);
}
.theme-mode--light .section--dark h1,
.theme-mode--light .section--dark h2,
.theme-mode--light .section--dark h3,
.theme-mode--light .section--dark h4,
.theme-mode--light .section--dark h5,
.theme-mode--light .section--dark h6,
.theme-mode--light .section--dark p,
.theme-mode--light .section--dark li,
.theme-mode--light .section--dark span,
.theme-mode--light .section--dark a:not(.btn),
.theme-mode--light .section--dark blockquote {
  color: var(--clr-slate-900);
}
.theme-mode--light .section--dark .section-eyebrow {
  color: var(--clr-moss-600);
}
.theme-mode--light .section--dark .section-eyebrow::before {
  background: var(--clr-moss-600);
}
.theme-mode--light .section--dark .btn--primary,
.theme-mode--light .section--dark .btn--primary-dark {
  background-color: var(--clr-moss-600);
  color: var(--clr-white);
  border-color: var(--clr-moss-600);
}
.theme-mode--light .section--dark .btn--primary:hover,
.theme-mode--light .section--dark .btn--primary-dark:hover {
  background-color: var(--clr-moss-500);
  border-color: var(--clr-moss-500);
}
.theme-mode--light .section--dark .btn--outline,
.theme-mode--light .section--dark .btn--outline-dark {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .section--dark .btn--outline:hover,
.theme-mode--light .section--dark .btn--outline-dark:hover {
  border-color: var(--clr-slate-900);
  background-color: rgba(22, 27, 36, 0.05);
}
.theme-mode--light .section--dark .btn--ghost,
.theme-mode--light .section--dark .btn--ghost-light {
  color: var(--clr-slate-900);
  border-color: rgba(22, 27, 36, 0.3);
}
.theme-mode--light .section--dark .btn--ghost:hover,
.theme-mode--light .section--dark .btn--ghost-light:hover {
  background-color: rgba(22, 27, 36, 0.05);
  border-color: rgba(22, 27, 36, 0.5);
}
.theme-mode--light .section--dark hr,
.theme-mode--light .section--dark [class*="divider"] {
  border-color: var(--clr-stone-200);
}

/* .faq-aside-card — dark card in FAQ section */
.theme-mode--light .faq-aside-card {
  background: var(--clr-white);
  border: 1px solid rgba(22, 27, 36, 0.08);
}
.theme-mode--light .faq-aside-card__eyebrow {
  color: var(--clr-moss-600);
}
.theme-mode--light .faq-aside-card__title {
  color: var(--clr-slate-900);
}
.theme-mode--light .faq-aside-card__body {
  color: var(--clr-slate-600);
}
.theme-mode--light .faq-aside-card__detail {
  color: var(--clr-slate-600);
}

/* === MEDIA GALLERY VIDEO (patch-340) === */
.media-gallery__grid {
  grid-auto-flow: dense;
}

.media-gallery__item--video {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.media-gallery__grid[style*="--mg-cols:1"] .media-gallery__item--video {
  grid-column: span 1;
  aspect-ratio: 16/9;
}

/* media gallery — patch-345: side-by-side videos at cols=2 */
.media-gallery__grid[style*="--mg-cols:2"] .media-gallery__item--video {
  grid-column: span 1;
  aspect-ratio: 16/9;
}

.media-gallery__video,
.media-gallery__embed {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--clr-slate-950);
  display: block;
  border: 0;
}

@media (max-width: 639px) {
  .media-gallery__grid {
    grid-template-columns: 1fr !important;
  }
  .media-gallery__item--video {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }
  .media-gallery__item {
    aspect-ratio: 1/1;
  }
}

/* section background images (patch-348) */
.services.section--has-bg-image {
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.services.section--has-bg-image .section__bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--section-bg-overlay);
  z-index: 1;
  pointer-events: none;
}
.services.section--has-bg-image > .container {
  position: relative;
  z-index: 2;
}
.section--light .services.section--has-bg-image .section__bg-overlay {
  background: rgba(255, 255, 255, 0.55);
}
.values.section--has-bg-image {
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.values.section--has-bg-image .section__bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--section-bg-overlay);
  z-index: 1;
  pointer-events: none;
}
.values.section--has-bg-image > .container {
  position: relative;
  z-index: 2;
}
.section--light .values.section--has-bg-image .section__bg-overlay {
  background: rgba(255, 255, 255, 0.55);
}
.process.section--has-bg-image {
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.process.section--has-bg-image .section__bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--section-bg-overlay);
  z-index: 1;
  pointer-events: none;
}
.process.section--has-bg-image > .container {
  position: relative;
  z-index: 2;
}
.section--light .process.section--has-bg-image .section__bg-overlay {
  background: rgba(255, 255, 255, 0.55);
}
.final-cta.section--has-bg-image {
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.final-cta.section--has-bg-image .section__bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--section-bg-overlay);
  z-index: 1;
  pointer-events: none;
}
.final-cta.section--has-bg-image > .container {
  position: relative;
  z-index: 2;
}
.section--light .final-cta.section--has-bg-image .section__bg-overlay {
  background: rgba(255, 255, 255, 0.55);
}
.faq.section--has-bg-image {
  background-image: var(--section-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.faq.section--has-bg-image .section__bg-overlay {
  position: absolute;
  inset: 0;
  background: var(--section-bg-overlay);
  z-index: 1;
  pointer-events: none;
}
.faq.section--has-bg-image > .container {
  position: relative;
  z-index: 2;
}
.section--light .faq.section--has-bg-image .section__bg-overlay {
  background: rgba(255, 255, 255, 0.55);
}
