*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  background: #0f0e0a;
  color: #f3eed9;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: clamp(220px, 26vw, 320px);
  background: #090805;
  overflow: hidden;
  border-bottom: 1px solid rgba(203, 163, 92, 0.2);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 6, 0.16) 0%, rgba(8, 8, 6, 0.38) 100%),
    radial-gradient(circle at 70% 35%, rgba(203, 163, 92, 0.08), transparent 45%);
  pointer-events: none;
}

.top-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 0 14px 2px rgba(203, 163, 92, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(203, 163, 92, 0.45);
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  border: 1px solid rgba(243, 238, 217, 0.55);
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 0 14px 2px rgba(203, 163, 92, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.hero-content {
  max-width: 760px;
  padding: 54px 24px 24px 38px;
}

.intro-brand {
  margin: 0 0 22px;
  font-size: clamp(2.35rem, 4.8vw, 3.35rem);
  font-weight: 700;
  color: #cba35c;
}

.intro {
  background: #120f0b;
  border-bottom: 1px solid rgba(203, 163, 92, 0.2);
}

h1 {
  margin: 18px 0 0;
  font-size: clamp(1.7rem, 4.1vw, 3rem);
  line-height: 1.26;
  color: #fff8e7;
  max-width: 26ch;
}

.lead {
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2.1vw, 1.25rem);
  line-height: 1.45;
  max-width: 52ch;
}

.reviews-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 22px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #f2dfa8;
  border-bottom: 1px dashed rgba(242, 223, 168, 0.35);
  padding-bottom: 5px;
  line-height: 1.1;
}

.reviews-stars {
  font-size: 1.58rem;
  letter-spacing: 0.04em;
}

.reviews-text {
  margin-top: 4px;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 1.02rem;
  font-weight: 700;
  box-shadow: 0 0 16px 3px rgba(203, 163, 92, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}

.btn-primary {
  background: #cba35c;
  color: #1a1914;
}

.btn-secondary {
  border: 1px solid rgba(243, 238, 217, 0.55);
  color: #f3eed9;
}

.brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px 5px rgba(203, 163, 92, 0.34);
}

.nav-link:hover {
  transform: translateY(-2px);
  border-color: rgba(203, 163, 92, 0.8);
  color: #f2dfa8;
  box-shadow: 0 0 24px 5px rgba(203, 163, 92, 0.34);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 26px 6px rgba(203, 163, 92, 0.38);
}

.btn-primary:hover {
  background: #d8b26a;
}

.btn-secondary:hover {
  border-color: rgba(203, 163, 92, 0.84);
  color: #f2dfa8;
}

.packages {
  background: #15130e;
  padding: 56px 24px 88px;
}

.landing-footer {
  background: #15130e;
  border-top: 1px solid rgba(203, 163, 92, 0.2);
  padding: 26px 24px 84px;
  text-align: center;
}

.footer-text {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.8;
  color: #cba35c;
}

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #cba35c;
}

.section-heading p {
  margin: 22px auto 0;
  max-width: 56ch;
  font-size: 1.05rem;
}

.cards {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(203, 163, 92, 0.22);
  background: #0f0d09;
  border-radius: 16px;
  overflow: hidden;
}

.card-link {
  display: block;
  box-shadow: 0 0 14px 2px rgba(203, 163, 92, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(203, 163, 92, 0.52);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}

.card-media {
  width: 100%;
  height: clamp(210px, 21vw, 290px);
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.card-body {
  padding: 16px 16px 18px;
}

.card-body h3 {
  margin: 0;
  font-size: 1.75rem;
  color: #f8edcf;
}

.card-body p {
  margin: 8px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}

.card-note {
  color: #ceb98b;
}

.card-details {
  margin-top: 10px;
  color: #efe3c4;
}

.card-details summary {
  cursor: pointer;
  font-weight: 700;
  color: #f2dfa8;
}

.card-details ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.card-details li {
  margin: 4px 0;
  line-height: 1.35;
}

.card-price {
  margin: 44px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(203, 163, 92, 0.35);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.05;
  color: #f3e6c2;
  letter-spacing: 0.01em;
}

.price-group {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(203, 163, 92, 0.35);
}

.card-price-primary,
.card-price-secondary {
  margin: 0;
  padding-top: 0;
  border-top: 0;
  font-size: 1.5rem;
  line-height: 1.15;
}

.card-price-secondary {
  margin-top: 10px;
  font-size: 1.35rem;
  color: #e5d7b2;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(243, 238, 217, 0.55);
  box-shadow: 0 0 14px 2px rgba(203, 163, 92, 0.18);
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.card-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(203, 163, 92, 0.84);
  color: #f2dfa8;
  box-shadow: 0 0 24px 5px rgba(203, 163, 92, 0.34);
}

.btn:focus-visible,
.brand:focus-visible,
.nav-link:focus-visible,
.card-details summary:focus-visible,
.card-cta:focus-visible {
  outline: 2px solid #f3eed9;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .brand,
  .nav-link,
  .btn,
  .card-link,
  .card-cta {
    transition: none;
  }

  .brand:hover,
  .nav-link:hover,
  .btn:hover,
  .card-link:hover,
  .card-cta:hover {
    transform: none;
  }
}

@media (max-width: 960px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .card-media {
    height: clamp(190px, 28vw, 250px);
  }
}

@media (max-width: 680px) {
  .top-nav {
    padding: 14px 16px;
  }

  .brand {
    font-size: 1rem;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .nav-link {
    font-size: 0.92rem;
    padding: 8px 12px;
  }

  .hero {
    min-height: clamp(190px, 48vw, 250px);
  }

  .hero-content {
    padding: 20px 16px 90px 24px;
  }

  h1 {
    max-width: 18ch;
  }

  .card-media {
    height: clamp(180px, 46vw, 240px);
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
