/* ============================================================================
   Lambert Cleaning — Component Styles
   ============================================================================
   Consumes tokens.css. Defines the reusable component classes used across
   every page of the marketing site. Ordered: base utilities → layout →
   components (nav, hero, awards, cards, trust, footer, forms, toast).

   Naming: BEM-ish but pragmatic. .component, .component__element,
   .component--variant, .is-state.
============================================================================ */


/* ----------------------------------------------------------------------------
   1. UTILITIES
---------------------------------------------------------------------------- */

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

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: var(--space-4);
}

.eyebrow--light { color: var(--color-gold-400); }


/* ----------------------------------------------------------------------------
   2. LAYOUT — container, section, stack
---------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: var(--gutter-sm);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--gutter-md); }
}

@media (min-width: 1024px) {
  .container { padding-inline: var(--gutter-lg); }
}

.container--narrow { max-width: var(--container-md); }
.container--wide   { max-width: var(--container-2xl); }

.section {
  padding-block: var(--section-py-md);
}

.section--sm       { padding-block: var(--section-py-sm); }
.section--lg       { padding-block: var(--section-py-lg); }
.section--xl       { padding-block: var(--section-py-xl); }
.section--alt      { background-color: var(--section-bg-alt); }
.section--dark     { background-color: var(--section-bg-dark); color: var(--text-on-inverse); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark h4, .section--dark h5, .section--dark h6 { color: var(--color-cream-50); }
.section--dark p   { color: var(--color-mist-200); }
.section--dark a   { color: var(--color-gold-300); }
.section--gold     { background-color: var(--section-bg-gold); }


/* ----------------------------------------------------------------------------
   3. BUTTON — primary, secondary, gold, ghost, inverse
---------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-decoration: none;
  border-radius: var(--btn-radius);
  border: var(--border-width-2) solid transparent;
  cursor: pointer;
  transition: var(--btn-transition);
  white-space: nowrap;
  user-select: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus), var(--shadow-md);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Sizes */
.btn--sm {
  height: var(--btn-height-sm);
  padding-inline: var(--btn-padding-x-sm);
  font-size: var(--btn-font-size-sm);
}
.btn--md {
  height: var(--btn-height-md);
  padding-inline: var(--btn-padding-x-md);
  font-size: var(--btn-font-size-md);
}
.btn--lg {
  height: var(--btn-height-lg);
  padding-inline: var(--btn-padding-x-lg);
  font-size: var(--btn-font-size-lg);
}
.btn--xl {
  height: var(--btn-height-xl);
  padding-inline: var(--btn-padding-x-xl);
  font-size: var(--btn-font-size-xl);
}

/* Variant: primary (navy fill) */
.btn--primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-border);
  box-shadow: var(--btn-primary-shadow);
}
.btn--primary:hover {
  background-color: var(--btn-primary-bg-hover);
  box-shadow: var(--btn-primary-shadow-hover);
  transform: translateY(-1px);
}
.btn--primary:active {
  background-color: var(--btn-primary-bg-active);
  transform: translateY(0);
}

/* Variant: secondary (gold outline) */
.btn--secondary {
  background-color: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border-color: var(--btn-secondary-border);
}
.btn--secondary:hover {
  background-color: var(--btn-secondary-bg-hover);
  border-color: var(--btn-secondary-border-hover);
}
.btn--secondary:active {
  background-color: var(--btn-secondary-bg-active);
}

/* Variant: gold (gold fill, navy text) */
.btn--gold {
  background-color: var(--btn-gold-bg);
  color: var(--btn-gold-text);
  border-color: var(--btn-gold-border);
  box-shadow: var(--btn-gold-shadow);
}
.btn--gold:hover {
  background-color: var(--btn-gold-bg-hover);
  box-shadow: var(--btn-gold-shadow-hover);
  transform: translateY(-1px);
}
.btn--gold:active {
  background-color: var(--btn-gold-bg-active);
  transform: translateY(0);
}

/* Variant: ghost */
.btn--ghost {
  background-color: var(--btn-ghost-bg);
  color: var(--btn-ghost-text);
  border-color: var(--btn-ghost-border);
}
.btn--ghost:hover {
  background-color: var(--btn-ghost-bg-hover);
}

/* Variant: inverse (on dark backgrounds) */
.btn--inverse {
  background-color: var(--btn-inverse-bg);
  color: var(--btn-inverse-text);
  border-color: var(--btn-inverse-border);
}
.btn--inverse:hover {
  background-color: var(--btn-inverse-bg-hover);
}

.btn--full { width: 100%; }


/* ----------------------------------------------------------------------------
   4. SITE HEADER / NAVIGATION
---------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: var(--surface-page);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-subtle);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__brand img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .site-header__brand img {
    height: 44px;
    max-width: 170px;
  }
}

/* Main nav (desktop) */
.main-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
  flex: 1;
  justify-content: center;
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.main-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-1);
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--text-strong);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease-out);
  background: transparent;
  border: none;
  cursor: pointer;
}

.main-nav__link:hover,
.main-nav__link[aria-expanded="true"] {
  color: var(--color-gold-600);
}

.main-nav__link[aria-current="page"] {
  color: var(--color-gold-600);
}

