/*
 * SCLC National Convention 2026 — Custom Stylesheet
 * Usage: Paste into Elementor > Site Settings > Custom CSS
 *        OR into your child theme's style.css
 * 
 * Scope: All rules are namespaced under .sclc-convention
 * so they cannot bleed into the rest of your site.
 * ─────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════
   CSS CUSTOM PROPERTIES (design tokens)
   These power all components below.
═══════════════════════════════════════════════ */
.sclc-convention {
  --sclc-crimson:      #7E1209;
  --sclc-crimson-deep: #5C0B06;
  --sclc-crimson-glow: #A31610;
  --sclc-gold:         #C9933A;
  --sclc-gold-light:   #E8B558;
  --sclc-gold-pale:    #F5DFA0;
  --sclc-ivory:        #FAF7F0;
  --sclc-ivory-warm:   #F2EDE2;
  --sclc-sky:          #2A6496;
  --sclc-sky-light:    #4A90C4;
  --sclc-black:        #1A1108;
  --sclc-charcoal:     #2D2520;
  --sclc-white:        #FFFFFF;
  --sclc-text:         #2D2520;
  --sclc-muted:        #6B5E52;

  --sclc-font-display: 'Playfair Display', Georgia, serif;
  --sclc-font-serif:   'Libre Baskerville', Georgia, serif;
  --sclc-font-sans:    'DM Sans', system-ui, sans-serif;

  --sclc-shadow-warm:  0 4px 24px rgba(126,18,9,0.15);
  --sclc-shadow-gold:  0 2px 16px rgba(201,147,58,0.3);
  --sclc-radius:       6px;
  --sclc-radius-sm:    3px;
}

/* ═══════════════════════════════════════════════
   GOOGLE FONTS IMPORT
   Add to functions.php instead if using child theme
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════════
   BASE RESET (scoped)
═══════════════════════════════════════════════ */
.sclc-convention *,
.sclc-convention *::before,
.sclc-convention *::after {
  box-sizing: border-box;
}
.sclc-convention {
  font-family: var(--sclc-font-sans);
  color: var(--sclc-text);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════ */

/* Tags / Labels */
.sclc-tag {
  display: inline-block;
  font-family: var(--sclc-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--sclc-radius-sm);
  line-height: 1;
}
.sclc-tag--gold    { background: var(--sclc-gold);    color: var(--sclc-white); }
.sclc-tag--crimson { background: var(--sclc-crimson);  color: var(--sclc-white); }
.sclc-tag--outline {
  border: 1.5px solid var(--sclc-gold);
  color: var(--sclc-gold);
  background: transparent;
}

/* Buttons */
.sclc-btn {
  display: inline-block;
  font-family: var(--sclc-font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--sclc-radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
}
.sclc-btn--gold {
  background: var(--sclc-gold);
  color: var(--sclc-white);
  box-shadow: var(--sclc-shadow-gold);
}
.sclc-btn--gold:hover,
.sclc-btn--gold:focus {
  background: var(--sclc-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,147,58,0.45);
  color: var(--sclc-white);
  text-decoration: none;
}
.sclc-btn--crimson {
  background: var(--sclc-crimson);
  color: var(--sclc-white);
  box-shadow: var(--sclc-shadow-warm);
}
.sclc-btn--crimson:hover,
.sclc-btn--crimson:focus {
  background: var(--sclc-crimson-glow);
  transform: translateY(-2px);
  color: var(--sclc-white);
  text-decoration: none;
}
.sclc-btn--outline-white {
  background: transparent;
  color: var(--sclc-white);
  border: 2px solid rgba(255,255,255,0.6);
}
.sclc-btn--outline-white:hover {
  border-color: var(--sclc-gold-light);
  color: var(--sclc-gold-light);
  background: rgba(255,255,255,0.06);
  text-decoration: none;
}

/* Section label row */
.sclc-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.sclc-section-label__line {
  width: 36px;
  height: 3px;
  background: var(--sclc-crimson);
  flex-shrink: 0;
}
.sclc-section-label__text {
  font-family: var(--sclc-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sclc-crimson);
}

/* Eyebrow row (used on dark BGs) */
.sclc-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.sclc-eyebrow__line {
  width: 48px;
  height: 2px;
  background: var(--sclc-gold);
  flex-shrink: 0;
}
.sclc-eyebrow__text {
  font-family: var(--sclc-font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sclc-gold);
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   Elementor section class: .sclc-hero
═══════════════════════════════════════════════ */
.sclc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sclc-black);
}
.sclc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 70% 50%, rgba(126,18,9,0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(42,100,150,0.2) 0%, transparent 60%),
    linear-gradient(160deg, #1A1108 0%, #2D1510 40%, #1A1108 100%);
  z-index: 0;
  pointer-events: none;
}
.sclc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,147,58,0.04) 60px, rgba(201,147,58,0.04) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,147,58,0.04) 60px, rgba(201,147,58,0.04) 61px);
  z-index: 0;
  pointer-events: none;
}
.sclc-hero > * { position: relative; z-index: 1; }

