/* ============================================================
   STI BUSINESS FORUM — INAUGURAL PUBLIC LECTURE 2026
   styles.css
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Brand Tokens ── */
:root {
  --black:       #090909;
  --near-black:  #0e0e0e;
  --card:        #141414;
  --card-2:      #1a1a1a;
  --border:      rgba(255, 255, 255, 0.07);
  --border-md:   rgba(255, 255, 255, 0.13);

  /* Bronze / Gold palette */
  --bronze:      #b5861b;
  --gold:        #c9981f;
  --gold-lt:     #ddb84a;
  --gold-pale:   #e8d08a;
  --gold-dim:    rgba(181, 134, 27, 0.10);
  --gold-border: rgba(181, 134, 27, 0.28);

  --white:       #f7f5f0;
  --off-white:   #ede9df;
  --muted:       rgba(247, 245, 240, 0.42);
  --muted-md:    rgba(247, 245, 240, 0.68);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 15px;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; }
a { color: inherit; text-decoration: none; }


/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 74px;
  background: rgba(9, 9, 9, 0.93);
  backdrop-filter: blur(28px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.nav-brand { display: flex; align-items: center; gap: 0; }
.nav-brand img { height: 48px; width: auto; object-fit: contain; display: block; }

.nav-logo-fallback {
  display: none; align-items: center; gap: 10px;
}
.nav-logo-box {
  width: 40px; height: 40px; background: var(--bronze);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
}
.nav-logo-box .sti { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 14px; color: #000; line-height: 1; }
.nav-logo-box .forum { font-size: 7px; letter-spacing: 1.5px; font-weight: 700; color: rgba(0,0,0,0.55); }
.nav-brand-text { display: flex; flex-direction: column; gap: 1px; }
.nav-brand-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px; color: var(--white); }
.nav-brand-sub { font-size: 9px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-tagline {
  margin-left: 14px; padding-left: 14px;
  border-left: 1px solid var(--border-md);
  font-size: 10px; color: var(--muted); letter-spacing: 1.5px;
  text-transform: uppercase; line-height: 1.4; font-weight: 500;
}

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--muted); transition: color .2s; letter-spacing: 0.2px; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links .nav-forum-link,
.mobile-nav .nav-forum-link {
  font-weight: 600;
  background: linear-gradient(180deg, #f4d98d 0%, #d2a53a 48%, #9d6f12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links .nav-forum-link:hover,
.mobile-nav .nav-forum-link:hover {
  background: linear-gradient(180deg, #f8e8b3 0%, #e2bb59 50%, #b6831b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-cta {
  background: var(--bronze) !important; color: var(--white) !important;
  padding: 9px 22px; border-radius: 2px;
  font-weight: 600 !important; font-size: 13px !important;
  letter-spacing: 0.5px; transition: background .2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--white); display: block; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; position: fixed; top: 74px; left: 0; right: 0; z-index: 299;
  background: rgba(9, 9, 9, 0.98); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); padding: 24px 24px 32px;
  flex-direction: column; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px; font-weight: 400; color: var(--muted-md);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .mob-cta {
  margin-top: 20px; background: var(--bronze); color: var(--white);
  padding: 14px; text-align: center; font-weight: 600; font-size: 14px;
  border-bottom: none;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px 56px 90px; overflow: hidden; background: var(--black);
}

.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; pointer-events: none; z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(to top, rgba(7,7,7,0.97) 0%, rgba(7,7,7,0.75) 35%, rgba(7,7,7,0.35) 65%, rgba(7,7,7,0.55) 100%),
    radial-gradient(ellipse 80% 50% at 60% 40%, rgba(120,80,10,0.18) 0%, transparent 70%);
}

.hero-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2; }
.hero-lines::before {
  content: ''; position: absolute;
  top: -10%; right: 28%; width: 1px; height: 130%;
  background: linear-gradient(to bottom, transparent, rgba(181,134,27,0.25) 30%, rgba(181,134,27,0.25) 70%, transparent);
  transform: rotate(-8deg);
}
.hero-lines::after {
  content: ''; position: absolute;
  top: -10%; right: 22%; width: 1px; height: 130%;
  background: linear-gradient(to bottom, transparent, rgba(181,134,27,0.10) 30%, rgba(181,134,27,0.10) 70%, transparent);
  transform: rotate(-8deg);
}

.hero-inner { position: relative; z-index: 3; max-width: 1120px; }

.event-label {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--gold-border); background: var(--gold-dim);
  padding: 7px 16px; border-radius: 1px; margin-bottom: 36px; width: fit-content;
}
.event-label::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--bronze); animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(.75); }
}
.event-label span { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-lt); font-weight: 600; }

