/* =========================================================
   ROOT
========================================================= */

:root {
  --navy: #062f43;
  --navy-deep: #031d2b;
  --teal: #0a9fb3;
  --cyan: #43d1d8;
  --orange: #e8632d;
  --gold: #f5b638;
  --sand: #f4efe6;
  --cream: #fffaf2;
  --ink: #10232c;
  --muted: #5f7178;
  --white: #ffffff;
  --line: rgba(16, 35, 44, 0.14);
  --radius: 26px;
  --shadow: 0 24px 80px rgba(2, 23, 32, 0.16);
  --container: min(1180px, calc(100% - 40px));
  --header-height: 84px;
  --section-space: 112px;
}

/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  min-width: 320px;
  overflow-x: hidden;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

button, input, textarea, select {
  font: inherit;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* =========================================================
   GLOBAL
========================================================= */

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--orange);
}

.eyebrow.light {
  color: var(--gold);
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(3, 29, 43, 0.04);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 29, 43, 0.93);
  border-color: rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* =========================================================
   BRAND
========================================================= */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-size: .9rem;
  letter-spacing: .11em;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
}

/* =========================================================
   NAVIGATION
========================================================= */

.primary-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a {
  position: relative;
  opacity: .88;
  line-height: 1.2;
}

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

.primary-nav a:hover {
  opacity: 1;
}

.primary-nav a:hover::after {
  width: 100%;
}

/* Tickets */

.nav-ticket {
  color: var(--gold);
  font-weight: 900;
}

.nav-ticket::after {
  background: var(--gold) !important;
}

/* Get involved */

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--navy);
}

/* Mobile toggle */

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../images/kariba-dam.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(2,22,33,.92) 0%, rgba(2,22,33,.72) 40%, rgba(2,22,33,.28) 75%, rgba(2,22,33,.55) 100% ), linear-gradient( 0deg, rgba(2,22,33,.76) 0%, rgba(2,22,33,.12) 58%, rgba(2,22,33,.35) 100% );
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient( rgba(255,255,255,.08) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.08) 1px, transparent 1px );
  background-size: 68px 68px;
  -webkit-mask-image: linear-gradient( to right, black, transparent 80% );
  mask-image: linear-gradient( to right, black, transparent 80% );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  align-items: center;
  gap: 70px;
  padding-top: 90px;
  padding-bottom: 120px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(4.5rem, 8.7vw, 8.7rem);
  line-height: .82;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--gold);
}

.hero-lead {
  margin: 30px 0 8px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 800;
}

.hero-text {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .92rem;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background: #ffc84f;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.03);
}

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

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

.btn-ghost-light {
  border-color: rgba(255,255,255,.45);
  color: var(--white);
}

.btn-ghost-light:hover {
  background: var(--white);
  color: var(--navy);
}

/* =========================================================
   HERO META
========================================================= */

.hero-meta {
  display: flex;
  gap: 40px;
  margin: 42px 0 0;
  padding: 0;
}

.hero-meta div {
  padding-left: 15px;
  border-left: 2px solid var(--cyan);
}

.hero-meta dt {
  color: rgba(255,255,255,.58);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-meta dd {
  max-width: 280px;
  margin: 2px 0 0;
  font-weight: 800;
}

/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {
  justify-self: end;
  text-align: center;
}

.badge-ring {
  width: min(310px, 36vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(3,29,43,.55);
  box-shadow: 0 0 0 18px rgba(10,159,179,.12), var(--shadow);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.badge-ring img {
  width: 64%;
  filter: drop-shadow( 0 12px 22px rgba(0,0,0,.3) );
}

.hero-badge p {
  margin: 34px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* =========================================================
   HERO STRIP
========================================================= */

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  background: var(--gold);
  color: var(--navy-deep);
}

.marquee {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.marquee i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading h2, .section-top h2, .network-copy h2, .impact-copy h2, .cta h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.04em;
}

/* =========================================================
   INTRO
========================================================= */

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.intro-copy {
  max-width: 720px;
}

.intro-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--navy);
  font-weight: 900;
}

.text-link span {
  color: var(--orange);
}

/* =========================================================
   IMAGE BREAK
========================================================= */

.image-break {
  position: relative;
  height: min(620px, 70vw);
  min-height: 420px;
  overflow: hidden;
}

.image-break > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(3,29,43,.12), rgba(3,29,43,.02) );
}

.image-break-card {
  position: absolute;
  z-index: 2;
  left: max( 30px, calc((100vw - 1180px) / 2) );
  bottom: 46px;
  max-width: 560px;
  padding: 26px 30px;
  border-radius: 20px;
  background: rgba(3,29,43,.88);
  color: var(--white);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.image-break-card span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.image-break-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.05;
}

/* =========================================================
   HIGHLIGHTS
========================================================= */

.highlights {
  background: var(--sand);
}

.section-top {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-top > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 1.04rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 420px;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.feature-card-large {
  grid-column: span 8;
}

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

.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient( 180deg, rgba(3,29,43,.08), rgba(3,29,43,.92) );
}

.feature-card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 28px;
}

.feature-card-content > span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 18px 0 8px;
  font-size: 2rem;
  line-height: 1;
}

.feature-card p {
  max-width: 580px;
  margin: 0;
  color: rgba(255,255,255,.75);
}

