/* ======= RSW EVENTS — Main Stylesheet v3 ======= */
/* Palette: Navy 70% | White + Light Blue 20% | Gold 10% */
:root {
  --navy:        #1a3a6b;
  --navy-dark:   #112858;
  --navy-deeper: #0d1f47;
  --navy-light:  #2a4f8a;
  --blue-soft:   #a8c4e0;
  --blue-pale:   #dce9f5;
  --blue-mist:   #eef4fb;
  --white:       #ffffff;
  --off-white:   #f6f9fc;
  --gold:        #f0b429;
  --gold-dark:   #c9920a;
  --text:        #0d1f47;
  --text-muted:  #5a6d8a;
  --text-light:  #8ea3be;
  --border:      #d4e0ee;
  --border-soft: #e6eff8;
  --error:       #c0392b;
  --success:     #1a7a4a;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Outfit', sans-serif;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-xs:   0 1px 3px rgba(13,31,71,0.06);
  --shadow-sm:   0 2px 10px rgba(13,31,71,0.08);
  --shadow:      0 6px 24px rgba(13,31,71,0.11);
  --shadow-lg:   0 16px 48px rgba(13,31,71,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }

/* ── Utility ── */
.container       { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-narrow{ max-width: 760px; }
.section         { padding: 80px 0; }
.bg-navy         { background: var(--navy); }
.bg-mist         { background: var(--blue-mist); }
.bg-pale         { background: var(--blue-pale); }
.text-center     { text-align: center; }
.mt-1            { margin-top: .75rem; }
.mt-2            { margin-top: 1.5rem; }

/* ── Typography ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--navy-light); margin-bottom: 12px;
}
.eyebrow::before { content: ''; display: block; width: 18px; height: 2px; background: var(--gold); border-radius: 1px; }
.on-navy.eyebrow { color: var(--blue-soft); }
.on-navy.eyebrow::before { background: var(--gold); }

.section-title {
  font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700; color: var(--navy-dark); margin-bottom: 1.5rem; line-height: 1.2;
}
.on-navy .section-title,
.section-title.on-navy { color: var(--white); }

.section-cta { text-align: center; margin-top: 2.5rem; }
.gold-text { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 26px;
  border-radius: 8px; font-family: var(--font-body); font-size: .87rem; font-weight: 600;
  letter-spacing: .02em; text-decoration: none; border: 1.5px solid transparent;
  cursor: pointer; transition: all .2s ease; white-space: nowrap; background: none;
  line-height: 1;
}
.btn-primary    { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-gold       { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: #f7c240; border-color: #f7c240; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(240,180,41,.35); }
.btn-outline    { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { border-color: var(--navy); background: var(--blue-mist); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.75); }
.btn-ghost      { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.15); }
.btn-ghost:hover{ background: rgba(255,255,255,.14); }
.btn-sm  { padding: 7px 16px; font-size: .8rem; }
.btn-lg  { padding: 13px 34px; font-size: .93rem; }
.btn-full{ width: 100%; justify-content: center; }
.btn-nav { background: var(--gold) !important; color: var(--navy-dark) !important; border-radius: 7px !important; padding: 9px 20px !important; font-weight: 700 !important; border: none !important; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy-deeper); border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.28); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-logo img { display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .87rem; font-weight: 500; padding: 7px 13px; border-radius: 6px; transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ── Messages ── */
.messages-container { position: fixed; top: 76px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.alert { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 18px; border-radius: var(--radius); font-size: .87rem; max-width: 380px; box-shadow: var(--shadow); }
.alert-success { background: #edfaf3; color: #1a5c36; border: 1px solid #a7e3c0; }
.alert-error   { background: #fdf1f0; color: #8c1a14; border: 1px solid #f5b8b4; }
.alert button  { background: none; border: none; font-size: 1.1rem; cursor: pointer; opacity: .55; margin-left: 4px; }

/* ── HERO ── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; background: var(--navy); overflow: hidden; padding-top: 66px; }
.hero-bg { position: absolute; inset: 0; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero-orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(42,79,138,.9), transparent 70%); top: -160px; right: -60px; }
.hero-orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(168,196,224,.12), transparent 70%); bottom: -60px; left: 6%; }
.hero-orb-3 { width: 240px; height: 240px; background: radial-gradient(circle, rgba(13,31,71,.9), transparent 70%); top: 30%; left: -80px; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px); background-size: 54px 54px; }
.hero-inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 64px 28px; display: grid; grid-template-columns: 1.1fr .95fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,180,41,.12); border: 1px solid rgba(240,180,41,.3); color: rgba(240,180,41,.9); padding: 6px 16px; border-radius: 100px; font-size: .75rem; font-weight: 600; letter-spacing: .07em; margin-bottom: 22px; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 4.8rem); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 18px; }
.hero-sub { font-size: .97rem; color: rgba(255,255,255,.6); max-width: 460px; margin-bottom: 34px; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-bottom: 18px; }
.hero-contact { color: rgba(255,255,255,.42); font-size: .83rem; }
.hero-right { display: flex; flex-direction: column; gap: 12px; }
.hero-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 18px 20px; backdrop-filter: blur(12px); transition: border-color .2s; }
.hero-card:hover { border-color: rgba(255,255,255,.2); }
.hero-card.featured { background: rgba(240,180,41,.08); border-color: rgba(240,180,41,.25); }
.hero-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.hero-card-avatar { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.8); font-weight: 800; font-size: .9rem; flex-shrink: 0; border: 1px solid rgba(255,255,255,.15); }
.hero-card-info { flex: 1; min-width: 0; }
.hero-card-info strong { display: block; color: var(--white); font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-card-info span { font-size: .75rem; color: rgba(255,255,255,.5); }
.hero-card-date { font-size: .73rem; color: var(--gold); font-weight: 700; background: rgba(240,180,41,.12); padding: 3px 9px; border-radius: 5px; white-space: nowrap; flex-shrink: 0; }
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.hero-tag { background: rgba(255,255,255,.07); color: rgba(255,255,255,.65); font-size: .69rem; padding: 3px 9px; border-radius: 100px; border: 1px solid rgba(255,255,255,.1); }
.hero-scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,.25); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 34px; background: linear-gradient(to bottom, transparent, rgba(240,180,41,.45)); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0%,100%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

/* ── Stats Bar ── */
.stats-bar { background: var(--navy-dark); border-bottom: 1px solid rgba(255,255,255,.07); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.stat-item { text-align: center; padding: 28px 16px; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right: none; }
.stat-value { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: .71rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--blue-soft); margin-top: 5px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: .9rem; font-size: .95rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-card { padding: 22px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border-soft); transition: all .25s; box-shadow: var(--shadow-xs); }
.feature-card:hover { border-color: var(--blue-soft); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.feature-icon { width: 36px; height: 36px; background: var(--blue-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.feature-icon svg, .feature-icon span { font-size: 1rem; color: var(--navy); }
.feature-card h3 { font-size: .92rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 5px; }
.feature-card p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* ── Events ── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.event-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-xs); transition: all .25s; display: flex; flex-direction: column; gap: 9px; }
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-soft); }
.event-card-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.event-cat { background: var(--blue-pale); color: var(--navy); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; }
.event-date { font-size: .78rem; color: var(--gold-dark); font-weight: 600; }
.event-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy-dark); line-height: 1.4; }
.event-card p { font-size: .82rem; color: var(--text-muted); }
.event-card .btn { margin-top: auto; align-self: flex-start; }

/* Events full grid */
.events-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.event-card-full { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border-soft); box-shadow: var(--shadow-xs); overflow: hidden; transition: all .25s; display: flex; }
.event-card-full:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue-soft); }
.event-card-accent { width: 4px; background: var(--navy); flex-shrink: 0; }
.event-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.event-card-footer { display: flex; gap: 8px; margin-top: auto; padding-top: 12px; }
.event-desc { font-size: .82rem; color: var(--text-muted); }
.event-location { font-size: .79rem; color: var(--text-muted); }