.main-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold-500);
  transition: width var(--duration-normal) var(--ease-out), left var(--duration-normal) var(--ease-out);
}

.main-nav__link:hover::after,
.main-nav__link[aria-expanded="true"]::after {
  width: 60%;
  left: 20%;
}

.main-nav__chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.main-nav__link[aria-expanded="true"] .main-nav__chevron {
  transform: rotate(180deg);
}

/* Header CTA cluster (phone + quote button) */
.site-header__cta {
  display: none;
  align-items: center;
  gap: var(--space-4);
}

@media (min-width: 1024px) {
  .site-header__cta { display: flex; }
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--text-strong);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease-out);
}

.site-header__phone:hover {
  color: var(--color-gold-600);
}

.site-header__phone svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}


/* ---------- Mega menu (services dropdown) ---------- */

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(920px, calc(100vw - 48px));
  background-color: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out),
              visibility var(--duration-normal) var(--ease-out);
  z-index: var(--z-dropdown);
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.mega-menu__column-heading {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border-subtle);
}

.mega-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mega-menu__item {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--text-strong);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.mega-menu__item:hover {
  background-color: var(--color-cream-100);
  color: var(--color-gold-700);
}

.mega-menu__footer {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-subtle);
}

.mega-menu__footer a {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-navy-600);
  text-decoration: none;
}

.mega-menu__footer a:hover {
  color: var(--color-gold-600);
}


/* ---------- Mobile controls ---------- */

.site-header__mobile-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

@media (min-width: 1024px) {
  .site-header__mobile-cta { display: none; }
}

.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--text-strong);
  cursor: pointer;
  transition: var(--transition-colors);
}

.hamburger:hover {
  background-color: var(--color-cream-100);
}

.hamburger svg {
  width: 22px;
  height: 22px;
}

/* ---------- Mobile drawer ---------- */

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  visibility: hidden;
  pointer-events: none;
}

.mobile-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 19, 34, 0);
  transition: background-color var(--duration-normal) var(--ease-out);
}

.mobile-drawer.is-open .mobile-drawer__backdrop {
  background-color: rgba(10, 19, 34, 0.55);
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 88vw);
  background-color: var(--surface-page);
  box-shadow: var(--shadow-2xl);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer__close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--text-strong);
}

.mobile-drawer__close svg { width: 18px; height: 18px; }

.mobile-drawer__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  flex: 1;
}

.mobile-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-3);
  font-family: var(--font-ui);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-strong);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-colors);
}

.mobile-drawer__link:hover {
  background-color: var(--color-cream-100);
  color: var(--color-gold-700);
}

.mobile-drawer__sublist {
  list-style: none;
  padding: 0 0 0 var(--space-5);
  margin: 0 0 var(--space-2) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-drawer__sublink {
  display: block;
  padding: var(--space-3) var(--space-3);
  font-size: var(--text-base);
  color: var(--text-default);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.mobile-drawer__sublink:hover {
  background-color: var(--color-cream-100);
  color: var(--color-gold-700);
}

.mobile-drawer__footer {
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mobile-drawer__contact {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}


/* ----------------------------------------------------------------------------
   5. HOMEPAGE HERO
---------------------------------------------------------------------------- */

.hero {
  padding-block: var(--space-12) var(--space-16);
  background-color: var(--surface-page);
  background-image:
    radial-gradient(ellipse at 85% 20%, rgba(200, 148, 45, 0.08), transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(69, 89, 63, 0.06), transparent 55%);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero { padding-block: var(--space-20) var(--space-24); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.45fr 1fr;
    gap: var(--space-16);
  }
}

.hero__content {
  max-width: 620px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: var(--weight-black);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-navy-900);
  margin-block: var(--space-4);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.hero__headline em {
  font-style: italic;
  color: var(--color-gold-600);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero__sub {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-default);
  max-width: 56ch;
  margin-block: var(--space-6);
}

@media (min-width: 768px) {
  .hero__sub { font-size: var(--text-xl); }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.hero__rating {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px dashed var(--border-default);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.hero__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-gold-400);
}

.hero__stars svg { width: 16px; height: 16px; fill: currentColor; }

.hero__feature {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__feature img,
.hero__feature svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(31, 50, 86, 0.18));
}

@media (min-width: 1024px) {
  .hero__feature img,
  .hero__feature svg { max-width: 420px; }
}

.hero__feature-caption {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-navy-700);
  color: var(--color-cream-50);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}


/* ----------------------------------------------------------------------------
   6. AWARD SEAL ROW
---------------------------------------------------------------------------- */

.awards {
  background-color: var(--section-bg-alt);
  padding-block: var(--section-py-lg);
  position: relative;
}

.awards__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.awards__headline {
  font-family: var(--font-heading);
  font-size: var(--text-section-title);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-navy-900);
  margin-block: var(--space-3);
  font-variation-settings: "opsz" 72, "SOFT" 30;
}

.awards__headline em {
  font-style: italic;
  color: var(--color-gold-600);
  font-variation-settings: "opsz" 72, "SOFT" 100;
}

.awards__sub {
  font-size: var(--text-lg);
  color: var(--text-default);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-5);
}