.feature-card-accent {
  grid-column: span 4;
  background: linear-gradient( 145deg, var(--orange), #f78c3f 65%, var(--gold) );
  color: var(--navy-deep);
}

.feature-card-accent .feature-card-content {
  position: relative;
  inset: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-card-accent .feature-card-content > span {
  color: var(--navy);
  border-color: rgba(3,29,43,.28);
}

.feature-card-accent p {
  color: rgba(3,29,43,.72);
}

.accent-orbit {
  position: absolute;
  width: 210px;
  height: 210px;
  top: 24px;
  right: 18px;
  border: 1px solid rgba(3,29,43,.22);
  border-radius: 50%;
}

.accent-orbit::before, .accent-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(3,29,43,.18);
}

.accent-orbit::before {
  inset: 28px;
}

.accent-orbit::after {
  inset: 64px;
  background: rgba(255,255,255,.18);
}

/* =========================================================
   TICKETS
========================================================= */

.tickets-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient( 135deg, #031d2b 0%, #06384a 52%, #075d68 100% );
  color: var(--white);
}

.tickets-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient( rgba(255,255,255,.08) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.08) 1px, transparent 1px );
  background-size: 70px 70px;
  -webkit-mask-image: linear-gradient( to right, black, transparent );
  mask-image: linear-gradient( to right, black, transparent );
}

.tickets-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tickets-glow-one {
  width: 520px;
  height: 520px;
  top: -260px;
  right: 5%;
  background: radial-gradient( circle, rgba(67,209,216,.26), transparent 68% );
}

.tickets-glow-two {
  width: 440px;
  height: 440px;
  left: -180px;
  bottom: -220px;
  background: radial-gradient( circle, rgba(245,182,56,.18), transparent 70% );
}

.tickets-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.tickets-copy h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: .9;
  letter-spacing: -.055em;
}

.tickets-copy h2 span {
  display: block;
  color: var(--gold);
}

.tickets-intro {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 1.08rem;
}

/* Ticket date */

.ticket-date {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.ticket-date-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}

.ticket-date-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ticket-date div {
  display: grid;
}

.ticket-date small {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ticket-date strong {
  margin-top: 4px;
  color: rgba(255,255,255,.92);
  font-size: .95rem;
}

/* Ticket panel */

.tickets-panel {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 32px;
  background: rgba(2,22,33,.58);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0,0,0,.3);
}

.ticket-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ticket-price-card {
  min-height: 250px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.ticket-price-featured {
  background: linear-gradient( 145deg, var(--orange), #ef8034 );
  color: var(--navy-deep);
  border-color: transparent;
}

.ticket-label {
  display: grid;
}

.ticket-label span {
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ticket-label small {
  margin-top: 4px;
  color: rgba(255,255,255,.52);
  font-size: .74rem;
}

.ticket-price-featured .ticket-label small {
  color: rgba(3,29,43,.6);
}

/* Ticket price */

.ticket-price {
  display: flex;
  align-items: flex-end;
  line-height: .8;
}

.ticket-price sup {
  margin-right: 8px;
  margin-bottom: 11px;
  font-size: .8rem;
  font-weight: 900;
}

.ticket-price strong {
  font-size: clamp(4rem, 7vw, 6.4rem);
  letter-spacing: -.08em;
}

.ticket-price > span {
  margin: 0 0 10px 6px;
  font-size: 1.45rem;
  font-weight: 900;
}

/* Buy button */

.ticket-buy-btn {
  min-height: 70px;
  margin-top: 12px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 950;
  transition: transform .2s ease, background .2s ease;
}

.ticket-buy-btn:hover {
  transform: translateY(-2px);
  background: #ffc84f;
}

.ticket-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 1.2rem;
}

.ticket-note {
  margin: 16px 4px 2px;
  color: rgba(255,255,255,.52);
  font-size: .76rem;
  text-align: center;
}

/* =========================================================
   NETWORK
========================================================= */

.network {
  background: var(--cream);
}

.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: center;
}

.network-image {
  position: relative;
}

.network-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.network-tag {
  position: absolute;
  left: -26px;
  bottom: 36px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.network-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  font-size: .88rem;
  font-weight: 800;
}

.network-link {
  margin-top: 28px;
}

/* =========================================================
   IMPACT
========================================================= */

.impact {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.impact::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -140px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient( circle at center, rgba(67,209,216,.24), transparent 66% );
}

.impact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}

.impact-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255,255,255,.7);
  font-size: 1.08rem;
}

.impact-copy .btn {
  margin-top: 20px;
}

.impact-list {
  border-top: 1px solid rgba(255,255,255,.12);
}

.impact-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.impact-item > strong {
  color: var(--gold);
  font-size: .88rem;
  letter-spacing: .12em;
}

.impact-item h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.impact-item p {
  margin: 0;
  color: rgba(255,255,255,.62);
}

/* =========================================================
   CTA / GET INVOLVED
========================================================= */

.cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--teal);
  color: var(--white);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient( 125deg, rgba(3,29,43,.18), transparent 45% ), radial-gradient( circle at 90% 20%, rgba(245,182,56,.36), transparent 34% );
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.cta h2 {
  max-width: 860px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 230px;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 62px 0 24px;
  background: #021620;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .8fr;
  gap: 50px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 64px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  letter-spacing: .12em;
}

.footer-brand span {
  margin-top: 4px;
  color: rgba(255,255,255,.55);
  font-size: .8rem;
}

.footer-links, .footer-contact {
  display: grid;
  gap: 10px;
}