/* ── Speakers ── */
.speakers-section { background: var(--blue-mist); }
.speakers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 20px; }
.speaker-card { text-align: center; padding: 24px 16px; border: 1px solid var(--border-soft); border-radius: var(--radius); background: var(--white); transition: all .2s; box-shadow: var(--shadow-xs); }
.speaker-card:hover { box-shadow: var(--shadow-sm); border-color: var(--blue-soft); }
.speaker-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px; overflow: hidden; border: 3px solid var(--navy); }
.speaker-avatar img { width: 100%; height: 100%; object-fit: cover; }
.speaker-placeholder { width: 100%; height: 100%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2rem; color: var(--gold); font-weight: 700; }
.speaker-card h3 { font-size: .92rem; font-weight: 700; color: var(--navy-dark); }
.speaker-title { font-size: .78rem; color: var(--text-muted); margin-top: 3px; }
.speaker-org { font-size: .73rem; color: var(--navy-light); font-weight: 600; margin-top: 2px; }

/* ── Why Participate ── */
.why-section { background: var(--navy-dark); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)); gap: 14px; }
.why-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 22px 18px; text-align: center; transition: all .25s; }
.why-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); transform: translateY(-2px); }
.why-icon { width: 42px; height: 42px; background: rgba(240,180,41,.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--gold); font-size: 1.1rem; }
.why-card h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); margin-bottom: 7px; }
.why-card p { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ── Gallery ── */
.gallery-section { background: var(--off-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,.65)); color: white; padding: 20px 10px 10px; font-size: .77rem; }

