/* ── PAGE HERO ── */
.page-hero { min-height: 52vh; display: flex; align-items: flex-end; position: relative; overflow: hidden; }
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,.82) 0%, rgba(0,0,0,.5) 60%, rgba(0,0,0,.15) 100%); }
.page-hero-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 45%); z-index: 1; }
.page-hero-body { position: relative; z-index: 2; padding: 7rem 0 4.5rem; width: 100%; }
.page-hero-eyebrow { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--c-red); display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.page-hero-eyebrow::before { content: ''; display: block; width: 1.6rem; height: 1.5px; background: var(--c-red); }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; letter-spacing: -.035em; line-height: 1.0; color: #fff; }
.page-hero h1 span { color: var(--c-red); }
.page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.55); max-width: 38ch; margin-top: .9rem; line-height: 1.8; }
.page-hero-breadcrumb { position: absolute; bottom: 1.6rem; right: 1.6rem; z-index: 3; font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.page-hero-breadcrumb a { color: rgba(255,255,255,.35); transition: color .2s; }
.page-hero-breadcrumb a:hover { color: rgba(255,255,255,.7); }

/* ── SERVICE SECTIONS ── */
.svc-sec { padding: 6rem 0; border-top: 1px solid var(--c-line); }
@media (max-width: 575px) { .svc-sec { padding: 4rem 0; } }
.svc-img-wrap { position: relative; overflow: hidden; aspect-ratio: 5/6; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.25,.46,.45,.94); }
.svc-img-wrap:hover img { transform: scale(1.04); }
.svc-img-wrap::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.18); opacity: 0; transition: opacity .45s; pointer-events: none; }
.svc-img-wrap:hover::after { opacity: 1; }
.svc-num { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--c-red); margin-bottom: .55rem; }
.svc-title { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.05; color: var(--c-ink); }
.svc-divider { width: 2.5rem; height: 2px; background: var(--c-red); margin: 1.2rem 0 1.4rem; }
.svc-desc { font-size: 1.05rem; color: var(--c-mid); line-height: 1.85; margin: 0 0 2rem; max-width: 42ch; }
.svc-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
