/* ---- css/services-page.css ---- */
/* ─── SERVICES OVERVIEW — enhanced layout & polish ───────────────── */

.services-page {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(201, 169, 110, 0.07) 0%, transparent 42%),
    radial-gradient(ellipse at 0% 48%, rgba(154, 123, 95, 0.05) 0%, transparent 38%),
    #faf9f7;
}

.services-page .page-main {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .services-page .page-main {
    max-width: min(1380px, 100%);
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 640px) and (max-width: 900px) {
  .services-page .page-main {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (min-width: 768px) and (max-width: 900px) {
  .services-page .page-main {
    padding-left: max(24px, var(--site-edge));
    padding-right: max(24px, var(--site-edge));
  }
}

.services-page .page-section {
  padding: 40px 0;
}

@media (min-width: 768px) {
  .services-page .page-section {
    padding: 56px 0;
  }
}

@media (min-width: 1100px) {
  .services-page .page-section {
    padding: 80px 0;
  }
}

/* Mobile-first — was 56px/52px desktop padding causing overflow on phones */
.services-page .page-section--surface,
.services-page .page-section--graphite {
  padding: 24px 16px !important;
  margin-bottom: 20px;
  overflow: visible !important; /* beat spacing-fix card overflow:hidden clip */
  min-width: 0;
}

@media (min-width: 768px) {
  .services-page .page-section--surface,
  .services-page .page-section--graphite {
    padding: 44px 36px !important;
  }
}

@media (min-width: 1100px) {
  .services-page .page-section--surface,
  .services-page .page-section--graphite {
    padding: 56px 52px !important;
    margin-bottom: 32px;
  }
}

.services-page .page-grid-2 {
  gap: 56px 72px;
}

.services-page .page-grid-2--wide-left {
  grid-template-columns: 1.15fr 0.85fr;
}

/* Service detail — intro panel (replaces split column + spec list) */
.services-page .service-intro-section {
  padding-top: 48px;
  padding-bottom: 56px;
}

.service-intro-panel {
  position: relative;
  padding: 28px 20px;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 96% 4%, rgba(201, 169, 110, 0.12) 0%, transparent 46%),
    radial-gradient(ellipse at 0% 100%, rgba(154, 123, 95, 0.06) 0%, transparent 42%),
    linear-gradient(160deg, #ffffff 0%, #faf8f4 100%);
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow:
    0 20px 56px rgba(26, 24, 22, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.service-intro-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(
    --intro-accent-bar,
    linear-gradient(90deg, #9a7b5f 0%, #c9a96e 50%, #8a6a47 100%)
  );
}

.service-intro-panel--acoustic {
  --intro-accent: #8a6a47;
  --intro-accent-bar: linear-gradient(90deg, #8a6a47 0%, #c9a96e 100%);
}

.service-intro-panel--fire {
  --intro-accent: #8a5040;
  --intro-accent-bar: linear-gradient(90deg, #8a5040 0%, #c9a96e 100%);
}

.service-intro-panel--booth {
  --intro-accent: #9a7b5f;
  --intro-accent-bar: linear-gradient(90deg, #9a7b5f 0%, #c9a96e 100%);
}

.service-intro-panel--carpet {
  --intro-accent: #9a7b4a;
  --intro-accent-bar: linear-gradient(90deg, #9a7b4a 0%, #c9a96e 100%);
}

.service-intro-panel--pressure {
  --intro-accent: #3d6fa8;
  --intro-accent-bar: linear-gradient(90deg, #3d6fa8 0%, #6a9fd4 100%);
}

.service-intro-panel__head {
  max-width: 680px;
  margin-bottom: 28px;
}

.service-intro-panel__head .section-title-page {
  margin-bottom: 0;
}

.service-intro-panel__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.service-intro-panel__copy.prose p {
  margin-bottom: 16px;
}

.service-intro-panel__copy.prose p:last-child {
  margin-bottom: 0;
}

.service-intro-aside {
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 24, 22, 0.07);
  box-shadow: 0 8px 22px rgba(26, 24, 22, 0.05);
}

.service-intro-aside__label {
  display: block;
  margin-bottom: 14px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--intro-accent, #9a7b5f);
}

.service-intro-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.service-intro-chips li {
  position: relative;
  padding: 9px 12px 9px 26px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(26, 24, 22, 0.78);
  background: rgba(26, 24, 22, 0.03);
  border: 1px solid rgba(26, 24, 22, 0.05);
}

.service-intro-chips li::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--intro-accent, #9a7b5f);
}

@media (min-width: 768px) {
  .service-intro-panel {
    padding: 36px 32px;
  }

  .service-intro-panel::before {
    left: 32px;
    right: 32px;
  }

  .service-intro-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .service-intro-panel {
    padding: 44px 48px;
  }

  .service-intro-panel::before {
    left: 48px;
    right: 48px;
  }

  .service-intro-panel__layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 36px 44px;
  }

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

@media (min-width: 1100px) {
  .service-intro-chips {
    grid-template-columns: 1fr 1fr;
  }
}

.services-page .prose.service-lead,
.services-page .service-close {
  max-width: 920px;
}

.services-page .service-close .section-title-page {
  max-width: 100%;
}

@media (min-width: 768px) {
  .services-page .service-close .section-title-page {
    max-width: 18ch;
  }
}

/* Hero */
.services-page .services-hero {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding-bottom: 40px;
  padding-left: max(28px, var(--site-edge));
  padding-right: max(28px, var(--site-edge));
}

@media (max-width: 900px) {
  .services-page .services-hero {
    padding-bottom: 28px;
  }
}

.services-page .services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 24, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 24, 22, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 72%);
  pointer-events: none;
  z-index: 1;
}

.services-page .services-hero .hero-bg,
.services-page .services-hero .hero-noise,
.services-page .services-hero .hero-line,
.services-page .services-hero .hero-year,
.services-page .services-hero .hero-tag,
.services-page .services-hero .hero-h1,
.services-page .services-hero .hero-sub,
.services-page .services-hero .contact-cta-actions {
  position: relative;
  z-index: 2;
}

.services-page .page-hero .hero-sub,
.services-page .services-hero .hero-sub {
  max-width: 780px;
  font-size: 15px;
  line-height: 1.65;
  margin-top: 18px;
}

.services-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 24, 22, 0.08);
  max-width: 820px;
}

.services-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.services-hero-stat {
  flex: 1 1 140px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 24, 22, 0.07);
  box-shadow: 0 8px 24px rgba(26, 24, 22, 0.05);
  backdrop-filter: blur(8px);
}

.services-hero-stat__val {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 34px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #1a1814;
}

.services-hero-stat__val em {
  font-style: normal;
  color: #9a7b5f;
}

.services-hero-stat__lbl {
  display: block;
  margin-top: 6px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.48);
}

.services-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.62);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 24, 22, 0.08);
}

.services-hero-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9a7b5f;
  box-shadow: 0 0 0 3px rgba(18, 138, 92, 0.14);
}

/* Brand panel */
.services-brand-section {
  padding-top: 0 !important;
  margin-top: -24px;
}