/* ── CTA Banner ── */
.cta-banner { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; text-align: center; }
.cta-orbs { position: absolute; inset: 0; pointer-events: none; }
.cta-orb-1 { position: absolute; width: 340px; height: 340px; background: radial-gradient(circle, rgba(240,180,41,.1), transparent 70%); top: -170px; right: 8%; border-radius: 50%; }
.cta-orb-2 { position: absolute; width: 260px; height: 260px; background: radial-gradient(circle, rgba(42,79,138,.7), transparent 70%); bottom: -130px; left: 4%; border-radius: 50%; }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.7rem); color: var(--white); margin-bottom: .75rem; }
.cta-inner p { color: rgba(255,255,255,.55); margin-bottom: 1.8rem; font-size: .93rem; }

/* ── Contact Strip ── */
.contact-strip { background: var(--navy-dark); padding: 18px 0; }
.contact-strip-inner { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.contact-item { font-size: .81rem; color: rgba(255,255,255,.5); }

/* ── Page Hero ── */
.page-hero { position: relative; background: var(--navy); padding: 130px 0 60px; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 60%, var(--navy-darker, #112050) 100%); }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px); background-size: 50px 50px; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 12px; line-height: 1.2; }
.page-hero-content p { color: rgba(255,255,255,.58); font-size: .95rem; max-width: 560px; }

/* ── Event Detail ── */
.event-detail-grid { display: grid; grid-template-columns: 1fr 310px; gap: 48px; align-items: start; }
.event-detail-main h2 { font-family: var(--font-display); font-size: 1.65rem; color: var(--navy-dark); margin-bottom: .9rem; }
.event-detail-main h3 { font-size: 1rem; color: var(--navy); margin: 1.5rem 0 .65rem; font-weight: 700; }
.event-detail-main p { color: var(--text-muted); line-height: 1.85; margin-bottom: .9rem; font-size: .93rem; }
.key-list { list-style: none; padding: 0; }
.key-list li { padding: 8px 0 8px 20px; position: relative; color: var(--text-muted); border-bottom: 1px solid var(--border-soft); font-size: .89rem; }
.key-list li::before { content: ''; position: absolute; left: 0; top: 16px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.event-info-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 14px; position: sticky; top: 84px; }
.event-info-card h3 { font-size: .88rem; color: var(--navy); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.event-info-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border-soft); font-size: .86rem; }
.event-info-row:last-of-type { border-bottom: none; }
.event-info-row span { color: var(--text-muted); }
.visa-info-card { background: var(--blue-pale); border: 1px solid var(--blue-soft); border-radius: var(--radius); padding: 16px 18px; }
.visa-info-card h4 { color: var(--navy); margin-bottom: 8px; font-size: .88rem; font-weight: 700; }
.visa-info-card p { font-size: .81rem; color: var(--text-muted); margin-bottom: 6px; }

/* ── Packages ── */
.packages-section { margin-top: 52px; padding-top: 52px; border-top: 1px solid var(--border-soft); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 18px; }
.package-card { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 22px; position: relative; transition: all .25s; background: var(--white); }
.package-card.highlighted { border-color: var(--navy); background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.package-card:not(.highlighted):hover { border-color: var(--navy-light); box-shadow: var(--shadow-sm); }
.pkg-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-dark); font-size: .66rem; font-weight: 800; padding: 3px 12px; border-radius: 100px; white-space: nowrap; letter-spacing: .06em; text-transform: uppercase; }
.package-card h3 { font-size: .75rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .09em; color: var(--text-muted); }
.highlighted h3 { color: rgba(255,255,255,.5); }
.pkg-price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.highlighted .pkg-price { color: var(--gold); }
.pkg-features { list-style: none; padding: 0; margin-bottom: 20px; }
.pkg-features li { padding: 6px 0 6px 16px; font-size: .84rem; border-bottom: 1px solid rgba(0,0,0,.05); color: var(--text-muted); position: relative; }
.pkg-features li::before { content: ''; position: absolute; left: 0; top: 14px; width: 5px; height: 5px; border-radius: 50%; background: var(--navy-light); }
.highlighted .pkg-features li { border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.75); }
.highlighted .pkg-features li::before { background: var(--gold); }

