/* ============================================================
   RECON-EX 2026 — Main Stylesheet
   ============================================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --dark: #0D0D0D;
  --dark-2: #141414;
  --dark-3: #1C1C1C;
  --charcoal: #2A2A2A;
  --offwhite: #F5F0E8;
  --text-muted: #9A9A8A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--offwhite);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 60px;
  background: linear-gradient(to bottom, rgba(13,13,13,0.96), transparent);
  backdrop-filter: blur(4px);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900; letter-spacing: 2px;
  color: var(--gold); text-decoration: none;
}
.nav-logo span { color: var(--offwhite); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--offwhite); text-decoration: none;
  font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase;
  opacity: 0.75; transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--dark) !important;
  padding: 10px 24px; border-radius: 2px;
  font-weight: 600; opacity: 1 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 0px 80px 60px;
  overflow: hidden;
  gap: 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    linear-gradient(135deg, #0D0D0D 0%, #1a1508 50%, #0D0D0D 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 1rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-host {
  font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 28px;
}
.hero-host span { color: rgba(201,168,76,0.7); }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.05; font-weight: 900; margin-bottom: 24px;
}
h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1rem; line-height: 1.7;
  color: rgba(245,240,232,0.65);
  max-width: 500px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero image panel */
.hero-image-panel {
  position: relative; z-index: 1;
  height: 580px;
  overflow: visible;
}

/* Stacked gold shadow layers behind the diagonal edge */
.hero-image-panel::before,
.hero-image-panel::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 0;
  pointer-events: none;
}
.hero-image-panel::before {
  /* First layer — closer, more opaque */
  background: rgba(201,168,76,0.18);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: translateX(-10px);
  z-index: -1;
}
.hero-image-panel::after {
  /* Second layer — further back, more subtle */
  background: rgba(201,168,76,0.08);
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  transform: translateX(-20px);
  z-index: -2;
}

.hero-image-inner {
  position: relative;
  width: 100%; height: 100%;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}
.hero-image-panel img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; filter: brightness(0.88) saturate(0.85);
}
.hero-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,0.45) 0%, transparent 40%),
              linear-gradient(to top, rgba(13,13,13,0.4) 0%, transparent 40%);
}
.hero-image-tag {
  position: absolute; bottom: 28px; left: 18%; right: 0;
  width: fit-content;
  background: rgba(13,13,13,0.88);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 3px; padding: 12px 18px;
  backdrop-filter: blur(4px);
}
.hero-image-tag .tag-venue {
  font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
}
.hero-image-tag .tag-city { font-size: 0.88rem; font-weight: 500; margin-top: 4px; color: var(--offwhite); }

/* countdown */
.hero-bottom {
  grid-column: 1 / -1;
  position: relative; z-index: 1;
  display: flex; justify-content: center;
}
.countdown-bar {
  display: inline-flex; gap: 0; align-items: stretch;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px; overflow: hidden;
}
.countdown-block {
  padding: 20px 36px; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.15);
  min-width: 110px;
}
.countdown-block:last-child { border-right: none; }
.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold); line-height: 1; display: block; margin-bottom: 6px;
}
.countdown-label { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--dark);
  padding: 15px 38px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; border: 1px solid rgba(201,168,76,0.5); color: var(--gold);
  padding: 15px 38px; font-size: 1rem; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.07); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--dark-3);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 40px 60px;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-desc { font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ── SECTIONS ── */
section { padding: 100px 60px; }
.section-label {
  font-size: 1rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after { content:''; flex: 0 0 40px; height: 1px; background: var(--gold); }
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 20px;
}
h2 em { color: var(--gold); font-style: normal; }
.section-body { font-size: 1rem; line-height: 1.8; color: rgba(245,240,232,0.65); max-width: 600px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; height: 420px; }
.about-card {
  position: absolute; background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15); border-radius: 4px; padding: 28px;
}
.about-card.main { inset: 0; display: flex; flex-direction: column; justify-content: center; }
.about-card.float {
  bottom: -20px; right: -20px; width: 200px;
  background: var(--gold); color: var(--dark); text-align: center;
}
.about-card.float .big { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; }
.about-card.float .sm { font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.about-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 10px; }
.about-desc { font-size: 1rem; line-height: 1.7; color: rgba(245,240,232,0.6); }

/* ── PROGRAMME ── */
.expect-section { background: var(--dark-2); }
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.expect-card {
  background: var(--dark-3); border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px; padding: 32px 26px; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.expect-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent); opacity: 0; transition: opacity 0.3s;
}
.expect-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.expect-card:hover::before { opacity: 1; }
.expect-card-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900;
  color: rgba(201,168,76,0.18); line-height: 1; margin-bottom: 16px;
}
.expect-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 10px; }
.expect-desc { font-size: 1rem; line-height: 1.7; color: rgba(245,240,232,0.55); }

