.service-hero { position: relative; min-height: 790px; height: min(92vh, 920px); overflow: hidden; display: flex; align-items: flex-end; }
.service-slideshow { position: absolute; inset: 0; background: #070909; }
.service-slide { position: absolute; inset: 0; opacity: 0; transform: scale(1.045); transition: opacity 1s ease, transform 7s ease; }
.service-slide.active { opacity: 1; transform: scale(1); }
.service-slide img { width: 100%; height: 100%; object-fit: cover; }
.service-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,7,8,.94) 0%, rgba(5,7,8,.62) 46%, rgba(5,7,8,.18) 76%), linear-gradient(0deg, rgba(5,7,8,.92), transparent 54%); }
.service-hero-copy { position: relative; z-index: 3; width: min(850px, 86vw); margin: 0 0 110px 7vw; color: #f5f6f3; }
.service-hero-copy h1 { font-size: clamp(66px, 8.4vw, 132px); }
.service-hero-copy > p:not(.eyebrow) { max-width: 600px; color: #d1d4d2; font-size: 17px; line-height: 1.7; margin: 28px 0 34px; }
.slideshow-controls { position: absolute; z-index: 4; right: 5vw; bottom: 44px; display: flex; align-items: center; gap: 12px; }
.slide-dot { width: 34px; height: 3px; border: 0; padding: 0; background: rgba(255,255,255,.35); cursor: pointer; transition: width .3s ease, background .3s ease; }
.slide-dot.active { width: 62px; background: var(--accent); }
.slide-counter { color: #fff; margin-left: 8px; font: 600 10px var(--sans); letter-spacing: .12em; }
.service-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: 10vw; align-items: start; }
.service-intro h2, .inclusions h2, .service-plans h2, .service-faq h2 { font-size: clamp(50px, 6vw, 92px); }
.intro-copy > p { color: var(--muted); font-size: 16px; line-height: 1.78; margin: 0 0 24px; }
.intro-proof { margin-top: 40px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; }
.intro-proof div { padding: 24px 14px 24px 0; border-bottom: 1px solid var(--line); font: 600 12px var(--sans); text-transform: uppercase; letter-spacing: .06em; }
.intro-proof span { color: var(--accent); display: block; margin-bottom: 8px; font-size: 9px; }
.inclusions { padding: 130px 7vw; background: var(--bg-raised); }
.inclusions-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 65px; }
.inclusions-head > p { max-width: 440px; color: var(--muted); line-height: 1.7; }
.inclusion-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.inclusion-card { padding: 32px; min-height: 230px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s ease; }
.inclusion-card:hover { background: var(--panel); }
.inclusion-card span { color: var(--accent); font: 600 10px var(--sans); }
.inclusion-card h3 { font: 700 27px var(--display); text-transform: uppercase; margin: 54px 0 14px; }
.inclusion-card p { color: var(--muted); font-size: 13px; line-height: 1.65; margin: 0; }
.service-plans { padding: 130px 7vw; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; }
.plan-card { min-height: 390px; padding: 35px; border: 1px solid var(--line); display: flex; flex-direction: column; }
.plan-card.featured { background: var(--accent); color: var(--accent-text); border-color: var(--accent); }
.plan-card > span { font: 700 9px var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.plan-card.featured > span, .plan-card.featured p { color: inherit; opacity: .72; }
.plan-card h3 { margin: auto 0 18px; font: 700 36px var(--display); text-transform: uppercase; }
.plan-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.plan-card a { margin-top: 16px; }
.service-faq { padding: 130px 7vw; background: var(--bg-raised); display: grid; grid-template-columns: .7fr 1.3fr; gap: 9vw; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq-list summary { cursor: pointer; list-style: none; font: 700 18px var(--sans); display: flex; justify-content: space-between; gap: 20px; }
.faq-list summary::after { content: '+'; color: var(--accent); font-size: 24px; }
.faq-list details[open] summary::after { content: '–'; }
.faq-list p { color: var(--muted); line-height: 1.7; max-width: 670px; margin: 18px 0 2px; }
.page-contact .contact-meta { margin-top: 30px; }
.page-contact .contact-meta a { font-size: 16px; }

@media (max-width: 980px) {
  .service-intro, .service-faq { grid-template-columns: 1fr; }
  .inclusion-grid { grid-template-columns: 1fr 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .plan-card { min-height: 310px; }
}

@media (max-width: 640px) {
  .service-hero { min-height: 700px; height: 100svh; }
  .service-hero-copy { margin: 0 5vw 120px; width: 90vw; }
  .service-hero-copy h1 { font-size: clamp(52px, 15vw, 72px); }
  .service-hero-copy > p:not(.eyebrow) { font-size: 14px; }
  .slideshow-controls { left: 5vw; right: auto; bottom: 45px; }
  .service-intro, .inclusions, .service-plans, .service-faq { padding: 82px 5vw; }
  .inclusions-head { align-items: flex-start; flex-direction: column; }
  .inclusion-grid { grid-template-columns: 1fr; }
  .inclusion-card { min-height: 205px; }
  .intro-proof { grid-template-columns: 1fr; }
}