/* ── About Detail ── */
.about-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.about-detail-grid h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy-dark); margin-bottom: .9rem; }
.about-detail-grid p { color: var(--text-muted); line-height: 1.88; margin-bottom: .9rem; font-size: .93rem; }
.vm-block { background: var(--blue-mist); border-left: 3px solid var(--navy); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 16px; }
.vm-block h3 { font-size: .95rem; color: var(--navy); margin-bottom: 7px; font-weight: 700; }
.vm-block p { margin: 0; font-size: .87rem; }
.why-mini-card { background: var(--blue-mist); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 10px; }
.why-mini-card p { font-size: .82rem; margin: 4px 0 0; color: var(--text-muted); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.impact-card { padding: 26px 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.impact-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 6px; }
.impact-card p { color: rgba(255,255,255,.6); font-size: .86rem; }
.why-card-list { margin-top: .9rem; }

/* ══════════════════════════════════════════════
   REGISTRATION FORM — Professional Redesign
   ══════════════════════════════════════════════ */

/* Wizard stepper */
.wizard-wrap { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.wizard-steps { display: flex; background: var(--navy-deeper); }
.wizard-step { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 18px 10px; font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.4); letter-spacing: .05em; text-transform: uppercase; position: relative; transition: all .3s; border-right: 1px solid rgba(255,255,255,.06); cursor: default; }
.wizard-step:last-child { border-right: none; }
.wizard-step.active { color: var(--white); background: rgba(255,255,255,.06); }
.wizard-step.completed { color: var(--gold); }
.step-num { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .8rem; transition: all .3s; }
.wizard-step.active .step-num { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }
.wizard-step.completed .step-num { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); font-size: 0; }
.wizard-step.completed .step-num::after { content: '✓'; font-size: .8rem; }

/* Form body — white card */
.wizard-body { background: var(--white); border: 1px solid var(--border-soft); border-radius: 16px; box-shadow: 0 2px 16px rgba(20,69,140,.07); overflow: hidden; }
.step-inner { padding: 32px 36px; }
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn .25s ease; }
@keyframes stepIn { from { opacity:0; transform: translateX(12px); } to { opacity:1; transform: none; } }

.step-heading { margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--border-soft); }
.step-heading h2 { font-family: var(--font-display); font-size: 1.7rem; color: var(--navy-dark); margin-bottom: 4px; }
.step-heading p { color: var(--text-muted); font-size: .88rem; }

/* Field groups */
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-span { grid-column: span 2; }
.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label { font-size: .8rem; font-weight: 700; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; }
.field-group .field-hint { font-size: .75rem; color: var(--text-light); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* Inputs */
.field-input {
  border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px;
  font-family: var(--font-body); font-size: .9rem; color: var(--text);
  background: var(--white); width: 100%; transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none; appearance: none;
}
.field-input::placeholder { color: var(--text-light); font-size: .87rem; }
.field-input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,58,107,.09); }
.field-input:hover:not(:focus) { border-color: var(--blue-soft); }

select.field-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath fill='%235a6d8a' d='M5.5 7L0 0h11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}

textarea.field-input { resize: vertical; min-height: 90px; }

/* Phone combo */
.phone-combo { display: flex; gap: 0; }
.phone-combo .dial-select {
  border: 1.5px solid var(--border); border-right: none;
  border-radius: 8px 0 0 8px; padding: 11px 10px 11px 13px;
  font-family: var(--font-body); font-size: .87rem; color: var(--text);
  background: var(--off-white); min-width: 115px; max-width: 130px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%235a6d8a' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center; padding-right: 26px;
  -webkit-appearance: none; cursor: pointer; flex-shrink: 0;
  transition: border-color .18s; border-top-right-radius: 0; border-bottom-right-radius: 0;
}
.phone-combo .dial-select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,58,107,.09); z-index: 1; position: relative; }
.phone-combo .phone-num {
  border-radius: 0 8px 8px 0 !important; flex: 1;
  border-left: 1px solid var(--border-soft) !important;
}
.phone-combo .phone-num:focus { border-left-color: transparent !important; }

