.home-page {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.hero-section {
  display: grid;
  min-height: calc(100vh - 84px);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(35px, 7vw, 100px);
  max-width: 1400px;
  margin: auto;
  padding: 70px clamp(20px, 6vw, 90px) 90px;
}

.home-page > section {
  width: 100%;
  max-width: 100vw;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 15px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 500;
  line-height: 1.06;
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 span {
  color: var(--primary);
  font-style: italic;
}

.hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--text-muted);
  font-size: 20px;
}

.hero-actions,
.contact-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  padding: 30px;
}

.hero-visual::before {
  position: absolute;
  inset: 5% 0 0 10%;
  content: "";
  background: var(--surface-soft);
  border-radius: 48% 48% 20% 20%;
  transform: rotate(-4deg);
}

.hero-visual img {
  position: relative;
  border: 12px solid var(--surface);
  border-radius: 45% 45% 18px 18px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 5px;
  padding: 15px 22px;
  color: var(--primary-dark);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.benefits-section,
.packages-section {
  padding: 95px clamp(20px, 6vw, 90px);
}

.benefits-section {
  background: var(--surface);
}

.benefits-grid {
  display: grid;
  max-width: 1200px;
  margin: auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefits-grid article {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
}

.benefits-grid article > span {
  color: var(--secondary);
  font-family: Georgia, serif;
  font-size: 36px;
}

.benefits-grid h3 {
  margin: 16px 0 8px;
  font-size: 21px;
}

.benefits-grid p {
  margin: 0;
  color: var(--text-muted);
}

.packages-grid {
  display: grid;
  max-width: 1250px;
  margin: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(86, 58, 42, 0.08);
}

.package-card-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.package-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.package-card:hover .package-card-image {
  transform: scale(1.03);
}

.featured-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 5px 12px;
  color: var(--primary-dark);
  background: var(--surface);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.package-card-content {
  padding: 24px;
}

.package-type {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.package-card h3 {
  margin: 5px 0 10px;
  font-family: Georgia, serif;
  font-size: 28px;
}

.package-card p {
  min-height: 52px;
  margin: 0;
  color: var(--text-muted);
}

.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.package-card-footer strong {
  color: var(--primary-dark);
  font-size: 23px;
}

.package-card-footer a {
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1250px;
  margin: 20px auto 100px;
  padding: 55px;
  background: var(--surface-soft);
  border-radius: 36px;
}

.contact-section h2 {
  margin: 5px 0 10px;
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
}

.contact-section p {
  margin: 0;
  color: var(--text-muted);
}

.contact-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.loading-state,
.empty-state,
.error-state {
  grid-column: 1 / -1;
  padding: 45px;
  text-align: center;
  background: var(--surface);
  border-radius: 20px;
}

.error-state {
  color: var(--danger);
}

@media (max-width: 950px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 650px;
    margin: auto;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    align-items: flex-start;
    margin-inline: 20px;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero-section {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding-top: 45px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 40px;
    overflow-wrap: anywhere;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-visual {
    padding: 10px;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-note {
    right: 12px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .section-heading h2 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .benefits-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .benefits-section,
  .packages-section {
    padding-block: 70px;
  }

  .contact-section {
    padding: 32px 24px;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions a {
    width: 100%;
  }
}