.footer-links a, .footer-contact a, .footer-contact span {
  color: rgba(255,255,255,.67);
  font-size: .9rem;
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.42);
  font-size: .78rem;
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(0,0,0,.3);
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  padding: 8px 12px;
  border-radius: 9px;
  background: var(--navy-deep);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(5px);
  transition: opacity .2s ease, transform .2s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--delay, 0ms);
}

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

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1120px) and (min-width: 981px) {
  .primary-nav {
    gap: 14px;
    font-size: .84rem;
  }

  .brand small {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --section-space: 96px;
  }

  .primary-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 18px;
    background: rgba(3,29,43,.98);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 14px;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-ticket {
    color: var(--gold);
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }

  /* Hero */

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    display: none;
  }

  /* Layouts */

  .intro-grid, .section-top, .network-grid, .impact-layout, .cta-grid, .tickets-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  /* Cards */

  .feature-card, .feature-card-large, .feature-card-accent {
    grid-column: span 6;
  }

  /* Tickets */

  .tickets-layout {
    gap: 48px;
  }

  .tickets-copy {
    max-width: 720px;
  }

  /* Network */

  .network-image {
    max-width: 680px;
  }

  /* CTA */

  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 680px) {
  :root {
    --container: min(1180px, calc(100% - 28px));
    --radius: 20px;
    --header-height: 72px;
    --section-space: 76px;
  }

  /* Header */

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    display: none;
  }

  /* Hero */

  .hero {
    min-height: 790px;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6.4rem);
  }

  .hero-lead {
    font-size: 1.35rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    flex-direction: column;
    gap: 18px;
  }

  .marquee {
    justify-content: flex-start;
    overflow: hidden;
    padding-left: 20px;
  }

  /* Sections */

  .section {
    padding: var(--section-space) 0;
  }

  /* Intro */

  .intro-grid {
    gap: 28px;
  }

  .intro-copy .lead {
    font-size: 1.18rem;
  }

  /* Image break */

  .image-break {
    min-height: 500px;
  }

  .image-break-card {
    left: 18px;
    right: 18px;
    bottom: 22px;
  }

  /* Highlights */

  .section-top {
    margin-bottom: 32px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .feature-card, .feature-card-large, .feature-card-accent {
    grid-column: auto;
    min-height: 380px;
  }

  /* Tickets */

  .tickets-copy h2 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .ticket-price-grid {
    grid-template-columns: 1fr;
  }

  .ticket-price-card {
    min-height: 210px;
  }

  .tickets-panel {
    padding: 10px;
    border-radius: 24px;
  }

  .ticket-buy-btn {
    min-height: 64px;
  }

  /* Network */

  .network-tag {
    left: 14px;
  }

  /* Impact */

  .impact-item {
    grid-template-columns: 50px 1fr;
  }

  /* CTA */

  .cta-actions {
    flex-direction: column;
  }

  /* Footer */

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  /* WhatsApp */

  .whatsapp-float {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

/* =========================================================
   ACTIVE NAV
========================================================= */

.primary-nav a.is-active {
  color: var(--gold);
  opacity: 1;
}

.primary-nav a.is-active::after {
  width: 100%;
}

/* =========================================================
   ABOUT HERO
========================================================= */

.about-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.about-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../images/kariba-lodge.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(2, 22, 33, .94) 0%, rgba(2, 22, 33, .82) 40%, rgba(2, 22, 33, .46) 70%, rgba(2, 22, 33, .58) 100% ), linear-gradient( 0deg, rgba(2, 22, 33, .84), rgba(2, 22, 33, .08) 65% );
}

.about-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient( rgba(255, 255, 255, .08) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255, 255, 255, .08) 1px, transparent 1px );
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient( to right, black, transparent 85% );
  mask-image: linear-gradient( to right, black, transparent 85% );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 80px;
  padding: 160px 0 150px;
}

.about-hero-copy h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: .84;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.about-hero-copy h1 span {
  display: block;
  color: var(--gold);
}

.about-hero-lead {
  max-width: 700px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5;
}

.about-hero-side {
  justify-self: end;
  max-width: 320px;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.about-hero-number {
  display: block;
  color: var(--gold);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 950;
  line-height: .85;
  letter-spacing: -.06em;
}

.about-hero-side p {
  margin: 25px 0 6px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.about-hero-side strong {
  font-size: 1.1rem;
  line-height: 1.35;
}

.about-hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: rgba(2, 22, 33, .8);
  border-top: 1px solid rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.about-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.about-hero-meta div {
  min-height: 94px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.about-hero-meta div:first-child {
  padding-left: 0;
}

.about-hero-meta div:last-child {
  border-right: 0;
}

.about-hero-meta span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .48);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-hero-meta strong {
  color: rgba(255, 255, 255, .95);
  font-size: .92rem;
}

/* =========================================================
   ABOUT STORY
========================================================= */

.about-story {
  background: var(--cream);
}

.about-story-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.about-story-heading h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: .94;
  letter-spacing: -.045em;
}

.about-story-copy {
  max-width: 720px;
}

.about-story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-story-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.5;
}

/* =========================================================
   ABOUT IMAGE PANEL
========================================================= */

.about-image-panel {
  position: relative;
  height: 650px;
  overflow: hidden;
  background: var(--navy);
}

.about-image-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(3, 29, 43, .2), transparent 55% ), linear-gradient( 0deg, rgba(3, 29, 43, .62), transparent 55% );
}

.about-image-copy {
  position: absolute;
  z-index: 2;
  left: max( 30px, calc((100vw - 1180px) / 2) );
  bottom: 48px;
  max-width: 720px;
}

.about-image-copy span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.about-image-copy strong {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.035em;
}

/* =========================================================
   KARIBA ALIVE
========================================================= */

.alive-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.alive-section::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -170px;
  bottom: -220px;
  border-radius: 50%;
  background: radial-gradient( circle, rgba(67, 209, 216, .24), transparent 67% );
}

.alive-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.alive-title h2 {
  margin: 0;
  font-size: clamp(4.2rem, 8vw, 8rem);
  line-height: .78;
  letter-spacing: -.06em;
}

