/* ============================================
   SPONSORSHIP PAGE
============================================ */

/* ── Event Summary Bar ── */
.sp-summary {
  background: #080300;
  border-bottom: 0.5px solid rgba(201,150,42,0.15);
  padding: 36px 0;
}
.sp-summary-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sp-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 48px;
}
.sp-summary-divider {
  width: 1px;
  height: 44px;
  background: rgba(201,150,42,0.18);
  flex-shrink: 0;
}
.sp-summary-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,150,42,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,150,42,0.6);
  flex-shrink: 0;
  margin-top: 2px;
}
.sp-summary-icon svg { width: 16px; height: 16px; }
.sp-summary-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201,150,42,0.5);
  margin-bottom: 4px;
}
.sp-summary-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #EFE3CE;
  max-width: 300px;
}

/* ── Shared eyebrow ── */
.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #C9962A;
  margin-bottom: 16px;
}
.sp-eyebrow.center { display: flex; justify-content: center; }
.sp-eyebrow-line {
  display: block;
  width: 50px; height: 0.5px;
  background: rgba(201,150,42,0.4);
}

/* ── Why Sponsor ── */
.sp-why {
  background:
    radial-gradient(40% 60% at 80% 50%, rgba(201,150,42,0.07) 0%, transparent 60%),
    radial-gradient(50% 70% at 20% 50%, rgba(180,60,0,0.14) 0%, transparent 65%),
    #0E0600;
  padding: 80px 0;
  border-bottom: 0.5px solid rgba(201,150,42,0.12);
}
.sp-why-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}
.sp-why-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 46px;
  color: #F0D5A0;
  margin-top: 8px;
}
.sp-why-title em {
  font-style: italic;
  background: linear-gradient(90deg, #FEEB94, #E7AD3F, #C9962A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sp-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sp-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 25px;
  color: rgba(239,227,206,0.85);
}
.sp-why-list li::before {
  content: '';
  width: 6px; height: 6px;
  border: 1.5px solid #C9962A;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}

/* ── Tiers Section ── */
.sp-tiers {
  background: #0E0600;
  padding: 80px 0 100px;
}
.sp-tiers-head {
  text-align: center;
  margin-bottom: 56px;
}
.sp-tiers-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 52px;
  color: #EFE3CE;
}
.sp-tiers-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, #FEEB94, #E7AD3F, #C9962A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Diamond Tier ── */
.sp-diamond {
  background: linear-gradient(135deg, rgba(109,35,18,0.22) 0%, rgba(13,13,13,0.6) 100%);
  border: 1px solid rgba(201,150,42,0.35);
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
}
.sp-diamond::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6D2312, #C9962A, #FEEB94, #C9962A, #6D2312);
}

/* ── Gold / Silver row ── */
.sp-tier-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.sp-gold {
  background: linear-gradient(135deg, rgba(80,55,0,0.18) 0%, rgba(13,13,13,0.6) 100%);
  border: 1px solid rgba(201,150,42,0.25);
  position: relative;
  overflow: hidden;
}
.sp-gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8A6800, #E7AD3F, #FEEB94, #E7AD3F, #8A6800);
}
.sp-silver {
  background: linear-gradient(135deg, rgba(50,50,50,0.18) 0%, rgba(13,13,13,0.6) 100%);
  border: 1px solid rgba(180,180,180,0.18);
  position: relative;
  overflow: hidden;
}
.sp-silver::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #666, #CCC, #EEE, #CCC, #666);
}

/* ── Tier header / body ── */
.sp-tier-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px 20px;
  border-bottom: 0.5px solid rgba(201,150,42,0.12);
  flex-wrap: wrap;
  gap: 12px;
}
.sp-tier-badge {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 1px;
}
.sp-tier-badge.diamond {
  background: linear-gradient(90deg, #6D2312, #C9962A);
  color: #FEEB94;
  border: 1px solid rgba(254,235,148,0.3);
}
.sp-tier-badge.gold {
  background: linear-gradient(90deg, #7A5800, #C9962A);
  color: #FEEB94;
  border: 1px solid rgba(254,235,148,0.25);
}
.sp-tier-badge.silver {
  background: rgba(180,180,180,0.12);
  color: #CCC;
  border: 1px solid rgba(200,200,200,0.25);
}
.sp-tier-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sp-tier-tag {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,150,42,0.55);
  border: 0.5px solid rgba(201,150,42,0.3);
  padding: 4px 10px;
}
.sp-tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  color: #EFE3CE;
}
.sp-vat {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(239,227,206,0.4);
  vertical-align: middle;
  margin-left: 4px;
}

