/* ========================================
   OLYMPOS LODGE — Offers Page
   ======================================== */

/* ── Wrapper ─────────────────────────────── */
.offers-dark {
  position: relative;
  z-index: 1;
  background: var(--color-warm-gold);
}
.offers-dark__header {
  text-align: center;
  padding: 4rem 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.offers-dark__header::before,
.offers-dark__header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.offers-dark__header .section-label {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Hero ────────────────────────────────── */
.offers-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md) var(--space-md);
  text-align: center;
}

.offers-hero__title {
  font-family: 'Cormorant SC', serif;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(4.5rem, 10vw, 10rem);
  line-height: 0.95;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* ── Ornamental divider ──────────────────── */
.offer-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 var(--space-xl);
  margin: 0 auto;
  max-width: 1280px;
}

.offer-divider__line {
  flex: 1;
  height: 1px;
  background: rgba(247, 245, 240, 0.22);
}

.offer-divider__ornament {
  flex-shrink: 0;
  width: 38px;
  height: 20px;
  opacity: 0.45;
  fill: none;
  stroke: var(--color-cream);
  stroke-width: 1;
}

/* ── Packages grid ───────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Package card ────────────────────────── */
.offer-card {
  padding: var(--space-xl) clamp(2rem, 6vw, 6rem);
  text-align: center;
  position: relative;
}

/* vertical divider between the two cards */
.offer-card + .offer-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(247, 245, 240, 0.18);
}

.offer-card__title {
  font-family: 'Cinzel', serif;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #ffffff;
  margin-bottom: var(--space-md);
  white-space: nowrap;
}

.offer-card__desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.85;
  color: #ffffff;
  max-width: 420px;
  margin: 0 auto var(--space-md);
}

.offer-card__cta {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 0.8px;
  text-underline-offset: 5px;
  transition: opacity var(--transition);
}

.offer-card__cta:hover {
  opacity: 0.6;
}

/* ── Bottom divider spacing ──────────────── */
.offer-divider--bottom {
  margin-top: var(--space-sm);
}

/* ── Base inclusions strip ───────────────── */
.offers-includes {
  background-color: var(--color-cream); background-image: var(--paper-texture);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.offers-includes .section-label {
  display: block;
  margin-bottom: var(--space-md);
}

.offers-includes .rooms-all-includes__grid {
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}

/* ── Mobile ──────────────────────────────── */
@media (max-width: 768px) {
  .offers-hero__title {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card + .offer-card::before {
    display: none;
  }

  .offer-card {
    padding: var(--space-lg) var(--space-md);
  }

  /* horizontal divider between stacked cards on mobile */
  .offer-card + .offer-card {
    border-top: 1px solid rgba(247, 245, 240, 0.18);
  }

  .offer-divider {
    padding: 0 var(--space-md);
  }
}