.alive-title h2 span {
  display: block;
  color: var(--gold);
}

.alive-copy {
  max-width: 720px;
}

.alive-line {
  display: block;
  width: 90px;
  height: 3px;
  margin-bottom: 38px;
  background: var(--cyan);
}

.alive-copy p {
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
}

.alive-copy .alive-lead {
  margin-top: 0;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.45;
}

.alive-focus {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.alive-focus div {
  padding: 24px 16px 0 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.alive-focus div:last-child {
  border-right: 0;
}

.alive-focus span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
}

.alive-focus strong {
  font-size: .95rem;
}

/* =========================================================
   THEME
========================================================= */

.about-theme {
  background: var(--sand);
}

.theme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.theme-copy h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: .94;
  letter-spacing: -.05em;
}

.theme-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.04rem;
}

.theme-copy .lead {
  margin-top: 30px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.5;
}

.theme-image {
  position: relative;
}

.theme-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.theme-image-label {
  position: absolute;
  right: -28px;
  bottom: 36px;
  min-width: 190px;
  padding: 20px 24px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.theme-image-label span {
  display: block;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.theme-image-label strong {
  display: block;
  margin-top: 2px;
  font-size: 2rem;
  line-height: 1;
}

/* =========================================================
   OBJECTIVES
========================================================= */

.objectives-section {
  background: var(--cream);
}

.objectives-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.objectives-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: .94;
  letter-spacing: -.045em;
}

.objectives-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.03rem;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.objective-card {
  min-height: 310px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.objective-card > span {
  margin-bottom: auto;
  color: var(--orange);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.objective-card h3 {
  margin: 50px 0 10px;
  font-size: 1.7rem;
  line-height: 1;
}

.objective-card p {
  margin: 0;
  color: var(--muted);
}

.objective-card-accent {
  background: linear-gradient( 145deg, var(--orange), var(--gold) );
  color: var(--navy-deep);
  border-color: transparent;
}

.objective-card-accent > span {
  color: var(--navy-deep);
}

.objective-card-accent p {
  color: rgba(3, 29, 43, .68);
}

/* =========================================================
   WHY KARIBA
========================================================= */

.why-kariba {
  position: relative;
  overflow: hidden;
  background: var(--teal);
  color: var(--white);
}

.why-kariba::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient( circle at 90% 20%, rgba(245, 182, 56, .28), transparent 32% );
}

.why-kariba-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 85px;
  align-items: center;
}

.why-kariba-visual {
  position: relative;
}

.why-kariba-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.why-kariba-stat {
  position: absolute;
  right: -28px;
  bottom: 34px;
  max-width: 250px;
  padding: 22px 25px;
  border-radius: 18px;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.why-kariba-stat span {
  display: block;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.why-kariba-stat strong {
  display: block;
  margin-top: 7px;
  color: var(--white);
  font-size: 1.65rem;
  line-height: 1.05;
}

.why-kariba-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.why-kariba-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, .74);
  font-size: 1.05rem;
}

.why-kariba-copy .btn {
  margin-top: 18px;
}

/* =========================================================
   CLOSING
========================================================= */

.about-closing {
  background: var(--cream);
}

.about-closing-inner {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.about-closing blockquote {
  margin: 0 auto;
  max-width: 960px;
  color: var(--navy-deep);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.045em;
}

.about-closing blockquote span {
  color: var(--orange);
}

.about-closing-inner > p:last-child {
  max-width: 680px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
}

/* =========================================================
   ABOUT TABLET
========================================================= */

@media (max-width: 980px) {
  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-hero-side {
    justify-self: start;
    max-width: 420px;
  }

  .about-story-grid, .alive-grid, .theme-grid, .why-kariba-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .objectives-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .alive-focus {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .theme-image, .why-kariba-visual {
    max-width: 700px;
  }
}

/* =========================================================
   ABOUT MOBILE
========================================================= */

@media (max-width: 680px) {
  .about-hero {
    min-height: 800px;
  }

  .about-hero-content {
    padding: 135px 0 220px;
  }

  .about-hero-copy h1 {
    font-size: clamp(4rem, 18vw, 6.5rem);
  }

  .about-hero-side {
    display: none;
  }

  .about-hero-meta {
    grid-template-columns: 1fr;
  }

  .about-hero-meta div {
    min-height: auto;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  .about-hero-meta div:last-child {
    border-bottom: 0;
  }

  .about-image-panel {
    height: 520px;
  }

  .about-image-copy {
    left: 18px;
    right: 18px;
    bottom: 28px;
  }

  .alive-focus {
    grid-template-columns: 1fr 1fr;
  }

  .objectives-grid {
    grid-template-columns: 1fr;
  }

  .objective-card {
    min-height: 260px;
  }

  .theme-image-label, .why-kariba-stat {
    right: 16px;
    left: 16px;
    bottom: 18px;
    max-width: none;
  }

  .about-closing blockquote {
    font-size: clamp(2.3rem, 11vw, 4rem);
  }
}

/* =========================================================
   WHO ATTENDS HERO
========================================================= */

.attendees-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.attendees-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/8761642/pexels-photo-8761642.jpeg?cs=srgb&dl=pexels-pavel-danilyuk-8761642.jpg&fm=jpg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
}

.attendees-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(2,22,33,.96) 0%, rgba(2,22,33,.88) 38%, rgba(2,22,33,.48) 72%, rgba(2,22,33,.65) 100% ), linear-gradient( 0deg, rgba(2,22,33,.86), rgba(2,22,33,.06) 68% );
}

.attendees-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient( rgba(255,255,255,.08) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.08) 1px, transparent 1px );
  background-size: 68px 68px;
  -webkit-mask-image: linear-gradient( to right, black, transparent 85% );
  mask-image: linear-gradient( to right, black, transparent 85% );
}

