/* NAEF — Nordic African Economic Forum */
:root {
  --navy: #0b1f33;
  --navy-soft: #132a42;
  --teal: #1a6b7c;
  --teal-light: #2a9aad;
  --gold: #c9a227;
  --gold-soft: #e8c547;
  --sand: #f4efe6;
  --cream: #faf8f4;
  --text: #1a2332;
  --text-muted: #5c6573;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 24px 60px rgba(11, 31, 51, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--teal-light);
}

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
  background: rgba(11, 31, 51, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img {
  /* width: 44px; */
  /* height: 44px; */
  /* border-radius: 50%; */
  width: 100px;
  height: auto;
  object-fit: cover;
  /* border: 2px solid rgba(201, 162, 39, 0.5); */
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--white);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  font-family: inherit;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.45);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-soft);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--navy);
  padding: 2rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(11, 31, 51, 0.88) 0%,
    rgba(11, 31, 51, 0.55) 45%,
    rgba(26, 107, 124, 0.35) 100%
  );
}

.hero-kenburns {
  animation: kenburns 22s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes kenburns {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.08;
  margin: 0 0 1.25rem;
  font-weight: 600;
}

.hero .lead {
  font-size: 1.2rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-soft);
}

.stat span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounce 2.5s ease-in-out infinite;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* Sections */
section {
  padding: 5.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0 0 1rem;
  color: var(--navy);
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.pillars {
  background: var(--white);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.pillar-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(11, 31, 51, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--gold-soft);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.pillar-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-split h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin: 0 0 1.25rem;
  color: var(--navy);
}

.about-split p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.quote-block {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--gold);
  background: var(--sand);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
}

/* Video section */
.video-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 154, 173, 0.25), transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.video-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.video-player-shell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.video-player-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(11, 31, 51, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.play-btn:hover {
  background: rgba(11, 31, 51, 0.5);
}

.play-btn .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.5);
  transition: transform 0.25s var(--ease);
}

.play-btn:hover .circle {
  transform: scale(1.06);
}

.play-btn .circle::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--navy);
  margin-left: 4px;
}

.video-copy h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin: 0 0 1rem;
}

.video-copy p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

/* Impact */
.impact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.impact-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
}

.impact-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.impact-feature .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 51, 0.9), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
}

.impact-feature h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.impact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.impact-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 31, 51, 0.06);
  align-items: flex-start;
  transition: border-color 0.2s;
}

.impact-item:hover {
  border-color: var(--gold);
}

.impact-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

/* Technology sponsor */
.sponsor-section {
  background: var(--white);
  border-top: 1px solid rgba(11, 31, 51, 0.06);
  border-bottom: 1px solid rgba(11, 31, 51, 0.06);
}

.sponsor-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

.sponsor-split h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  color: var(--navy);
  margin: 0 0 1.25rem;
}

.sponsor-split p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.sponsor-story-note {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0 1.75rem;
}

.sponsor-cta {
  margin-top: 0.25rem;
}

.sponsor-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 55%, #1a3d4a 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.sponsor-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2), transparent 70%);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.sponsor-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.sponsor-card-header img {
  filter: brightness(0) invert(1);
}

.sponsor-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold-soft);
  border: 1px solid rgba(201, 162, 39, 0.35);
  white-space: nowrap;
}

.sponsor-tagline {
  position: relative;
  z-index: 1;
  margin: 0 0 1.25rem;
  opacity: 0.92;
  font-size: 1.05rem;
  line-height: 1.5;
}

