/* KC Creative Space — The KC Experience Series Page */

/* ---------- Hero ---------- */
.experiences-hero {
  padding-block: clamp(var(--space-16), 10vw, var(--space-24)) clamp(var(--space-12), 6vw, var(--space-16));
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-divider);
  text-align: center;
}
.experiences-hero-inner { max-width: 760px; margin-inline: auto; }
.experiences-hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 6vw, var(--text-hero));
  margin-bottom: var(--space-3);
}
.experiences-hero-title em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold) 50%, var(--color-gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.experiences-hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.experiences-hero-desc {
  color: var(--color-text-muted);
  max-width: 56ch;
  margin: 0 auto var(--space-6);
  font-size: var(--text-base);
  line-height: 1.65;
}
.experiences-hero-price {
  font-family: var(--font-display);
  margin-bottom: var(--space-7);
}
.experiences-hero-price .price-amount { font-size: var(--text-2xl); color: var(--color-gold); }
.experiences-hero-price .price-period { font-size: var(--text-sm); color: var(--color-text-muted); margin-left: var(--space-2); }
.experiences-hero-note {
  margin-top: var(--space-6);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

@media (max-width: 640px) {
  .experiences-hero-title { font-size: var(--text-xl); }
}

/* ---------- Month sections ---------- */
.month-section { padding-block: clamp(var(--space-14), 8vw, var(--space-20)); }
.month-section-alt { background: var(--color-surface); border-top: 1px solid var(--color-divider); border-bottom: 1px solid var(--color-divider); }

.month-heading {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.month-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  white-space: nowrap;
}
.month-divider {
  flex: 1;
  height: 1px;
  background: var(--color-divider);
}
.month-count {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  white-space: nowrap;
}

/* ---------- Event cards ---------- */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
}

.event-card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: all var(--transition-interactive);
}
.event-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.event-card-featured {
  border-color: var(--color-gold);
  background: linear-gradient(160deg, var(--color-gold-soft) 0%, var(--color-bg) 55%);
  box-shadow: var(--shadow-gold);
}

.event-card-contest {
  border-color: var(--color-blush-deep);
}
.event-card-contest:hover {
  border-color: var(--color-blush-deep);
  box-shadow: 0 8px 32px color-mix(in oklab, var(--color-blush-deep) 20%, transparent);
}

.event-card-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  color: var(--color-text-inverse);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
}
.event-card-contest .event-card-badge {
  background: linear-gradient(135deg, var(--color-blush), var(--color-blush-deep));
}

.event-card-date {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  font-family: var(--font-body);
}
.event-card-day {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.event-card-daynum {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
}
.event-card-month {
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.event-card-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}
.event-card-meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.event-card-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold);
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}
.event-card-body p:not(.event-card-tagline) {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.event-card-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding: 0;
}
.event-card-tags li {
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-full);
  color: var(--color-text);
}

.event-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--color-divider);
}
.event-card-price {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text);
  white-space: nowrap;
}
.event-card-price span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-left: 2px;
}
.event-card-subnote {
  font-size: 0.75rem;
  color: var(--color-text-faint);
  margin-top: calc(-1 * var(--space-2));
}

@media (max-width: 560px) {
  .event-grid { grid-template-columns: 1fr; }
  .event-card-footer { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .event-card-footer .btn { width: 100%; text-align: center; }
}

/* ---------- Coming soon ---------- */
.coming-soon-card {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  background: var(--color-bg);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
}
.coming-soon-card p {
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}
.coming-soon-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 480px) {
  .coming-soon-actions { flex-direction: column; }
  .coming-soon-actions .btn { width: 100%; text-align: center; }
}