.services-brand-panel {
  position: relative;
  padding: 52px 56px;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 92% 8%, rgba(201, 169, 110, 0.16) 0%, transparent 48%),
    radial-gradient(ellipse at 4% 92%, rgba(154, 123, 95, 0.08) 0%, transparent 44%),
    linear-gradient(155deg, #ffffff 0%, #faf7f2 100%);
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow:
    0 24px 64px rgba(26, 24, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.services-brand-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 56px;
  right: 56px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #9a7b5f 0%, #c9a96e 50%, #8a6a47 100%);
}

.services-brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.services-brand-chip {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(26, 24, 22, 0.72);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 24, 22, 0.07);
  box-shadow: 0 4px 14px rgba(26, 24, 22, 0.04);
}

.services-brand-chip strong {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a7b4a;
  margin-bottom: 4px;
  font-weight: 400;
}

/* Service offerings header */
.services-offerings-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 8px;
}

.services-offerings-head::after {
  content: "";
  grid-column: 1 / -1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.45) 0%, rgba(26, 24, 22, 0.08) 55%, transparent 100%);
}

.services-offerings-count {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.42);
  white-space: nowrap;
  padding-bottom: 4px;
}

/* Service cards — image + accent */
.services-page .service-cards {
  gap: 20px;
  margin-top: 36px;
}

.services-page .service-card {
  padding: 0 !important;
  min-height: 0 !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.services-page .service-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
}

.services-page .service-card::before {
  display: none !important;
  content: none !important;
}

.services-page .service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  filter: none !important;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-page .service-card:hover .service-card__media img {
  transform: scale(1.07);
}

.services-page .service-card__media::after {
  display: none !important;
  content: none !important;
}

.services-page .service-card.reveal.motion-fly,
.services-page .service-card.reveal.motion-fly.visible {
  opacity: 1 !important;
  filter: none !important;
}

.services-page .service-card__media .service-card-num {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  margin: 0 !important;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.services-page .service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 30px 32px;
  border-top: 3px solid transparent;
}