.attendees-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
  padding: 160px 0 145px;
}

.attendees-hero-copy h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(4.5rem, 8.5vw, 8.8rem);
  line-height: .84;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.attendees-hero-copy h1 span {
  display: block;
  color: var(--gold);
}

.attendees-hero-lead {
  max-width: 700px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.77);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.attendees-hero-card {
  justify-self: end;
  width: 100%;
  max-width: 320px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(3,29,43,.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.attendees-card-kicker {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.attendees-hero-card strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.04;
}

.attendees-hero-card p {
  margin: 22px 0 0;
  color: rgba(255,255,255,.57);
  font-size: .92rem;
}

.attendees-hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: var(--gold);
  color: var(--navy-deep);
}

.attendees-hero-strip {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: .77rem;
  font-weight: 950;
  letter-spacing: .15em;
}

.attendees-hero-strip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* =========================================================
   WHO ATTENDS INTRO
========================================================= */

.attendees-intro {
  background: var(--cream);
}

.attendees-intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.attendees-intro h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: .94;
  letter-spacing: -.05em;
}

.attendees-intro-copy {
  max-width: 720px;
}

.attendees-intro-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.attendees-intro-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1.5;
}

/* =========================================================
   PARTICIPANT SECTORS
========================================================= */

.attendee-sectors {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.attendee-sectors::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  right: -220px;
  top: -250px;
  border-radius: 50%;
  background: radial-gradient( circle, rgba(67,209,216,.19), transparent 68% );
}

.attendee-sectors-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.attendee-sectors-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: .88;
  letter-spacing: -.055em;
}

.attendee-sectors-heading > p {
  margin: 0 0 5px;
  color: rgba(255,255,255,.62);
}

/* Cards */

.attendee-card-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.attendee-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.attendee-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
}

.attendee-number {
  position: absolute;
  top: 25px;
  right: 26px;
  color: rgba(255,255,255,.27);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.attendee-icon {
  width: 55px;
  height: 55px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(67,209,216,.1);
  color: var(--cyan);
}

.attendee-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.attendee-card h3 {
  margin: 55px 0 10px;
  font-size: 1.65rem;
  line-height: 1;
}

.attendee-card p {
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: .92rem;
}

.attendee-card-featured {
  background: linear-gradient( 145deg, var(--teal), #087384 );
}

.attendee-card-featured .attendee-icon {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

.attendee-card-orange {
  background: linear-gradient( 145deg, var(--orange), #ee8438 );
  color: var(--navy-deep);
}

.attendee-card-orange .attendee-number {
  color: rgba(3,29,43,.42);
}

.attendee-card-orange .attendee-icon {
  background: rgba(3,29,43,.1);
  color: var(--navy-deep);
}

.attendee-card-orange p {
  color: rgba(3,29,43,.68);
}

/* =========================================================
   CONNECTION SECTION
========================================================= */

.connection-section {
  background: var(--sand);
}

.connection-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.connection-image {
  position: relative;
}

.connection-image > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.connection-image-badge {
  position: absolute;
  right: -34px;
  bottom: 38px;
  width: 220px;
  padding: 24px;
  border-radius: 20px;
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow);
}

.connection-image-badge span {
  display: block;
  margin-bottom: 8px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.connection-image-badge strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.02;
}

.connection-copy h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3rem, 5.3vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.connection-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.connection-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.connection-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.connection-list article > span {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
}

.connection-list h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}

.connection-list p {
  margin: 0;
  color: var(--muted);
}

/* =========================================================
   NETWORK BAND
========================================================= */

.attendee-network-band {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--teal);
  color: var(--white);
}

.attendee-network-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient( circle at 85% 10%, rgba(245,182,56,.36), transparent 30% );
}

.attendee-network-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.attendee-network-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .9;
  letter-spacing: -.055em;
}

.attendee-network-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.attendee-network-tags span {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(3,29,43,.11);
  font-size: .86rem;
  font-weight: 850;
}

/* =========================================================
   ATTENDEE CTA
========================================================= */

.attendee-cta {
  padding: 100px 0;
  background: var(--cream);
}

.attendee-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
}

.attendee-cta h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.attendee-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
}

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

.attendee-dark-btn:hover {
  background: var(--navy);
}

/* =========================================================
   WHO ATTENDS TABLET
========================================================= */

@media (max-width: 980px) {
  .attendees-hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .attendees-hero-card {
    justify-self: start;
  }

  .attendees-intro-grid, .connection-grid, .attendee-cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .attendee-sectors-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .connection-image {
    max-width: 680px;
  }

  .attendee-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* =========================================================
   WHO ATTENDS MOBILE
========================================================= */

@media (max-width: 680px) {
  .attendees-hero {
    min-height: 780px;
  }

  .attendees-hero-content {
    padding: 135px 0 130px;
  }

  .attendees-hero-copy h1 {
    font-size: clamp(4rem, 18vw, 6.4rem);
  }

  .attendees-hero-card {
    display: none;
  }

  .attendees-hero-strip {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .attendees-intro-grid {
    gap: 28px;
  }

  .attendee-card-grid {
    grid-template-columns: 1fr;
  }

  .attendee-card {
    min-height: 280px;
  }

  .connection-image-badge {
    left: 16px;
    right: 16px;
    bottom: 18px;
    width: auto;
  }

  .attendee-network-heading {
    display: block;
  }

  .attendee-network-tags {
    margin-top: 30px;
  }

  .attendee-cta-actions {
    flex-direction: column;
  }
}

/* =========================================================
   IMPACT PAGE HERO
========================================================= */

.impact-page-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.impact-page-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../images/kariba-dam.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.impact-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(2,22,33,.96) 0%, rgba(2,22,33,.83) 42%, rgba(2,22,33,.36) 75%, rgba(2,22,33,.58) 100% ), linear-gradient( 0deg, rgba(2,22,33,.88), rgba(2,22,33,.1) 62% );
}