.awards__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  justify-items: center;
  align-items: center;
}

@media (min-width: 640px) {
  .awards__row { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
}

@media (min-width: 1024px) {
  .awards__row { grid-template-columns: repeat(6, 1fr); gap: var(--space-4); }
}

.awards__badge {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1;
  transition: transform var(--duration-normal) var(--ease-out),
              filter var(--duration-normal) var(--ease-out);
  filter: drop-shadow(0 8px 16px rgba(31, 50, 86, 0.12));
}

.awards__badge:hover {
  transform: translateY(-4px) rotate(-1deg);
  filter: drop-shadow(0 16px 32px rgba(31, 50, 86, 0.22));
}

.awards__badge--featured {
  max-width: 180px;
}

.awards__footer {
  margin-top: var(--space-10);
  text-align: center;
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: var(--leading-relaxed);
}

.awards__footer strong {
  color: var(--text-strong);
  font-weight: var(--weight-semibold);
}


/* ----------------------------------------------------------------------------
   7. TRUST INDICATORS STRIP
---------------------------------------------------------------------------- */

.trust-strip {
  background-color: var(--color-navy-700);
  color: var(--color-cream-50);
  padding-block: var(--space-8);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 640px) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .trust-strip__grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.trust-strip__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--color-gold-400);
}

.trust-strip__label {
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-cream-50);
  line-height: var(--leading-snug);
}

.trust-strip__sublabel {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  color: var(--color-mist-200);
  margin-top: 2px;
}


/* ----------------------------------------------------------------------------
   8. SERVICE CARD
---------------------------------------------------------------------------- */

.services-hub__header {
  max-width: 640px;
  margin-bottom: var(--space-10);
}

.services-hub__title {
  font-family: var(--font-heading);
  font-size: var(--text-section-title);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-navy-900);
  margin-block: var(--space-3);
  font-variation-settings: "opsz" 72, "SOFT" 30;
}

.services-hub__sub {
  font-size: var(--text-lg);
  color: var(--text-default);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-4);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding-md);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--card-shadow);
  transition: var(--card-transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-400), var(--color-gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover {
  border-color: var(--card-border-hover);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus), var(--shadow-lg);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-navy-600);
  margin-bottom: var(--space-5);
  flex-shrink: 0;
}

.service-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--color-navy-900);
  margin-bottom: var(--space-3);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.service-card__desc {
  font-size: var(--text-base);
  color: var(--text-default);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  flex: 1;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-navy-600);
  letter-spacing: var(--tracking-wide);
}

.service-card:hover .service-card__cta {
  color: var(--color-gold-600);
}

.service-card__arrow {
  transition: transform var(--duration-normal) var(--ease-out);
}

.service-card:hover .service-card__arrow {
  transform: translateX(4px);
}


/* ----------------------------------------------------------------------------
   9. REVIEWS / TESTIMONIAL DISPLAY
---------------------------------------------------------------------------- */

.reviews {
  background-color: var(--surface-page);
  padding-block: var(--section-py-lg);
}

.reviews__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.reviews__title {
  font-family: var(--font-heading);
  font-size: var(--text-section-title);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-navy-900);
  margin-block: var(--space-3);
  font-variation-settings: "opsz" 72, "SOFT" 30;
}

.reviews__aggregate {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-top: var(--space-4);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background-color: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  padding: var(--card-padding-md);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-gold-400);
  margin-bottom: var(--space-4);
}

.review-card__stars svg { width: 18px; height: 18px; fill: currentColor; }

.review-card__quote {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-strong);
  margin-bottom: var(--space-5);
  flex: 1;
}

.review-card__quote::before {
  content: "\201C";
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-gold-300);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 2px;
}

.review-card__attr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.review-card__attr-name {
  font-weight: var(--weight-semibold);
  color: var(--text-default);
}

.review-card__source {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  color: var(--text-subtle);
}


/* ----------------------------------------------------------------------------
   10. FAMILY STORY BLOCK (homepage)
---------------------------------------------------------------------------- */

.family-story {
  background-color: var(--color-navy-800);
  color: var(--color-cream-50);
  padding-block: var(--section-py-lg);
  position: relative;
  overflow: hidden;
}

.family-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200, 148, 45, 0.12), transparent 60%);
  pointer-events: none;
}

.family-story__inner {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.family-story__title {
  font-family: var(--font-heading);
  font-size: var(--text-section-title);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-cream-50);
  margin-block: var(--space-4);
  font-variation-settings: "opsz" 72, "SOFT" 30;
}

.family-story__title em {
  font-style: italic;
  color: var(--color-gold-400);
  font-variation-settings: "opsz" 72, "SOFT" 100;
}

.family-story__body {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-mist-200);
  margin-block: var(--space-6);
}

@media (min-width: 768px) {
  .family-story__body { font-size: var(--text-xl); }
}

.family-story__body strong {
  color: var(--color-cream-50);
  font-weight: var(--weight-semibold);
}

.family-story__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-8);
}


/* ----------------------------------------------------------------------------
   11. SERVICE AREA BLOCK (homepage)
---------------------------------------------------------------------------- */

