/* ════════════════════════════════════════
   DWELLTRY, Services page
   Loaded after style.css + footer.css + rail.css + municipality.css.
   Reuses .muni-snap-panel + dot rail + FAQ overlay. Adds Services-
   specific blocks: hero stats, 6-card stack, what's-included matrix, philosophy 4-pillar, process horizontal track, CTA card.
════════════════════════════════════════ */

body { background: #000; color: #FFF; scrollbar-width: none; }
body::-webkit-scrollbar { display: none; }

.muni-section-eyebrow--light { color: var(--gold); }
.muni-section-h2--light       { color: #111; }
.muni-section-h2--light em    { color: var(--gold); font-style: italic; }

/* ════════════════════════════════════════
   GENERAL HEAD FOR SVC PANELS
══════════════════════════════════════ */
.svc-head {
  max-width: 900px;
  margin: 0 auto 1.1rem;
  text-align: center;
}
.svc-head--light { color: #111; }
.svc-lede {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.06rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 740px;
  margin: 0.55rem auto 0;
}
.svc-lede--light { color: #333; }

/* ════════════════════════════════════════
   SNAP 1, HERO
══════════════════════════════════════ */
.svc-hero-panel {
  background: #000;
  overflow: hidden;
  isolation: isolate;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.svc-topo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.45;
  animation: svcTopoDrift 28s ease-in-out infinite alternate;
}
@keyframes svcTopoDrift {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-3%, 1%, 0); }
}
.svc-hero-radial {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 8% 12%, rgba(240,168,0,0.18), transparent 70%), radial-gradient(50% 60% at 92% 88%, rgba(240,168,0,0.10), transparent 75%);
}
.svc-hero-hatch {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.020) 0 1px, transparent 1px 14px);
}
.svc-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.svc-hero-left { max-width: 620px; }
.svc-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.svc-stat {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1rem 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: border-color 0.25s, background 0.25s;
}
.svc-stat:hover {
  border-color: var(--gold);
  background: rgba(240,168,0,0.05);
}
.svc-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1;
  color: var(--gold);
}
.svc-stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFF;
}
.svc-stat-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ════════════════════════════════════════
   SNAP 2, SERVICE STACK