.sclc-hero__title {
  font-family: var(--sclc-font-display) !important;
  font-weight: 900 !important;
  font-size: clamp(48px, 7vw, 88px) !important;
  line-height: 1.05 !important;
  color: var(--sclc-white) !important;
}
.sclc-hero__title em,
.sclc-hero__title .sclc-accent {
  font-style: italic;
  color: var(--sclc-gold-light) !important;
}
.sclc-hero__subtitle {
  font-family: var(--sclc-font-serif) !important;
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px) !important;
  color: rgba(255,255,255,0.72) !important;
  line-height: 1.65 !important;
}

/* ── Hero Meta (date / location chips) ── */
.sclc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}
.sclc-hero-meta__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.sclc-hero-meta__item svg,
.sclc-hero-meta__item .icon { color: var(--sclc-gold); }

/* ── Countdown Bar ── */
.sclc-countdown {
  background: rgba(201,147,58,0.12);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201,147,58,0.25);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sclc-countdown__label {
  font-family: var(--sclc-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sclc-gold);
  margin-right: 28px;
}
.sclc-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid rgba(201,147,58,0.2);
}
.sclc-countdown__unit:last-child { border-right: none; }
.sclc-countdown__num {
  font-family: var(--sclc-font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--sclc-white);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
}
.sclc-countdown__unit-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   MARQUEE / LEGACY BANNER
   Elementor section class: .sclc-marquee
═══════════════════════════════════════════════ */
.sclc-marquee {
  background: var(--sclc-crimson);
  border-top: 3px solid var(--sclc-gold);
  border-bottom: 3px solid var(--sclc-gold);
  padding: 14px 0;
  overflow: hidden;
}
.sclc-marquee__track {
  display: flex;
  gap: 0;
  animation: sclcMarquee 30s linear infinite;
  white-space: nowrap;
}
.sclc-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 40px;
  font-family: var(--sclc-font-display);
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  color: var(--sclc-gold-pale);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.sclc-marquee__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sclc-gold);
  display: inline-block;
  flex-shrink: 0;
}
@keyframes sclcMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   SECTION: ABOUT
   Elementor section class: .sclc-about
═══════════════════════════════════════════════ */
.sclc-about {
  background: var(--sclc-ivory);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.sclc-about::before {
  content: 'SCLC';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sclc-font-display);
  font-size: 260px;
  font-weight: 900;
  color: rgba(126,18,9,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.sclc-heading {
  font-family: var(--sclc-font-display) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--sclc-black) !important;
}
.sclc-heading em,
.sclc-heading .sclc-accent {
  font-style: italic;
  color: var(--sclc-crimson) !important;
}
.sclc-heading--xl { font-size: clamp(36px, 5vw, 64px) !important; }
.sclc-heading--lg { font-size: clamp(32px, 4vw, 52px) !important; }
.sclc-heading--md { font-size: clamp(26px, 3vw, 40px) !important; }

.sclc-body-serif {
  font-family: var(--sclc-font-serif) !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: var(--sclc-muted) !important;
}

/* Stats row */
.sclc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sclc-ivory-warm);
  border: 1px solid var(--sclc-ivory-warm);
  border-radius: var(--sclc-radius);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.sclc-stat {
  background: var(--sclc-white);
  padding: 24px 20px;
  text-align: center;
}
.sclc-stat__num {
  font-family: var(--sclc-font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--sclc-crimson);
  line-height: 1;
  display: block;
}
.sclc-stat__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sclc-muted);
  margin-top: 6px;
  display: block;
}