.services-page .service-card--booth .service-card__body { border-top-color: #c9a96e; }
.services-page .service-card--fire .service-card__body { border-top-color: #8a5040; }
.services-page .service-card--acoustic .service-card__body { border-top-color: #9a7b5f; }
.services-page .service-card--carpet .service-card__body { border-top-color: #9a7b4a; }
.services-page .service-card--pressure .service-card__body { border-top-color: #3d6fa8; }

.services-page .service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #fff;
}

.services-page .service-card--booth .service-card__icon { background: linear-gradient(135deg, #c9a96e, #8a6a33); }
.services-page .service-card--fire .service-card__icon { background: linear-gradient(135deg, #8a5040, #5c3028); }
.services-page .service-card--acoustic .service-card__icon { background: linear-gradient(135deg, #9a7b5f, #6f5630); }
.services-page .service-card--carpet .service-card__icon { background: linear-gradient(135deg, #9a7b4a, #6f5630); }
.services-page .service-card--pressure .service-card__icon { background: linear-gradient(135deg, #3d6fa8, #254870); }

.services-page .service-card h3 {
  font-size: clamp(26px, 2.4vw, 34px) !important;
  margin-bottom: 12px !important;
}

.services-page .service-card p {
  flex: 1;
  margin-bottom: 0;
}

.services-page .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px !important;
  padding: 11px 0 2px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1a1814 !important;
  border-bottom: 1px solid rgba(26, 24, 22, 0.18) !important;
  transition: gap 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.services-page .service-card__link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  background: rgba(26, 24, 22, 0.06);
  transition: transform 0.3s ease, background 0.3s ease;
}

.services-page .service-card:hover .service-card__link {
  gap: 14px;
  color: #9a7b5f !important;
  border-bottom-color: rgba(201, 169, 110, 0.45) !important;
}

.services-page .service-card:hover .service-card__link span {
  transform: translateX(2px);
  background: rgba(201, 169, 110, 0.14);
}

.services-page .service-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.services-page .service-card--wide .service-card__media {
  aspect-ratio: auto;
  min-height: 240px;
}

@media (max-width: 820px) {
  .services-page .service-card--wide {
    grid-template-columns: 1fr;
  }
}

/* Maintenance program */
.services-page #maintenance-program {
  border-radius: 22px;
  padding: 56px 56px 52px !important;
  background:
    radial-gradient(ellipse at 88% 12%, rgba(201, 169, 110, 0.14) 0%, transparent 46%),
    linear-gradient(160deg, #ffffff 0%, #f5f1ea 100%) !important;
}

.services-maint-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.services-maint-step {
  display: flex;
  flex-direction: column;
  padding: 32px 30px 34px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 24, 22, 0.07);
  box-shadow: 0 12px 32px rgba(26, 24, 22, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-maint-step__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.services-maint-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(26, 24, 22, 0.08);
}

.services-maint-step__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, #c9a96e, #9a7b4a);
  box-shadow: 0 4px 12px rgba(154, 123, 74, 0.28);
}

.services-maint-step__head .bento-cell-h3,
.services-maint-step__head h3 {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: #1a1814;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.services-maint-step .bento-cell-body,
.services-maint-step p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(26, 24, 22, 0.68);
  margin: 0;
}

.services-maint-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.services-maint-cta p {
  margin: 0;
  max-width: 520px;
  font-size: 14px;
  color: rgba(26, 24, 22, 0.62);
}

/* Process timeline — card grid on service pages */
.services-page .page-section--surface .page-grid-2:has(.timeline-deep) {
  grid-template-columns: 1fr;
  gap: 40px;
}

.services-page .timeline-deep {
  margin-top: 0;
  padding-left: 0;
  border-left: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.services-page .timeline-deep-item {
  margin-bottom: 0;
  position: relative;
  padding: 30px 28px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 12px 32px rgba(26, 24, 22, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.services-page .timeline-deep-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(26, 24, 22, 0.09);
}

.services-page .timeline-deep-item::before {
  display: none;
}

.services-page .timeline-deep-item .tl-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: #7a6038;
  background: rgba(201, 169, 110, 0.14);
  border: 1px solid rgba(201, 169, 110, 0.22);
}

.services-page .timeline-deep-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.services-page .timeline-deep-item p {
  font-size: 14px;
  line-height: 1.75;
  max-width: none;
}

/* Closing CTA */
.services-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 56px 56px 52px;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 12% 50%, rgba(154, 123, 95, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 88% 30%, rgba(201, 169, 110, 0.18) 0%, transparent 48%),
    linear-gradient(135deg, #1a1814 0%, #2a2520 52%, #1a1814 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 72px rgba(26, 24, 22, 0.18);
}

.services-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
  pointer-events: none;
}

.services-cta-panel .section-kicker,
.services-page .services-cta-panel .section-kicker {
  color: rgba(201, 169, 110, 0.92) !important;
}

.services-cta-panel .section-title-page,
.services-page .services-cta-panel .section-title-page {
  color: #ffffff !important;
  max-width: 720px;
}

.services-cta-panel .section-title-page em,
.services-page .services-cta-panel .section-title-page em {
  color: #c9a96e !important;
}

.services-cta-panel .prose,
.services-cta-panel .prose p,
.services-page .services-cta-panel .prose,
.services-page .services-cta-panel .prose p {
  color: rgba(255, 255, 255, 0.72) !important;
  max-width: 560px;
}

.services-cta-panel .contact-cta-actions {
  position: relative;
  z-index: 1;
}

.services-page .services-cta-panel .btn-outline-large {
  color: #ffffff !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
  box-shadow: none !important;
}

.services-page .services-cta-panel .btn-outline-large:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(201, 169, 110, 0.72) !important;
}

.services-page .spec-list li {
  padding: 20px 0;
  font-size: 15px;
  line-height: 1.55;
}

.services-page .services-brand-panel {
  padding: 52px 56px !important;
}

@media (max-width: 1100px) {
  .services-maint-grid {
    grid-template-columns: 1fr;
  }

  .services-page .timeline-deep {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .services-brand-panel,
  .services-page #maintenance-program,
  .services-cta-panel {
    padding: 36px 28px;
  }

  .services-brand-panel::before {
    left: 28px;
    right: 28px;
  }

  .services-offerings-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .services-page:not(.services-page--acoustic) .page-section--surface,
  .services-page:not(.services-page--acoustic) .page-section--graphite,
  .services-page #maintenance-program,
  .services-cta-panel {
    padding: 32px 24px !important;
  }

  .services-maint-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-stats {
    flex-direction: column;
  }
}

/* ─── ACOUSTIC PANELING — mobile-first (base = phone, min-width scales up) ─ */

html:has(body.services-page--acoustic) {
  overflow-x: hidden;
}

body.services-page--acoustic {
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow-x: hidden;
  width: 100%;
}

.services-page--acoustic {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.services-page--acoustic nav {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  padding: 16px !important;
  box-sizing: border-box;
}

/* Mobile nav — always hamburger (desktop nav disabled site-wide) */
.services-page--acoustic .nav-links,
.services-page--acoustic .nav-cta {
  display: none !important;
}

.services-page--acoustic .nav-mobile-toggle {
  display: inline-flex !important;
}

.services-page--acoustic,
.services-page--acoustic .page-main,
.services-page--acoustic .service-acoustic-hero,
.services-page--acoustic .service-acoustic-hero__inner,
.services-page--acoustic .service-acoustic-hero__copy,
.services-page--acoustic .service-intro-panel,
.services-page--acoustic .service-intro-panel__head,
.service-acoustic-feature-bar,
.service-acoustic-services__grid,
.acoustic-showcase {
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

/* Base (phone) — page shell */
.services-page--acoustic .page-main {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 80px;
  overflow-x: hidden;
}

.services-page--acoustic .page-section {
  padding: 32px 0;
}

@media (min-width: 768px) {
  .services-page--acoustic .page-section {
    padding: 48px 0;
  }
}

@media (min-width: 1100px) {
  .services-page--acoustic .page-section {
    padding: 64px 0;
  }
}

.services-page--acoustic .page-section--surface,
.services-page--acoustic .page-section--graphite {
  padding: 24px 16px !important;
  margin-left: 0;
  margin-right: 0;
}

.services-page--acoustic .section-title-page,
.services-page--acoustic .service-acoustic-hero .hero-h1 {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
  font-size: clamp(28px, 7.5vw, 72px);
  line-height: 0.95;
}

.services-page--acoustic .service-acoustic-services__primary,
.services-page--acoustic .service-acoustic-services__secondary,
.services-page--acoustic .service-intro-panel__layout,
.services-page--acoustic .service-intro-panel__copy,
.services-page--acoustic .service-intro-aside,
.services-page--acoustic .acoustic-showcase__copy,
.services-page--acoustic .service-close,
.services-page--acoustic .prose,
.services-page--acoustic .spec-list,
.services-page--acoustic .spec-list li {
  min-width: 0;
  max-width: 100%;
}

.services-page--acoustic .spec-list li {
  font-size: 14px;
  line-height: 1.55;
  padding: 14px 0;
  overflow-wrap: anywhere;
}

.services-page--acoustic .service-close .section-title-page {
  max-width: 100% !important;
}

/* Neutralize legacy page-hero rules — acoustic uses service-acoustic-hero */
.services-page--acoustic .service-acoustic-hero .hero-tag,
.services-page--acoustic .service-acoustic-hero .hero-h1,
.services-page--acoustic .service-acoustic-hero .hero-sub,
.services-page--acoustic .service-acoustic-hero .services-hero-pills,
.services-page--acoustic .service-acoustic-hero__ctas {
  position: relative;
  z-index: 2;
}

.services-page--acoustic .service-acoustic-hero .hero-tag {
  color: #c5a059;
}

.services-page--acoustic .section-title-page em {
  color: #9a7b5f;
}

/* Hero — stacked copy then image (base = phone) */
.service-acoustic-hero {
  position: relative;
  overflow-x: clip;
  padding:
    calc(var(--nav-height, 72px) + 20px)
    16px
    28px;
  width: 100%;
  box-sizing: border-box;
}

.service-acoustic-hero__bg,
.service-acoustic-hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-acoustic-hero__bg {
  background:
    radial-gradient(ellipse at 88% 12%, rgba(18, 138, 92, 0.09) 0%, transparent 48%),
    radial-gradient(ellipse at 8% 88%, rgba(201, 169, 110, 0.1) 0%, transparent 44%),
    #faf9f7;
}

.service-acoustic-hero__noise {
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.service-acoustic-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: min(1380px, 100%);
  margin: 0 auto;
}

.service-acoustic-hero__copy {
  min-width: 0;
  width: 100%;
}

.service-acoustic-hero__index {
  display: block;
  margin-bottom: 12px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a7b5f;
}

.services-page--acoustic .service-acoustic-hero .hero-h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 8.5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #1a1814;
  margin-bottom: 16px;
  max-width: 100%;
}

.services-page--acoustic .service-acoustic-hero .hero-h1 em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  color: #9a7b5f;
}

.services-page--acoustic .service-acoustic-hero .hero-sub {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 24, 22, 0.72);
  margin-bottom: 0;
}

.services-page--acoustic .service-acoustic-hero .services-hero-pills {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}

.services-page--acoustic .service-acoustic-hero .services-hero-pill {
  max-width: 100%;
  white-space: normal;
}

.services-page--acoustic .service-acoustic-hero__ctas,
.services-page--acoustic .service-acoustic-close__ctas {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

/* Beat spacing-fix global btn rules on acoustic CTAs */
.services-page--acoustic .service-acoustic-hero__ctas .btn-large,
.services-page--acoustic .service-acoustic-hero__ctas .btn-outline-large,
.services-page--acoustic .service-acoustic-close__ctas .btn-large,
.services-page--acoustic .service-acoustic-close__ctas .btn-outline-large {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  text-align: center !important;
  min-height: 44px !important;
  white-space: normal !important;
  padding: 12px 16px !important;
  font-size: 9px !important;
  letter-spacing: 0.1em !important;
  line-height: 1.4 !important;
}

.service-acoustic-hero__visual {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 16px 40px rgba(26, 24, 22, 0.08);
  background: #fff;
  width: 100%;
}

.service-acoustic-hero__visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-acoustic-hero__caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(26, 24, 22, 0.62);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  max-width: calc(100% - 24px);
  white-space: normal;
}

/* Feature bar — single column base */
.service-acoustic-feature-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  max-width: min(1380px, 100%);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 24, 22, 0.08);
}

.service-acoustic-feature-bar__item {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 24, 22, 0.07);
  box-shadow: 0 8px 22px rgba(26, 24, 22, 0.05);
  min-width: 0;
}

.service-acoustic-feature-bar__val {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #9a7b5f;
}

.service-acoustic-feature-bar__lbl {
  display: block;
  margin-top: 6px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.52);
  overflow-wrap: anywhere;
}

/* Intro panel */
.services-page--acoustic .service-intro-section {
  padding-top: 32px;
  padding-bottom: 40px;
}

.services-page--acoustic .service-intro-panel {
  padding: 20px 16px;
}

/* Proofing vs paneling comparison */
.services-page--acoustic .acoustic-compare-section {
  padding-top: 8px;
  padding-bottom: 40px;
}

.acoustic-compare {
  min-width: 0;
}

.acoustic-compare__head {
  max-width: 720px;
  margin-bottom: 28px;
}

.acoustic-compare__lead {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 24, 22, 0.72);
}

.acoustic-compare__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.acoustic-compare__card {
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid rgba(26, 24, 22, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(26, 24, 22, 0.05);
  min-width: 0;
}

.acoustic-compare__card--proofing {
  border-top: 3px solid rgba(26, 24, 22, 0.18);
}

.acoustic-compare__card--paneling {
  border-top: 3px solid rgba(128, 64, 208, 0.55);
  background: linear-gradient(180deg, rgba(128, 64, 208, 0.04) 0%, #ffffff 120px);
}

.acoustic-compare__tag {
  display: inline-block;
  margin-bottom: 12px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.52);
}

.acoustic-compare__card--paneling .acoustic-compare__tag {
  color: rgba(128, 64, 208, 0.85);
}

.acoustic-compare__title {
  margin: 0 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 6.5vw, 40px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #1a1814;
  overflow-wrap: anywhere;
}

.acoustic-compare__title em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(128, 64, 208, 0.9);
}

.acoustic-compare__card--proofing .acoustic-compare__title em {
  color: rgba(26, 24, 22, 0.62);
}

.acoustic-compare__body {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 24, 22, 0.72);
}

.acoustic-compare__list {
  margin: 0 0 16px;
  padding-left: 1.1em;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(26, 24, 22, 0.68);
}

.acoustic-compare__list li + li {
  margin-top: 8px;
}

.acoustic-compare__best {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(26, 24, 22, 0.08);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(26, 24, 22, 0.78);
}

.acoustic-compare__best strong {
  color: #1a1814;
}

.acoustic-compare__note {
  padding: 20px 18px;
  border-radius: 14px;
  border: 1px solid rgba(128, 64, 208, 0.14);
  background: rgba(128, 64, 208, 0.05);
}

.acoustic-compare__note-label {
  display: block;
  margin-bottom: 10px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(128, 64, 208, 0.85);
}

.acoustic-compare__note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 24, 22, 0.78);
}

.acoustic-compare__note strong {
  color: #1a1814;
}

/* Services grid — single column base */
.services-page--acoustic .service-acoustic-services.page-section--surface {
  padding: 24px 16px !important;
  margin-left: 0;
  margin-right: 0;
  border-radius: 16px;
}

.service-acoustic-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  min-width: 0;
}

.service-acoustic-services__title {
  font-size: clamp(26px, 7vw, 52px) !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Showcase — stacked base */
.services-page--acoustic .acoustic-showcase-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.acoustic-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  min-width: 0;
}

.acoustic-showcase__copy {
  min-width: 0;
}

.acoustic-showcase__lead {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 24, 22, 0.72);
  max-width: 100%;
}

.acoustic-showcase__figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 16px 40px rgba(26, 24, 22, 0.08);
}