══════════════════════════════════════ */
.svc-stack-panel { background: #060606; }
.svc-stack-panel .muni-snap-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.svc-stack-panel .svc-head { margin-bottom: 1rem; }
.svc-stack-panel .svc-lede { font-size: 1.06rem; margin-top: 0.45rem; }
.svc-stack-panel .muni-section-h2 { font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: 0.45rem; }
/* On the stack panel each card is a SUMMARY card: head + name + summary +
   "Show More" button. Full description, deliverables and foot are hidden
   on the card and only surfaced in the modal. */
.svc-stack-panel .svc-card        { padding: 1.1rem 1.2rem 1.15rem; gap: 0.55rem; }
.svc-stack-panel .svc-card-name   { font-size: 1.5rem; }
.svc-stack-panel .svc-card-desc   { font-size: 1rem; line-height: 1.55; opacity: 0.85; }
.svc-stack-panel .svc-card-deliv,
.svc-stack-panel .svc-card-foot   { display: none !important; }
.svc-stack-panel .svc-card-more {
  margin-top: auto;
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(240,168,0,0.55);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem 0.5rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.svc-stack-panel .svc-card-more:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.svc-stack-panel .svc-card--soon .svc-card-more {
  border-color: rgba(240,168,0,0.35);
  color: rgba(240,168,0,0.7);
}

/* ════════════════════════════════════════
   SERVICES MODAL — bigger detail view
══════════════════════════════════════ */
.svc-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(14px) saturate(0.85);
  -webkit-backdrop-filter: blur(14px) saturate(0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
  padding: 2rem;
}
.svc-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
body.svc-modal-open {
  overflow: hidden;
  /* Position-fixed lock so iOS Safari respects the no-scroll rule. */
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}
.svc-modal-panel {
  position: relative;
  max-width: 700px;
  width: 100%;
  max-height: 86vh;
  background: linear-gradient(160deg, #0c0c0c, #060606);
  border: 1px solid rgba(240,168,0,0.45);
  box-shadow: 0 28px 64px -24px rgba(0,0,0,0.7),
              0 0 50px -12px rgba(240,168,0,0.22);
  padding: 2.2rem 2.4rem 2.4rem;
  transform: translateY(14px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.22,0.85,0.25,1);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(240,168,0,0.5) transparent;
}
.svc-modal.is-open .svc-modal-panel { transform: translateY(0) scale(1); }
.svc-modal-panel::-webkit-scrollbar { width: 6px; }
.svc-modal-panel::-webkit-scrollbar-thumb { background: rgba(240,168,0,0.4); }
.svc-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(240,168,0,0.55);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.svc-modal-close:hover {
  background: var(--gold);
  color: #000;
  transform: rotate(90deg);
}
.svc-modal-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}
.svc-modal-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold);
}
.svc-modal-phase {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.svc-modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  color: #FFF;
  margin: 0 0 0.85rem;
}
.svc-modal-name em { color: var(--gold); font-style: italic; }
.svc-modal-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
  margin: 0 0 1.3rem;
}
.svc-modal-deliv-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.svc-modal-deliv {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.svc-modal-deliv li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.04rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  padding-left: 1.3rem;
  position: relative;
}
.svc-modal-deliv li::before {
  content: '/';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.svc-modal-foot {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px dashed rgba(240,168,0,0.45);
  padding-top: 0.95rem;
  text-align: center;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 0.2rem;
}
.svc-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.025);
  padding: 0.7rem 0.9rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: border-color 0.28s, background 0.28s, transform 0.28s;
}
.svc-card:hover {
  border-color: var(--gold);
  background: rgba(240,168,0,0.05);
  transform: translateY(-3px);
}
.svc-card--featured {
  background: rgba(240,168,0,0.05);
  border-color: rgba(240,168,0,0.35);
}
.svc-card--soon { opacity: 0.78; }
/* The "Phase · Coming Soon" eyebrow inside the card already says it, no second corner badge needed. */
.svc-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.svc-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
}
.svc-card-phase {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.svc-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.08;
  color: #FFF;
  margin: 0.05rem 0 0.25rem;
}
.svc-card-tag {
  display: inline-block;
  margin-left: 0.4rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(240,168,0,0.55);
  padding: 0.18rem 0.45rem;
  vertical-align: middle;
}
.svc-card-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.84rem;
  line-height: 1.5;
  opacity: 0.8;
  margin: 0;
}
.svc-card-deliv {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.18rem;
}
.svc-card-deliv li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 1.4;
  opacity: 0.82;
  padding-left: 1rem;
  position: relative;
}
.svc-card-deliv li::before {
  content: '/';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.svc-card-foot {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.4rem;
  margin-top: auto;
}
.svc-card-foot--soon { color: rgba(240,168,0,0.8); font-style: italic; text-transform: none; letter-spacing: 0.05em; }

/* ════════════════════════════════════════
   SNAP 3, MATRIX (light)
══════════════════════════════════════ */
.svc-matrix-panel {
  background: #FFF;
  color: #111;
}
.svc-matrix-panel::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.025) 0 1px, transparent 1px 16px), radial-gradient(35% 50% at 8% 8%, rgba(240,168,0,0.08), transparent 70%);
  z-index: 0;
}
.svc-matrix-panel .muni-snap-inner { position: relative; z-index: 1; }

.svc-matrix {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(0,0,0,0.12);
  background: #FFF;
}
.svc-matrix-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  align-items: center;
}
.svc-matrix-row:nth-child(even) { background: rgba(0,0,0,0.025); }
.svc-matrix-row--head {
  background: #111 !important;
  color: #FFF;
}
.svc-matrix-cell {
  padding: 0.65rem 0.8rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.svc-matrix-row--head .svc-matrix-cell {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
}
.svc-matrix-cell:last-child.svc-matrix-row--head .svc-matrix-cell:last-child { border-right: 0; }
.svc-matrix-cell--label {
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #111;
}
.svc-matrix-row--head .svc-matrix-cell--label { color: rgba(255,255,255,0.6); }
.svc-tick {
  display: inline-block;
  width: 22px; height: 22px;
  line-height: 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  background: rgba(240,168,0,0.10);
}
.svc-half {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,168,0,0.85);
  border: 1px dashed rgba(240,168,0,0.6);
  padding: 0.18rem 0.5rem;
  background: rgba(240,168,0,0.06);
}
.svc-dash {
  color: rgba(0,0,0,0.25);
  font-family: 'Cormorant Garamond', serif;
}
.svc-matrix-key {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.55);
}
.svc-matrix-key span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* ════════════════════════════════════════
   SNAP 4, PHILOSOPHY