/* ── SPEAKERS ── */
.speakers-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 52px; }
.speaker-cards { display: flex; gap: 18px; flex-wrap: wrap; }
.speaker-card {
  background: var(--dark-3); border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px; padding: 26px 22px; flex: 1; min-width: 175px; text-align: center;
}
.speaker-avatar {
  width: 68px; height: 68px; border-radius: 50%; background: var(--charcoal);
  margin: 0 auto 14px;
  border: 2px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold);
}
.speaker-name { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 4px; }
.speaker-title { font-size: 1rem; color: var(--gold); letter-spacing: 0.5px; }
.speaker-org { font-size: 1rem; color: var(--text-muted); margin-top: 2px; }
.more-speakers {
  display: flex; align-items: center; justify-content: center;
  min-width: 175px; flex: 1;
  background: rgba(201,168,76,0.04);
  border: 1px dashed rgba(201,168,76,0.3);
  border-radius: 4px; padding: 26px 22px;
  font-size: 1rem; color: var(--gold); letter-spacing: 0.5px; text-align: center;
  line-height: 1.6;
}

/* ── VENUE ── */
.venue-section { background: var(--dark-2); }
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 56px; }
.venue-info-block { display: flex; flex-direction: column; gap: 24px; }
.venue-detail {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px; background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.12); border-radius: 4px;
}
.venue-detail-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.venue-detail-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }
.venue-detail-label { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.venue-detail-val { font-size: 1rem; font-weight: 500; }
.venue-detail-sub { font-size: 1rem; color: var(--text-muted); margin-top: 2px; }
.venue-map-placeholder {
  background: var(--dark-3); border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px; min-height: 320px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-muted); font-size: 1rem; letter-spacing: 1px; text-align: center;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.venue-map-placeholder svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.5; opacity: 0.6; }

/* ── WHO ATTENDS ── */
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
.who-card {
  border: 1px solid rgba(201,168,76,0.15); border-radius: 4px;
  padding: 26px 18px; text-align: center; background: var(--dark-3);
  transition: border-color 0.3s;
}
.who-card:hover { border-color: var(--gold); }
.who-card-icon {
  width: 40px; height: 40px; margin: 0 auto 14px;
  border-radius: 50%; background: rgba(201,168,76,0.08);
  display: flex; align-items: center; justify-content: center;
}
.who-card-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }
.who-title { font-size: 1rem; font-weight: 600; letter-spacing: 0.3px; margin-bottom: 8px; }
.who-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.6; }

/* ── SPONSORS ── */
.sponsors-section { background: var(--dark-2); }
.sponsors-tier { margin-bottom: 56px; }
.sponsors-tier:last-child { margin-bottom: 0; }
.tier-label {
  font-size: 1rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
}
.tier-label::after { content:''; flex: 1; height: 1px; background: rgba(201,168,76,0.12); }
.tier-label.major { color: var(--gold); }
.sponsors-row { display: flex; gap: 24px; flex-wrap: wrap; }
.sponsor-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 28px 32px;
  min-width: 200px; flex: 1; max-width: 280px;
  transition: border-color 0.3s;
  text-decoration: none;
}
.sponsor-card:hover { border-color: rgba(201,168,76,0.45); }
.sponsor-card.major-card {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
}
.sponsor-logo-box {
  width: 100%; height: 72px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03);
  border-radius: 3px;
}
.sponsor-logo-box.major { height: 88px; }
.logo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--gold); text-align: center; line-height: 1.3;
  padding: 8px;
}
.logo-placeholder.sm { font-size: 1rem; }
.sponsor-name {
  font-size: 1rem; font-weight: 600; letter-spacing: 0.5px;
  color: rgba(245,240,232,0.7); text-align: center; line-height: 1.4;
}
.sponsor-badge {
  font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); background: rgba(201,168,76,0.1);
  padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(201,168,76,0.2);
}

/* ── EXHIBITORS ── */
.exhibitors-section { }
.exhibitors-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px; margin-top: 48px;
}
.exhibitor-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px; padding: 20px 14px;
  transition: border-color 0.3s;
}
.exhibitor-card:hover { border-color: rgba(201,168,76,0.35); }
.exhibitor-logo-box {
  width: 100%; height: 52px;
  display: flex; align-items: center; justify-content: center;
}
.exhibitor-placeholder {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  color: rgba(201,168,76,0.6); text-align: center; line-height: 1.3;
}
.exhibitor-name { font-size: 1rem; color: var(--text-muted); text-align: center; line-height: 1.4; }
.exhibitors-cta { margin-top: 40px; text-align: center; }
.exhibitors-cta p { font-size: 1rem; color: var(--text-muted); margin-bottom: 16px; }