.hero h1 {
  max-width: 10ch;
  font-size: clamp(44px, 6.8vw, 96px);
  font-weight: 700; letter-spacing: -1.4px; line-height: 0.96; margin-bottom: 14px; color: var(--white);
  text-wrap: balance;
}
.hero-theme {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 32px); font-weight: 400; font-style: italic;
  color: var(--gold-lt); margin-bottom: 32px; letter-spacing: 0.2px;
}
.hero-desc { font-size: 15px; color: var(--muted-md); max-width: 680px; line-height: 1.8; margin-bottom: 48px; font-weight: 300; }
.hero-slogan { font-style: italic; color: var(--gold-lt); font-family: 'Cormorant Garamond', serif; font-size: 16px; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 44px; width: fit-content; border: 1px solid var(--border-md); }
.hero-meta-item { padding: 14px 28px; border-right: 1px solid var(--border-md); display: flex; flex-direction: column; gap: 4px; }
.hero-meta-item:last-child { border-right: none; }
.hm-label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hm-val { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--white); letter-spacing: -0.2px; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

.hero-partner-wrap {
  position: absolute; bottom: 48px; right: 56px; z-index: 4;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.hp-label { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hp-badge {
  background: var(--card); border: 1px solid var(--border-md); padding: 10px 22px;
  font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700;
  color: var(--white); letter-spacing: 0.3px;
}
.hp-badge em { color: var(--gold-lt); font-style: normal; }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-bronze {
  background: var(--bronze); color: var(--white);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px;
  padding: 13px 30px; border-radius: 2px; letter-spacing: 0.5px;
  transition: background .2s; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-bronze:hover { background: var(--gold); }
.btn-bronze:disabled { background: rgba(181, 134, 27, 0.55); cursor: not-allowed; }

.btn-outline {
  background: transparent; color: var(--white);
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 13px;
  padding: 13px 30px; border-radius: 2px; letter-spacing: 0.3px;
  border: 1px solid var(--border-md); transition: border-color .2s, background .2s; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold-border); background: var(--gold-dim); }


/* ============================================================
   COUNTDOWN BAR
   ============================================================ */
.cd-bar {
  background: var(--near-black);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; align-items: stretch; flex-wrap: wrap; min-height: 76px;
}
.cd-intro { padding: 0 32px; display: flex; align-items: center; gap: 12px; border-right: 1px solid var(--border); white-space: nowrap; }
.cd-intro-text { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.cd-units { display: flex; align-items: stretch; }
.cd-unit { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 26px; border-right: 1px solid var(--border); }
.cd-num { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--gold-lt); line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -1px; }
.cd-tag { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 4px; font-weight: 500; }
.cd-right { flex: 1; display: flex; align-items: center; justify-content: flex-end; padding: 0 36px; gap: 32px; flex-wrap: wrap; }
.cd-info { display: flex; flex-direction: column; gap: 2px; text-align: right; }
.cd-info strong { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700; color: var(--white); }
.cd-info span { font-size: 11px; color: var(--muted); }
.cd-sep { width: 1px; height: 32px; background: var(--border); }


/* ============================================================
   SECTION BASE
   ============================================================ */
section { padding: 96px 56px; }
.section-kicker { display: inline-block; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--bronze); font-weight: 700; margin-bottom: 14px; }
.section-title { font-size: clamp(30px, 3.5vw, 48px); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; line-height: 1.08; }
.rule { width: 40px; height: 2px; background: var(--bronze); margin: 18px 0 40px; }
.section-sub { font-size: 15px; color: var(--muted-md); max-width: 560px; line-height: 1.8; margin-bottom: 52px; font-weight: 300; }


/* ============================================================
   ABOUT THE LECTURE
   ============================================================ */
.about-sec { background: var(--near-black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.about-body { font-size: 15px; color: var(--muted-md); line-height: 1.85; font-weight: 300; }
.about-body p { margin-bottom: 20px; }
.about-body strong { color: var(--white); font-weight: 600; }

.founding-box { margin-top: 28px; background: var(--card); border-left: 2px solid var(--bronze); padding: 26px 28px; }
.founding-box-wide { margin-top: 36px; border-left-width: 3px; }
.founding-box-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--bronze); font-weight: 700; margin-bottom: 12px; }
.founding-box p { font-size: 14px; font-style: italic; color: var(--muted-md); line-height: 1.75; }

.about-pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar { background: var(--card); border: 1px solid var(--border); padding: 26px 28px; transition: border-color .25s; position: relative; overflow: hidden; }
.pillar::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--bronze); transition: width .35s; }
.pillar:hover { border-color: var(--gold-border); }
.pillar:hover::before { width: 100%; }
.pillar-num { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--bronze); font-weight: 700; margin-bottom: 8px; }
.pillar h3 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--white); }
.pillar p { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.pillar-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }


