/* ── PACKAGES SECTION ── */
.packages-section {
  --pkg-brand:   #2C2C2C;
  --pkg-gold:    #B8975A;
  --pkg-gold-lt: #D4B483;
  --pkg-cream:   #F9F5EF;
  --pkg-cream-dk:#F0EAE0;
  --pkg-muted:   #7A7168;
  --pkg-white:   #FFFFFF;
  --pkg-serif:   Georgia, 'Times New Roman', serif;

  padding: 96px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.packages-section .section-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--pkg-gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.packages-section .section-title {
  text-align: center;
  font-family: var(--pkg-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: normal;
  font-style: italic;
  color: var(--pkg-brand);
  margin-bottom: 14px;
  line-height: 1.2;
}

.packages-section .section-sub {
  text-align: center;
  font-size: 14px;
  color: var(--pkg-muted);
  max-width: 560px;
  margin: 0 auto 64px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.packages-section .gold-rule {
  width: 40px;
  height: 1px;
  background: var(--pkg-gold);
  margin: 20px auto 28px;
}

/* ── SESSION TAGS ── */
.packages-section .session-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
}

.packages-section .session-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pkg-muted);
  padding: 5px 12px;
  border: 1px solid var(--pkg-cream-dk);
  background: var(--pkg-white);
}

/* ── STANDARD TIER GRID ── */
.packages-section .tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pkg-cream-dk);
  margin-bottom: 80px;
}

.packages-section .tier-card {
  background: var(--pkg-white);
  padding: 40px 32px 44px;
  position: relative;
  transition: box-shadow 0.25s ease;
}

.packages-section .tier-card:hover {
  box-shadow: 0 8px 32px rgba(44,44,44,0.08);
  z-index: 1;
}

.packages-section .tier-card.featured {
  background: var(--pkg-brand);
}

.packages-section .tier-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--pkg-gold);
  color: var(--pkg-white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 5px 14px;
  white-space: nowrap;
}

.packages-section .tier-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pkg-gold);
  margin-bottom: 8px;
}

.packages-section .tier-name {
  font-family: var(--pkg-serif);
  font-size: 22px;
  font-weight: normal;
  color: var(--pkg-brand);
  margin-bottom: 6px;
  line-height: 1.2;
}

.packages-section .tier-card.featured .tier-name {
  color: var(--pkg-white);
}

.packages-section .tier-price {
  font-family: var(--pkg-serif);
  font-size: 38px;
  font-weight: normal;
  color: var(--pkg-brand);
  line-height: 1;
  margin: 20px 0 6px;
}

.packages-section .tier-card.featured .tier-price {
  color: var(--pkg-white);
}

.packages-section .tier-duration {
  font-size: 12px;
  color: var(--pkg-muted);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.packages-section .tier-card.featured .tier-duration {
  color: rgba(255,255,255,0.55);
}

.packages-section .tier-divider {
  height: 1px;
  background: var(--pkg-cream-dk);
  margin-bottom: 24px;
}

.packages-section .tier-card.featured .tier-divider {
  background: rgba(255,255,255,0.12);
}

.packages-section .tier-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.packages-section .tier-includes li {
  font-size: 13px;
  color: var(--pkg-brand);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.packages-section .tier-card.featured .tier-includes li {
  color: rgba(255,255,255,0.82);
}

.packages-section .tier-includes li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pkg-gold);
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── FINE ART TRACK ── */
.packages-section .track-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pkg-gold);
  text-align: center;
  margin-bottom: 12px;
}

.packages-section .track-title {
  font-family: var(--pkg-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  font-weight: normal;
  color: var(--pkg-brand);
  text-align: center;
  margin-bottom: 10px;
}

.packages-section .track-desc {
  text-align: center;
  font-size: 13px;
  color: var(--pkg-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── FINE ART GRID ── */
.packages-section .fineart-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--pkg-cream-dk);
  margin-bottom: 80px;
}

.packages-section .fineart-card {
  background: var(--pkg-white);
  padding: 40px 36px 44px;
  transition: box-shadow 0.25s ease;
}

.packages-section .fineart-card:hover {
  box-shadow: 0 8px 32px rgba(44,44,44,0.08);
  z-index: 1;
}

/* ── EROS EXPERIENCE ── */
.packages-section .eros-wrapper {
  position: relative;
  background: var(--pkg-brand);
  border: 1px solid var(--pkg-gold);
  padding: 56px 60px 60px;
}

.packages-section .eros-wrapper::before,
.packages-section .eros-wrapper::after {
  content: '';
  position: absolute;
  background: var(--pkg-gold);
}

.packages-section .eros-wrapper::before {
  top: 8px; left: 8px; right: 8px;
  height: 1px;
}

.packages-section .eros-wrapper::after {
  bottom: 8px; left: 8px; right: 8px;
  height: 1px;
}

.packages-section .eros-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pkg-gold);
  text-align: center;
  margin-bottom: 10px;
}

.packages-section .eros-title {
  font-family: var(--pkg-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: normal;
  font-style: italic;
  color: var(--pkg-white);
  text-align: center;
  margin-bottom: 6px;
  line-height: 1.1;
}

.packages-section .eros-price {
  font-family: var(--pkg-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: normal;
  color: var(--pkg-gold);
  text-align: center;
  line-height: 1;
  margin: 20px 0 8px;
}

.packages-section .eros-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  font-style: italic;
  margin-bottom: 44px;
  letter-spacing: 0.03em;
}

.packages-section .eros-rule {
  width: 60px;
  height: 1px;
  background: var(--pkg-gold);
  margin: 0 auto 44px;
  opacity: 0.5;
}

.packages-section .eros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 40px;
  max-width: 800px;
  margin: 0 auto 44px;
}

.packages-section .eros-item {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.packages-section .eros-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pkg-gold);
  margin-top: 5px;
  flex-shrink: 0;
}

.packages-section .eros-cta-wrap {
  text-align: center;
}

.packages-section .btn-pkg-gold {
  display: inline-block;
  background: var(--pkg-gold);
  color: var(--pkg-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.2s ease;
  cursor: pointer;
  border: none;
}

.packages-section .btn-pkg-gold:hover { background: var(--pkg-gold-lt); }

.packages-section .btn-pkg-ghost {
  display: inline-block;
  background: transparent;
  color: var(--pkg-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  margin-left: 12px;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.packages-section .btn-pkg-ghost:hover {
  border-color: var(--pkg-gold);
  color: var(--pkg-gold);
}

/* ── ADD-ONS NOTE ── */
.packages-section .addons-note {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--pkg-cream-dk);
}

.packages-section .addons-note p {
  font-size: 13px;
  color: var(--pkg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 16px;
}

.packages-section .addons-note a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pkg-gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.packages-section .addons-note a:hover { border-color: var(--pkg-gold); }

/* ── PACKAGES SECTION WRAPPER (light bg) ── */
.packages-section-wrap {
  background: #F9F5EF;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .packages-section .tier-grid { grid-template-columns: 1fr; }
  .packages-section .fineart-grid { grid-template-columns: 1fr; }
  .packages-section .eros-grid { grid-template-columns: 1fr 1fr; }
  .packages-section .eros-wrapper { padding: 44px 32px 48px; }
}

@media (max-width: 560px) {
  .packages-section { padding: 64px 16px; }
  .packages-section .eros-grid { grid-template-columns: 1fr; }
  .packages-section .btn-pkg-ghost { margin-left: 0; margin-top: 10px; display: block; }
  .packages-section .eros-wrapper { padding: 36px 20px 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .packages-section * { transition: none !important; }
}
