/* ==========================================================================
   Content sections — heroines, event, sponsorship, contact
   ========================================================================== */

/* --- Five Stars, Five Reasons ---------------------------------------------- */

.heroines {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
  margin-top: var(--sp-8);
}

@media (min-width: 40rem) {
  .heroines {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 68rem) {
  .heroines {
    grid-template-columns: repeat(5, 1fr);
  }
}

.heroine {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-top: 5px solid var(--point, var(--accent));
  border-radius: var(--radius);
  padding: var(--sp-6) var(--sp-4) var(--sp-4);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.heroine__star {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--point, var(--accent));
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  margin-bottom: var(--sp-1);
}

/* Esther's point is white; give it an outline so it reads on the surface. */
.heroine--esther .heroine__star {
  background: var(--star-white);
  filter: drop-shadow(0 0 1px var(--parchment-edge))
    drop-shadow(0 1px 2px rgb(36 26 18 / 0.35));
}

.heroine__name {
  font-family: var(--font-head);
  font-size: var(--fs-xl);
  margin: 0;
  color: var(--saddle-dark);
}

.heroine__virtue {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--point-ink, var(--accent-ink));
  margin: 0;
}

.heroine__body {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  margin: var(--sp-2) 0 0;
}

/* --- The night itself ------------------------------------------------------- */

.detail-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  margin-top: var(--sp-8);
}

@media (min-width: 48rem) {
  .detail-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.detail__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
  color: var(--saddle-dark);
}

.detail__body {
  color: var(--text-soft);
  margin: 0;
}

/* --- Sponsorship ------------------------------------------------------------ */

.tiers {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  margin-top: var(--sp-8);
  align-items: start;
}

@media (min-width: 48rem) {
  .tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 68rem) {
  .tiers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tier {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tier--featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow);
}

.tier__flag {
  align-self: flex-start;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: color-mix(in srgb, var(--star-gold) 18%, transparent);
  padding: var(--sp-1) var(--sp-3);
  border-radius: 999px;
  margin-bottom: var(--sp-3);
}

.tier__name {
  font-family: var(--font-head);
  font-size: var(--fs-xl);
  color: var(--saddle-dark);
  margin: 0 0 var(--sp-1);
}

.tier__price {
  font-family: var(--font-head);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--star-red-ink);
  line-height: 1;
  margin: 0 0 var(--sp-4);
}

.tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-6);
  font-size: var(--fs-sm);
  color: var(--text-soft);
  display: grid;
  gap: var(--sp-2);
}

.tier__list li {
  padding-left: 1.4rem;
  position: relative;
}

.tier__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--accent);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.tier .btn {
  margin-top: auto;
  font-size: var(--fs-base);
  padding: var(--sp-3) var(--sp-6);
}

/* --- Contact ---------------------------------------------------------------- */

.chairs {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  margin-top: var(--sp-8);
}

@media (min-width: 40rem) {
  .chairs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.chair {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

/* Decorative: the name is already in text beside it, so alt="" is correct. */
.chair__photo {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex: 0 0 auto;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-sm);
}

.chair__email-note {
  margin-top: var(--sp-6);
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.chair__name {
  font-family: var(--font-head);
  font-size: var(--fs-lg);
  color: var(--saddle-dark);
  margin: 0;
}

.chair__role {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 var(--sp-2);
}

.chair__phone {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--star-blue-ink);
  text-decoration: none;
  white-space: nowrap;
}

/* --- Footer ----------------------------------------------------------------- */

.footer {
  background: var(--saddle-dark);
  color: color-mix(in srgb, var(--rope-cream) 85%, transparent);
  padding-block: var(--sp-12);
  font-size: var(--fs-sm);
}

.footer a {
  color: var(--rope-cream);
}

.footer__grid {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .footer__grid {
    grid-template-columns: 2fr 1fr;
  }
}

.footer__fine {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgb(255 255 255 / 0.15);
  color: rgb(255 255 255 / 0.6);
  font-size: var(--fs-xs);
}