/* Quote card */
.sclc-quote-card {
  background: linear-gradient(135deg, var(--sclc-crimson-deep) 0%, var(--sclc-crimson) 60%, #A85010 100%);
  border-radius: var(--sclc-radius);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.sclc-quote-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 32px;
  font-family: var(--sclc-font-display);
  font-size: 100px;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  font-style: italic;
  line-height: 1;
}
.sclc-quote-card__text {
  font-family: var(--sclc-font-serif) !important;
  font-size: 20px !important;
  font-style: italic;
  line-height: 1.65 !important;
  color: rgba(255,255,255,0.9) !important;
  margin-bottom: 28px !important;
  position: relative;
}
.sclc-quote-card__attr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sclc-quote-card__attr-line {
  width: 32px;
  height: 2px;
  background: var(--sclc-gold);
  flex-shrink: 0;
}
.sclc-quote-card__attr-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sclc-gold-light);
}

/* ═══════════════════════════════════════════════
   SECTION: SCHEDULE
   Elementor section class: .sclc-schedule
═══════════════════════════════════════════════ */
.sclc-schedule {
  background: var(--sclc-charcoal);
  padding: 100px 0;
  position: relative;
}
.sclc-schedule::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sclc-crimson), var(--sclc-gold), var(--sclc-sky-light));
}

/* Day tabs */
.sclc-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.sclc-tab {
  padding: 10px 28px;
  font-family: var(--sclc-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--sclc-radius-sm);
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.sclc-tab.active,
.sclc-tab:hover {
  border-color: var(--sclc-gold);
  color: var(--sclc-gold);
  background: rgba(201,147,58,0.1);
}

/* Schedule items */
.sclc-sched-grid {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--sclc-radius);
  overflow: hidden;
}
.sclc-sched-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  padding: 22px 28px;
  transition: background 0.2s;
  border-left: 3px solid transparent;
}
.sclc-sched-item:hover { background: rgba(255,255,255,0.06); }
.sclc-sched-item--keynote  { border-left-color: var(--sclc-gold); background: rgba(201,147,58,0.06); }
.sclc-sched-item--worship  { border-left-color: var(--sclc-crimson); }
.sclc-sched-item--workshop { border-left-color: var(--sclc-sky); }

