/* ── SERVICE HERO ─────────────────────────────────────────────────── */
.service-hero {
  background: var(--bg-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.service-hero__photo {
  width: 100%;
  height: 42vh;
  min-height: 240px;
  object-fit: cover;
  background: var(--bg-dark-2);
}

.service-hero__text {
  padding: 32px var(--pad-sm) 48px;
}

.service-hero__h1 {
  font-family: var(--heading);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 16ch;
}

.service-hero__tagline {
  font-size: 17px;
  color: var(--on-dark-muted);
  margin-bottom: 28px;
  max-width: 40ch;
}

.service-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--transition), border-color var(--transition);
}

.service-hero__cta i { font-size: 18px; }

.service-hero__cta--solid {
  background: var(--accent);
  color: var(--white);
}

.service-hero__cta--solid:hover { background: var(--accent-dark); }

.service-hero__cta--ghost {
  border: 0.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}

.service-hero__cta--ghost:hover { border-color: var(--white); }

/* ── WHAT I DO ────────────────────────────────────────────────────── */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.55;
}

.service-list__item i {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── GALLERY ──────────────────────────────────────────────────────── */
.gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--bg-alt);
}

/* ── WHY HIRE ME (service) ───────────────────────────────────────── */
.service-why__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-why__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.5;
}

.service-why__item i {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── CTA STRIP ────────────────────────────────────────────────────── */
.cta-strip {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
}

.cta-strip__inner {
  padding: 56px var(--pad-sm);
}

.cta-strip__text {
  font-family: var(--heading);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 28px;
}

.cta-strip__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.cta-strip__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--transition), border-color var(--transition);
}

.cta-strip__btn i { font-size: 18px; }

.cta-strip__btn--solid {
  background: var(--accent);
  color: var(--white);
}

.cta-strip__btn--solid:hover { background: var(--accent-dark); }

.cta-strip__btn--ghost {
  border: 0.5px solid rgba(255,255,255,0.35);
  color: var(--white);
}

.cta-strip__btn--ghost:hover { border-color: var(--white); }

.cta-strip__phone {
  font-size: 15px;
  color: var(--on-dark-muted);
}

.cta-strip__phone a {
  color: var(--white);
  font-weight: 500;
}

.cta-strip__phone a:hover { color: var(--accent); }

/* ── BACK HOME ────────────────────────────────────────────────────── */
.back-home {
  padding: 28px var(--pad-sm);
  text-align: center;
}

.back-home a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color var(--transition);
}

.back-home a:hover { color: var(--accent); }

/* ── TABLET ───────────────────────────────────────────────────────── */
@media (min-width: 601px) {
  .service-hero__h1 { font-size: 46px; }
  .service-hero__ctas { flex-direction: row; }
  .gallery__grid { flex-direction: row; }
  .gallery__img { aspect-ratio: 1 / 1; }
  .cta-strip__actions { flex-direction: row; justify-content: center; }
}

/* ── DESKTOP ──────────────────────────────────────────────────────── */
@media (min-width: 901px) {
  .service-hero {
    flex-direction: row;
    align-items: stretch;
    min-height: 560px;
  }

  .service-hero__photo {
    order: 2;
    flex: 1;
    width: auto;
    height: auto;
    min-height: 0;
  }

  .service-hero__text {
    order: 1;
    flex: 0 0 44%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px 0 var(--pad);
  }

  .service-hero__h1 { font-size: 50px; }
  .service-hero__tagline { font-size: 18px; }

  .service-list,
  .service-why__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
  }

  .cta-strip__inner { padding: 80px var(--pad); }
  .cta-strip__text { font-size: 32px; max-width: 20ch; margin-left: auto; margin-right: auto; }
}
