/* ============================================================
   v2 service pages — editorial components (after styles.css)
   ============================================================ */

/* breadcrumb */
.crumb { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 0.82rem; letter-spacing: 0.02em; color: var(--ink-3); }
.crumb a, .crumb .here { white-space: nowrap; }
.crumb a { color: var(--ink-3); transition: color .2s; }
.crumb a:hover { color: var(--ink); }
.crumb .sep { opacity: .6; }
.crumb .here { color: var(--accent); }

/* hero meta row (tags under hero) */
.herometa { display: flex; flex-wrap: wrap; gap: 9px; margin-top: clamp(40px, 6vw, 80px); padding-top: clamp(26px, 3vw, 40px); border-top: 1px solid var(--line); }
.herometa .mtag { font-size: 0.78rem; letter-spacing: 0.02em; color: var(--ink-2); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; white-space: nowrap; }

/* section head (shared) */
.shead { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(40px, 6vw, 78px); }
.shead__title { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.03em; line-height: 1; font-size: clamp(2.1rem, 5.2vw, 4.4rem); }
.shead__lead { color: var(--ink-2); max-width: 40ch; font-size: 1.05rem; line-height: 1.5; text-wrap: pretty; }

/* editorial index list (what we build / run) */
.idx { border-top: 1px solid var(--line); }
.idxrow {
  display: grid; grid-template-columns: auto minmax(0, 1.1fr) minmax(0, 1fr) auto; align-items: baseline; gap: 26px;
  padding: clamp(22px, 2.6vw, 34px) 4px; border-bottom: 1px solid var(--line);
  transition: padding-left .35s var(--ease); position: relative;
}
.idxrow__n { color: var(--ink-3); font-size: 0.8rem; letter-spacing: 0.04em; }
.idxrow__name { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.02em; font-size: clamp(1.5rem, 3.2vw, 2.5rem); line-height: 1.02; color: var(--ink); transition: color .25s; }
.idxrow__sub { display: block; color: var(--accent); font-size: 0.92rem; margin-top: 8px; letter-spacing: 0; }
.idxrow__desc { color: var(--ink-2); font-size: 1rem; line-height: 1.5; text-wrap: pretty; }
.idxrow__arr { color: var(--accent); font-size: 1.2rem; opacity: 0; transform: translate(-6px, 4px); transition: opacity .25s, transform .25s var(--ease); }
.idxrow:hover { padding-left: 18px; }
.idxrow:hover .idxrow__name { color: var(--accent); }
.idxrow:hover .idxrow__arr { opacity: 1; transform: none; }
@media (max-width: 900px) {
  .idxrow { grid-template-columns: auto 1fr; gap: 8px 20px; }
  .idxrow__desc { grid-column: 2; }
  .idxrow__arr { display: none; }
}

/* checklist (what's included) */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(30px, 5vw, 64px); border-top: 1px solid var(--line); margin-top: clamp(36px, 5vw, 64px); }
.check { display: flex; align-items: flex-start; gap: 14px; padding: clamp(15px, 1.7vw, 20px) 2px; border-bottom: 1px solid var(--line); }
.check__c { color: var(--accent); flex: none; margin-top: 3px; }
.check__c svg { width: 16px; height: 16px; }
.check__t { font-size: 1.06rem; color: var(--ink); text-wrap: pretty; }
@media (max-width: 640px) { .checklist { grid-template-columns: 1fr; } }

/* process (editorial steps) */
.pline { border-top: 1px solid var(--line); margin-top: clamp(36px, 5vw, 64px); }
.pstep2 { display: grid; grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr); gap: 24px; padding: clamp(24px, 3vw, 40px) 4px; border-bottom: 1px solid var(--line); align-items: baseline; }
.pstep2__n { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.03em; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 0.9; color: var(--ink-3); }
.pstep2:hover .pstep2__n { color: var(--accent); }
.pstep2__t { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.4vw, 1.9rem); letter-spacing: -0.02em; }
.pstep2__d { color: var(--ink-2); font-size: 1.02rem; line-height: 1.5; margin-top: 10px; max-width: 52ch; text-wrap: pretty; }
@media (max-width: 720px) { .pstep2 { grid-template-columns: 1fr; gap: 10px; } }

/* CTA band */
.ctaband { border-top: 1px solid var(--line); }
.ctaband__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 36px; flex-wrap: wrap; }
.ctaband__big { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.03em; line-height: 1.0; font-size: clamp(2.2rem, 6vw, 5rem); max-width: 18ch; text-wrap: balance; }
.ctaband__big .muted { color: var(--ink-3); }