.impact-page-grid {
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient( rgba(255,255,255,.08) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.08) 1px, transparent 1px );
  background-size: 68px 68px;
  -webkit-mask-image: linear-gradient( to right, black, transparent 82% );
  mask-image: linear-gradient( to right, black, transparent 82% );
}

.impact-page-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
  padding: 160px 0 145px;
}

.impact-page-hero-copy h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(4.5rem, 8.4vw, 8.8rem);
  line-height: .84;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.impact-page-hero-copy h1 span {
  display: block;
  color: var(--gold);
}

.impact-page-hero-lead {
  max-width: 730px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.impact-page-hero-side {
  justify-self: end;
  max-width: 320px;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,.22);
}

.impact-page-hero-side > span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.impact-page-hero-side strong {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.03;
}

.impact-page-hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: var(--gold);
  color: var(--navy-deep);
}

.impact-page-hero-strip {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .14em;
}

.impact-page-hero-strip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* =========================================================
   IMPACT INTRO
========================================================= */

.impact-page-intro {
  background: var(--cream);
}

.impact-page-intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.impact-page-intro h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: .94;
  letter-spacing: -.05em;
}

.impact-page-intro-copy {
  max-width: 720px;
}

.impact-page-intro-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.impact-page-intro-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.48;
}

/* =========================================================
   RIPPLE
========================================================= */

.ripple-section {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.ripple-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  right: -230px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient( circle, rgba(67,209,216,.2), transparent 68% );
}

.ripple-heading {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-bottom: 70px;
}

.ripple-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: .9;
  letter-spacing: -.055em;
}

.ripple-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.ripple-visual {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
}

.ripple-circle {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
}

.ripple-circle-outer {
  width: 100%;
  height: 100%;
}

.ripple-circle-middle {
  width: 72%;
  height: 72%;
  border-color: rgba(67,209,216,.32);
}

.ripple-circle-inner {
  width: 44%;
  height: 44%;
  border-color: rgba(245,182,56,.5);
}

.ripple-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient( 145deg, var(--orange), var(--gold) );
  color: var(--navy-deep);
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.ripple-core span {
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.ripple-core strong {
  font-size: 2.1rem;
  line-height: 1;
}

.ripple-sectors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.12);
}

.ripple-sectors article {
  min-height: 130px;
  padding: 26px 22px;
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.ripple-sectors article:nth-child(even) {
  border-right: 0;
}

.ripple-sectors span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
}

.ripple-sectors strong {
  font-size: 1.3rem;
}

/* =========================================================
   IMPACT AREAS
========================================================= */

.impact-areas {
  background: var(--sand);
}

.impact-areas-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.impact-areas-heading h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 5.6vw, 6rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.impact-areas-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

.impact-areas-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.impact-area-card {
  position: relative;
  min-height: 360px;
  grid-column: span 4;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
}

.impact-area-large {
  grid-column: span 8;
  background: var(--navy-deep);
  color: var(--white);
}

.impact-area-wide {
  grid-column: span 8;
}

.impact-area-teal {
  background: linear-gradient( 145deg, var(--teal), #087080 );
  color: var(--white);
  border-color: transparent;
}

.impact-area-orange {
  background: linear-gradient( 145deg, var(--orange), var(--gold) );
  color: var(--navy-deep);
  border-color: transparent;
}

.impact-area-number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(16,35,44,.28);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.impact-area-large .impact-area-number, .impact-area-teal .impact-area-number {
  color: rgba(255,255,255,.32);
}

.impact-area-content {
  max-width: 650px;
}

.impact-area-card .impact-area-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.impact-area-large .impact-area-kicker, .impact-area-teal .impact-area-kicker {
  color: var(--gold);
}

.impact-area-orange .impact-area-kicker {
  color: var(--navy-deep);
}

.impact-area-card h3 {
  margin: 0 0 12px;
  max-width: 620px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: .98;
  letter-spacing: -.035em;
}

.impact-area-card p {
  margin: 0;
  color: var(--muted);
}

.impact-area-large p, .impact-area-teal p {
  color: rgba(255,255,255,.68);
}

.impact-area-orange p {
  color: rgba(3,29,43,.67);
}

/* =========================================================
   CORRIDOR
========================================================= */

.corridor-section {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.corridor-image {
  position: absolute;
  inset: 0;
}

.corridor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corridor-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(2,22,33,.93), rgba(2,22,33,.68) 55%, rgba(2,22,33,.3) ), linear-gradient( 0deg, rgba(2,22,33,.7), transparent 55% );
}

.corridor-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}

.corridor-copy {
  max-width: 760px;
}

.corridor-copy h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: .9;
  letter-spacing: -.055em;
}

.corridor-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
}