/* Radio group — styled tiles */
.radio-tiles { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 0; }
.radio-tile { display: flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer; font-size: .86rem; font-weight: 500; color: var(--text-muted); transition: all .18s; user-select: none; }
.radio-tile:hover { border-color: var(--navy-light); color: var(--navy); background: var(--blue-mist); }
.radio-tile input[type=radio] { width: 14px; height: 14px; accent-color: var(--navy); flex-shrink: 0; }
.radio-tile:has(input:checked) { border-color: var(--navy); background: var(--blue-mist); color: var(--navy); font-weight: 600; }

/* Package radio cards */
.pkg-tiles { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.pkg-tile { display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--border); border-radius: 10px; padding: 14px 18px; cursor: pointer; transition: all .18s; }
.pkg-tile:hover { border-color: var(--navy-light); background: var(--blue-mist); }
.pkg-tile:has(input:checked) { border-color: var(--navy); background: var(--blue-pale); }
.pkg-tile input[type=radio] { width: 16px; height: 16px; accent-color: var(--navy); flex-shrink: 0; }
.pkg-tile-info { flex: 1; }
.pkg-tile-name { font-weight: 700; color: var(--navy-dark); font-size: .9rem; }
.pkg-tile-price { color: var(--navy-light); font-size: .82rem; font-weight: 600; margin-top: 2px; }
.pkg-tile-amount { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--navy); flex-shrink: 0; }

/* Info box */
.info-box { background: var(--blue-pale); border: 1px solid var(--blue-soft); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 22px; }
.info-box h4 { color: var(--navy); font-size: .88rem; font-weight: 700; margin-bottom: 8px; }
.info-box p { font-size: .84rem; color: var(--text-muted); margin-bottom: 5px; line-height: 1.6; }
.info-box p:last-child { margin-bottom: 0; }

/* Review box */
.review-card { background: var(--blue-mist); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.review-field { display: flex; flex-direction: column; gap: 2px; }
.review-field span { font-size: .69rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); }
.review-field strong { font-size: .88rem; color: var(--navy-dark); word-break: break-word; }

/* Terms */
.terms-row { display: flex; align-items: flex-start; gap: 10px; padding: 14px 0; }
.terms-row input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--navy); margin-top: 2px; flex-shrink: 0; }
.terms-row label { font-size: .85rem; color: var(--text-muted); cursor: pointer; line-height: 1.55; }

/* Payment note */
.payment-note { background: var(--off-white); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 20px; }
.payment-note h4 { color: var(--navy); font-size: .88rem; font-weight: 700; margin-bottom: 6px; }
.payment-note p { font-size: .83rem; color: var(--text-muted); margin-bottom: 6px; }
.payment-methods { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.pay-badge { background: var(--white); border: 1px solid var(--border); border-radius: 5px; padding: 4px 10px; font-size: .73rem; font-weight: 600; color: var(--navy); }

/* Step nav */
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--border-soft); }
.step-nav-right { display: flex; gap: 10px; }