.acoustic-showcase__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}

/* Small tablet — 640px+ */
@media (min-width: 640px) {
  .services-page--acoustic .page-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-page--acoustic .page-section--surface,
  .services-page--acoustic .page-section--graphite {
    padding: 32px 20px !important;
  }

  .service-acoustic-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-page--acoustic .service-acoustic-hero__ctas,
  .services-page--acoustic .service-acoustic-close__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .services-page--acoustic .service-acoustic-hero__ctas .btn-large,
  .services-page--acoustic .service-acoustic-hero__ctas .btn-outline-large,
  .services-page--acoustic .service-acoustic-close__ctas .btn-large,
  .services-page--acoustic .service-acoustic-close__ctas .btn-outline-large {
    width: auto !important;
    flex: 1 1 auto;
    min-width: min(100%, 200px);
  }

  .service-acoustic-feature-bar__val {
    font-size: 28px;
  }

  .service-acoustic-feature-bar__lbl {
    font-size: 9px;
  }

  .acoustic-compare__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .acoustic-compare__card {
    padding: 28px 24px;
  }

  .services-page--acoustic .acoustic-compare-section {
    padding-bottom: 48px;
  }
}

/* Tablet — 768px+ */
@media (min-width: 768px) {
  .services-page--acoustic .page-main {
    padding-left: 28px;
    padding-right: 28px;
  }

  .services-page--acoustic .page-section {
    padding: 48px 0;
  }

  .services-page--acoustic .page-section--surface,
  .services-page--acoustic .page-section--graphite {
    padding: 44px 36px !important;
  }

  .service-acoustic-hero {
    padding:
      calc(var(--nav-height, 72px) + 40px)
      28px
      56px;
  }

  .service-acoustic-hero__inner {
    gap: 36px;
  }

  .services-page--acoustic .service-acoustic-hero .hero-h1 {
    font-size: clamp(44px, 6vw, 72px);
    max-width: 14ch;
  }

  .services-page--acoustic .service-acoustic-hero .hero-sub {
    font-size: 15px;
    line-height: 1.75;
  }

  .service-acoustic-feature-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 40px;
    padding-top: 32px;
  }

  .services-page--acoustic .service-acoustic-services.page-section--surface {
    padding: 44px 36px !important;
    border-radius: 22px;
  }

  .service-acoustic-services__grid {
    gap: 48px;
  }

  .services-page--acoustic .service-intro-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .services-page--acoustic .service-intro-panel {
    padding: 36px 32px;
  }

  .services-page--acoustic .acoustic-showcase-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .acoustic-showcase__lead {
    font-size: 15px;
    line-height: 1.75;
    max-width: 42ch;
  }
}