.corridor-marker {
  justify-self: end;
  width: min(420px, 100%);
  padding: 35px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 24px;
  background: rgba(3,29,43,.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.corridor-line {
  width: 100%;
  height: 2px;
  margin-bottom: 25px;
  background: linear-gradient( 90deg, var(--gold), var(--cyan) );
}

.corridor-marker span {
  display: block;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.corridor-marker i {
  display: block;
  width: 8px;
  height: 8px;
  margin: 22px 0;
  border-radius: 50%;
  background: var(--gold);
}

/* =========================================================
   PARTNERSHIP
========================================================= */

.impact-partnership {
  background: var(--cream);
}

.impact-partnership-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.impact-partnership-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.impact-partnership-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.impact-partnership-copy .impact-dark-btn {
  margin-top: 20px;
}

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

.impact-dark-btn:hover {
  background: var(--navy);
}

.impact-partnership-visual {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.impact-partnership-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient( rgba(255,255,255,.09) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.09) 1px, transparent 1px );
  background-size: 60px 60px;
}

.impact-partnership-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  z-index: 3;
}

.impact-partnership-core strong {
  font-size: 1.4rem;
}

.impact-partnership-core span {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.impact-partnership-node {
  position: absolute;
  min-width: 130px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: var(--white);
  text-align: center;
  font-size: .83rem;
  font-weight: 850;
}

.node-one {
  left: 10%;
  top: 18%;
}

.node-two {
  right: 10%;
  top: 23%;
}

.node-three {
  left: 12%;
  bottom: 18%;
}

.node-four {
  right: 10%;
  bottom: 19%;
}

/* =========================================================
   IMPACT CLOSING
========================================================= */

.impact-closing {
  padding: 120px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.impact-closing-inner {
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.impact-closing h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.impact-closing h2 span {
  color: var(--gold);
}

.impact-closing-inner > p:last-child {
  max-width: 700px;
  margin: 32px auto 0;
  color: rgba(255,255,255,.62);
  font-size: 1.05rem;
}

/* =========================================================
   IMPACT PAGE CTA
========================================================= */

.impact-page-cta {
  padding: 100px 0;
  background: linear-gradient( 135deg, var(--teal), #08778a );
  color: var(--white);
}

.impact-page-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
}

.impact-page-cta h2 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.impact-page-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

/* =========================================================
   IMPACT TABLET
========================================================= */

@media (max-width: 980px) {
  .impact-page-hero-content, .impact-page-intro-grid, .ripple-layout, .corridor-content, .impact-partnership-grid, .impact-page-cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .impact-page-hero-side {
    justify-self: start;
  }

  .impact-areas-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .impact-area-card, .impact-area-large, .impact-area-wide {
    grid-column: span 6;
  }

  .corridor-marker {
    justify-self: start;
  }

  .impact-page-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* =========================================================
   IMPACT MOBILE
========================================================= */

@media (max-width: 680px) {
  .impact-page-hero {
    min-height: 780px;
  }

  .impact-page-hero-content {
    padding: 135px 0 130px;
  }

  .impact-page-hero-copy h1 {
    font-size: clamp(4rem, 18vw, 6.4rem);
  }

  .impact-page-hero-side {
    display: none;
  }

  .impact-page-hero-strip {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .impact-page-intro-grid {
    gap: 28px;
  }

  .ripple-visual {
    width: min(390px, 100%);
  }

  .ripple-core {
    width: 130px;
    height: 130px;
  }

  .ripple-core strong {
    font-size: 1.65rem;
  }

  .ripple-sectors {
    grid-template-columns: 1fr;
  }

  .ripple-sectors article {
    border-right: 0;
  }

  .impact-areas-grid {
    grid-template-columns: 1fr;
  }

  .impact-area-card, .impact-area-large, .impact-area-wide {
    grid-column: auto;
    min-height: 300px;
  }

  .corridor-section {
    min-height: 720px;
  }

  .corridor-marker {
    width: 100%;
  }

  .impact-partnership-visual {
    min-height: 470px;
  }

  .impact-partnership-node {
    min-width: 110px;
    padding: 10px 12px;
    font-size: .72rem;
  }

  .node-one {
    left: 5%;
  }

  .node-two {
    right: 5%;
  }

  .node-three {
    left: 5%;
  }

  .node-four {
    right: 5%;
  }

  .impact-page-cta-actions {
    flex-direction: column;
  }
}

/* =========================================================
   CONTACT HERO
========================================================= */

.contact-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("../images/kariba-dam.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(2,22,33,.96) 0%, rgba(2,22,33,.84) 42%, rgba(2,22,33,.39) 72%, rgba(2,22,33,.58) 100% ), linear-gradient( 0deg, rgba(2,22,33,.84), rgba(2,22,33,.08) 65% );
}

.contact-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient( rgba(255,255,255,.08) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.08) 1px, transparent 1px );
  background-size: 68px 68px;
  -webkit-mask-image: linear-gradient( to right, black, transparent 84% );
  mask-image: linear-gradient( to right, black, transparent 84% );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
  padding: 160px 0 145px;
}

.contact-hero-copy h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(4.8rem, 9vw, 9.4rem);
  line-height: .82;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.contact-hero-copy h1 span {
  display: block;
  color: var(--gold);
}

.contact-hero-lead {
  max-width: 730px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.15rem, 2vw, 1.46rem);
  line-height: 1.5;
}

.contact-hero-side {
  justify-self: end;
  max-width: 330px;
  padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,.22);
}

.contact-hero-side > span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-hero-side strong {
  display: block;
  color: var(--gold);
  font-size: clamp(3.3rem, 6vw, 5.8rem);
  line-height: .82;
  letter-spacing: -.055em;
}

.contact-hero-side p {
  margin: 24px 0 0;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}

.contact-hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  background: var(--gold);
  color: var(--navy-deep);
}

.contact-hero-strip {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .15em;
}

.contact-hero-strip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* =========================================================
   CONTACT INTRO
========================================================= */

.contact-intro {
  background: var(--cream);
  padding-bottom: 72px;
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.contact-intro h2 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.contact-intro-copy {
  max-width: 700px;
}

.contact-intro-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-intro-copy .lead {
  margin-top: 0;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.48;
}

/* =========================================================
   CONTACT OPTIONS
========================================================= */

.contact-options-section {
  padding-top: 0;
  background: var(--cream);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-option {
  position: relative;
  min-height: 390px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.contact-option:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.contact-option-whatsapp {
  background: #25d366;
  color: #062f22;
}

.contact-option-dark {
  background: var(--navy-deep);
  color: var(--white);
}

.contact-option-gold {
  background: linear-gradient( 145deg, var(--orange), var(--gold) );
  color: var(--navy-deep);
}

.contact-option-number {
  position: absolute;
  top: 27px;
  right: 29px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  opacity: .42;
}

.contact-option-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(255,255,255,.2);
}

.contact-option-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-option-whatsapp .contact-option-icon svg {
  fill: currentColor;
  stroke: none;
}

.contact-option-content {
  margin-top: auto;
  padding-right: 56px;
}

.contact-option-content p {
  margin: 0 0 8px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .65;
}

.contact-option-content h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: .95;
  letter-spacing: -.04em;
}

.contact-option-content strong {
  display: block;
  font-size: .91rem;
  overflow-wrap: anywhere;
}

.contact-option-arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-size: 1.2rem;
}

/* =========================================================
   CONTACT NEEDS
========================================================= */

.contact-needs {
  background: var(--sand);
}

.contact-needs-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.contact-needs-heading h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(3rem, 5.7vw, 6rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.contact-needs-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
}

.contact-needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.contact-need-card {
  min-height: 360px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.68);
}