/* ============================================================
   LECTURE THEMES
   ============================================================ */
.themes-sec { background: var(--near-black); }
.themes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.theme-card { background: var(--card); padding: 32px 30px; display: flex; align-items: flex-start; gap: 16px; transition: background .25s; }
.theme-card:hover { background: var(--card-2); }
.theme-num { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 700; color: var(--bronze); line-height: 1; flex-shrink: 0; opacity: .4; font-style: italic; }
.theme-body h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 7px; }
.theme-body p { font-size: 12px; color: var(--muted); line-height: 1.65; font-weight: 300; }


/* ============================================================
   SPEAKERS
   ============================================================ */
.spk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }

.spk-card { background: var(--near-black); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: background .3s; }
.spk-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background .3s; }
.spk-card:hover { background: var(--card); }
.spk-card:hover::after { background: var(--bronze); }

.spk-photo { width: 100%; aspect-ratio: 3/4; position: relative; overflow: hidden; background: var(--card-2); flex-shrink: 0; }
.spk-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .5s ease; filter: grayscale(15%) contrast(1.05); }
.spk-card:hover .spk-photo img { transform: scale(1.04); }
.spk-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(14,14,14,0.85) 100%); pointer-events: none; }

.spk-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-block; font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-lt); border: 1px solid var(--gold-border); background: rgba(10,10,10,0.75);
  padding: 4px 10px; font-weight: 700; backdrop-filter: blur(6px);
}

.spk-info { padding: 22px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.spk-name { font-size: 19px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 5px; color: var(--white); }
.spk-title { font-size: 12px; color: var(--muted); line-height: 1.55; font-weight: 300; flex: 1; }
.spk-theme { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 400; font-style: italic; color: var(--gold-pale); line-height: 1.6; padding-top: 14px; margin-top: 14px; border-top: 1px solid var(--border); }
.spk-card-minimal .spk-photo { aspect-ratio: 16/11; }
.spk-card-minimal .spk-info { display: none; }


/* ============================================================
   GOVERNANCE
   ============================================================ */
.governance-sec { background: var(--near-black); }
.governance-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 24px;
}
.gov-tab {
  appearance: none;
  border: 1px solid var(--border-md);
  background: rgba(18, 18, 18, 0.88);
  color: var(--muted-md);
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.gov-tab:hover {
  border-color: var(--gold-border);
  color: var(--white);
  transform: translateY(-1px);
}
.gov-tab.is-active {
  color: var(--white);
  background: linear-gradient(180deg, rgba(181, 134, 27, 0.16), rgba(20, 20, 20, 0.96));
  border-color: rgba(221, 184, 74, 0.38);
}

.gov-panel { display: none; }
.gov-panel.is-active { display: block; }

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.leadership-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 0;
  background: linear-gradient(180deg, rgba(181, 134, 27, 0.08), rgba(20, 20, 20, 0.96));
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 100%;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.leadership-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}
.leadership-card-featured {
  border-color: rgba(221, 184, 74, 0.32);
  box-shadow: inset 0 0 0 1px rgba(221, 184, 74, 0.08);
}
.leadership-photo {
  position: relative;
  background: linear-gradient(180deg, rgba(221, 184, 74, 0.14), rgba(14, 14, 14, 0.96));
  min-height: 100%;
}
.leadership-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.leadership-photo-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(221, 184, 74, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(40, 40, 40, 0.98), rgba(14, 14, 14, 1));
}
.leadership-photo-placeholder span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--gold-lt);
}
.leadership-copy {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
}
.leadership-role {
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 700;
  margin-bottom: 10px;
}
.leadership-copy h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.15;
}
.leadership-copy p {
  font-size: 13px;
  color: var(--muted-md);
  line-height: 1.78;
  font-weight: 300;
}


