.service-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f4ea 12%, #ffffff 42%, #ffffff 100%);
  padding-top: 112px;
}

.service-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5f5f5f;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}

.service-breadcrumb a {
  color: #111111;
  text-decoration: none;
}

.service-breadcrumb a:hover {
  color: #beaa76;
}

.service-hero {
  padding: 34px 0 52px;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 460px);
  gap: 34px;
  align-items: stretch;
}

.service-kicker {
  display: inline-block;
  color: #a98b42;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-hero-copy h1,
.service-heading h2,
.service-copy-block h2,
.service-cta-card h2 {
  color: #0e0e0e;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.service-hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  font-weight: 800;
  max-width: 12ch;
}

.service-lead,
.service-heading p,
.service-copy-block p,
.service-cta-card p {
  color: #4d4d4d;
  font-size: 17px;
  line-height: 1.75;
}

.service-lead {
  margin-top: 22px;
  max-width: 60ch;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.service-btn--primary {
  background: #beaa76;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(190, 170, 118, 0.28);
}

.service-btn--primary:hover {
  background: #ab9768;
}

.service-btn--ghost {
  border: 1px solid rgba(17, 17, 17, 0.14);
  color: #111111;
  background: #ffffff;
}

.service-btn--ghost:hover {
  border-color: #beaa76;
  color: #beaa76;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.service-points li {
  position: relative;
  padding-left: 24px;
  color: #212121;
  line-height: 1.6;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #beaa76;
}

.service-hero-card,
.service-list-card,
.service-panel,
.service-check,
.service-cta-card {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.06);
}

.service-hero-card {
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-hero-card-media {
  aspect-ratio: 1 / 1.03;
  overflow: hidden;
  background: #f1eee4;
}

.service-hero-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-hero-card-body {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.service-stat {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.service-stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-stat-label {
  display: block;
  color: #8b8b8b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}

.service-stat strong {
  color: #0f0f0f;
  font-size: 18px;
}

.service-section {
  padding: 40px 0 32px;
}

.service-section--alt {
  padding-top: 52px;
}

.service-heading {
  max-width: 860px;
  margin-bottom: 26px;
}

.service-heading h2,
.service-copy-block h2,
.service-cta-card h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.service-grid {
  display: grid;
  gap: 20px;
}

.service-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-panel,
.service-check,
.service-list-card,
.service-cta-card {
  border-radius: 26px;
  padding: 26px;
}

.service-panel h3,
.service-check h3,
.service-list-card h3 {
  font-size: 22px;
  line-height: 1.2;
  color: #101010;
  margin-bottom: 12px;
  font-weight: 800;
}

.service-panel p,
.service-check p,
.service-list-card li {
  color: #4d4d4d;
  line-height: 1.75;
  font-size: 16px;
}

.service-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.service-list-card ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.service-grid--checklist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-check {
  position: relative;
  padding-left: 78px;
}

.service-check::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 30px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f4deb3, #beaa76 68%, #9a8554 100%);
  box-shadow: 0 12px 24px rgba(190, 170, 118, 0.26);
}

.service-section--cta {
  padding: 56px 0 84px;
}

.service-cta-card {
  background: linear-gradient(135deg, #0e0e0e 0%, #161616 55%, #262019 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-cta-card h2,
.service-cta-card p {
  color: #ffffff;
}

.service-cta-card .service-kicker {
  color: #d6c08e;
}

.service-cta-card .service-btn--ghost {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
}

.service-cta-card .service-btn--ghost:hover {
  color: #beaa76;
  border-color: #beaa76;
}

@media (max-width: 1100px) {
  .service-hero-grid,
  .service-content-grid,
  .service-grid--three,
  .service-grid--checklist {
    grid-template-columns: 1fr;
  }

  .service-hero-card {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .service-page {
    padding-top: 96px;
  }

  .service-shell {
    padding: 0 18px;
  }

  .service-hero {
    padding-top: 24px;
  }

  .service-hero-copy h1 {
    max-width: none;
  }

  .service-btn {
    width: 100%;
  }

  .service-hero-actions {
    flex-direction: column;
  }

  .service-panel,
  .service-check,
  .service-list-card,
  .service-cta-card,
  .service-hero-card-body {
    padding: 22px;
  }

  .service-check {
    padding-left: 22px;
    padding-top: 72px;
  }

  .service-check::before {
    left: 22px;
    top: 22px;
  }
}