/* Desktop — 1100px+ */
@media (min-width: 1100px) {
  .services-page--acoustic .page-main {
    padding-left: max(28px, var(--site-edge));
    padding-right: max(28px, var(--site-edge));
  }

  .services-page--acoustic .page-section {
    padding: 64px 0;
  }

  .service-acoustic-hero {
    padding:
      calc(var(--nav-height, 72px) + 48px)
      max(28px, var(--site-edge))
      64px;
  }

  .service-acoustic-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 48px 56px;
    align-items: center;
  }

  .services-page--acoustic .service-acoustic-hero .hero-h1 {
    font-size: clamp(52px, 5vw, 76px);
    max-width: 12ch;
  }

  .service-acoustic-services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px 72px;
    align-items: start;
  }

  .acoustic-showcase {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px 56px;
    align-items: center;
  }

  .services-page--acoustic .service-acoustic-services.page-section--surface {
    padding: 56px 52px !important;
  }

  .services-page--acoustic .service-acoustic-hero__ctas .btn-large,
  .services-page--acoustic .service-acoustic-hero__ctas .btn-outline-large,
  .services-page--acoustic .service-acoustic-close__ctas .btn-large,
  .services-page--acoustic .service-acoustic-close__ctas .btn-outline-large {
    padding: 14px 28px !important;
    font-size: 10px !important;
    letter-spacing: 0.14em !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FIRE RETARDANT SERVICE PAGE
   ═══════════════════════════════════════════════════════════════════ */

.services-page--fire .service-fire-hero,
.services-page--fire .service-fire-hero__inner,
.services-page--fire .service-fire-hero__copy,
.services-page--fire .service-fire-feature-bar,
.services-page--fire .service-fire-services__grid,
.services-page--fire .fire-showcase,
.services-page--fire .fire-process,
.services-page--fire .fire-materials {
  max-width: 100%;
  box-sizing: border-box;
}

.service-fire-hero {
  position: relative;
  overflow-x: clip;
  padding:
    calc(var(--nav-height, 72px) + 20px)
    16px
    28px;
  width: 100%;
  box-sizing: border-box;
}

.service-fire-hero__bg,
.service-fire-hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-fire-hero__bg {
  background:
    radial-gradient(ellipse at 88% 12%, rgba(201, 74, 74, 0.1) 0%, transparent 48%),
    radial-gradient(ellipse at 8% 88%, rgba(201, 169, 110, 0.1) 0%, transparent 44%),
    #faf9f7;
}

.service-fire-hero__noise {
  opacity: 0.45;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.service-fire-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: min(1380px, 100%);
  margin: 0 auto;
}

.service-fire-hero__copy {
  min-width: 0;
  width: 100%;
}

.service-fire-hero__index {
  display: block;
  margin-bottom: 12px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a5040;
}

.services-page--fire .service-fire-hero .hero-h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 8.5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #1a1814;
  margin-bottom: 16px;
  max-width: 100%;
}

.services-page--fire .service-fire-hero .hero-h1 em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  color: #8a5040;
}

.services-page--fire .service-fire-hero .hero-sub {
  max-width: 100%;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 24, 22, 0.72);
}

.services-page--fire .service-fire-hero .services-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.services-page--fire .service-fire-hero .services-hero-pill {
  font-size: 10px;
}

.services-page--fire .service-fire-hero__ctas,
.services-page--fire .service-fire-close__ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 24px;
}

.services-page--fire .service-fire-hero__ctas .btn-large,
.services-page--fire .service-fire-hero__ctas .btn-outline-large,
.services-page--fire .service-fire-close__ctas .btn-large,
.services-page--fire .service-fire-close__ctas .btn-outline-large {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.service-fire-hero__visual {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201, 74, 74, 0.12);
  box-shadow: 0 20px 48px rgba(26, 24, 22, 0.1);
}

.service-fire-hero__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-fire-hero__caption {
  display: block;
  padding: 12px 16px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.55);
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(26, 24, 22, 0.06);
}

.service-fire-feature-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: min(1380px, 100%);
  margin: 40px auto 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 22, 0.08);
  background: rgba(26, 24, 22, 0.08);
}

.service-fire-feature-bar__item {
  padding: 18px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
}

.service-fire-feature-bar__val {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #8a5040;
}

.service-fire-feature-bar__lbl {
  display: block;
  margin-top: 6px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.52);
  overflow-wrap: anywhere;
}

.services-page--fire .service-intro-section {
  padding-top: 32px;
  padding-bottom: 40px;
}

/* Materials grid */
.services-page--fire .fire-materials-section {
  padding-top: 8px;
  padding-bottom: 40px;
}

.fire-materials__head {
  max-width: 720px;
  margin-bottom: 28px;
}

.fire-materials__lead {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26, 24, 22, 0.72);
}

.fire-materials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.fire-materials__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 22, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(26, 24, 22, 0.06);
}

.fire-materials__figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.fire-materials__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fire-materials__body {
  padding: 22px 20px 24px;
}

.fire-materials__tag {
  display: block;
  margin-bottom: 10px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a5040;
}

.fire-materials__title {
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(22px, 5vw, 28px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #1a1814;
}

.fire-materials__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(26, 24, 22, 0.72);
}

/* Showcase */
.services-page--fire .fire-showcase-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.fire-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  min-width: 0;
}

.fire-showcase__lead {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 24, 22, 0.72);
}

.fire-showcase__list {
  margin: 0;
  padding-left: 1.1em;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(26, 24, 22, 0.68);
}

.fire-showcase__list li + li {
  margin-top: 8px;
}

.fire-showcase__figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 16px 40px rgba(26, 24, 22, 0.08);
}

.fire-showcase__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Process */
.services-page--fire .fire-process-section {
  padding: 24px 16px !important;
  margin-left: 0;
  margin-right: 0;
  border-radius: 16px;
}

.fire-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.fire-process__visual {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 22, 0.08);
  box-shadow: 0 16px 40px rgba(26, 24, 22, 0.08);
}

.fire-process__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fire-process__caption {
  display: block;
  padding: 12px 16px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 24, 22, 0.55);
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(26, 24, 22, 0.06);
}

.fire-process__lead {
  margin: 12px 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26, 24, 22, 0.72);
}

.fire-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.fire-process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(26, 24, 22, 0.06);
}

.fire-process__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #8a5040;
  border: 1px solid rgba(201, 74, 74, 0.28);
  background: rgba(201, 74, 74, 0.06);
}

.fire-process__step h3 {
  margin: 0 0 6px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: #1a1814;
}

.fire-process__step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(26, 24, 22, 0.68);
}

/* Services grid */
.services-page--fire .service-fire-services.page-section--surface {
  padding: 24px 16px !important;
  margin-left: 0;
  margin-right: 0;
  border-radius: 16px;
}

.service-fire-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  min-width: 0;
}

