/* ============================================
   Offer Page Styles
   ============================================ */

/* --- Page Hero --- */
.offer-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offer-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-overlay-dark);
  opacity: 0.6;
}

.offer-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.offer-hero-title {
  font-family: var(--font-script);
  font-size: clamp(48px, 8vw, 100px);
  color: var(--color-cream);
  font-weight: 400;
  line-height: 1.1;
  animation: fadeInUp 1.5s ease forwards;
}

.offer-hero-subtitle {
  font-size: clamp(11px, 1.2vw, 14px);
  color: var(--color-cream);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 16px;
  opacity: 0;
  animation: fadeInUp 1.5s 0.4s ease forwards;
}

/* --- Session Type Navigation --- */
.offer-nav {
  background-color: var(--color-dark);
  padding: 20px 0;
  position: sticky;
  top: 72px;
  z-index: 50;
}

.offer-nav-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
}

.offer-nav-links a {
  color: var(--color-cream);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: opacity var(--transition-base);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.offer-nav-links a:hover {
  opacity: 0.7;
  border-bottom-color: var(--color-cream);
}

/* --- Offer Section --- */
.offer-section {
  padding: 100px 0;
  overflow: hidden;
  scroll-margin-top: 130px;
}

.offer-section--alt {
  background-color: #f5efe6;
}

.offer-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.offer-section-title {
  font-family: var(--font-script);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--color-dark);
  font-weight: 400;
  margin-bottom: 8px;
}

.offer-section-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b5f51;
}

/* --- Offer Content Layout --- */
.offer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.offer-content--reverse {
  direction: rtl;
}

.offer-content--reverse > * {
  direction: ltr;
}

.offer-text p {
  font-size: 16px;
  color: #6b5f51;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* --- Offer Details --- */
.offer-details {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.offer-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b5f51;
}

.offer-detail-value {
  font-size: 15px;
  color: var(--color-dark);
  font-weight: 500;
}

/* --- Offer Tiers --- */
.offer-tiers {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--color-border);
}

.offer-tier {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.offer-tier-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.offer-tier-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-dark);
  font-weight: 500;
}

.offer-tier-meta {
  font-size: 14px;
  color: var(--color-dark);
}

.offer-tier-note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #6b5f51;
  font-style: italic;
}

.offer-tiers-intro {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b5f51;
  margin: 0 0 8px;
}

/* --- Offer CTA --- */
.offer-cta {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  padding-bottom: 2px;
  transition: opacity var(--transition-base);
}

.offer-cta:hover {
  opacity: 0.7;
}

/* --- Gallery Grid --- */
.offer-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.offer-gallery-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offer-gallery-grid img:hover {
  transform: scale(1.03);
}

/* --- Divider Quote --- */
.offer-divider {
  background-color: var(--color-overlay-brown);
  padding: 60px 24px;
  text-align: center;
}

.offer-divider-text {
  font-family: var(--font-script);
  font-size: clamp(28px, 5vw, 56px);
  color: var(--color-cream);
  font-weight: 400;
  line-height: 1.2;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
  .offer-hero {
    height: 40vh;
    min-height: 280px;
  }

  .offer-nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }

  .offer-nav-links a {
    font-size: 11px;
  }

  .offer-section {
    padding: 60px 0;
  }

  .offer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-content--reverse {
    direction: ltr;
  }

  .offer-details {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .offer-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer-divider {
    padding: 40px 24px;
  }
}