.service-area {
  background-color: var(--color-cream-100);
  padding-block: var(--section-py-lg);
}

.service-area__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 1024px) {
  .service-area__grid { grid-template-columns: 1fr 1.2fr; gap: var(--space-16); }
}

.service-area__title {
  font-family: var(--font-heading);
  font-size: var(--text-section-title);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-navy-900);
  margin-block: var(--space-3);
  font-variation-settings: "opsz" 72, "SOFT" 30;
}

.service-area__body {
  font-size: var(--text-lg);
  color: var(--text-default);
  line-height: var(--leading-relaxed);
  margin-block: var(--space-5);
}

.service-area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.service-area__city {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background-color: var(--surface-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-navy-700);
  text-decoration: none;
  transition: var(--transition-colors);
}

.service-area__city:hover {
  background-color: var(--color-gold-50);
  border-color: var(--color-gold-300);
  color: var(--color-navy-800);
}

.service-area__map {
  background: linear-gradient(135deg, var(--color-cream-50), var(--color-cream-100));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.service-area__map-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.service-area__map-icon {
  width: 64px;
  height: 64px;
  color: var(--color-sage-400);
}

.service-area__map-label {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--color-navy-800);
  line-height: var(--leading-snug);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.service-area__map-sub {
  font-size: var(--text-sm);
  color: var(--text-muted);
}


/* ----------------------------------------------------------------------------
   12. FINAL CTA (homepage)
---------------------------------------------------------------------------- */

.final-cta {
  background-color: var(--color-gold-400);
  background-image: linear-gradient(135deg, var(--color-gold-300), var(--color-gold-500));
  color: var(--color-navy-900);
  padding-block: var(--section-py-lg);
  text-align: center;
}

.final-cta__inner {
  max-width: 720px;
  margin-inline: auto;
}

.final-cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-section-title);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-navy-900);
  margin-block: var(--space-4);
  font-variation-settings: "opsz" 72, "SOFT" 30;
}

.final-cta__body {
  font-size: var(--text-lg);
  color: var(--color-navy-800);
  line-height: var(--leading-relaxed);
  margin-block: var(--space-5);
}

.final-cta__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-8);
}


/* ----------------------------------------------------------------------------
   13. SITE FOOTER
---------------------------------------------------------------------------- */

.site-footer {
  background-color: var(--color-navy-800);
  color: var(--color-mist-200);
  padding-block: var(--space-16) var(--space-8);
}

.site-footer a {
  color: var(--color-mist-200);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.site-footer a:hover {
  color: var(--color-gold-400);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 640px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr 1.3fr; gap: var(--space-12); }
}

.site-footer__heading {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold-400);
  margin-bottom: var(--space-5);
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.site-footer__list a {
  font-size: var(--text-base);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.site-footer__contact strong {
  color: var(--color-cream-50);
  font-weight: var(--weight-semibold);
}

.site-footer__hours {
  font-size: var(--text-sm);
  color: var(--color-mist-300);
  padding: var(--space-3) var(--space-4);
  background-color: rgba(252, 250, 245, 0.04);
  border-left: 2px solid var(--color-gold-500);
  border-radius: var(--radius-sm);
}

.site-footer__hours span {
  display: block;
}

.site-footer__hours span + span {
  margin-top: var(--space-1);
}

.site-footer__hours-label {
  color: var(--color-gold-400);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: var(--text-xs);
}

.site-footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.site-footer__social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-navy-500);
  border-radius: var(--radius-md);
  color: var(--color-mist-200);
}

.site-footer__social a:hover {
  border-color: var(--color-gold-400);
  color: var(--color-gold-400);
}

.site-footer__social svg { width: 18px; height: 18px; fill: currentColor; }

.site-footer__bar {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-navy-600);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-mist-400);
}

.site-footer__bar-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}


/* ----------------------------------------------------------------------------
   14. SKIP LINK (a11y)
---------------------------------------------------------------------------- */

.skip-to-content {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: var(--z-skip-link);
  padding: var(--space-3) var(--space-5);
  background-color: var(--color-navy-700);
  color: var(--color-cream-50);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: var(--weight-semibold);
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-to-content:focus {
  top: var(--space-4);
}

/* Prevent body scroll when mobile drawer is open */
body.drawer-open {
  overflow: hidden;
}


/* ============================================================================
   15. INTERIOR PAGE HERO
   ============================================================================ */

.interior-hero {
  padding-block: var(--space-10) var(--space-6);
  background-color: var(--surface-page);
  background-image:
    radial-gradient(ellipse at 85% 30%, rgba(200, 148, 45, 0.06), transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(69, 89, 63, 0.04), transparent 55%);
}

/* Tighten the gap between hero and the first content section */
.interior-hero + .section {
  padding-top: var(--space-10, 2.5rem);
}

@media (min-width: 768px) {
  .interior-hero { padding-block: var(--space-12) var(--space-8); }
}

.interior-hero__inner {
  max-width: var(--container-md);
}

.interior-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-page-title);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-navy-900);
  margin-block: var(--space-4);
  font-variation-settings: "opsz" 72, "SOFT" 30;
}

.interior-hero__title em {
  font-style: italic;
  color: var(--color-gold-600);
  font-variation-settings: "opsz" 72, "SOFT" 100;
}