/* ── CTA BANNER ── */
.cta-banner {
  margin: 0 60px 100px;
  background: linear-gradient(135deg, #1a1508 0%, #241d0a 50%, #1a1508 100%);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px; padding: 80px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: 'RECON-EX';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif; font-size: 14rem; font-weight: 900;
  color: rgba(201,168,76,0.03); letter-spacing: 10px; white-space: nowrap; pointer-events: none;
}
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(245,240,232,0.65); margin-bottom: 36px; font-size: 1rem; }

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 64px 60px 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900; color: var(--gold); margin-bottom: 12px;
}
.footer-brand p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-host {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-host-label { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.footer-host-name { font-size: 1rem; color: rgba(245,240,232,0.6); }
.footer-organiser {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-organiser-label { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.footer-organiser-name { font-size: 1rem; color: rgba(245,240,232,0.6); }
.footer-col h4 { font-size: 1rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 1rem; color: var(--text-muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--offwhite); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { font-size: 1rem; color: rgba(154,154,138,0.45); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.8s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.32s; }
.hero-content > *:nth-child(4) { animation-delay: 0.44s; }
.hero-content > *:nth-child(5) { animation-delay: 0.56s; }
.hero-image-panel { animation: fadeUp 1s ease 0.3s both; }
.countdown-bar { animation: fadeUp 0.8s ease 0.7s both; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .exhibitors-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
  .hero-image-panel { height: auto; }
  .hero-image-panel::before,
  .hero-image-panel::after { display: none; }
  .hero-image-inner { height: 260px; clip-path: none; border-radius: 4px; }
  .hero-image-tag { left: 20px; }
  .hero-bottom { grid-column: 1; }
  section { padding: 72px 24px; }
  .about-grid, .speakers-intro, .venue-grid { grid-template-columns: 1fr; }
  .about-visual { height: auto; position: static; display: flex; flex-direction: column; gap: 0; }
  .about-card { position: static; }
  .about-card.main { padding: 24px; }
  .about-card.float {
    position: static; width: 100%; bottom: auto; right: auto;
    display: flex; align-items: center; gap: 16px;
    padding: 16px 24px; text-align: left;
    border-top: none; border-radius: 0 0 4px 4px;
  }
  .about-card.float .big { font-size: 2rem; }
  .about-card.float .sm { font-size: 0.75rem; }
  .expect-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .exhibitors-grid { grid-template-columns: repeat(3, 1fr); }
  .sponsors-row { flex-direction: column; }
  .sponsor-card { max-width: 100%; }
  .cta-banner { margin: 0 24px 72px; padding: 56px 28px; }
  footer { padding: 48px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { padding: 32px 24px; }
  .countdown-bar { flex-wrap: wrap; width: 100%; }
  .countdown-block { flex: 1; min-width: 0; padding: 12px 8px; }
  .countdown-num { font-size: 1.8rem; }
  .countdown-label { font-size: 0.65rem; letter-spacing: 1px; }
}
@media (max-width: 900px) {
  /* ── Body & general text ── */
  .section-body { font-size: 0.86rem; }
  .hero-sub { font-size: 0.86rem; }
  .hero-eyebrow { font-size: 0.8rem; }
  .hero-host { font-size: 0.8rem; }
  .section-label { font-size: 0.8rem; }

  /* ── Stats strip ── */
  .stat-desc { font-size: 0.8rem; }

  /* ── Programme cards ── */
  .expect-desc { font-size: 0.82rem; }
  .expect-title { font-size: 1rem; }

  /* ── Speakers ── */
  .speaker-name { font-size: 0.88rem; }
  .speaker-title { font-size: 0.77rem; }
  .speaker-org { font-size: 0.77rem; }
  .more-speakers { font-size: 0.8rem; }

  /* ── Venue ── */
  .venue-detail-label { font-size: 0.72rem; }
  .venue-detail-val { font-size: 0.86rem; }
  .venue-detail-sub { font-size: 0.77rem; }
  .venue-map-placeholder { font-size: 0.82rem; }

  /* ── Who attends ── */
  .who-title { font-size: 0.88rem; }
  .who-desc { font-size: 0.8rem; }

  /* ── Sponsors ── */
  .sponsor-name { font-size: 0.82rem; }
  .sponsor-badge { font-size: 0.72rem; }
  .tier-label { font-size: 0.8rem; }

  /* ── Exhibitors ── */
  .exhibitor-name { font-size: 0.77rem; }
  .exhibitors-cta p { font-size: 0.82rem; }

  /* ── About ── */
  .about-desc { font-size: 0.82rem; }
  .about-title { font-size: 1.2rem; }

  /* ── CTA banner ── */
  .cta-banner p { font-size: 0.86rem; }

  /* ── Footer ── */
  .footer-brand p { font-size: 0.8rem; }
  .footer-host-label { font-size: 0.68rem; }
  .footer-host-name { font-size: 0.82rem; }
  .footer-organiser-label { font-size: 0.68rem; }
  .footer-organiser-name { font-size: 0.82rem; }
  .footer-col h4 { font-size: 0.77rem; }
  .footer-col a { font-size: 0.8rem; }
  .footer-bottom p { font-size: 0.72rem; }

  /* ── Buttons ── */
  .btn-primary { font-size: 0.86rem; padding: 13px 28px; }
  .btn-outline { font-size: 0.86rem; padding: 13px 28px; }
}

@media (max-width: 520px) {
  .who-grid, .exhibitors-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}