.sponsor-features {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sponsor-features li {
  padding-left: 1.35rem;
  position: relative;
  font-size: 0.95rem;
  opacity: 0.9;
}

.sponsor-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.sponsor-footnote {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.sponsor-ceo {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  margin: 0 0 1rem;
  opacity: 0.9;
}

.sponsor-ceo a {
  color: var(--gold-soft);
  font-weight: 600;
}

.sponsor-ceo a:hover {
  color: var(--white);
}

.sponsor-split > div > p a {
  font-weight: 600;
  white-space: nowrap;
}

.sponsor-link {
  position: relative;
  z-index: 1;
  color: var(--gold-soft);
  font-weight: 700;
}

.sponsor-link:hover {
  color: var(--white);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  margin: 0 0 1rem;
}

.cta-band p {
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.site-footer h4 {
  color: var(--white);
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.slogan-footer {
  font-family: var(--font-display);
  color: var(--gold-soft);
  font-size: 1.1rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(11, 31, 51, 0.92);
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-inner {
  width: min(960px, 100%);
  position: relative;
}

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.modal-video {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.modal-video iframe,
.modal-video video {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== EVENT PAGE ========== */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding-bottom: 4rem;
}

.page-hero .hero-media::after {
  background: linear-gradient(to top, rgba(11, 31, 51, 0.95) 0%, rgba(11, 31, 51, 0.4) 100%);
}

.page-hero .hero-content {
  max-width: 800px;
  padding-bottom: 0;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.event-meta-item svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 480px;
  margin-top: 2rem;
}

.countdown-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1rem 0.5rem;
}

.countdown-unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-soft);
}

.countdown-unit span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
}

.event-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.sticky-card {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 31, 51, 0.06);
}

.sticky-card h3 {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  color: var(--navy);
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(11, 31, 51, 0.15);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26, 107, 124, 0.15);
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(26, 107, 124, 0.12);
  border-radius: var(--radius);
  color: var(--teal);
  font-weight: 500;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
}

.agenda-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 31, 51, 0.12);
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.agenda-panel {
  display: none;
}

.agenda-panel.active {
  display: block;
}

.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(201, 162, 39, 0.35);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.timeline-item h4 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  color: var(--navy);
}

.timeline-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.speaker-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 51, 0.06);
  transition: transform 0.25s var(--ease);
}

.speaker-card:hover {
  transform: translateY(-3px);
}

.speaker-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--teal-light), var(--navy));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-soft);
}

.speaker-card h4 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--navy);
}

.speaker-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.venue-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  background: var(--sand);
  border: 1px solid rgba(11, 31, 51, 0.08);
}

.venue-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--teal);
  transition: transform 0.25s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* ========== EVENTS CATALOG ========== */
.events-page-hero {
  padding: calc(var(--header-h) + 4rem) 0 2.5rem;
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

.events-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--navy);
  margin: 0 0 1rem;
}

.events-page-lead {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0;
  font-size: 1.125rem;
}

.events-list-section {
  padding: 2rem 0 5rem;
}

.events-toolbar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 31, 51, 0.06);
  margin-bottom: 2.5rem;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.filter-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.filter-field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(11, 31, 51, 0.15);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
}

.events-toolbar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(11, 31, 51, 0.08);
}

.events-results-count {
  margin: 0;
  font-weight: 600;
  color: var(--teal);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(11, 31, 51, 0.06);
  box-shadow: 0 8px 30px rgba(11, 31, 51, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.event-card-link {
  color: inherit;
  display: block;
}

.event-card-link:hover {
  color: inherit;
}

.event-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy);
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.event-card:hover .event-card-media img {
  transform: scale(1.04);
}

.event-card-media.has-duo .event-card-thumb-secondary {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 34%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  border: 2px solid var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.event-card-status {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(11, 31, 51, 0.82);
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.event-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.event-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

.tag-type {
  background: rgba(26, 107, 124, 0.12);
  color: var(--teal);
}

.tag-country {
  background: rgba(201, 162, 39, 0.15);
  color: #8a6d12;
}

.event-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.event-card-date {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--teal);
  font-weight: 600;
}

.event-card-excerpt {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card-cta {
  font-weight: 700;
  color: var(--teal);
  font-size: 0.9rem;
}

.events-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(11, 31, 51, 0.12);
}

.events-empty h2 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-top: 0;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.event-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.event-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 960px) {
  .about-split,
  .video-wrap,
  .impact-grid,
  .event-layout,
  .footer-grid,
  .filters-grid,
  .sponsor-split {
    grid-template-columns: 1fr;
  }

  .sticky-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  section {
    padding: 4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-kenburns,
  .scroll-hint,
  .reveal {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