/* ── Success Page ── */
.success-wrap { min-height: 70vh; display: flex; align-items: center; padding: 80px 0; }
.success-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 48px; text-align: center; max-width: 560px; margin: 0 auto; box-shadow: var(--shadow); }
.success-icon { width: 72px; height: 72px; background: var(--blue-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-icon svg { color: var(--navy); }
.success-card h1 { font-family: var(--font-display); font-size: 2rem; color: var(--navy-dark); margin-bottom: 12px; }
.success-card p { color: var(--text-muted); font-size: .93rem; margin-bottom: 24px; line-height: 1.7; }
.info-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.info-chip { background: var(--blue-mist); border: 1px solid var(--border-soft); border-radius: 100px; padding: 6px 16px; font-size: .82rem; color: var(--navy); font-weight: 500; }

/* ── Partnership ── */
.partnership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.partnership-info h2 { font-family: var(--font-display); font-size: 1.9rem; color: var(--navy-dark); margin-bottom: .9rem; }
.partnership-info p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.1rem; font-size: .92rem; }
.partner-types { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.partner-type-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 16px 18px; transition: all .2s; box-shadow: var(--shadow-xs); }
.partner-type-card:hover { border-color: var(--blue-soft); box-shadow: var(--shadow-sm); }
.pt-icon { width: 32px; height: 32px; background: var(--blue-pale); border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; color: var(--navy); font-size: .9rem; }
.partner-type-card h4 { font-size: .88rem; color: var(--navy-dark); margin-bottom: 4px; font-weight: 700; }
.partner-type-card p { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }
.form-card { background: var(--white); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-dark); margin-bottom: 22px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .field-group input,
.contact-form .field-group select,
.contact-form .field-group textarea { border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; font-family: var(--font-body); font-size: .9rem; color: var(--text); background: var(--white); width: 100%; transition: border-color .18s, box-shadow .18s; -webkit-appearance: none; }
.contact-form .field-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath fill='%235a6d8a' d='M5.5 7L0 0h11z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.contact-form .field-group input:focus, .contact-form .field-group select:focus, .contact-form .field-group textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,58,107,.09); }

/* ── Footer ── */
.footer { background: var(--navy-deeper); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 28px 44px; display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 52px; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.4); margin-top: 14px; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .87rem; transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-contact p { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 7px; }
.footer-contact a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.footer-contact a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); max-width: 1180px; margin: 0 auto; padding: 16px 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { color: rgba(255,255,255,.3); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-socials a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-grid, .about-detail-grid, .event-detail-grid, .partnership-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .partner-types { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 66px; left: 0; right: 0; background: var(--navy-deeper); padding: 14px; gap: 2px; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .wizard-steps { flex-direction: column; }
  .wizard-step { flex-direction: row; justify-content: flex-start; gap: 10px; padding: 12px 18px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .wizard-body { padding: 24px 20px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-span { grid-column: span 1; }
  .review-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .about-features, .impact-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .section { padding: 52px 0; }
  .step-nav { flex-direction: column; gap: 10px; }
  .step-nav-right { width: 100%; }
  .step-nav-right .btn { flex: 1; }
}

/* ── Speaker Card v3 — circular photo with teardrop accent ── */
.speakers-grid-v3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 44px 32px;
  justify-items: center;
}
.speaker-card-v3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  transition: transform .25s;
}
.speaker-card-v3:hover { transform: translateY(-4px); }

/* ─── Speaker photo: circle with one cut corner ─── */
/*
  Single mask only — border-radius with:
    top-left:     50% (perfect arc)
    top-right:    50% (perfect arc)
    bottom-right: 18% (sharp cut corner — the "notch")
    bottom-left:  50% (perfect arc)
  overflow:hidden on the container is the ONLY clip. No clip-path. No SVG.
*/

.speaker-photo-outer {
  position: relative;
  width: 152px;
  height: 152px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

/* Decorative background halo — SAME shape, slightly larger, sits behind */
.speaker-photo-outer::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  /* Matches the photo shape exactly: circle on 3 corners, cut bottom-right */
  border-radius: 50% 50% 18% 50% / 50% 50% 18% 50%;
  background: var(--blue-pale);
  border: 2px solid var(--blue-soft);
  z-index: 0;
  transition: background .35s, transform .35s, border-color .35s;
}
.speaker-card-v3:hover .speaker-photo-outer::before {
  background: rgba(26,58,107,.09);
  border-color: var(--navy-light);
  transform: rotate(5deg) scale(1.05);
}

/* Gold dot — sits right at the cut corner */
.speaker-photo-outer::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  bottom: -1px;
  right: -1px;
  z-index: 3;
  border: 2.5px solid var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  transition: transform .3s;
}
.speaker-card-v3:hover .speaker-photo-outer::after { transform: scale(1.3); }

/* Photo container — the ONE and ONLY mask */
.speaker-photo-circle {
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  width: 152px;
  height: 152px;
  /* Circle on top-left, top-right, bottom-left; cut bottom-right */
  border-radius: 50% 50% 18% 50% / 50% 50% 18% 50%;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 4px 18px rgba(13,31,71,.15);
}

.speaker-photo-circle > img {
  display: block;
  width: 152px;
  height: 152px;
  object-fit: cover;
  object-position: top center;
}
.speaker-photo-circle > .sp-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 152px;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
}