.service-fire-services__title {
  font-size: clamp(26px, 7vw, 52px) !important;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 640px) {
  .services-page--fire .page-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-fire-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-page--fire .service-fire-hero__ctas,
  .services-page--fire .service-fire-close__ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .services-page--fire .service-fire-hero__ctas .btn-large,
  .services-page--fire .service-fire-hero__ctas .btn-outline-large,
  .services-page--fire .service-fire-close__ctas .btn-large,
  .services-page--fire .service-fire-close__ctas .btn-outline-large {
    width: auto !important;
    flex: 1 1 auto;
    min-width: min(100%, 200px);
  }

  .service-fire-feature-bar__val {
    font-size: 28px;
  }

  .service-fire-feature-bar__lbl {
    font-size: 9px;
  }

  .fire-materials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .services-page--fire .page-main {
    padding-left: 28px;
    padding-right: 28px;
  }

  .services-page--fire .page-section {
    padding: 48px 0;
  }

  .services-page--fire .page-section--surface,
  .services-page--fire .page-section--graphite {
    padding: 44px 36px !important;
  }

  .service-fire-hero {
    padding:
      calc(var(--nav-height, 72px) + 36px)
      28px
      40px;
  }

  .service-fire-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 40px 48px;
    align-items: center;
  }

  .services-page--fire .service-fire-hero .hero-h1 {
    font-size: clamp(44px, 5.5vw, 68px);
  }

  .fire-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 40px 48px;
  }

  .fire-process {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px 48px;
    align-items: start;
  }

  .services-page--fire .fire-process-section,
  .services-page--fire .service-fire-services.page-section--surface {
    padding: 44px 36px !important;
    border-radius: 22px;
  }

  .service-fire-services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 56px;
    align-items: start;
  }

  .services-page--fire .service-intro-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }
}

@media (min-width: 1100px) {
  .services-page--fire .page-main {
    padding-left: max(28px, var(--site-edge));
    padding-right: max(28px, var(--site-edge));
  }

  .service-fire-hero {
    padding:
      calc(var(--nav-height, 72px) + 48px)
      max(28px, var(--site-edge))
      64px;
  }

  .services-page--fire .service-fire-hero .hero-h1 {
    font-size: clamp(52px, 5vw, 76px);
    max-width: 12ch;
  }

  .services-page--fire .fire-process-section,
  .services-page--fire .service-fire-services.page-section--surface {
    padding: 56px 52px !important;
  }
}


/* ---- css/services-bento.css ---- */
/*
  SERVICES PAGE — Premium light bento grid system
  Mobile-first · high contrast · conversion-focused
*/

/* ─── Layout tokens ─────────────────────────────────────────────── */
.services-page {
  --svc-bg: #faf9f7;
  --svc-card: #ffffff;
  --svc-charcoal: #1a1814;
  --svc-muted: rgba(26, 24, 22, 0.68);
  --svc-soft: rgba(26, 24, 22, 0.52);
  --svc-gold: #c9a96e;
  --svc-bronze: #9a7b5f;
  --svc-burgundy: #8a5040;
  --svc-border: rgba(26, 24, 22, 0.08);
  --svc-shadow: 0 12px 40px rgba(26, 24, 22, 0.07);
  --svc-shadow-hover: 0 24px 56px rgba(26, 24, 22, 0.12);
  --svc-radius: 22px;
  --svc-radius-sm: 16px;
  --svc-gap: 16px;
  --svc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .services-page {
    --svc-gap: 20px;
  }
}

@media (min-width: 1100px) {
  .services-page {
    --svc-gap: 24px;
  }
}

/* ─── Section shell ─────────────────────────────────────────────── */
.services-page .page-main {
  max-width: min(1280px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(16px, var(--site-edge, 16px));
  padding-right: max(16px, var(--site-edge, 16px));
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .services-page .page-main {
    padding-left: max(28px, var(--site-edge, 28px));
    padding-right: max(28px, var(--site-edge, 28px));
    padding-bottom: 64px;
  }
}

@media (min-width: 901px) {
  .services-page .page-main {
    max-width: min(1680px, 100%);
    padding-left: max(60px, var(--h-pad, 100px));
    padding-right: max(60px, var(--h-pad, 100px));
    padding-bottom: clamp(96px, 10vh, 132px);
  }
}

@media (min-width: 1100px) {
  .services-page .page-main {
    max-width: min(1680px, 100%);
    padding-bottom: 80px;
  }
}

.svc-section {
  padding: 48px 0;
  position: relative;
}

@media (min-width: 768px) {
  .svc-section {
    padding: 64px 0;
  }
}

@media (min-width: 1100px) {
  .svc-section {
    padding: 80px 0;
  }
}

.svc-section__header {
  margin-bottom: 28px;
  max-width: 720px;
}

@media (min-width: 768px) {
  .svc-section__header {
    margin-bottom: 36px;
  }
}

.svc-kicker {
  display: block;
  margin-bottom: 12px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--svc-bronze);
}

.svc-title {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: var(--svc-charcoal);
}

.svc-title em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  color: var(--svc-gold);
}

.svc-lead {
  margin: 16px 0 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--svc-muted);
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.svc-hero-section {
  position: relative;
  overflow: hidden;
  padding:
    calc(var(--nav-height, 72px) + 28px)
    max(16px, var(--site-edge, 16px))
    36px;
}

@media (min-width: 901px) {
  .svc-hero-section {
    min-height: 0 !important;
    height: auto !important;
    padding-top: calc(var(--nav-offset, 88px) + 48px) !important;
    padding-bottom: 48px !important;
  }

  .svc-hero-section .hero-h1 {
    font-size: clamp(48px, 5.5vw, 88px) !important;
    max-width: 14ch !important;
  }

  .svc-trust-bar {
    margin-top: 36px;
    max-width: 100%;
  }
}

.svc-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 24, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 24, 22, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 72%);
  pointer-events: none;
  z-index: 1;
}

.svc-hero-section .hero-bg,
.svc-hero-section .hero-noise,
.svc-hero-section .hero-line,
.svc-hero-section .hero-year,
.svc-hero-section .hero-tag,
.svc-hero-section .hero-h1,
.svc-hero-section .hero-sub,
.svc-hero-section .svc-hero__meta,
.svc-hero-section .svc-hero__actions {
  position: relative;
  z-index: 2;
}

.svc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.svc-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .svc-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.svc-trust-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--svc-border);
  max-width: 900px;
}

@media (min-width: 640px) {
  .svc-trust-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

.svc-trust-stat {
  padding: 16px 18px;
  border-radius: var(--svc-radius-sm);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--svc-border);
  box-shadow: 0 8px 24px rgba(26, 24, 22, 0.05);
  backdrop-filter: blur(8px);
}

.svc-trust-stat__val {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--svc-charcoal);
}

.svc-trust-stat__val em {
  font-style: normal;
  color: var(--svc-gold);
}

.svc-trust-stat__lbl {
  display: block;
  margin-top: 6px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--svc-soft);
}

/* ─── Bento grid ────────────────────────────────────────────────── */
.svc-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--svc-gap);
}

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

@media (min-width: 900px) {
  .svc-bento-grid--12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .svc-span-12 { grid-column: span 12; }
  .svc-span-8 { grid-column: span 8; }
  .svc-span-6 { grid-column: span 6; }
  .svc-span-4 { grid-column: span 4; }
  .svc-span-3 { grid-column: span 3; }
  .svc-row-2 { grid-row: span 2; }
}

