/* ── Packages page ── */

.packages-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem 1rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* ── Intro ── */
.packages-intro {
  text-align: center;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 8rem);
  padding-top: 8vh;
}

.packages-eyebrow {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 2rem;
}

.packages-heading {
  margin-bottom: 2rem;
}

.packages-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.packages-heading em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(247, 57, 89, 0.6), 0 2px 12px rgba(0,0,0,0.5);
}

.packages-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.9;
  color: #ffffff;
  opacity: 1;
}

/* ── Grid ── */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
  max-width: 780px;
}

/* ── Package card ── */
.pkg {
  background: rgba(20, 8, 8, 0.55);
  border: 1px solid rgba(232, 104, 74, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s, border-color 0.3s;
}

.pkg:hover {
  background: rgba(20, 8, 8, 0.65);
  border-color: rgba(232, 104, 74, 0.4);
}

.pkg--featured {
  border-color: rgba(247, 57, 89, 0.4);
  background: rgba(20, 8, 8, 0.65);
}

.pkg-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
}

.pkg-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  letter-spacing: 0.02em;
  color: var(--warm-white);
  line-height: 1.2;
}

.pkg-title em {
  font-style: italic;
  color: var(--gold-light);
}

.pkg-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.9;
}

.pkg-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--cream);
  opacity: 0.85;
  flex: 1;
}

/* ── Card details (price, includes, cta) ── */
.pkg-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(247, 57, 89, 0.25);
  margin-top: auto;
}

.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--warm-white);
}

.pkg-price span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.6;
  margin-left: 0.3rem;
}

.pkg-price-note {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.6;
  font-style: italic;
}

.pkg-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.pkg-includes li {
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.75;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}

.pkg-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.55rem;
  color: var(--gold);
  top: 0.3rem;
}

/* ── CTA inside cards ── */
.pkg-cta {
  align-self: flex-start;
  font-size: 0.68rem;
  padding: 0.75rem 1.8rem;
}

/* ── Closing section ── */
.packages-closing {
  text-align: center;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(247, 57, 89, 0.8);
  width: 50%;
}

.packages-closing p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.9;
}

.packages-closing p em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 400;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .packages-closing {
    width: 100%;
  }
}