.sp-tier-body {
  padding: 28px 36px 32px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
/* Diamond: 2-col benefits */
.sp-diamond .sp-tier-body { flex-wrap: wrap; }
.sp-diamond .sp-benefits {
  columns: 2;
  column-gap: 32px;
  flex: 1;
}
/* Gold/Silver: single col */
.sp-gold .sp-benefits,
.sp-silver .sp-benefits { flex: 1; }

.sp-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.sp-diamond .sp-benefits {
  display: block; /* needed for columns */
}
.sp-diamond .sp-benefits li { break-inside: avoid; margin-bottom: 11px; }

.sp-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  color: rgba(239,227,206,0.82);
}
.sp-benefits li::before {
  content: '';
  width: 5px; height: 5px;
  background: #C9962A;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.sp-benefits li strong { color: #EFE3CE; font-weight: 500; }

/* Enquire buttons */
.sp-enquire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 32px;
  border: 1px solid rgba(201,150,42,0.45);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C9962A;
  text-decoration: none;
  transition: all .25s;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-end;
}
.sp-enquire-btn:hover { background: rgba(201,150,42,0.1); border-color: #E7AD3F; color: #E7AD3F; }
.diamond-btn {
  background: linear-gradient(101deg, #6D2312, #8A3015, #BD7B2E);
  border-color: #E7AD3F;
  color: #FEEB94;
}
.diamond-btn:hover { filter: brightness(1.15); color: #FEEB94; }

/* ── Additional Packages ── */
.sp-additional-head { text-align: center; margin: 0 0 36px; }

.sp-additional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sp-add-card {
  background: rgba(255,255,255,0.02);
  border: 0.5px solid rgba(201,150,42,0.15);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s, background .3s, transform .3s;
}
.sp-add-card:hover {
  border-color: rgba(201,150,42,0.4);
  background: rgba(201,150,42,0.03);
  transform: translateY(-3px);
}
.sp-add-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6D2312, #E7AD3F, #FEEB94);
  opacity: 0;
  transition: opacity .3s;
}
.sp-add-card:hover::before { opacity: 1; }

/* Wide card spans 3 cols */
.sp-add-card--wide { grid-column: 1 / -1; }
.sp-add-list--two-col {
  columns: 2;
  column-gap: 32px;
}
.sp-add-list--two-col li { break-inside: avoid; margin-bottom: 10px; }

.sp-add-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.sp-add-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #EFE3CE;
  transition: color .3s;
}
.sp-add-card:hover .sp-add-title { color: #E7AD3F; }
.sp-add-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 18px;
  color: #C9962A;
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-add-price span {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(201,150,42,0.5);
}
.sp-add-tag {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,150,42,0.45);
  margin-bottom: 18px;
  min-height: 14px;
}
.sp-add-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 22px;
}
.sp-add-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13.5px;
  line-height: 21px;
  color: rgba(239,227,206,0.82)
}
.sp-add-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: rgba(201,150,42,0.5);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.sp-add-btn {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 22px;
  border: 0.5px solid rgba(201,150,42,0.35);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,150,42,0.7);
  text-decoration: none;
  transition: all .25s;
  align-self: flex-start;
  margin-top: auto;
}
.sp-add-btn:hover { background: rgba(201,150,42,0.08); border-color: #E7AD3F; color: #E7AD3F; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .sp-tier-row { grid-template-columns: 1fr 1fr; }
  .sp-additional-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-add-card--wide { grid-column: 1 / -1; }
  .sp-add-list--two-col { columns: 1; }
  .sp-why-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .sp-summary-grid { flex-direction: column; align-items: flex-start; gap: 20px; padding: 0 24px; }
  .sp-summary-divider { width: 60px; height: 0.5px; }
  .sp-summary-item { padding: 0; }
  .sp-tier-row { grid-template-columns: 1fr; }
  .sp-diamond .sp-benefits { columns: 1; display: flex; flex-direction: column; }
  .sp-tier-body { flex-direction: column; }
  .sp-enquire-btn { align-self: flex-start; }
  .sp-additional-grid { grid-template-columns: 1fr; }
  .sp-add-card--wide { grid-column: auto; }
  .sp-tiers-title { font-size: 36px; }
}
@media (max-width: 600px) {
  .sp-tier-header { padding: 20px 20px 16px; }
  .sp-tier-body { padding: 20px 20px 24px; }
  .sp-tier-price { font-size: 22px; }
  .sp-tiers-title { font-size: 30px; line-height: 38px; }
  .sp-why-title { font-size: 30px; line-height: 38px; }
}