/* ============================================================
   PROGRAMME
   ============================================================ */
.programme-sec {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 2%, rgba(221, 184, 74, 0.34), transparent 16%),
    radial-gradient(circle at 90% 5%, rgba(181, 134, 27, 0.14), transparent 24%),
    linear-gradient(180deg, #0a0d11 0%, #090b0f 100%);
}
.programme-sec::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(221, 184, 74, 0.28);
  box-shadow:
    0 0 0 18px rgba(221, 184, 74, 0.07),
    0 0 0 38px rgba(221, 184, 74, 0.05),
    0 0 0 62px rgba(221, 184, 74, 0.04);
  pointer-events: none;
  opacity: 0.9;
}
.prog-shell { position: relative; z-index: 1; }
.prog-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 44px;
}
.prog-hero { max-width: 720px; }
.prog-title {
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: -1.4px;
  margin-bottom: 22px;
}
.prog-title span {
  display: inline-block;
  background: linear-gradient(180deg, #f1d887 0%, #cf9a24 45%, #9d6f12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.prog-duration {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid rgba(221, 184, 74, 0.55);
  background: rgba(14, 14, 14, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
.prog-duration-icon {
  color: var(--gold-lt);
  font-size: 18px;
  line-height: 1;
}
.prog-duration span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.prog-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 18px;
}
.prog-highlight {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.prog-highlight:last-child { border-bottom: none; }
.prog-highlight-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(221, 184, 74, 0.72);
  color: var(--gold-lt);
  font-size: 24px;
  background: rgba(181, 134, 27, 0.08);
}
.prog-highlight strong {
  display: block;
  color: var(--off-white);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.prog-timeline {
  position: relative;
  padding-left: 78px;
}
.prog-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 31px;
  width: 2px;
  background: linear-gradient(180deg, rgba(221, 184, 74, 0.62) 0%, rgba(181, 134, 27, 0.18) 100%);
}
.prog-item {
  position: relative;
  margin-bottom: 12px;
}
.prog-item:last-child { margin-bottom: 0; }
.prog-node {
  position: absolute;
  left: -58px;
  top: 42px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffe8a6 0 42%, #d9a52b 43% 66%, #111 67% 100%);
  box-shadow: 0 0 0 3px rgba(221, 184, 74, 0.22);
}
.prog-card {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(13, 16, 22, 0.98), rgba(9, 12, 16, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 42px rgba(0, 0, 0, 0.24);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.prog-item:hover .prog-card {
  transform: translateY(-2px);
  border-color: rgba(221, 184, 74, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 24px 50px rgba(0, 0, 0, 0.28);
}
.prog-time {
  display: flex;
  align-items: center;
  padding: 28px 34px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  color: var(--gold-lt);
  background: linear-gradient(135deg, rgba(54, 43, 24, 0.8), rgba(27, 24, 21, 0.96));
  border-right: 1px solid rgba(255,255,255,0.08);
}
.prog-body {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px 26px 18px 24px;
}
.prog-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-size: 24px;
  line-height: 1;
  background: color-mix(in srgb, currentColor 10%, transparent);
  box-shadow: inset 0 0 28px color-mix(in srgb, currentColor 10%, transparent);
}
.prog-detail { min-width: 0; }
.prog-cat {
  display: block;
  width: auto;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 700;
}
.prog-detail h4 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--white);
  line-height: 1.28;
}
.prog-detail span {
  display: block;
  font-size: 12px;
  color: var(--muted-md);
  font-weight: 300;
  line-height: 1.65;
}

.c-arrival   { color: #68adff; }
.c-welcome   { color: #6fdd8d; }
.c-keynote   { color: var(--gold-lt); }
.c-panel     { color: #c785ff; }
.c-close     { color: #ffcf6f; }
.c-reception { color: #f3a8cf; }


/* ============================================================
   SPONSORSHIP
   ============================================================ */
.sponsor-sec { background: var(--near-black); }
.tiers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 52px; }

.tier { background: var(--card); padding: 44px 36px 40px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.tier-badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 5px 12px; margin-bottom: 22px; width: fit-content; }
.tier.plat { background: linear-gradient(160deg, #100f0b 0%, #141414 100%); }
.tier.plat .tier-badge { background: linear-gradient(90deg, var(--bronze), var(--gold-lt)); color: #000; }
.tier.plat .tier-amount { color: var(--gold-lt); }
.tier.gold .tier-badge { background: var(--gold-dim); color: var(--gold-lt); border: 1px solid var(--gold-border); }
.tier.silv .tier-badge { background: rgba(255,255,255,.06); color: rgba(247,245,240,.6); border: 1px solid var(--border); }
.tier.bronz .tier-badge { background: rgba(144, 78, 18, 0.22); color: #e0a86a; border: 1px solid rgba(198, 111, 33, 0.35); }
.tier.bronz .tier-amount { color: #e0a86a; }

.tier-amount { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 700; color: var(--white); letter-spacing: -1px; margin-bottom: 6px; }
.tier-tagline { font-size: 12px; color: var(--muted); margin-bottom: 24px; font-weight: 300; line-height: 1.6; }
.tier-benefits { list-style: none; margin-bottom: 32px; flex: 1; }
.tier-benefits li { font-size: 12px; color: var(--muted-md); padding: 9px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; font-weight: 300; }
.tier-benefits li:last-child { border-bottom: none; }
.tier-benefits li::before { content: '◆'; color: var(--bronze); font-size: 7px; flex-shrink: 0; margin-top: 4px; }
.tier .btn-bronze, .tier .btn-outline { width: 100%; justify-content: center; font-size: 12px; padding: 11px; }

.roi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.roi-card { background: var(--card); border: 1px solid var(--border); padding: 28px; transition: border-color .25s; }
.roi-card:hover { border-color: var(--gold-border); }
.roi-icon { font-size: 22px; margin-bottom: 14px; }
.roi-card h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.roi-card p { font-size: 12px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.partner-sub { font-size: 14px; color: var(--muted-md); line-height: 1.8; max-width: 980px; margin-bottom: 18px; font-weight: 300; }
.partner-row { display: flex; justify-content: center; margin-bottom: 32px; }
.roi-card.partner-card { background: var(--near-black); border: none; padding: 18px 24px 16px; width: 100%; max-width: 760px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.partner-logo-wrap { background: var(--near-black); padding: 0; border-radius: 14px; width: 100%; max-width: 560px; min-height: 0; display: flex; align-items: center; justify-content: center; margin-top: 8px; }
.partner-logo { display: block; width: 100%; max-width: 360px; height: auto; object-fit: contain; }

.prosp-bar { background: var(--gold-dim); border: 1px solid var(--gold-border); padding: 26px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.prosp-bar h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.prosp-bar p { font-size: 13px; color: var(--muted-md); font-weight: 300; }


/* ============================================================
   REGISTRATION
   ============================================================ */
.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.del-types { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.del-type { background: var(--near-black); border: 1px solid var(--border); padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; transition: border-color .2s; cursor: pointer; }
.del-type:hover { border-color: var(--gold-border); }
.del-type h4 { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; margin-bottom: 2px; color: var(--white); }
.del-type span { font-size: 11px; color: var(--muted); font-weight: 300; }
.del-price { font-family: 'Cormorant Garamond', serif; font-size: 14px; color: var(--gold-lt); font-weight: 700; white-space: nowrap; font-style: italic; }
.vip-box { background: var(--gold-dim); border: 1px solid var(--gold-border); padding: 14px 18px; font-size: 12px; color: var(--muted-md); line-height: 1.65; font-weight: 300; }
.vip-box strong { color: var(--gold-lt); }

.reg-form-wrap { background: var(--near-black); border: 1px solid var(--border); padding: 40px; }
.form-heading { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.form-sub { font-size: 12px; color: var(--muted); margin-bottom: 28px; font-weight: 300; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.ffield { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.ffield label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.ffield input, .ffield select, .ffield textarea { background: var(--card); border: 1px solid var(--border-md); padding: 11px 14px; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--white); transition: border-color .2s; outline: none; font-weight: 300; }
.ffield input:focus, .ffield select:focus, .ffield textarea:focus { border-color: var(--bronze); }
.ffield select option { background: #141414; }
.ffield textarea { min-height: 140px; resize: vertical; }
.fcheck { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 20px; }
.fcheck input { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; accent-color: var(--bronze); }
.fcheck label { font-size: 11px; color: var(--muted); line-height: 1.6; font-weight: 300; }
.form-success { display: none; text-align: center; padding: 40px; color: var(--gold-lt); font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; }
.form-success p { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted); font-weight: 300; margin-top: 8px; }


/* ============================================================
   MEDIA & THOUGHT LEADERSHIP
   ============================================================ */
.media-sec { background: var(--near-black); }
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.media-card { background: var(--card); border: 1px solid var(--border); padding: 30px 26px; display: flex; flex-direction: column; transition: border-color .25s; }
.media-card:hover { border-color: var(--gold-border); }
.media-type { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--bronze); font-weight: 700; margin-bottom: 14px; }
.media-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.25; color: var(--white); }
.media-card p { font-size: 12px; color: var(--muted); line-height: 1.7; margin-bottom: auto; padding-bottom: 18px; font-weight: 300; }
.media-card a { font-size: 12px; color: var(--gold-lt); font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
.media-card a:hover { color: var(--gold-pale); }
.mg-strip { display: flex; align-items: center; gap: 20px; background: var(--card); border: 1px solid var(--border-md); padding: 20px 28px; margin-top: 36px; width: fit-content; }
.mg-strip span { font-size: 11px; color: var(--muted); font-weight: 300; }
.mg-strip strong { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.3px; }
.mg-sep { width: 1px; height: 28px; background: var(--border-md); }


/* ============================================================
   ABOUT STI FORUM
   ============================================================ */
.forum-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.forum-body { font-size: 15px; color: var(--muted-md); line-height: 1.85; font-weight: 300; }
.forum-body p { margin-bottom: 20px; }
.forum-body strong { color: var(--white); font-weight: 600; }
.forum-aims { display: flex; flex-direction: column; gap: 10px; margin: 28px 0; }
.forum-aim { position: relative; padding: 14px 18px 14px 40px; background: var(--near-black); border: 1px solid var(--border); font-size: 13px; color: var(--muted-md); line-height: 1.65; font-weight: 300; transition: border-color .2s; }
.forum-aim:hover { border-color: var(--gold-border); }
.forum-aim::before { content: '◆'; position: absolute; left: 18px; top: 18px; color: var(--bronze); font-size: 7px; line-height: 1; }
.forum-aim strong { color: var(--white); font-weight: 600; }

.featured-portrait-card {
  background: linear-gradient(180deg, rgba(181, 134, 27, 0.14), rgba(20, 20, 20, 0.96));
  border: 1px solid rgba(181, 134, 27, 0.22);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.featured-portrait {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}
.portrait-caption {
  display: flex;
  justify-content: center;
  padding: 18px 12px 6px;
  text-align: center;
}
.portrait-caption strong {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}

.slogan-box { margin-top: 16px; background: var(--card); border: 1px solid var(--border-md); padding: 22px 24px; }
.slogan-box p { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; font-weight: 400; color: var(--white); line-height: 1.5; text-align: center; }
.slogan-box p em { color: var(--gold-lt); }

.mem-cta { margin-top: 12px; background: var(--bronze); padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: background .2s; }
.mem-cta:hover { background: var(--gold); }
.mem-cta h4 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.mem-cta p { font-size: 11px; color: rgba(247,245,240,.6); font-weight: 300; }
.mem-cta span { font-size: 18px; color: var(--white); }


/* ============================================================
   CONTACT
   ============================================================ */
.contact-sec { background: var(--near-black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; background: var(--card); border: 1px solid var(--border); padding: 20px 22px; transition: border-color .2s; }
.contact-item:hover { border-color: var(--gold-border); }
.contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; margin-bottom: 4px; color: var(--white); }
.contact-item p, .contact-item a { font-size: 12px; color: var(--muted-md); line-height: 1.6; font-weight: 300; }
.contact-item a:hover { color: var(--gold-lt); }
.social-row { display: flex; gap: 8px; margin-top: 8px; }
.soc-btn { padding: 7px 14px; border: 1px solid var(--border); font-size: 11px; color: var(--muted); font-weight: 500; letter-spacing: 0.5px; transition: border-color .2s, color .2s; }
.soc-btn:hover { border-color: var(--gold-border); color: var(--gold-lt); }

.nl-box { background: var(--card); border: 1px solid var(--border); padding: 36px; }
.nl-box h3 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.nl-box p { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.65; font-weight: 300; }
.nl-fields { display: flex; flex-direction: column; gap: 10px; }
.nl-fields input, .nl-fields select, .nl-fields textarea { background: var(--near-black); border: 1px solid var(--border-md); padding: 11px 14px; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--white); outline: none; transition: border-color .2s; font-weight: 300; }
.nl-fields input:focus, .nl-fields select:focus, .nl-fields textarea:focus { border-color: var(--bronze); }
.nl-fields select option { background: #141414; }
.nl-fields textarea { min-height: 150px; resize: vertical; }
.nl-note { font-size: 11px; color: var(--muted); line-height: 1.6; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-weight: 300; }
.nl-note.is-error { color: #ff8e8e; }
.nl-note.is-success { color: var(--gold-lt); }


/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 56px 56px 32px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 48px; }
.footer-logo img { height: 40px; width: auto; opacity: .85; margin-bottom: 16px; }
.footer-brand-p { font-size: 12px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; font-weight: 300; }
.footer-slogan { font-style: italic; color: var(--bronze); font-size: 12px; }
.footer-reg { font-size: 10px; color: rgba(247,245,240,.25); line-height: 1.8; font-weight: 300; }
.footer-col h5 { font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 12px; color: rgba(247,245,240,.45); transition: color .2s; font-weight: 300; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 11px; color: rgba(247,245,240,.25); font-weight: 300; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 11px; color: rgba(247,245,240,.3); transition: color .2s; }
.footer-legal a:hover { color: var(--gold-lt); }


/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }


/* ============================================================
   RESPONSIVE — TABLET (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-tagline { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 110px 24px 64px; }
  .hero-partner-wrap { display: none; }
  section { padding: 64px 24px; }

  .about-grid, .reg-grid, .forum-grid, .contact-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leadership-card { grid-template-columns: 220px minmax(0, 1fr); }
  .prog-top { grid-template-columns: 1fr; gap: 28px; }
  .prog-highlights { padding-top: 0; }
  .prog-card { grid-template-columns: 1fr; }
  .prog-time { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 22px 24px; }
  .prog-body { grid-template-columns: 72px 1fr; padding: 20px 22px; }
  .spk-grid { grid-template-columns: 1fr 1fr; }
  .spk-photo { aspect-ratio: 4/5; }
  .themes-grid { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .roi-row { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .frow { grid-template-columns: 1fr; }

  .cd-bar { flex-wrap: wrap; min-height: auto; }
  .cd-intro { border-right: none; border-bottom: 1px solid var(--border); width: 100%; padding: 14px 24px; }
  .cd-right { padding: 14px 24px; justify-content: flex-start; }
  .cd-info { text-align: left; }

  .hero-meta { flex-direction: column; border: none; gap: 8px; }
  .hero-meta-item { border-right: none; border-bottom: 1px solid var(--border); background: var(--card); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  .prog-title { font-size: 54px; }
  .prog-duration { width: 100%; justify-content: center; }
  .prog-timeline { padding-left: 34px; }
  .prog-timeline::before { left: 12px; }
  .prog-node { left: -31px; top: 26px; width: 18px; height: 18px; }
  .prog-highlight { grid-template-columns: 54px 1fr; gap: 14px; }
  .prog-highlight-icon { width: 54px; height: 54px; font-size: 20px; }
  .prog-body { grid-template-columns: 1fr; }
  .prog-icon { width: 50px; height: 50px; margin-bottom: 4px; }
  .prog-detail h4 { font-size: 20px; }
  .spk-grid { grid-template-columns: 1fr; }
  .governance-tabs { flex-direction: column; align-items: stretch; }
  .gov-tab { width: 100%; text-align: left; }
  .leadership-card { grid-template-columns: 1fr; }
  .leadership-photo { min-height: 320px; }
  .leadership-copy { padding: 24px 22px 26px; }
  .leadership-copy h3 { font-size: 20px; }
  .themes-grid { grid-template-columns: 1fr; }
  .roi-row { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-theme { font-size: 18px; }
  footer { padding: 40px 24px 24px; }
}

/* ============================================================
   2026 VISUAL UPDATES
   ============================================================ */
.nav-brand img { height: 56px; }
.hp-badge { padding: 10px 14px; background: rgba(255, 255, 255, 0.96); }
.hp-badge img { display: block; width: 220px; max-width: 100%; height: auto; }

.pillar-btn { margin-top: 14px; font-size: 12px; padding: 10px 14px; }
.pillar-actions .pillar-btn { margin-top: 0; }

.spk-photo {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(181, 134, 27, 0.25), transparent 55%),
    linear-gradient(180deg, #101010 0%, #171717 100%);
}
.spk-photo::after { display: none; }
.spk-profile-icon {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 1px solid rgba(221, 184, 74, 0.4);
  background: radial-gradient(circle at 50% 28%, rgba(221, 184, 74, 0.12), rgba(0,0,0,0) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spk-profile-head {
  position: absolute;
  top: 24px;
  width: 26px;
  height: 26px;
  border: 3px solid rgba(181, 134, 27, 0.72);
  border-radius: 50%;
}
.spk-profile-body {
  position: absolute;
  bottom: 22px;
  width: 52px;
  height: 30px;
  border: 3px solid rgba(181, 134, 27, 0.72);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom: 0;
}

.media-card-logo { width: 190px; max-width: 100%; background: #fff; padding: 8px 10px; margin-bottom: 14px; }
.mg-strip-logo { width: 170px; max-width: 100%; background: #fff; padding: 6px 10px; }

.sponsor-sec {
  background:
    linear-gradient(180deg, rgba(181, 134, 27, 0.16), rgba(14, 14, 14, 0.95) 22%),
    var(--near-black);
  position: relative;
  overflow: hidden;
}

.venue-sec {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(181, 134, 27, 0.12), transparent 42%),
    linear-gradient(135deg, #0a0a0a 0%, #121212 48%, #0b0b0b 100%);
}
.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.venue-main-img {
  width: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}
.venue-lead { font-size: 20px; color: var(--muted-md); line-height: 1.7; margin: 24px 0 28px; font-weight: 300; }
.venue-facts { display: flex; flex-direction: column; gap: 14px; }
.venue-fact {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, rgba(34, 34, 34, 0.9), rgba(22, 22, 22, 0.9));
  border: 1px solid rgba(181, 134, 27, 0.22);
  border-radius: 16px;
  padding: 14px 16px;
}
.venue-fact-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(181, 134, 27, 0.22);
}
.venue-fact h4 { font-family: 'Inter', sans-serif; font-size: 18px; margin-bottom: 2px; }
.venue-fact p { color: var(--muted); font-size: 15px; }
.venue-btn {
  margin-top: 24px;
  animation: venueCtaFloat 2.6s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(201, 152, 31, 0.35);
}
.venue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(201, 152, 31, 0.25);
}
@keyframes venueCtaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero::before,
.media-sec::before,
.sponsor-sec::before,
.venue-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url('../assets/design/hex-bronze.png');
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.08;
}

@media (max-width: 960px) {
  .venue-grid { grid-template-columns: 1fr; }
}