.sclc-sched-time {
  font-family: var(--sclc-font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--sclc-gold);
  letter-spacing: 0.04em;
}
.sclc-sched-title {
  font-family: var(--sclc-font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--sclc-white);
  margin-bottom: 3px;
}
.sclc-sched-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.sclc-sched-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  white-space: nowrap;
}
.sclc-sched-badge--keynote  { background: var(--sclc-gold); color: var(--sclc-black); }
.sclc-sched-badge--workshop { background: rgba(42,100,150,0.3); color: var(--sclc-sky-light); border: 1px solid var(--sclc-sky); }
.sclc-sched-badge--worship  { background: rgba(126,18,9,0.4); color: #F5A090; border: 1px solid var(--sclc-crimson-glow); }
.sclc-sched-badge--break    { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════════
   SECTION: SPEAKERS
   Elementor section class: .sclc-speakers
═══════════════════════════════════════════════ */
.sclc-speakers { background: var(--sclc-ivory-warm); }

.sclc-speaker-card {
  background: var(--sclc-white);
  border-radius: var(--sclc-radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.sclc-speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.sclc-speaker-photo {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-family: var(--sclc-font-display);
  font-weight: 700;
  color: var(--sclc-white);
}
.sclc-speaker-photo--crimson { background: linear-gradient(145deg, #4A2010, var(--sclc-crimson)); }
.sclc-speaker-photo--sky     { background: linear-gradient(145deg, #1A4060, var(--sclc-sky)); }
.sclc-speaker-photo--gold    { background: linear-gradient(145deg, #3A2800, #8B6520); }
.sclc-speaker-photo--green   { background: linear-gradient(145deg, #1A3A20, #2D6E40); }
.sclc-speaker-photo--purple  { background: linear-gradient(145deg, #3A1040, #7E1A6A); }

.sclc-speaker-card__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sclc-crimson);
  margin-bottom: 6px;
}
.sclc-speaker-card__name {
  font-family: var(--sclc-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--sclc-black);
  margin-bottom: 8px;
  line-height: 1.2;
}
.sclc-speaker-card__topic {
  font-family: var(--sclc-font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--sclc-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   SECTION: REGISTRATION TIERS
   Elementor section class: .sclc-registration
═══════════════════════════════════════════════ */
.sclc-registration {
  background: linear-gradient(160deg, var(--sclc-crimson-deep) 0%, var(--sclc-crimson) 50%, #9E2010 100%);
  position: relative;
  overflow: hidden;
}
.sclc-registration::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201,147,58,0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.sclc-reg-tier {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--sclc-radius);
  padding: 40px 32px;
  position: relative;
  transition: transform 0.25s, background 0.25s;
}
.sclc-reg-tier:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}
.sclc-reg-tier--featured {
  background: var(--sclc-gold);
  border-color: var(--sclc-gold-light);
}
.sclc-reg-tier--featured:hover { background: var(--sclc-gold); }

.sclc-reg-tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sclc-crimson);
  color: var(--sclc-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 2px;
  white-space: nowrap;
}
.sclc-reg-tier--featured .sclc-reg-tier__badge { background: var(--sclc-charcoal); }

.sclc-reg-tier__name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.sclc-reg-tier--featured .sclc-reg-tier__name { color: rgba(26,17,8,0.65); }

.sclc-reg-tier__price {
  font-family: var(--sclc-font-display);
  font-size: 58px;
  font-weight: 900;
  color: var(--sclc-white);
  line-height: 1;
  margin-bottom: 6px;
}
.sclc-reg-tier--featured .sclc-reg-tier__price { color: var(--sclc-black); }

.sclc-reg-tier__period {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.sclc-reg-tier--featured .sclc-reg-tier__period { color: rgba(26,17,8,0.55); }

.sclc-reg-tier__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sclc-reg-tier__perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.sclc-reg-tier--featured .sclc-reg-tier__perks li { color: rgba(26,17,8,0.75); }
.sclc-reg-tier__perks li::before {
  content: '✓';
  color: var(--sclc-gold-light);
  font-weight: 700;
  flex-shrink: 0;
}
.sclc-reg-tier--featured .sclc-reg-tier__perks li::before { color: var(--sclc-crimson); }

/* ═══════════════════════════════════════════════
   SECTION: VENUE
   Elementor section class: .sclc-venue
═══════════════════════════════════════════════ */
.sclc-venue { background: var(--sclc-white); }

.sclc-venue-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sclc-venue-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--sclc-ivory);
  border-radius: 4px;
  border-left: 3px solid var(--sclc-gold);
}
.sclc-venue-feature__icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.sclc-venue-feature__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--sclc-text);
  line-height: 1.4;
}
.sclc-venue-feature__desc {
  font-size: 12px;
  color: var(--sclc-muted);
  margin-top: 3px;
}

/* ═══════════════════════════════════════════════
   SECTION: TIMELINE / HISTORY
   Elementor section class: .sclc-timeline-section
═══════════════════════════════════════════════ */
.sclc-timeline-section { background: var(--sclc-ivory); }

.sclc-timeline { display: flex; flex-direction: column; }
.sclc-timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}
.sclc-timeline-item::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--sclc-crimson), var(--sclc-gold));
  opacity: 0.2;
}
.sclc-timeline-item:last-child::before { display: none; }
.sclc-timeline-item:last-child { padding-bottom: 0; }

.sclc-timeline__year {
  font-family: var(--sclc-font-display);
  font-size: 14px;
  font-weight: 900;
  color: var(--sclc-crimson);
  text-align: center;
  line-height: 1;
  padding-top: 4px;
}
.sclc-timeline__dot {
  width: 10px;
  height: 10px;
  background: var(--sclc-gold);
  border-radius: 50%;
  margin: 6px auto 0;
}
.sclc-timeline__title {
  font-family: var(--sclc-font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--sclc-black);
  margin-bottom: 6px;
}
.sclc-timeline__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--sclc-muted);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   Add class "sclc-reveal" to any Elementor widget
═══════════════════════════════════════════════ */
.sclc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sclc-reveal.sclc-visible {
  opacity: 1;
  transform: translateY(0);
}
.sclc-reveal--delay-1 { transition-delay: 0.1s; }
.sclc-reveal--delay-2 { transition-delay: 0.2s; }
.sclc-reveal--delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE OVERRIDES
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sclc-stats { grid-template-columns: 1fr 1fr; }
  .sclc-sched-item { grid-template-columns: 120px 1fr; }
  .sclc-sched-item .sclc-sched-badge { display: none; }
  .sclc-venue-features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .sclc-countdown { gap: 0; padding: 14px 20px; }
  .sclc-countdown__label { width: 100%; text-align: center; margin: 0 0 12px; }
  .sclc-countdown__unit { padding: 0 14px; }
  .sclc-sched-item { grid-template-columns: 1fr; gap: 6px; padding: 16px 20px; }
  .sclc-timeline-item { grid-template-columns: 64px 1fr; }
  .sclc-hero__title { font-size: 42px !important; }
  .sclc-stats { grid-template-columns: 1fr; }
}