.contact-need-card > span {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.contact-need-card h3 {
  margin: auto 0 12px;
  font-size: 2rem;
  line-height: 1;
}

.contact-need-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.contact-need-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 28px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-size: .83rem;
  font-weight: 900;
}

.contact-need-card a b {
  color: var(--orange);
  font-size: 1rem;
}

.contact-need-card-accent {
  background: var(--teal);
  color: var(--white);
  border-color: transparent;
}

.contact-need-card-accent > span, .contact-need-card-accent a b {
  color: var(--gold);
}

.contact-need-card-accent p {
  color: rgba(255,255,255,.7);
}

.contact-need-card-accent a {
  border-color: rgba(255,255,255,.18);
}

/* =========================================================
   EVENT VENUE
========================================================= */

.contact-venue {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.contact-venue-image {
  position: absolute;
  inset: 0;
}

.contact-venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-venue-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(2,22,33,.94) 0%, rgba(2,22,33,.73) 52%, rgba(2,22,33,.24) 100% );
}

.contact-venue-content {
  position: relative;
  z-index: 2;
}

.contact-venue-copy {
  max-width: 720px;
}

.contact-venue-copy h2 {
  margin: 0;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: .87;
  letter-spacing: -.06em;
}

.contact-venue-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
}

.contact-venue-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 37px 0 30px;
}

.contact-venue-meta div {
  padding-left: 16px;
  border-left: 2px solid var(--cyan);
}

.contact-venue-meta span {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-venue-meta strong {
  display: block;
  margin-top: 5px;
  max-width: 270px;
  font-size: .9rem;
}

/* =========================================================
   ORGANISER DETAILS
========================================================= */

.organiser-section {
  background: var(--cream);
}

.organiser-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.organiser-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.05em;
}

.organiser-details {
  border-top: 1px solid var(--line);
}

.organiser-detail {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.organiser-detail > span {
  color: var(--orange);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.organiser-detail strong, .organiser-detail a {
  color: var(--ink);
  font-weight: 850;
}

.organiser-detail a:hover {
  color: var(--orange);
}

.organiser-detail p {
  margin: 0;
  color: var(--muted);
}

/* =========================================================
   CONTACT FINAL CTA
========================================================= */

.contact-final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: var(--navy-deep);
  color: var(--white);
}

.contact-final-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  right: -200px;
  top: -280px;
  border-radius: 50%;
  background: radial-gradient( circle, rgba(67,209,216,.25), transparent 68% );
}

.contact-final-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
}

.contact-final-inner h2 {
  margin: 0;
  font-size: clamp(3.7rem, 7vw, 7rem);
  line-height: .86;
  letter-spacing: -.06em;
}

.contact-final-inner p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255,255,255,.62);
}

.contact-final-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

/* =========================================================
   CONTACT TABLET
========================================================= */

@media (max-width: 980px) {
  .contact-hero-content, .contact-intro-grid, .organiser-grid, .contact-final-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-hero-side {
    justify-self: start;
  }

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

  .contact-option-gold {
    grid-column: 1 / -1;
  }

  .contact-needs-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .contact-final-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* =========================================================
   CONTACT MOBILE
========================================================= */

@media (max-width: 680px) {
  .contact-hero {
    min-height: 780px;
  }

  .contact-hero-content {
    padding: 135px 0 130px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(4.2rem, 20vw, 7rem);
  }

  .contact-hero-side {
    display: none;
  }

  .contact-hero-strip {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .contact-intro-grid {
    gap: 28px;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .contact-option-gold {
    grid-column: auto;
  }

  .contact-option {
    min-height: 330px;
  }

  .contact-needs-grid {
    grid-template-columns: 1fr;
  }

  .contact-need-card {
    min-height: 300px;
  }

  .contact-venue {
    min-height: 720px;
  }

  .contact-venue-meta {
    grid-template-columns: 1fr;
  }

  .organiser-detail {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-final-actions {
    flex-direction: column;
  }
}