.interior-hero__sub {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--text-default);
  max-width: 56ch;
  margin-block: var(--space-5);
}

.interior-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}


/* ============================================================================
   16. BREADCRUMBS
   ============================================================================ */

.breadcrumbs {
  /* Visually hidden but BreadcrumbList JSON-LD schema still emits for SEO */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumbs__item:not(:last-child)::after {
  content: "\203A";
  color: var(--color-mist-300);
  font-size: var(--text-base);
}

.breadcrumbs__item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.breadcrumbs__item a:hover {
  color: var(--color-gold-600);
  text-decoration: underline;
}

.breadcrumbs__item[aria-current="page"] {
  color: var(--text-strong);
  font-weight: var(--weight-semibold);
}


/* ============================================================================
   17. PROSE — article-style content sections on interior pages
   ============================================================================ */

.prose {
  max-width: var(--container-md);
  color: var(--text-default);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.prose > * + * {
  margin-top: var(--space-6);
}

.prose p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-default);
}

.prose p.lead {
  font-size: var(--text-xl);
  color: var(--text-strong);
  font-weight: var(--weight-medium);
  line-height: var(--leading-relaxed);
}

.prose h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-navy-900);
  margin-top: var(--space-12);
  margin-bottom: var(--space-5);
  font-variation-settings: "opsz" 48, "SOFT" 30;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--color-navy-800);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  font-variation-settings: "opsz" 30, "SOFT" 30;
}

.prose ul, .prose ol {
  padding-left: var(--space-6);
  color: var(--text-default);
}

.prose li {
  margin-top: var(--space-2);
  line-height: var(--leading-relaxed);
}

.prose ul li::marker {
  color: var(--color-gold-500);
}

.prose strong {
  color: var(--text-strong);
  font-weight: var(--weight-semibold);
}

.prose em {
  font-style: italic;
}

.prose a {
  color: var(--color-navy-600);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--color-gold-600);
}


/* ============================================================================
   18. CHECKLIST — for "What's included" sections
   ============================================================================ */

.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
}

@media (min-width: 640px) {
  .checklist { grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-8); }
}

.checklist li {
  position: relative;
  padding-left: var(--space-8);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-default);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 20px;
  height: 20px;
  background-color: var(--color-gold-400);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6 L5 9 L10 3' stroke='%230A1322' stroke-width='1.75' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}


/* ============================================================================
   19. PROCESS STEPS — numbered "How it works" block
   ============================================================================ */

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  counter-reset: step;
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

@media (min-width: 1024px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
}

.process-step {
  position: relative;
  padding: var(--space-6);
  background-color: var(--surface-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  font-variation-settings: "opsz" 48, "SOFT" 30;
  color: var(--color-gold-500);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-navy-800);
  margin-bottom: var(--space-3);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.process-step__body {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-default);
}


/* ============================================================================
   20. WHY-BLOCK — "Why Lambert for X" differentiator cards
   ============================================================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}

.why-item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: var(--surface-page);
  border-left: 3px solid var(--color-gold-400);
  border-radius: var(--radius-md);
}

.section--alt .why-item {
  background-color: var(--color-cream-50);
}

.why-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--color-gold-500);
}

.why-item__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-navy-900);
  margin-bottom: var(--space-2);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.why-item__body {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-default);
}


/* ============================================================================
   21. FAQ ACCORDION (native details/summary)
   ============================================================================ */

.faq {
  max-width: var(--container-md);
  margin-top: var(--space-8);
}

.faq__item {
  border-bottom: 1px solid var(--border-subtle);
  padding-block: var(--space-2);
}

.faq__item[open] {
  padding-bottom: var(--space-5);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-strong);
  cursor: pointer;
  list-style: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  color: var(--color-gold-600);
}

.faq__question::after {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-color: var(--color-cream-100);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6 L8 10 L12 6' stroke='%231F3256' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--duration-normal) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out);
}

.faq__item[open] .faq__question::after {
  transform: rotate(180deg);
  background-color: var(--color-gold-100);
}

.faq__answer {
  padding-top: var(--space-3);
  padding-right: var(--space-10);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-default);
}

.faq__answer p + p {
  margin-top: var(--space-3);
}


/* ============================================================================
   22. RELATED SERVICES strip (bottom of service pages)
   ============================================================================ */

.related-services {
  background-color: var(--section-bg-alt);
  padding-block: var(--section-py-md);
}

.related-services__header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.related-services__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy-900);
  font-variation-settings: "opsz" 48, "SOFT" 30;
}

.related-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .related-services__grid { grid-template-columns: repeat(3, 1fr); }
}


/* ============================================================================
   23. SECTION CTA — inline call-to-action block
   ============================================================================ */

.section-cta {
  margin-block: var(--space-10);
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--color-cream-100), var(--color-gold-50));
  border: 1px solid var(--color-gold-200);
  border-radius: var(--radius-xl);
  text-align: center;
}

.section-cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy-900);
  margin-bottom: var(--space-3);
  font-variation-settings: "opsz" 30, "SOFT" 30;
}