@media (min-width: 640px) and (max-width: 899px) {
  .svc-bento-grid--12 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-bento-grid--12 .svc-span-8,
  .svc-bento-grid--12 .svc-row-2 {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 639px) {
  .svc-bento-grid--12 {
    grid-template-columns: 1fr;
  }
}

/* ─── Bento card ────────────────────────────────────────────────── */
.svc-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px 22px;
  border-radius: var(--svc-radius);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(201, 169, 110, 0.1) 0%, transparent 52%),
    linear-gradient(165deg, #ffffff 0%, #faf7f2 100%);
  border: 1px solid var(--svc-border);
  box-shadow: var(--svc-shadow);
  transition:
    transform 0.45s var(--svc-ease),
    box-shadow 0.45s var(--svc-ease),
    border-color 0.35s ease;
}

@media (min-width: 768px) {
  .svc-bento-card {
    padding: 32px 28px;
  }
}

.svc-bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--svc-bronze) 0%, var(--svc-gold) 100%);
  opacity: 0.85;
}

@media (min-width: 768px) {
  .svc-bento-card::before {
    left: 28px;
    right: 28px;
  }
}

.svc-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--svc-shadow-hover);
  border-color: rgba(201, 169, 110, 0.22);
}

.svc-bento-card--accent-bronze::before {
  background: linear-gradient(90deg, var(--svc-bronze) 0%, var(--svc-gold) 100%);
}

.svc-bento-card--accent-burgundy::before {
  background: linear-gradient(90deg, var(--svc-burgundy) 0%, var(--svc-gold) 100%);
}

.svc-bento-card--dark {
  background:
    radial-gradient(ellipse at 12% 50%, rgba(154, 123, 95, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 88% 30%, rgba(201, 169, 110, 0.18) 0%, transparent 48%),
    linear-gradient(135deg, #1a1814 0%, #2a2520 52%, #1a1814 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 72px rgba(26, 24, 22, 0.18);
}

.svc-bento-card--dark::before {
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.6) 0%, rgba(154, 123, 95, 0.4) 100%);
}

.svc-bento-card--dark .svc-bento-card__tag,
.svc-bento-card--dark .svc-bento-card__title,
.svc-bento-card--dark .svc-bento-card__body,
.svc-bento-card--dark .svc-bento-card__list li {
  color: rgba(255, 255, 255, 0.88);
}

.svc-bento-card--dark .svc-bento-card__tag {
  color: rgba(201, 169, 110, 0.92);
}

.svc-bento-card--dark .svc-bento-card__body {
  color: rgba(255, 255, 255, 0.72);
}

.svc-bento-card--dark .svc-bento-card__title em {
  color: var(--svc-gold);
}

/* Grid spans — desktop 12-col */
@media (min-width: 900px) {
  .svc-span-12 { grid-column: span 12; }
  .svc-span-8 { grid-column: span 8; }
  .svc-span-6 { grid-column: span 6; }
  .svc-span-4 { grid-column: span 4; }
  .svc-span-3 { grid-column: span 3; }
  .svc-row-2 { grid-row: span 2; }
}

.svc-bento-card__tag {
  display: block;
  margin-bottom: 12px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--svc-bronze);
}

.svc-bento-card__title {
  margin: 0 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--svc-charcoal);
}

.svc-bento-card__title em {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  color: var(--svc-gold);
}

.svc-bento-card__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--svc-muted);
}

.svc-bento-card__body + .svc-bento-card__body {
  margin-top: 12px;
}

.svc-bento-card__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.svc-bento-card__list li {
  position: relative;
  padding: 10px 0 10px 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--svc-muted);
  border-bottom: 1px solid var(--svc-border);
}

.svc-bento-card__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.svc-bento-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--svc-gold);
  transform: translateY(-50%);
}

.svc-bento-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, var(--svc-gold), #8a6a33);
  box-shadow: 0 6px 18px rgba(201, 169, 110, 0.28);
}

.svc-bento-card__icon--bronze {
  background: linear-gradient(135deg, var(--svc-bronze), #6f5630);
}

.svc-bento-card__icon--burgundy {
  background: linear-gradient(135deg, var(--svc-burgundy), #5c3028);
}

.svc-bento-card__outcome {
  margin-top: auto;
  padding-top: 16px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--svc-bronze);
}

.svc-bento-card__cta {
  margin-top: 20px;
}

/* Compact process chips inside brand row */
.svc-process-chips {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--svc-gap);
}

.svc-process-chips--spaced {
  margin-top: 24px;
}

@media (min-width: 640px) {
  .svc-process-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.svc-process-chip {
  padding: 22px 20px;
  border-radius: var(--svc-radius-sm);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--svc-border);
  box-shadow: 0 8px 24px rgba(26, 24, 22, 0.05);
  transition: transform 0.35s var(--svc-ease), box-shadow 0.35s var(--svc-ease);
}

.svc-process-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 24, 22, 0.08);
}

.svc-process-chip__num {
  display: block;
  margin-bottom: 8px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--svc-gold);
}

.svc-process-chip__title {
  margin: 0 0 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--svc-charcoal);
}

.svc-process-chip__body {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--svc-muted);
}

/* ─── Services grid (image cards) ───────────────────────────────── */
.svc-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--svc-gap);
}

@media (min-width: 900px) {
  .svc-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

.svc-service-card {
  position: relative;
  min-height: 380px;
  border-radius: var(--svc-radius);
  overflow: hidden;
  border: 1px solid var(--svc-border);
  box-shadow: var(--svc-shadow);
  cursor: pointer;
  transition: transform 0.45s var(--svc-ease), box-shadow 0.45s var(--svc-ease);
}

@media (min-width: 900px) {
  .svc-service-card {
    min-height: clamp(420px, 28vw, 520px);
  }
}

.svc-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--svc-shadow-hover);
}

.svc-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--svc-ease);
}

.svc-service-card:hover img {
  transform: scale(1.06);
}

.svc-service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 6, 0.08) 0%,
    rgba(10, 8, 6, 0.35) 45%,
    rgba(10, 8, 6, 0.88) 100%
  );
  pointer-events: none;
}

.svc-service-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px 22px 26px;
}

@media (min-width: 768px) {
  .svc-service-card__body {
    padding: 28px 28px 32px;
  }
}

.svc-service-card__tag {
  display: block;
  margin-bottom: 8px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.92);
}

.svc-service-card__title {
  display: block;
  margin-bottom: 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: #f5f3ef;
}

.svc-service-card__desc {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(245, 243, 239, 0.78);
}

.svc-service-card__outcome {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(201, 169, 110, 0.95);
}

.svc-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f5f3ef;
  border-bottom: 1px solid rgba(245, 243, 239, 0.35);
  transition: gap 0.3s ease, border-color 0.3s ease;
}

.svc-service-card:hover .svc-service-card__link {
  gap: 12px;
  border-bottom-color: rgba(201, 169, 110, 0.65);
}