.speaker-card-v3 h3 {
  font-size: .94rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 3px;
  line-height: 1.3;
}
.speaker-card-v3 .sp-role {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.speaker-card-v3 .sp-org-badge {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--navy);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.speaker-bio-btn {
  font-size: .74rem;
  color: var(--navy-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  transition: color .2s;
}
.speaker-bio-btn:hover { color: var(--navy); }

/* Bio Modal */
.bio-modal-overlay {
  position: fixed; inset: 0; background: rgba(10,20,50,.6);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: opacity .25s;
  backdrop-filter: blur(4px);
}
.bio-modal-overlay.open { opacity: 1; pointer-events: all; }
.bio-modal {
  background: var(--white); border-radius: 20px; padding: 0;
  max-width: 520px; width: 100%; box-shadow: 0 32px 80px rgba(0,0,0,.3);
  transform: translateY(20px); transition: transform .25s;
  position: relative; display: flex; flex-direction: column;
  max-height: 80vh; overflow: hidden;
}
.bio-modal-overlay.open .bio-modal { transform: translateY(0); }
.bio-modal-header-wrap { padding: 32px 32px 0; flex-shrink: 0; }
.bio-modal-scroll { overflow-y: auto; padding: 0 32px 32px; flex: 1;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.bio-modal-scroll::-webkit-scrollbar { width: 5px; }
.bio-modal-scroll::-webkit-scrollbar-track { background: transparent; }
.bio-modal-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.bio-modal-close {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px;
  border-radius: 50%; background: var(--off-white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  color: var(--text-muted); transition: all .2s;
}
.bio-modal-close:hover { background: var(--navy); color: var(--white); }
.bio-modal-photo {
  width: 80px; height: 80px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--blue-pale); margin: 0 auto 16px;
  background: var(--navy); flex-shrink: 0;
}
.bio-modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-modal-photo .bm-initial {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold);
}
.bio-modal-header { text-align: center; margin-bottom: 20px; }
.bio-modal-header h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.bio-modal-header p { font-size: .85rem; color: var(--text-muted); }
.bio-modal-header .bm-org { display: inline-block; background: var(--blue-pale); color: var(--navy); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 12px; border-radius: 100px; margin-top: 8px; }
.bio-modal-body { font-size: .88rem; color: var(--text-muted); line-height: 1.75; border-top: 1px solid var(--border-soft); padding-top: 16px; }

/* ── Prose / Terms pages ───────────── */
.prose-card { background:var(--white); border:1px solid var(--border-soft); border-radius:16px; padding:36px 40px; box-shadow:var(--shadow-sm); }
.prose-body { font-size:.95rem; line-height:1.85; color:var(--text); }
.prose-body h1,.prose-body h2,.prose-body h3 { font-family:var(--font-display); color:var(--navy-dark); margin:24px 0 10px; }
.prose-body p { margin-bottom:14px; }
.prose-body ul,.prose-body ol { padding-left:22px; margin-bottom:14px; }
.prose-body li { margin-bottom:6px; }
.prose-body a { color:var(--navy); text-decoration:underline; }
.prose-body strong { font-weight:700; color:var(--navy-dark); }
@media(max-width:600px){ .prose-card { padding:24px 20px; } }

/* ── Events carousel — responsive grid ──────────────────── */

/* Replace the carousel track flex with CSS grid snap */
.carousel-wrap {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

/* Each card: fixed equal width based on viewport, not content */
.carousel-track .event-card {
  flex: 0 0 calc(25% - 12px);   /* 4 per row — desktop */
  min-width: 0;                  /* prevent overflow from long titles */
  width: calc(25% - 12px);
}

/* Clamp the title so it never stretches the card */
.event-card h3,
.event-card .event-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

/* 3 per row — large tablet */
@media (max-width: 1100px) {
  .carousel-track .event-card {
    flex: 0 0 calc(33.333% - 11px);
    width: calc(33.333% - 11px);
  }
}

/* 2 per row — tablet */
@media (max-width: 768px) {
  .carousel-track .event-card {
    flex: 0 0 calc(50% - 8px);
    width: calc(50% - 8px);
  }
}

/* 1 per row — mobile */
@media (max-width: 480px) {
  .carousel-track .event-card {
    flex: 0 0 100%;
    width: 100%;
  }
}

.key-list { list-style: none; padding: 0; }
.key-list li { 
  display: flex; 
  align-items: flex-start; 
  gap: 10px; 
  margin-bottom: 10px; 
}
.key-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