.section-cta__body {
  font-size: var(--text-lg);
  color: var(--text-default);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
  max-width: 52ch;
  margin-inline: auto;
}

.section-cta__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}


/* ============================================================================
   24. CONTENT LAYOUT — two-column content + sidebar for interior pages
   ============================================================================ */

.page-body {
  padding-block: var(--space-12) var(--space-16);
}

.page-body__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 1024px) {
  .page-body__grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: var(--space-16);
  }
}

.page-body__main { min-width: 0; }

.page-body__aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.aside-card {
  padding: var(--space-6);
  background-color: var(--color-cream-100);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.aside-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-navy-900);
  margin-bottom: var(--space-3);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.aside-card__body {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-default);
  margin-bottom: var(--space-4);
}

.aside-card--gold {
  background-color: var(--color-navy-700);
  border-color: var(--color-navy-600);
  color: var(--color-cream-50);
}

.aside-card--gold .aside-card__title,
.aside-card--gold .aside-card__body { color: var(--color-cream-50); }


/* ============================================================================
   25. BEFORE/AFTER PLACEHOLDER (until real photos are available)
   ============================================================================ */

.before-after {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin: var(--space-10) 0;
}

@media (min-width: 640px) {
  .before-after { grid-template-columns: 1fr 1fr; }
}

.before-after__slot {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-cream-100), var(--color-mist-200));
  border: 1px dashed var(--color-mist-300);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-6);
  color: var(--text-muted);
}

.before-after__label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: var(--space-2);
}

.before-after__note {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}


/* ============================================================================
   26. CONTACT FORM (simple) — used on /contact/ and elsewhere
   ============================================================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .form-grid--2col { grid-template-columns: 1fr 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field__label {
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  color: var(--label-color);
  margin-bottom: var(--label-margin-bottom);
}

.form-field__label .required {
  color: var(--color-error);
  margin-left: 2px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  height: var(--input-height-md);
  padding: var(--input-padding-y) var(--input-padding-x);
  font-family: var(--input-font-family);
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: var(--input-line-height);
  color: var(--input-text);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--input-radius);
  box-shadow: var(--input-shadow);
  transition: var(--input-transition);
}

.form-field textarea {
  height: auto;
  min-height: 140px;
  resize: vertical;
  padding-block: var(--input-padding-x);
}

.form-field input:hover,
.form-field textarea:hover,
.form-field select:hover {
  border-color: var(--input-border-hover);
  background-color: var(--input-bg-hover);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--input-border-focus);
  background-color: var(--input-bg-focus);
  box-shadow: var(--input-shadow-focus);
}

.form-field__helper {
  font-size: var(--helper-font-size);
  color: var(--helper-color);
  margin-top: var(--helper-margin-top);
}


/* ============================================================================
   27. NAP block (for contact page)
   ============================================================================ */

.nap-block {
  background-color: var(--color-navy-700);
  color: var(--color-cream-50);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
}

.nap-block h3 {
  color: var(--color-gold-400);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-4);
  font-family: var(--font-ui);
}

.nap-block__row {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-navy-600);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}

.nap-block__row:last-child { border-bottom: 0; }

.nap-block__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-gold-400);
  margin-top: 2px;
}

.nap-block a {
  color: var(--color-cream-50);
  text-decoration: none;
  font-weight: var(--weight-semibold);
}

.nap-block a:hover {
  color: var(--color-gold-300);
  text-decoration: underline;
}

.nap-block__note {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-navy-600);
  font-size: var(--text-sm);
  color: var(--color-mist-300);
  font-style: italic;
  line-height: var(--leading-relaxed);
}


/* ============================================================================
   28. NOT FOUND (404)
   ============================================================================ */

.not-found {
  padding-block: var(--section-py-xl);
  text-align: center;
}

.not-found__number {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 4rem + 10vw, 12rem);
  font-weight: var(--weight-black);
  line-height: 1;
  color: var(--color-gold-300);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: var(--tracking-tighter);
}

.not-found__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy-900);
  margin-block: var(--space-4);
  font-variation-settings: "opsz" 48, "SOFT" 30;
}

.not-found__body {
  font-size: var(--text-lg);
  color: var(--text-default);
  max-width: 560px;
  margin-inline: auto;
  line-height: var(--leading-relaxed);
}

.not-found__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-8);
}


/* ============================================================================
   29. THANK YOU page
   ============================================================================ */

.thank-you {
  padding-block: var(--section-py-xl);
  text-align: center;
}

.thank-you__icon {
  width: 80px;
  height: 80px;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  color: var(--color-gold-500);
}

.thank-you__title {
  font-family: var(--font-heading);
  font-size: var(--text-page-title);
  font-weight: var(--weight-bold);
  color: var(--color-navy-900);
  margin-block: var(--space-4);
  font-variation-settings: "opsz" 72, "SOFT" 30;
}

.thank-you__body {
  font-size: var(--text-lg);
  color: var(--text-default);
  max-width: 560px;
  margin-inline: auto;
  line-height: var(--leading-relaxed);
}


/* ============================================================================
   30. QUOTE FORM (multi-step lead capture)
   ============================================================================ */

.quote-form {
  max-width: 760px;
  margin-inline: auto;
  background-color: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-8);
}