══════════════════════════════════════ */
.svc-philosophy-panel {
  background: #000;
  overflow: hidden;
  isolation: isolate;
}
.svc-philosophy-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(45% 60% at 25% 25%, rgba(240,168,0,0.18), transparent 75%), radial-gradient(45% 60% at 80% 80%, rgba(240,168,0,0.10), transparent 75%), repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px), linear-gradient(150deg, #050505, #0b0b0b 50%, #050505);
}
.svc-philosophy-panel .muni-snap-inner { position: relative; z-index: 1; }
.svc-philosophy-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.svc-philosophy-lede { max-width: 460px; margin: 0.6rem 0 1.2rem; }
.svc-philosophy-quote {
  border-left: 2px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin: 0;
}
.svc-philosophy-quote cite {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.6rem;
}

.svc-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.svc-pillar {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.95rem 1.05rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: border-color 0.25s, background 0.25s;
}
.svc-pillar:hover {
  border-color: var(--gold);
  background: rgba(240,168,0,0.06);
}
.svc-pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.svc-pillar-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1.1;
  color: #FFF;
  margin: 0;
}
.svc-pillar-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.55;
  opacity: 0.78;
  margin: 0;
}

/* ════════════════════════════════════════
   SNAP 5, PROCESS TEASER
══════════════════════════════════════ */
.svc-process-panel {
  background:
    radial-gradient(50% 60% at 50% 100%, rgba(240,168,0,0.10), transparent 75%), #060606;
}
.svc-process-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.5rem;
  align-items: stretch;
  margin: 1.6rem 0 1.4rem;
}
.svc-process-step {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  padding: 0.85rem 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: left;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.svc-process-step:hover {
  border-color: var(--gold);
  background: rgba(240,168,0,0.05);
  transform: translateY(-2px);
}
.svc-process-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}
.svc-process-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.15rem;
  color: #FFF;
  line-height: 1.1;
}
.svc-process-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.74rem;
  line-height: 1.5;
  opacity: 0.7;
}
.svc-process-arrow {
  align-self: center;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  opacity: 0.7;
}
.svc-process-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.svc-process-btn { padding: 0.95rem 1.5rem 0.9rem 1.55rem; }
.svc-process-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ════════════════════════════════════════
   SNAP 7, CTA
══════════════════════════════════════ */
.svc-cta-panel {
  background: #000;
  overflow: hidden;
  isolation: isolate;
}
.svc-cta-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 80% at 25% 80%, rgba(240,168,0,0.20), transparent 75%), radial-gradient(50% 70% at 88% 12%, rgba(240,168,0,0.10), transparent 70%), repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 14px), linear-gradient(150deg, #0a0a0a, #050505);
}
.svc-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.svc-cta-h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1.1rem;
}
.svc-cta-lede {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 0 1.5rem;
}
.svc-cta-actions {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.svc-cta-btn { padding: 0.95rem 1.4rem 0.9rem 1.45rem; }
.svc-cta-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.25s;
}
.svc-cta-link:hover { color: var(--gold); }
.svc-cta-link .slash-motif { color: var(--gold); padding-left: 0.4rem; }

