/* ─── 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(107, 63, 160, 0.04) 0%, transparent 38%),
    #faf9f7;
}

.services-page .page-main {
  position: relative;
  max-width: min(1380px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

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

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

@media (min-width: 1100px) {
  .services-page .page-main {
    padding-left: max(28px, var(--site-edge));
    padding-right: max(28px, 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(107, 63, 160, 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, #6b3fa0 0%, #c9a96e 50%, #128a5c 100%));
}

.service-intro-panel--acoustic {
  --intro-accent: #128a5c;
  --intro-accent-bar: linear-gradient(90deg, #128a5c 0%, #3dd4a0 100%);
}

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

.service-intro-panel--booth {
  --intro-accent: #6b3fa0;
  --intro-accent-bar: linear-gradient(90deg, #6b3fa0 0%, #9b6fd4 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, #128a5c);
}

.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, #128a5c);
}

@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: 52vh;
  padding-bottom: 88px;
  padding-left: max(28px, var(--site-edge));
  padding-right: max(28px, var(--site-edge));
}

.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.75;
}

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

.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: #6b3fa0;
}

.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-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.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: #128a5c;
  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(107, 63, 160, 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, #6b3fa0 0%, #c9a96e 50%, #128a5c 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;
}

.services-page .service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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 {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 24, 22, 0.55) 0%, rgba(26, 24, 22, 0.08) 48%, transparent 100%);
  pointer-events: none;
}

.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: #6b3fa0; }
.services-page .service-card--fire .service-card__body { border-top-color: #c94a4a; }
.services-page .service-card--acoustic .service-card__body { border-top-color: #128a5c; }
.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, #6b3fa0, #4a2878); }
.services-page .service-card--fire .service-card__icon { background: linear-gradient(135deg, #c94a4a, #8f2f2f); }
.services-page .service-card--acoustic .service-card__icon { background: linear-gradient(135deg, #128a5c, #0a5c3d); }
.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: #6b3fa0 !important;
  border-bottom-color: rgba(107, 63, 160, 0.35) !important;
}

.services-page .service-card:hover .service-card__link span {
  transform: translateX(2px);
  background: rgba(107, 63, 160, 0.12);
}

.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 {
  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:last-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  align-items: start;
  padding: 36px 40px;
}

.services-maint-step:last-child .services-maint-step__num {
  grid-row: span 2;
  margin-bottom: 0;
  width: 40px;
  height: 40px;
  font-size: 11px;
}

.services-maint-step:last-child h3,
.services-maint-step:last-child p {
  margin-bottom: 0;
}

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

.services-maint-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  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 h3 {
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: #1a1814;
  margin-bottom: 12px;
}

.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: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(26, 24, 22, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.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(107, 63, 160, 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 {
  color: rgba(201, 169, 110, 0.92) !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;
}

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

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

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

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

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

  .services-maint-step:last-child {
    display: block;
    padding: 32px 30px 34px;
  }

  .services-maint-step:last-child .services-maint-step__num {
    margin-bottom: 14px;
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .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: #6b3fa0;
}

/* 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: #128a5c;
}

.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: #128a5c;
}

.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: #128a5c;
}

.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: 4 / 3;
  object-fit: cover;
}

/* 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: #c94a4a;
}

.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: #c94a4a;
}

.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: 28px 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: #c94a4a;
}

.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: #c94a4a;
}

.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: #c94a4a;
  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;
  }
}