@media (min-width: 768px) {
  .quote-form { padding: var(--space-10); }
}

.quote-form__progress {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.quote-form__progress-step {
  flex: 1;
  height: 4px;
  background-color: var(--color-mist-200);
  border-radius: var(--radius-full);
  transition: background-color var(--duration-normal) var(--ease-out);
}

.quote-form__progress-step.is-active,
.quote-form__progress-step.is-complete {
  background-color: var(--color-gold-400);
}

.quote-form__step-label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: var(--space-3);
}

.quote-form__step-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-navy-900);
  margin-bottom: var(--space-4);
  font-variation-settings: "opsz" 48, "SOFT" 30;
}

.quote-form__step-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.quote-form__step {
  display: none;
}

.quote-form__step.is-active {
  display: block;
}

.quote-form__choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

@media (min-width: 640px) {
  .quote-form__choices { grid-template-columns: 1fr 1fr; }
}

.quote-form__choice {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: var(--surface-page);
  border: 2px solid var(--border-default);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  transition: var(--transition-colors), transform var(--duration-fast) var(--ease-out);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--text-strong);
  width: 100%;
}

.quote-form__choice:hover {
  border-color: var(--color-gold-400);
  background-color: var(--color-gold-50);
}

.quote-form__choice:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-color: var(--color-gold-400);
}

.quote-form__choice.is-selected {
  border-color: var(--color-gold-500);
  background-color: var(--color-gold-100);
}

.quote-form__choice-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--color-navy-600);
}

.quote-form__choice-content {
  flex: 1;
}

.quote-form__choice-title {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-navy-900);
  margin-bottom: 2px;
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.quote-form__choice-desc {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.quote-form__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}

.quote-form__back {
  font-size: var(--text-sm);
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  font-family: inherit;
}

.quote-form__back:hover { color: var(--color-gold-600); }

.quote-form__back[hidden] { display: none; }


/* ============================================================================
   31. TEAM GRID
   ============================================================================ */

.team-leadership {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-block: var(--space-10);
}

@media (min-width: 768px) {
  .team-leadership { grid-template-columns: repeat(3, 1fr); }
}

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

.leader-card__photo {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-cream-100), var(--color-mist-200));
  border: 4px solid var(--color-gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy-700);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  box-shadow: var(--shadow-md);
}

.leader-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy-900);
  margin-bottom: var(--space-1);
  font-variation-settings: "opsz" 30, "SOFT" 30;
}

.leader-card__role {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-gold-600);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-3);
}

.leader-card__bio {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-default);
  max-width: 36ch;
  margin-inline: auto;
}

.team-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-block: var(--space-10);
  padding: var(--space-8);
  background-color: var(--color-cream-100);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .team-stats { grid-template-columns: repeat(4, 1fr); }
}

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

.team-stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  color: var(--color-navy-700);
  line-height: 1;
  font-variation-settings: "opsz" 72, "SOFT" 30;
}

.team-stat__label {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: var(--weight-medium);
}

.careers-callout {
  background-color: var(--color-navy-700);
  color: var(--color-cream-50);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border-left: 6px solid var(--color-gold-400);
  margin-block: var(--space-10);
}

.careers-callout h2 {
  color: var(--color-cream-50);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
  font-variation-settings: "opsz" 30, "SOFT" 30;
}

.careers-callout p {
  color: var(--color-mist-200);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.careers-callout strong {
  color: var(--color-gold-300);
}


/* ============================================================================
   32. CITY LIST grid (service area hub)
   ============================================================================ */

.county-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-block: var(--space-10);
}

@media (min-width: 768px) {
  .county-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .county-grid { grid-template-columns: repeat(4, 1fr); }
}

.county-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  background-color: var(--color-cream-100);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: var(--card-transition);
  box-shadow: var(--shadow-sm);
}

.county-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold-300);
}

.county-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-navy-900);
  margin-bottom: var(--space-2);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.county-card__count {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.county-card__cities {
  font-size: var(--text-sm);
  color: var(--text-default);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}

.county-card__link {
  margin-top: auto;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-navy-600);
}

.county-card:hover .county-card__link {
  color: var(--color-gold-600);
}


/* ============================================================================
   33. AWARDS DETAIL page
   ============================================================================ */

.awards-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-block: var(--space-10);
}

@media (min-width: 640px) {
  .awards-detail { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .awards-detail { grid-template-columns: repeat(3, 1fr); }
}

.award-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background-color: var(--color-cream-100);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.award-card__badge {
  width: 160px;
  height: 160px;
  margin-bottom: var(--space-4);
  filter: drop-shadow(0 8px 16px rgba(31, 50, 86, 0.16));
}

.award-card__year {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-gold-600);
  margin-bottom: var(--space-1);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.award-card__category {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--color-navy-900);
  margin-bottom: var(--space-2);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.award-card__source {
  font-size: var(--text-sm);
  color: var(--text-muted);
}


/* ============================================================================
   34. REVIEWS aggregate display
   ============================================================================ */

.reviews-aggregate-card {
  background: linear-gradient(135deg, var(--color-navy-700), var(--color-navy-800));
  color: var(--color-cream-50);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-block: var(--space-10);
}

.reviews-aggregate-card__rating {
  display: inline-flex;
  gap: var(--space-1);
  color: var(--color-gold-400);
  margin-bottom: var(--space-3);
}

.reviews-aggregate-card__rating svg { width: 28px; height: 28px; fill: currentColor; }

.reviews-aggregate-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: var(--weight-bold);
  color: var(--color-cream-50);
  line-height: 1;
  margin-bottom: var(--space-3);
  font-variation-settings: "opsz" 96, "SOFT" 30;
}

