/* ============================================================
   Shared interior-page styles (city / combo / service / utility)
   ============================================================ */
.breadcrumbs { padding-top: 18px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumbs li { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-muted); }
.breadcrumbs li + li::before { content: "/"; margin-right: 6px; color: var(--accent); }
.breadcrumbs a { color: var(--fg-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs li[aria-current] { color: var(--paper); }

/* Interior hero: same bg treatment as home, tighter */
.page-hero { padding: 40px 0 64px; }
.page-hero .hero__headline { font-size: var(--fs-display-lg); }
.page-hero__display {
  font-family: var(--font-mono);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 600;
  letter-spacing: var(--tracking-mono);
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 14px;
}

/* Service detail: benefits + process cards */
.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.detail-card { background: var(--ink-2); border: 1px solid var(--line); border-top: 2px solid var(--accent); padding: 22px; }
.detail-card__title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(17px, 1.6vw, 21px); color: var(--paper); }
.detail-card__body { font-size: 14px; line-height: 1.55; color: var(--paper); opacity: 0.75; margin-top: 8px; }
@media (max-width: 720px) { .detail-grid { grid-template-columns: 1fr; } }

/* Spec table */
.spec-table { width: 100%; border-collapse: collapse; margin-top: 32px; max-width: 720px; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-table th { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); width: 40%; }
.spec-table td { color: var(--paper); }

/* Pricing factors */
.pricing-list { list-style: none; padding: 0; margin: 24px 0 0; max-width: 640px; }
.pricing-list li { padding: 10px 0 10px 26px; border-bottom: 1px solid var(--line-2); position: relative; font-size: 14px; color: var(--paper); opacity: 0.85; }
.pricing-list li::before { content: ""; position: absolute; left: 4px; top: 16px; width: 9px; height: 9px; background: var(--accent); transform: rotate(45deg); }

/* Cross-links band */
.xlinks { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 16px; }
.xlinks__group h3 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.xlinks__chip { display: inline-block; border: 1px solid var(--line); color: var(--paper); font-family: var(--font-display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; padding: 9px 14px; margin: 0 8px 8px 0; transition: border-color var(--dur-fast), color var(--dur-fast); }
.xlinks__chip:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 720px) { .xlinks { grid-template-columns: 1fr; } }

/* ============================================================
   Guide teaser strip (dropped into home / city / service pages)
   ============================================================ */
/* Desktop grid is 10 columns with chips spanning 2, which renders pixel-identical
   to repeat(5, 1fr) for a 5-chip strip (the span absorbs one internal gap, so the
   arithmetic cancels exactly) but lets a filtered 2-chip strip (service pages)
   span 5 each: two exact half-row cells, no dead columns. A 1-chip strip fills
   the row. Below 960 the strip reuses the .process-grid balance approach
   (3+2 centered on tablet, 2+2+full on small, stack on phone), with its own
   1-2 chip quantity queries at every width. */
.guide-strip {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 16px;
}
.guide-strip > * { grid-column: span 2; }
.guide-strip > *:first-child:nth-last-child(1) { grid-column: 1 / -1; }
.guide-strip > *:first-child:nth-last-child(2), .guide-strip > *:first-child:nth-last-child(2) ~ * { grid-column: span 5; }
@media (max-width: 960px) {
  .guide-strip { grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .guide-strip > * { grid-column: span 2; }
  .guide-strip > *:nth-child(4), .guide-strip > *:nth-child(5) { grid-column: span 3; }
  .guide-strip > *:first-child:nth-last-child(1) { grid-column: 1 / -1; }
  .guide-strip > *:first-child:nth-last-child(2), .guide-strip > *:first-child:nth-last-child(2) ~ * { grid-column: span 3; }
}
@media (max-width: 640px) {
  .guide-strip { grid-template-columns: repeat(2, 1fr); }
  .guide-strip > *, .guide-strip > *:nth-child(4), .guide-strip > *:nth-child(5) { grid-column: auto; }
  /* The quantity queries above are (0,3,0) specificity, so the generic reset
     can't beat them: reset each explicitly. 2 chips = one row of two. */
  .guide-strip > *:first-child:nth-last-child(2), .guide-strip > *:first-child:nth-last-child(2) ~ * { grid-column: auto; }
  .guide-strip > *:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .guide-strip { grid-template-columns: 1fr; }
  .guide-strip > *, .guide-strip > *:nth-child(4), .guide-strip > *:nth-child(5), .guide-strip > *:last-child:nth-child(odd) { grid-column: auto; }
  .guide-strip > *:first-child:nth-last-child(1), .guide-strip > *:first-child:nth-last-child(2), .guide-strip > *:first-child:nth-last-child(2) ~ * { grid-column: auto; }
}

.guide-chip {
  display: block;
  background: var(--ink);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  padding: 20px;
  text-decoration: none;
}
.guide-chip__title {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 19px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.guide-chip__hook {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--paper);
  opacity: 0.7;
  margin-top: 10px;
}
.guide-chip__arrow {
  display: block;
  margin-top: 14px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}
