#home .hero {
  min-height: min(720px, calc(100vh - 92px));
}

.home-section-heading {
  max-width: 760px;
}

.home-section-heading h2 {
  margin: 8px 0 14px;
  color: var(--navy);
  font: clamp(34px, 4.4vw, 58px)/1 Georgia, serif;
}

.home-section-heading > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.home-section-heading > a,
.home-text-link {
  color: var(--rose);
  font-weight: 900;
  text-decoration: none;
}

.home-services {
  padding: 56px max(6vw, 24px);
  background: #fffaf7;
}

.home-services .home-section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  max-width: none;
  margin-bottom: 24px;
}

.home-services .home-section-heading .eyebrow {
  grid-column: 1 / -1;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-service-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(17, 26, 55, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-service-card:nth-child(2) { background: linear-gradient(145deg, #fff, #f8eee8); }
.home-service-card:nth-child(3) { background: linear-gradient(145deg, #fff, #f4e5e3); }
.home-service-card:nth-child(4) { background: linear-gradient(145deg, #fff, #f2ecf4); }

.home-service-card span {
  color: var(--rose);
  font-size: 30px;
}

.home-service-card h3 {
  margin: 26px 0 10px;
  font: 26px/1.1 Georgia, serif;
}

.home-service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.home-standard {
  padding-block: 60px;
}

.home-standard .promise-carousel {
  padding-bottom: 36px;
}

.home-relief-preview {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: center;
  padding: 60px max(6vw, 24px);
  background: linear-gradient(135deg, #f8e9e2, #fffaf7);
}

.home-relief-preview > .btn {
  justify-self: start;
}

.home-relief-options {
  grid-row: span 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-relief-options article {
  min-height: 205px;
  padding: 25px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 34px rgba(17, 26, 55, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-relief-options b {
  color: var(--rose);
}

.home-relief-options h3 {
  margin: 30px 0 9px;
  color: var(--navy);
  font: 23px/1.08 Georgia, serif;
}

.home-relief-options p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.home-faq-preview {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px 54px;
  align-items: start;
  padding: 60px max(8vw, 24px);
  background: #fffaf7;
}

.home-faq-list {
  display: grid;
  gap: 12px;
}

.home-faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(17, 26, 55, .06);
}

.home-faq-list summary {
  cursor: pointer;
  padding: 19px 22px;
  color: var(--navy);
  font-weight: 900;
}

.home-faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.home-faq-preview > .home-text-link {
  grid-column: 2;
}

.booking-cta {
  padding-block: 58px;
}

@media (hover: hover) and (pointer: fine) {
  .home-service-card:hover,
  .home-service-card:focus-visible,
  .home-relief-options article:hover,
  .home-relief-options article:focus-within {
    transform: translateY(-8px);
    border-color: rgba(214, 170, 85, .72);
    box-shadow: 0 22px 44px rgba(17, 26, 55, .13), 0 0 28px rgba(214, 170, 85, .22);
  }
}

@media (max-width: 980px) {
  .home-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-relief-preview,
  .home-faq-preview {
    grid-template-columns: 1fr;
  }

  .home-relief-options {
    grid-row: auto;
  }

  .home-faq-preview > .home-text-link {
    grid-column: 1;
  }
}

@media (max-width: 620px) {
  #home .hero {
    min-height: auto;
  }

  .home-services,
  .home-standard,
  .home-relief-preview,
  .home-faq-preview,
  .booking-cta {
    padding-block: 42px;
  }

  .home-services .home-section-heading {
    grid-template-columns: 1fr;
  }

  .home-service-grid,
  .home-relief-options {
    grid-template-columns: 1fr;
  }

  .home-service-card,
  .home-relief-options article {
    min-height: 0;
  }

  .home-service-card h3,
  .home-relief-options h3 {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-service-card,
  .home-relief-options article {
    transition: none;
  }
}