.svc-service-card__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  transition: transform 0.35s var(--svc-ease), background 0.35s ease;
}

.svc-service-card:hover .svc-service-card__arrow {
  transform: translate(2px, -2px);
  background: rgba(201, 169, 110, 0.28);
}

/* ─── Process steps ─────────────────────────────────────────────── */
.svc-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--svc-gap);
}

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

@media (min-width: 901px) {
  .svc-process-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  .svc-process-grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.svc-process-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px;
  border-radius: var(--svc-radius-sm);
  background: var(--svc-card);
  border: 1px solid var(--svc-border);
  box-shadow: var(--svc-shadow);
  transition: transform 0.35s var(--svc-ease), box-shadow 0.35s var(--svc-ease);
}

.svc-process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--svc-shadow-hover);
}

.svc-process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, var(--svc-gold), var(--svc-bronze));
  box-shadow: 0 4px 12px rgba(154, 123, 74, 0.28);
}

.svc-process-step__title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--svc-charcoal);
}

.svc-process-step__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--svc-muted);
}

/* ─── Proof / stats ─────────────────────────────────────────────── */
.svc-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--svc-gap);
}

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

  .svc-proof-quote {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .svc-proof-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .svc-proof-stat { grid-column: span 3; }
  .svc-proof-quote { grid-column: span 6; }
  .svc-proof-trust { grid-column: span 3; }
}

.svc-proof-stat {
  padding: 28px 24px;
  border-radius: var(--svc-radius-sm);
  background: var(--svc-card);
  border: 1px solid var(--svc-border);
  box-shadow: var(--svc-shadow);
  text-align: center;
}

.svc-proof-stat__val {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 5vw, 48px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--svc-charcoal);
}

.svc-proof-stat__val em {
  font-style: normal;
  color: var(--svc-gold);
}

.svc-proof-stat__lbl {
  display: block;
  margin-top: 8px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--svc-soft);
}

.svc-proof-stat__note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--svc-muted);
}

.svc-proof-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
  border-radius: var(--svc-radius);
  background:
    radial-gradient(ellipse at 0% 100%, rgba(154, 123, 95, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #f7f3ec 100%);
  border: 1px solid var(--svc-border);
  box-shadow: var(--svc-shadow);
}

.svc-proof-quote blockquote {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
  color: var(--svc-charcoal);
}

.svc-proof-quote cite {
  display: block;
  margin-top: 16px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--svc-soft);
}

.svc-proof-trust {
  padding: 28px 24px;
  border-radius: var(--svc-radius-sm);
  background: var(--svc-card);
  border: 1px solid var(--svc-border);
  box-shadow: var(--svc-shadow);
}

.svc-proof-trust__title {
  margin: 0 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--svc-charcoal);
}

.svc-proof-trust__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-proof-trust__list li {
  padding: 8px 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--svc-muted);
  border-bottom: 1px solid var(--svc-border);
}

.svc-proof-trust__list li:last-child {
  border-bottom: none;
}

/* ─── Maintenance panel ─────────────────────────────────────────── */
.svc-maint-panel {
  padding: 32px 24px;
  border-radius: var(--svc-radius);
  background:
    radial-gradient(ellipse at 88% 12%, rgba(201, 169, 110, 0.14) 0%, transparent 46%),
    linear-gradient(160deg, #ffffff 0%, #f5f1ea 100%);
  border: 1px solid var(--svc-border);
  box-shadow: var(--svc-shadow);
}

@media (min-width: 768px) {
  .svc-maint-panel {
    padding: 48px 44px;
  }
}

.svc-maint-bento {
  margin-top: 28px;
}

@media (min-width: 901px) {
  .svc-maint-bento {
    gap: clamp(24px, 2.5vw, 34px);
  }

  .svc-maint-bento .svc-span-4 {
    grid-column: span 4;
  }

  .svc-maint-bento .svc-span-6 {
    grid-column: span 6;
  }
}

.svc-maint-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 26px;
  border-radius: var(--svc-radius-sm);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--svc-border);
  box-shadow: 0 8px 22px rgba(26, 24, 22, 0.05);
  transition: transform 0.35s var(--svc-ease), box-shadow 0.35s var(--svc-ease);
  overflow: hidden;
}

.svc-maint-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--svc-bronze) 0%, var(--svc-gold) 100%);
  opacity: 0.85;
}

.svc-maint-step--emerald::before {
  background: linear-gradient(90deg, #128a5c 0%, #1ab87a 100%);
}

.svc-maint-step--gold::before {
  background: linear-gradient(90deg, var(--svc-bronze) 0%, var(--svc-gold) 100%);
}

.svc-maint-step--purple::before {
  background: linear-gradient(90deg, #5a3d8a 0%, #8040d0 100%);
}

.svc-maint-step__head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.svc-maint-step__head .svc-process-step__num {
  flex-shrink: 0;
  margin: 0;
}

.svc-maint-step__head .svc-process-step__title {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.svc-maint-step .svc-process-step__body {
  margin: 0;
}

.svc-maint-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(26, 24, 22, 0.08);
}

.svc-maint-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.svc-maint-cta p {
  margin: 0;
  max-width: 520px;
  font-size: 14px;
  color: var(--svc-muted);
}

/* ─── Final CTA ─────────────────────────────────────────────────── */
.svc-cta-section {
  padding-bottom: 64px;
}

.svc-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 40px 28px;
  border-radius: var(--svc-radius);
  background:
    radial-gradient(ellipse at 12% 50%, rgba(154, 123, 95, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 88% 30%, rgba(201, 169, 110, 0.18) 0%, transparent 48%),
    linear-gradient(135deg, #1a1814 0%, #2a2520 52%, #1a1814 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 72px rgba(26, 24, 22, 0.18);
}

@media (min-width: 768px) {
  .svc-cta-panel {
    padding: 56px 52px;
  }
}

.svc-cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 75%);
  pointer-events: none;
}

.svc-cta-panel > * {
  position: relative;
  z-index: 1;
}

.svc-cta-panel .svc-kicker {
  color: rgba(201, 169, 110, 0.92);
}

.svc-cta-panel .svc-title {
  color: #ffffff;
  max-width: 720px;
}

.services-page .svc-cta-panel .svc-lead {
  color: #ffffff;
  max-width: 560px;
}

.svc-cta-panel .contact-cta-actions {
  margin-top: 28px;
}

.services-page .svc-cta-panel .btn-outline-large {
  color: #ffffff !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
}

.services-page .svc-cta-panel .btn-outline-large:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(201, 169, 110, 0.72) !important;
}

/* ─── Override legacy dark bento on services page ───────────────── */
.services-page .bento-section:not(.svc-section) {
  padding-left: 0;
  padding-right: 0;
}

.services-page .svc-section + .svc-section {
  border-top: 1px solid rgba(26, 24, 22, 0.06);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .svc-bento-card,
  .svc-service-card,
  .svc-process-step,
  .svc-process-chip,
  .svc-maint-step {
    transition: none;
  }

  .svc-service-card:hover img {
    transform: none;
  }
}