.reviews-aggregate-card__sub {
  font-size: var(--text-lg);
  color: var(--color-mist-200);
}

.reviews-aggregate-card__sources {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-navy-600);
}

.reviews-aggregate-card__source-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background-color: rgba(252, 250, 245, 0.06);
  border: 1px solid rgba(252, 250, 245, 0.18);
  border-radius: var(--radius-full);
  color: var(--color-cream-50);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  transition: var(--transition-colors);
}

.reviews-aggregate-card__source-link:hover {
  background-color: rgba(200, 148, 45, 0.18);
  border-color: var(--color-gold-400);
  color: var(--color-gold-300);
}


/* ============================================================================
   35. BLOG hub
   ============================================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: var(--card-transition);
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold-300);
}

.blog-card__category {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: var(--space-3);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-navy-900);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-3);
  font-variation-settings: "opsz" 24, "SOFT" 30;
}

.blog-card__excerpt {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-default);
  margin-bottom: var(--space-4);
  flex: 1;
}

.blog-card__image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin: calc(-1 * var(--space-6)) calc(-1 * var(--space-6)) 0;
  margin-bottom: var(--space-4);
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.03);
}

.blog-card__meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-3);
}


/* ============================================================================
   36. COMMERCIAL HUB sections
   ============================================================================ */

.commercial-hero {
  background: linear-gradient(135deg, var(--color-navy-700), var(--color-navy-900));
  color: var(--color-cream-50);
  padding-block: var(--space-20) var(--space-16);
  position: relative;
  overflow: hidden;
}

.commercial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(200, 148, 45, 0.18), transparent 60%);
  pointer-events: none;
}

.commercial-hero__inner {
  position: relative;
  max-width: var(--container-md);
}

.commercial-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold-400);
  margin-bottom: var(--space-4);
}

.commercial-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: var(--weight-black);
  line-height: var(--leading-tight);
  color: var(--color-cream-50);
  margin-bottom: var(--space-5);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.commercial-hero__title em {
  font-style: italic;
  color: var(--color-gold-400);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.commercial-hero__sub {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--color-mist-200);
  margin-bottom: var(--space-6);
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================================
   37. LEGAL pages (privacy, terms)
   ============================================================================ */

.legal-content {
  max-width: var(--container-sm);
}

.legal-content h2 {
  margin-top: var(--space-10);
}

.legal-content h2:first-child { margin-top: 0; }


/* ============================================================================
   38. BLOG POST (article layout)
   ============================================================================ */

.blog-post-hero {
  padding-block: var(--space-14) var(--space-10);
  background-color: var(--surface-page);
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(200, 148, 45, 0.06), transparent 60%);
}

.blog-post-hero__inner {
  max-width: var(--container-md);
}

.blog-post-hero__category {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: var(--space-4);
}

.blog-post-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-page-title);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-navy-900);
  margin-block: var(--space-3);
  font-variation-settings: "opsz" 96, "SOFT" 30;
}

.blog-post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.blog-post-hero__meta strong {
  color: var(--text-strong);
  font-weight: var(--weight-semibold);
}

.blog-post-hero__meta-divider {
  width: 4px;
  height: 4px;
  background-color: var(--color-mist-300);
  border-radius: var(--radius-full);
}

.blog-post-body {
  padding-block: var(--space-12) var(--space-16);
}

.blog-post-body .prose {
  max-width: var(--container-sm);
}

.blog-post-body .prose h2 {
  margin-top: var(--space-12);
}

.blog-post-body .prose h3 {
  margin-top: var(--space-10);
}

.blog-post-pullquote {
  margin-block: var(--space-10);
  padding: var(--space-8);
  background-color: var(--color-cream-100);
  border-left: 4px solid var(--color-gold-400);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-style: italic;
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--color-navy-900);
  font-variation-settings: "opsz" 30, "SOFT" 100;
}

.blog-post-pullquote::before {
  content: "\201C";
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--color-gold-500);
  font-size: var(--text-4xl);
  line-height: 0;
  vertical-align: -12px;
  margin-right: var(--space-2);
}

.blog-related {
  background-color: var(--section-bg-alt);
  padding-block: var(--section-py-md);
}

.blog-related__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--color-navy-900);
  font-variation-settings: "opsz" 48, "SOFT" 30;
}


/* ============================================================================
   39. CITY x SERVICE page accents
   ============================================================================ */

.city-service-context {
  padding: var(--space-6);
  background-color: var(--color-cream-100);
  border-left: 4px solid var(--color-gold-400);
  border-radius: var(--radius-md);
  margin-block: var(--space-8);
}

.city-service-context__label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: var(--space-2);
}

.city-service-context__body {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-default);
}