.svc-cta-card {
  border: 1px solid rgba(240,168,0,0.35);
  background: rgba(240,168,0,0.04);
  padding: 1.2rem 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.svc-cta-card-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc-cta-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.svc-cta-card-list li {
  border-left: 1px solid rgba(240,168,0,0.35);
  padding: 0.18rem 0 0.18rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.svc-cta-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.98rem;
  line-height: 1.25;
  color: #FFF;
}
.svc-cta-card-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.svc-cta-card-foot {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-top: 1px dashed rgba(240,168,0,0.35);
  padding-top: 0.7rem;
  text-align: center;
}

/* ════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1180px) {
  .svc-grid               { grid-template-columns: repeat(3, 1fr); gap: 0.45rem; }
  .svc-card               { padding: 0.55rem 0.7rem 0.7rem; gap: 0.18rem; }
  .svc-card-name          { font-size: 1.12rem; margin: 0.05rem 0 0.22rem; }
  .svc-card-desc          { font-size: 0.76rem; line-height: 1.4; }
  .svc-card-deliv li      { font-size: 0.72rem; line-height: 1.35; }
  .svc-card-foot          { font-size: 0.62rem; padding-top: 0.32rem; }
  .svc-card-num           { font-size: 1.05rem; }
  .svc-card-phase         { font-size: 0.54rem; }
  .svc-card-head          { gap: 0.28rem; }
  .svc-card-deliv         { margin-top: 0.08rem; gap: 0.15rem; }

  .svc-matrix-cell        { padding: 0.5rem 0.55rem; font-size: 0.72rem; }
  .svc-matrix-row--head .svc-matrix-cell { font-size: 0.62rem; letter-spacing: 0.16em; }
  .svc-tick               { width: 18px; height: 18px; line-height: 18px; font-size: 0.78rem; }
  .svc-half               { font-size: 0.6rem; padding: 0.12rem 0.35rem; letter-spacing: 0.10em; }

  .svc-philosophy-grid    { gap: 2rem; }
  .svc-pillar             { padding: 0.7rem 0.85rem 0.85rem; }
  .svc-pillar-name        { font-size: 1.15rem; }
  .svc-pillar-text        { font-size: 0.76rem; line-height: 1.5; }

  .svc-process-step       { padding: 0.6rem 0.65rem 0.7rem; }
  .svc-process-name       { font-size: 0.95rem; }
  .svc-process-text       { font-size: 0.66rem; line-height: 1.45; }
  .svc-process-num        { font-size: 0.9rem; }
  .svc-process-arrow      { font-size: 0.8rem; }

  .svc-hero-stats         { gap: 0.5rem; }
  .svc-stat               { padding: 0.7rem 0.85rem 0.8rem; }
  .svc-stat-num           { font-size: 1.8rem; }
  .svc-stat-label         { font-size: 0.7rem; }
  .svc-stat-sub           { font-size: 0.66rem; }
}

@media (max-width: 1180px) {
  .svc-head               { margin-bottom: 0.9rem; }
  .svc-lede               { font-size: 0.86rem; line-height: 1.55; }
}

@media (max-width: 900px) {
  .svc-grid               { grid-template-columns: repeat(2, 1fr); }
  .svc-hero-inner         { grid-template-columns: 1fr; }
  .svc-philosophy-grid    { grid-template-columns: 1fr; gap: 1.4rem; }
  .svc-cta-inner          { grid-template-columns: 1fr; }
  .svc-process-track      { grid-template-columns: repeat(3, 1fr); }
  .svc-process-arrow      { display: none; }
  .svc-matrix-row         { grid-template-columns: 1.3fr repeat(5, 1fr); }
}
@media (max-width: 720px) {
  .svc-grid               { grid-template-columns: 1fr; }
  .svc-pillars            { grid-template-columns: 1fr; }
  .svc-process-track      { grid-template-columns: 1fr; }
  .svc-matrix             { font-size: 0.7rem; }
  .svc-matrix-row         { grid-template-columns: 1fr repeat(5, auto); }
  .svc-hero-stats         { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   v3 — Global text bump on services (~+12%, no clip)
══════════════════════════════════════ */
.svc-lede { font-size: 1.18rem !important; line-height: 1.65 !important; }
.svc-stat-num   { font-size: clamp(2.1rem, 3.4vw, 2.85rem) !important; }
.svc-stat-label { font-size: 0.86rem !important; letter-spacing: 0.16em; }
.svc-stat-sub   { font-size: 0.82rem !important; line-height: 1.5 !important; }

.svc-card-name { font-size: 1.45rem !important; }
.svc-card-desc { font-size: 0.98rem !important; line-height: 1.55 !important; }
.svc-card-deliv li { font-size: 0.92rem !important; line-height: 1.5 !important; }
.svc-card-foot { font-size: 0.8rem !important; letter-spacing: 0.14em; }

.svc-matrix-cell { font-size: 0.86rem !important; padding: 0.7rem 0.85rem !important; }
.svc-matrix-row--head .svc-matrix-cell { font-size: 0.76rem !important; }

.svc-philosophy-lede { font-size: 1.08rem !important; line-height: 1.7 !important; }
.svc-philosophy-quote { font-size: 1.15rem !important; line-height: 1.6 !important; }
.svc-pillar-name { font-size: 1.42rem !important; }
.svc-pillar-text { font-size: 0.92rem !important; line-height: 1.6 !important; }

.svc-process-name { font-size: 1.18rem !important; }
.svc-process-text { font-size: 0.86rem !important; line-height: 1.55 !important; }
.svc-process-num  { font-size: 1.2rem !important; }
.svc-process-cta .btn-ghost { padding: 1.05rem 1.65rem 1rem 1.7rem !important; }

.svc-cta-h2 { font-size: clamp(2.4rem, 4.6vw, 3.8rem) !important; }
.svc-cta-lede { font-size: 1.12rem !important; line-height: 1.7 !important; }
.svc-cta-card-name { font-size: 1.05rem !important; }
.svc-cta-card-text { font-size: 0.86rem !important; }

@media (max-width: 1180px) {
  .svc-lede { font-size: 1.05rem !important; }
  .svc-card-name { font-size: 1.28rem !important; }
  .svc-card-desc { font-size: 0.88rem !important; }
  .svc-card-deliv li { font-size: 0.82rem !important; }
  .svc-card-foot { font-size: 0.72rem !important; }
  .svc-pillar-name { font-size: 1.22rem !important; }
  .svc-process-name { font-size: 1.05rem !important; }
}

/* ════════════════════════════════════════
   GLOBAL TEXT BUMP — bigger but no clip on snap panels
══════════════════════════════════════ */
.svc-lede { font-size: 1.18rem !important; line-height: 1.7 !important; }
.svc-card-name { font-size: 1.5rem !important; }
.svc-card-desc { font-size: 1rem !important; line-height: 1.55 !important; }
.svc-card-deliv li { font-size: 0.94rem !important; line-height: 1.5 !important; }
.svc-card-foot { font-size: 0.78rem !important; }

/* SECTION 4 — Philosophy: bigger */
.svc-pillar-name { font-size: 1.7rem !important; }
.svc-pillar-text { font-size: 1.08rem !important; line-height: 1.6 !important; }
.svc-philosophy-lede { font-size: 1.26rem !important; line-height: 1.7 !important; }
.svc-philosophy-quote { font-size: 1.32rem !important; line-height: 1.55 !important; }
.svc-philosophy-quote cite { font-size: 0.86rem !important; }

/* SECTION 5 — Process teaser: bigger */
.svc-process-name { font-size: 1.4rem !important; }
.svc-process-text { font-size: 1.04rem !important; line-height: 1.6 !important; }
.svc-process-num { font-size: 1.4rem !important; }
.svc-process-arrow { font-size: 1.2rem !important; }
.svc-process-note { font-size: 0.86rem !important; }
.svc-process-step { padding: 1.05rem 1rem 1.15rem !important; }

/* SECTION 6 — FAQ: handled by municipality.css base (.muni-faq-*).
   Bump the lede + question + answer sizing here. */
.svc-faq-panel .muni-faq-lede { font-size: 1.16rem !important; line-height: 1.7 !important; }
.svc-faq-panel .muni-faq-q-text { font-size: clamp(1.2rem, 1.8vw, 1.5rem) !important; }
.svc-faq-panel .muni-faq-a-inner p { font-size: 1.06rem !important; line-height: 1.8 !important; }

/* SECTION 7 — CTA: bigger */
.svc-stat-num { font-size: clamp(2.2rem, 3.6vw, 2.9rem) !important; }
.svc-stat-label { font-size: 0.92rem !important; }
.svc-stat-sub { font-size: 0.86rem !important; }
.svc-matrix-cell { font-size: 0.92rem !important; }
.svc-matrix-row--head .svc-matrix-cell { font-size: 0.82rem !important; }
.svc-cta-h2 { font-size: clamp(2.6rem, 4.8vw, 4.1rem) !important; }
.svc-cta-lede { font-size: 1.26rem !important; line-height: 1.7 !important; }
.svc-cta-card-eyebrow { font-size: 0.86rem !important; }
.svc-cta-card-name { font-size: 1.22rem !important; }
.svc-cta-card-text { font-size: 1rem !important; }
.svc-cta-card-foot { font-size: 0.86rem !important; }
.svc-cta-link { font-size: 0.9rem !important; }

@media (max-width: 1180px) {
  .svc-lede { font-size: 1.04rem !important; }
  .svc-card-name { font-size: 1.32rem !important; }
  .svc-card-desc { font-size: 0.92rem !important; }
  .svc-card-deliv li { font-size: 0.86rem !important; }
  .svc-pillar-name { font-size: 1.46rem !important; }
  .svc-pillar-text { font-size: 0.96rem !important; }
  .svc-philosophy-lede { font-size: 1.1rem !important; }
  .svc-philosophy-quote { font-size: 1.16rem !important; }
  .svc-process-name { font-size: 1.18rem !important; }
  .svc-process-text { font-size: 0.92rem !important; }
  .svc-process-num { font-size: 1.18rem !important; }
  .svc-faq-panel .muni-faq-q-text { font-size: clamp(1.05rem, 1.55vw, 1.3rem) !important; }
  .svc-faq-panel .muni-faq-a-inner p { font-size: 0.96rem !important; }
  .svc-cta-lede { font-size: 1.1rem !important; }
  .svc-cta-card-name { font-size: 1.08rem !important; }
  .svc-cta-card-text { font-size: 0.9rem !important; }
}
