/* Ken-Fest 2026 — Kenya Festival
   Design system inspired by kenyafest.org */

:root {
  --kf-cream: #f5efe4;
  --kf-sand: #e8dec6;
  --kf-ink: #1a1a1a;
  --kf-black: #0a0a0a;
  --kf-red: #c8102e;
  --kf-red-deep: #a50d24;
  --kf-green: #0d8a4e;
  --kf-green-deep: #0a6e3e;
  --kf-gold: #e0a92c;
  --kf-white: #ffffff;
  --container: 1200px;
  --container-lg: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--kf-cream);
  color: var(--kf-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.skip {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--kf-black);
  color: var(--kf-white);
  padding: 12px 16px;
  z-index: 100;
}
.skip:focus { top: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.display {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow-bar {
  width: 32px;
  height: 1px;
  background: var(--kf-gold);
  display: inline-block;
}

.gold-text { color: var(--kf-gold); }
.red-text  { color: var(--kf-red); }
.green-text{ color: var(--kf-green); }

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.navbar-scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.35);
}
.nav-inner {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}
.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1;
}
.brand-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--kf-gold);
  font-weight: 600;
}
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--kf-white);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.nav-links {
  display: none;
  gap: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--kf-gold); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kf-gold);
  color: var(--kf-black);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease;
}
.btn-pill:hover { background: var(--kf-white); }

@media (min-width: 1024px) {
  .brand-text { display: flex; }
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--kf-black);
  color: var(--kf-white);
  overflow: hidden;
  padding: 144px 0 96px;
}
.hero-inner {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.orb-red {
  width: 600px; height: 600px;
  background: rgba(200,16,46,0.3);
  right: -120px; top: -120px;
}
.orb-green {
  width: 500px; height: 500px;
  background: rgba(13,138,78,0.3);
  left: -150px; bottom: 0;
}
.orb-gold {
  width: 300px; height: 300px;
  background: rgba(224,169,44,0.2);
  left: 50%; top: 33%;
  transform: translateX(-50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 800px; }
.hero-copy .eyebrow { margin-bottom: 32px; }
.mega {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(96px, 18vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.dot-red { color: var(--kf-red); }
.sub {
  font-size: clamp(28px, 5vw, 64px);
  margin-top: 24px;
  color: rgba(255,255,255,0.92);
  max-width: 800px;
}
.lead {
  margin-top: 32px;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 600px;
}
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art-glow {
  position: absolute;
  inset: -40px;
  background: linear-gradient(135deg, rgba(224,169,44,0.2), rgba(200,16,46,0.2), rgba(13,138,78,0.2));
  filter: blur(40px);
  border-radius: 50%;
}
.hero-logo {
  position: relative;
  width: clamp(260px, 30vw, 460px);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
}
.hero-stats > div {
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 20px;
}
.hero-stats dt { display: block; margin-bottom: 8px; }
.hero-stats .stat { font-size: 28px; }
.hero-stats small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-red {
  background: var(--kf-red);
  color: var(--kf-white);
}
.btn-red:hover { background: var(--kf-red-deep); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: var(--kf-gold);
  color: var(--kf-gold);
}
.btn-gold {
  background: var(--kf-gold);
  color: var(--kf-black);
}
.btn-gold:hover { background: var(--kf-white); }

.stripe-h {
  height: 8px;
  width: 100%;
  background: linear-gradient(to right,
    var(--kf-black) 0 20%,
    var(--kf-white) 20% 40%,
    var(--kf-red) 40% 60%,
    var(--kf-white) 60% 80%,
    var(--kf-green) 80% 100%);
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Hero — Festival Family layout ===== */
.hero-family { padding: 144px 0 80px; }
.hero-lead {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero-lead .eyebrow {
  margin-bottom: 28px;
  justify-content: center;
}
.hero-lead .mega { margin: 0 auto; }
.hero-lead .sub {
  margin: 20px auto 0;
}
.hero-lead .lead {
  margin: 28px auto 0;
  max-width: 720px;
}
.hero-presents {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.12em;
  color: var(--kf-white);
  line-height: 1;
}
.hero-presents-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 12px 0 16px;
}
.hero-lead .mega {
  font-size: clamp(48px, 10vw, 120px);
  line-height: 0.9;
}
.hero-fusion {
  margin: 28px auto 0;
  max-width: 720px;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}
.hero-festivals-grid {
  margin-top: 64px;
  scroll-margin-top: 96px;
}
.hero-footnote {
  margin-top: 40px;
  color: rgba(255,255,255,0.6);
}
.hero-family .hero-stats {
  margin-left: auto;
  margin-right: auto;
  margin-top: 56px;
}
.hero-family .hero-actions {
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-family { padding: 160px 0 112px; }
  .hero-festivals-grid { margin-top: 80px; }
}

/* ===== Billboard ===== */
.billboard {
  position: relative;
  background: var(--kf-black);
  color: var(--kf-white);
  padding: 64px 0 96px;
  overflow: hidden;
}
.billboard-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.billboard-tag {
  max-width: 360px;
  color: rgba(255,255,255,0.6);
}
.section-title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
}
.section-title.light { color: var(--kf-white); }

.screen-frame {
  position: relative;
  border-radius: 28px;
  padding: 16px;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d 60%, #050505);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
}
.screen-bar, .screen-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
.screen-bar { color: rgba(255,255,255,0.6); }
.screen-bar-left, .screen-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.live-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--kf-red);
  box-shadow: 0 0 12px 2px rgba(200,16,46,0.7);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.live-text {
  color: var(--kf-red);
  font-weight: 700;
  letter-spacing: 0.3em;
}
.screen-sep { color: rgba(255,255,255,0.3); }
.screen-tag { display: none; }
@media (min-width: 640px) { .screen-tag { display: inline; } }
.screen-bar-right {
  font-family: ui-monospace, SFMono-Regular, monospace;
  color: rgba(255,255,255,0.5);
}

.screen {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--kf-black);
  aspect-ratio: 16 / 9;
}
@media (min-width: 768px) {
  .screen { aspect-ratio: 21 / 9; }
}
.screen-stripes {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  gap: 6px;
  z-index: 4;
}
.screen-stripes .s {
  width: 24px; height: 4px;
  display: block;
}
.s-red { background: var(--kf-red); }
.s-white { background: rgba(255,255,255,0.8); }
.s-green { background: var(--kf-green); }

.screen-reel {
  position: absolute;
  inset: 0;
}
.screen-slide {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, #1f1207 0%, var(--kf-black) 60%), linear-gradient(135deg, var(--kf-black) 0%, var(--kf-red-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease;
}
.screen-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.slide-lemfi {
  background: radial-gradient(ellipse at 25% 75%, #0a2a1a 0%, var(--kf-black) 60%), linear-gradient(135deg, var(--kf-black) 0%, #04130a 100%);
}
.slide-optiven {
  background: radial-gradient(ellipse at 70% 30%, #2a1a04 0%, var(--kf-black) 60%), linear-gradient(135deg, var(--kf-black) 0%, #1a0d02 100%);
}
.slide-kitonga {
  background: radial-gradient(ellipse at 30% 70%, #1f0a16 0%, var(--kf-black) 60%), linear-gradient(135deg, var(--kf-black) 0%, var(--kf-red-deep) 100%);
}
.screen-img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60%;
  max-width: 320px;
  height: auto;
  opacity: 0.18;
}
.screen-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 900px;
}
.screen-logo-card {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.screen-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 200px;
}
.screen-logo-tall {
  height: 58px;
}
.screen-logo-square {
  height: 52px;
  width: 52px;
  object-fit: contain;
}
.slide-sponsor .screen-overlay {
  padding-top: 92px;
}
@media (min-width: 768px) {
  .screen-logo { height: 48px; max-width: 260px; }
  .screen-logo-tall { height: 82px; }
  .screen-logo-square { height: 72px; width: 72px; }
  .screen-logo-card { top: 24px; padding: 12px 22px; }
  .slide-sponsor .screen-overlay { padding-top: 126px; }
}
.screen-partner-tag {
  display: block;
  margin-bottom: 14px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.16em;
}
.screen-headline {
  font-size: clamp(28px, 5vw, 64px);
  color: var(--kf-white);
  line-height: 0.95;
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.screen-sub {
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--kf-gold);
  font-weight: 600;
}
.screen-hash {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 4;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
}

.screen-foot { padding-top: 12px; color: rgba(255,255,255,0.4); }
.screen-dots { display: flex; align-items: center; gap: 6px; }
.screen-dots .dot {
  display: block;
  height: 6px;
  width: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  transition: all 0.2s ease;
}
.screen-dots .dot-active {
  width: 32px;
  background: var(--kf-gold);
}
.reel-counter {
  font-family: ui-monospace, monospace;
  font-size: 11px;
}

@media (min-width: 768px) {
  .billboard-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
@media (max-width: 639px) {
  .slide-sponsor .screen-overlay {
    padding-top: 76px;
  }
  .screen-logo-tall {
    height: 48px;
  }
  .screen-logo-square {
    height: 44px;
    width: 44px;
  }
  .screen-logo-card {
    top: 14px;
    padding: 7px 10px;
  }
  .screen-headline {
    font-size: clamp(24px, 8vw, 34px);
  }
  .screen-sub {
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: 0.16em;
  }
}

/* ===== Partners ===== */
.section-partners {
  background: var(--kf-cream);
  padding: 96px 0;
  overflow-x: hidden;
}
.partners-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.partners-head .eyebrow {
  margin-bottom: 16px;
}
.partners-head .section-title {
  color: var(--kf-ink);
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.partner-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 28px;
  background: var(--kf-white);
  border-radius: 24px;
  border: 1px solid rgba(26,26,26,0.08);
  box-shadow: 0 20px 50px rgba(26,26,26,0.06);
  overflow: hidden;
  min-width: 0;
}
.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--kf-red), var(--kf-gold), var(--kf-green));
}
.partner-logo-panel {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,239,228,0.74)),
    radial-gradient(circle at 20% 20%, rgba(224,169,44,0.22), transparent 46%);
  border: 1px solid rgba(26,26,26,0.08);
}
.partner-logo-panel-photo {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(232,222,198,0.8)),
    radial-gradient(circle at 70% 30%, rgba(13,138,78,0.14), transparent 50%);
}
.partner-logo {
  width: auto;
  height: auto;
  max-width: 260px;
  max-height: 180px;
}
.partner-logo-kitonga {
  max-width: 320px;
  max-height: 280px;
}
.partner-copy {
  align-self: center;
}
.partner-copy .eyebrow {
  margin-bottom: 12px;
}
.partner-name {
  font-size: clamp(28px, 4.5vw, 58px);
  line-height: 0.98;
  color: var(--kf-ink);
  margin-bottom: 18px;
  overflow-wrap: break-word;
}
.partner-copy p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(26,26,26,0.72);
  max-width: 640px;
}
@media (min-width: 768px) {
  .section-partners { padding: 128px 0; }
  .partner-card {
    grid-template-columns: 4fr 8fr;
    align-items: center;
    padding: 36px;
  }
  .partners-grid { gap: 28px; }
}

/* ===== Marquee ===== */
.marquee-section {
  background: var(--kf-black);
  color: var(--kf-white);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.marquee {
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.04em;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 60s linear infinite;
  padding-right: 48px;
}
.m-line {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.m-white { color: var(--kf-white); }
.m-gold  { color: var(--kf-gold); }
.m-star  { color: var(--kf-red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== About ===== */
.section-about {
  background: var(--kf-cream);
  padding: 96px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.about-head .eyebrow { margin-bottom: 16px; }
.about-head .display { font-size: clamp(48px, 7vw, 88px); line-height: 0.9; }
.flag-bars { display: flex; gap: 8px; margin-top: 24px; }
.bar {
  display: block;
  width: 48px;
  height: 4px;
}
.bar-red   { background: var(--kf-red); }
.bar-green { background: var(--kf-green); }
.bar-gold  { background: var(--kf-gold); }
.about-body p {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(26,26,26,0.78);
  margin-bottom: 20px;
}
.about-body strong { color: var(--kf-ink); font-weight: 600; }

@media (min-width: 768px) {
  .section-about { padding: 128px 0; }
  .about-grid {
    grid-template-columns: 4fr 8fr;
    gap: 56px;
  }
}

/* ===== Experience ===== */
.section-experience {
  position: relative;
  background: var(--kf-ink);
  color: var(--kf-white);
  padding: 96px 0;
  overflow: hidden;
}
.exp-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
.exp-head .eyebrow { margin-bottom: 16px; }
.exp-tag {
  max-width: 360px;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.exp-cell {
  background: var(--kf-ink);
  padding: 36px 32px;
  transition: background 0.3s ease;
}
.exp-cell:hover h3 { color: var(--kf-gold); }
.exp-icon { font-size: 44px; margin-bottom: 24px; }
.exp-cell h3 {
  font-size: 28px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.exp-cell p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
@media (min-width: 640px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .section-experience { padding: 128px 0; }
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
  .exp-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .exp-cell { padding: 40px; }
}

/* ===== Details ===== */
.section-details {
  background: var(--kf-sand);
  padding: 96px 0;
}
.details-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.detail-card {
  position: relative;
  background: var(--kf-white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(26,26,26,0.05);
  overflow: hidden;
}
.detail-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  width: 100%;
}
.detail-card .eyebrow { margin-bottom: 12px; }
.muted { color: rgba(26,26,26,0.5); }
.section-title-sm {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  margin-bottom: 20px;
  color: var(--kf-ink);
}
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 17px;
  color: rgba(26,26,26,0.7);
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bullet {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--kf-gold);
  margin-top: 9px;
  flex-shrink: 0;
}

.stats-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(26,26,26,0.1);
  border: 1px solid rgba(26,26,26,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.stat-cell {
  background: var(--kf-cream);
  padding: 28px 16px;
  text-align: center;
}
.stat-num {
  font-size: clamp(48px, 6vw, 72px);
  color: var(--kf-red);
  line-height: 0.9;
}
.stat-cell .eyebrow {
  margin-top: 12px;
  display: inline-flex;
}

@media (min-width: 768px) {
  .section-details { padding: 128px 0; }
  .details-cards { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Communities ===== */
.section-communities {
  background: var(--kf-cream);
  padding: 96px 0;
}
.comm-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.comm-head .eyebrow { margin-bottom: 16px; justify-content: center; display: inline-flex; }
.comm-head .display {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--kf-ink);
  line-height: 1;
}
.lead-muted {
  margin-top: 24px;
  font-size: 18px;
  color: rgba(26,26,26,0.7);
  line-height: 1.65;
}
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  border: 1px solid;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chip:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.chip-black { background: var(--kf-black); color: var(--kf-white); border-color: var(--kf-black); }
.chip-red   { background: var(--kf-red); color: var(--kf-white); border-color: var(--kf-red); }
.chip-green { background: var(--kf-green); color: var(--kf-white); border-color: var(--kf-green); }
.chip-outline { color: rgba(26,26,26,0.6); border-color: rgba(26,26,26,0.2); background: transparent; }

@media (min-width: 768px) {
  .section-communities { padding: 128px 0; }
}

/* ===== Vision ===== */
.section-vision {
  position: relative;
  background: var(--kf-green);
  color: var(--kf-white);
  padding: 96px 0;
  overflow: hidden;
}
.vision-glow {
  position: absolute;
  right: -80px; bottom: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(224,169,44,0.2);
  filter: blur(80px);
}
.section-vision .container {
  position: relative;
  max-width: 1000px;
}
.section-vision .eyebrow { margin-bottom: 24px; }
.vision-quote {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  color: var(--kf-white);
}
.vision-foot {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hr-gold {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--kf-gold);
}

@media (min-width: 768px) {
  .section-vision { padding: 128px 0; }
}

/* ===== CTA ===== */
.section-cta {
  position: relative;
  background: var(--kf-black);
  color: var(--kf-white);
  padding: 96px 0;
  overflow: hidden;
}
.cta-inner {
  text-align: center;
  max-width: 880px;
  position: relative;
}
.cta-inner .eyebrow { margin-bottom: 24px; }
.cta-title {
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.92;
}
.cta-tag {
  margin-top: 32px;
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-input {
  flex: 1;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--kf-white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}
.cta-input::placeholder { color: rgba(255,255,255,0.4); }
.cta-input:focus { border-color: var(--kf-gold); }
.cta-fine {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 640px) {
  .cta-form { flex-direction: row; }
}
@media (min-width: 768px) {
  .section-cta { padding: 128px 0; }
}

/* ===== Tickets ===== */
.section-tickets {
  background: var(--kf-cream);
  padding: 96px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.tickets-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.tickets-head .eyebrow { margin-bottom: 16px; }
.tickets-head .section-title {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 16px;
}
.tickets-head .lead-muted {
  color: rgba(0,0,0,0.65);
  font-size: 18px;
}
.tickets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.ticket-card {
  position: relative;
  background: var(--kf-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.18);
}
.ticket-card-popular {
  border-color: var(--kf-red);
  box-shadow: 0 16px 40px -20px rgba(200,16,46,0.35);
}
.ticket-bar {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
}
.ticket-name {
  font-size: clamp(36px, 4vw, 52px);
}
.ticket-price {
  font-size: clamp(48px, 6vw, 72px);
  color: var(--kf-black);
  letter-spacing: -0.01em;
}
.ticket-list {
  flex: 1;
  margin: 8px 0 16px;
}
.ticket-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  color: rgba(0,0,0,0.75);
}
.ticket-buy {
  align-self: stretch;
  justify-content: center;
  padding: 18px 28px;
}
.tickets-foot {
  text-align: center;
  color: rgba(0,0,0,0.6);
  font-size: 15px;
}
.link-gold {
  color: var(--kf-red);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.link-gold:hover { color: var(--kf-gold); }

@media (min-width: 768px) {
  .section-tickets { padding: 128px 0; }
  .tickets-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* ===== Support / Donate ===== */
.section-support {
  position: relative;
  background: var(--kf-black);
  color: var(--kf-white);
  padding: 96px 0;
  overflow: hidden;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.support-head .eyebrow { margin-bottom: 20px; }
.support-head .section-title {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 20px;
}
.support-copy {
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  font-size: 17px;
}
.support-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-ghost-light {
  background: transparent;
  color: var(--kf-white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 24px;
}
.btn-ghost-light:hover {
  border-color: var(--kf-gold);
  color: var(--kf-gold);
}
.support-amounts .btn-gold {
  flex-basis: 100%;
  justify-content: center;
  margin-top: 8px;
}

@media (min-width: 900px) {
  .section-support { padding: 128px 0; }
  .support-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
  .support-amounts .btn-gold {
    flex-basis: auto;
    margin-top: 0;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--kf-ink);
  color: rgba(255,255,255,0.7);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 56px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
}
.footer-tag {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 360px;
}
.footer-block {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
}
.footer-list {
  margin-top: 12px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,0.7);
}
.footer-link {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.3);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.footer-link:hover {
  color: var(--kf-gold);
  text-decoration-color: var(--kf-gold);
}
.footer-bottom {
  background: var(--kf-black);
  padding: 18px 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Festivals (Family) ===== */
.section-festivals {
  position: relative;
  background: var(--kf-black);
  color: var(--kf-white);
  padding: 96px 0;
  overflow: hidden;
}
.festivals-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}
.festivals-head .eyebrow {
  margin-bottom: 20px;
  justify-content: center;
}
.festivals-head .section-title {
  font-size: clamp(40px, 6vw, 80px);
  color: var(--kf-white);
  line-height: 0.98;
}
.festivals-head .lead-muted {
  margin-top: 24px;
  color: rgba(255,255,255,0.7);
}

.festivals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.festival-card {
  position: relative;
  border-radius: 24px;
  padding: 40px 28px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.festival-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224,169,44,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.festival-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200,16,46,0.15);
  color: var(--kf-white);
  border: 1px solid rgba(200,16,46,0.4);
}
.festival-badge-gold {
  background: rgba(224,169,44,0.12);
  border-color: rgba(224,169,44,0.45);
  color: var(--kf-gold);
}

.festival-logo-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 28px;
}
.festival-logo-glow {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  z-index: 0;
}
.festival-glow-red  { background: radial-gradient(closest-side, rgba(200,16,46,0.55), transparent 70%); }
.festival-glow-gold { background: radial-gradient(closest-side, rgba(224,169,44,0.5), transparent 70%); }

.festival-logo {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4));
}

.festival-body { max-width: 460px; }
.festival-body .eyebrow { display: inline-flex; margin-bottom: 12px; }

.festival-name {
  font-size: clamp(48px, 6vw, 76px);
  letter-spacing: 0.01em;
  color: var(--kf-white);
  line-height: 0.95;
}
.dot-gold { color: var(--kf-gold); }

.festival-desc {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.festival-pillars {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.festival-pillars li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pillar-red   { background: var(--kf-red); box-shadow: 0 0 0 3px rgba(200,16,46,0.18); }
.pillar-green { background: var(--kf-green); box-shadow: 0 0 0 3px rgba(13,138,78,0.18); }
.pillar-gold  { background: var(--kf-gold); box-shadow: 0 0 0 3px rgba(224,169,44,0.2); }

.festival-card-master { border-top: 2px solid var(--kf-red); }
.festival-card-kamba  { border-top: 2px solid var(--kf-gold); }

.festivals-footnote {
  margin-top: 56px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

@media (min-width: 860px) {
  .festivals-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .festival-card { padding: 48px 36px 40px; }
  .festival-logo-wrap { width: 260px; height: 260px; }
}
@media (min-width: 1024px) {
  .section-festivals { padding: 128px 0; }
}

/* ===== Hamburger Menu ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 50;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--kf-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 768px) {
  .hamburger { display: none; }
}

/* ===== Mobile Nav Overlay ===== */
@media (max-width: 767px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 28px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.06em;
    color: var(--kf-white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    z-index: 40;
  }
  .nav-links.nav-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links a {
    transition: color 0.2s ease, transform 0.2s ease;
  }
  .nav-links a:hover {
    color: var(--kf-gold);
    transform: scale(1.05);
  }
  .btn-pill { display: none; }
}
body.menu-open { overflow: hidden; }

/* ===== Countdown ===== */
.countdown {
  margin-top: 56px;
  text-align: center;
}
.countdown-label {
  margin-bottom: 20px;
  justify-content: center;
}
.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.countdown-cell {
  min-width: 80px;
  padding: 16px 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.countdown-cell:hover {
  border-color: var(--kf-gold);
  transform: translateY(-2px);
}
.countdown-num {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--kf-white);
  display: block;
  line-height: 1;
}
.countdown-unit {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

/* ===== Scroll Reveal ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 25;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--kf-gold);
  color: var(--kf-black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(224,169,44,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background 0.2s ease;
}
.back-to-top:hover {
  background: var(--kf-white);
  transform: translateY(-2px);
}
.back-to-top.btt-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== Animated Orbs ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.orb-red {
  width: 600px; height: 600px;
  background: rgba(200,16,46,0.3);
  right: -120px; top: -120px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-green {
  width: 500px; height: 500px;
  background: rgba(13,138,78,0.3);
  left: -150px; bottom: 0;
  animation: orbFloat2 14s ease-in-out infinite;
}
.orb-gold {
  width: 300px; height: 300px;
  background: rgba(224,169,44,0.2);
  left: 50%; top: 33%;
  transform: translateX(-50%);
  animation: orbFloat3 10s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 25px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(25px, -20px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translateX(-50%) translate(0, 0); }
  50% { transform: translateX(-50%) translate(15px, -18px); }
}

/* ===== Enhanced Experience Grid Stagger ===== */
.exp-cell {
  background: var(--kf-ink);
  padding: 36px 32px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.exp-cell:hover {
  background: var(--kf-red-deep);
  transform: scale(1.02);
}

/* ===== Enhanced Festival Cards ===== */
.festival-card {
  position: relative;
  border-radius: 24px;
  padding: 40px 28px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}
.festival-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224,169,44,0.45);
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(224,169,44,0.15);
}

/* ===== Enhanced Ticket Cards ===== */
.ticket-card {
  position: relative;
  background: var(--kf-white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.ticket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px -24px rgba(0,0,0,0.22);
}

/* ===== Chip Enhanced ===== */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  border: 1px solid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.chip:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

/* ===== Shimmer on hero presents ===== */
.hero-presents {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.12em;
  color: var(--kf-white);
  line-height: 1;
  background: linear-gradient(90deg, var(--kf-white) 0%, var(--kf-gold) 25%, var(--kf-white) 50%, var(--kf-gold) 75%, var(--kf-white) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ===== Enhanced Partner Cards ===== */
.partner-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 28px;
  background: var(--kf-white);
  border-radius: 24px;
  border: 1px solid rgba(26,26,26,0.08);
  box-shadow: 0 20px 50px rgba(26,26,26,0.06);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(26,26,26,0.12);
}

/* ===== Stat Number Pulse ===== */
.stat-num {
  font-size: clamp(48px, 6vw, 72px);
  color: var(--kf-red);
  line-height: 0.9;
  transition: transform 0.3s ease;
}
.stat-cell:hover .stat-num {
  transform: scale(1.08);
}

/* ===== Vision quote glow ===== */
.vision-quote {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  color: var(--kf-white);
  text-shadow: 0 0 60px rgba(224,169,44,0.15);
}

/* ===== Screen frame glow on hover ===== */
.screen-frame {
  position: relative;
  border-radius: 28px;
  padding: 16px;
  background: linear-gradient(180deg, #1a1a1a, #0d0d0d 60%, #050505);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.screen-frame:hover {
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7), 0 0 40px rgba(224,169,44,0.08);
  border-color: rgba(224,169,44,0.18);
}

/* ===== CTA form glow ===== */
.cta-input:focus {
  border-color: var(--kf-gold);
  box-shadow: 0 0 0 3px rgba(224,169,44,0.15);
}

/* ===== Sponsors Section ===== */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--kf-sand);
}
.section:not(.section-alt) {
  background: var(--kf-cream);
}
.section-head {
  margin-bottom: 56px;
}
.lux-section-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  color: var(--kf-gold);
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--kf-ink);
}
.section-copy {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(26,26,26,0.7);
  line-height: 1.65;
  max-width: 720px;
}
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-primary {
  background: var(--kf-red);
  color: var(--kf-white);
}
.btn-primary:hover {
  background: var(--kf-red-deep);
}
.btn-secondary {
  background: transparent;
  color: var(--kf-ink);
  border: 1px solid rgba(26,26,26,0.2);
}
.btn-secondary:hover {
  border-color: var(--kf-gold);
  color: var(--kf-gold);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

.sponsor-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.sponsor-board-card {
  background: var(--kf-white);
  border-radius: 20px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(26,26,26,0.06);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sponsor-board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.sponsor-board-card img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
}
.sponsor-board-featured img {
  max-height: 100px;
  max-width: 200px;
}
.sponsor-board-card figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.5);
  text-align: center;
}

.sponsor-tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.sponsor-card-lux {
  background: var(--kf-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26,26,26,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sponsor-card-lux:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.sponsor-card-lux > .head {
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--kf-black), #1a1a1a);
}
.lux-kicker {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--kf-gold);
}
.sponsor-card-lux > .body {
  padding: 24px;
}
.sponsor-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: var(--kf-red);
  margin-bottom: 20px;
}
.lux-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 15px;
  color: rgba(26,26,26,0.72);
}
.lux-list li {
  padding-left: 20px;
  position: relative;
}
.lux-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kf-gold);
}
.lux-note {
  margin-top: 24px;
  padding: 16px 24px;
  font-size: 14px;
  color: rgba(26,26,26,0.6);
  border-left: 3px solid var(--kf-gold);
  background: rgba(224,169,44,0.06);
  border-radius: 0 12px 12px 0;
}
.lux-note a {
  color: var(--kf-red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 640px) {
  .sponsor-board {
    grid-template-columns: repeat(4, 1fr);
  }
  .sponsor-tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 128px 0;
  }
  .lux-section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .sponsor-tier-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Contact Section ===== */
.contact-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.contact-card {
  background: var(--kf-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26,26,26,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.contact-card > .head {
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--kf-black), #1a1a1a);
}
.contact-card > .head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1;
  color: var(--kf-white);
}
.contact-card > .body {
  padding: 28px;
}
.muted-small {
  font-size: 14px;
  color: rgba(26,26,26,0.6);
  margin-bottom: 20px;
  line-height: 1.6;
}
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid select,
.form-grid textarea {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(26,26,26,0.12);
  background: var(--kf-cream);
  color: var(--kf-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--kf-gold);
  box-shadow: 0 0 0 3px rgba(224,169,44,0.15);
}
.form-grid textarea {
  min-height: 100px;
  resize: vertical;
}
.form-grid select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.product-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact-shell {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Smooth body scroll ===== */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .orb-red, .orb-green, .orb-gold { animation: none; }
  .hero-presents { animation: none; -webkit-text-fill-color: var(--kf-white); }
  .marquee-track { animation: none; }
}

/* ===== Birdview Microinsurance ===== */
.slide-birdview {
  background: radial-gradient(ellipse at 40% 60%, #0a1a2a 0%, var(--kf-black) 60%), linear-gradient(135deg, var(--kf-black) 0%, #0a1520 100%);
}
.partner-logo-panel-birdview {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(245,239,228,0.74)),
    radial-gradient(circle at 30% 70%, rgba(200,16,46,0.12), transparent 50%);
}
.partner-logo-birdview {
  max-width: 280px;
  max-height: 200px;
}

/* ===== iPhone Portrait Responsive ===== */
@media (max-width: 480px) and (orientation: portrait) {
  .partner-card {
    padding: 20px;
    gap: 20px;
  }
  .partner-logo-panel {
    min-height: 160px;
    padding: 20px;
  }
  .partner-name {
    font-size: clamp(24px, 8vw, 36px);
  }
  .partner-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.6;
  }
  .partner-logo-birdview {
    max-width: 200px;
    max-height: 140px;
  }
  .screen-frame {
    border-radius: 16px;
    padding: 10px;
  }
  .screen {
    border-radius: 12px;
  }
}

/* ===== iPhone Landscape Responsive ===== */
@media (max-height: 430px) and (orientation: landscape) {
  .hero-family {
    padding: 80px 0 40px;
  }
  .hero-lead .mega {
    font-size: clamp(32px, 7vw, 56px);
  }
  .hero-presents {
    font-size: clamp(20px, 3vw, 32px);
  }
  .hero-presents-sub {
    margin: 6px 0 8px;
    font-size: clamp(12px, 2vw, 16px);
  }
  .hero-fusion {
    font-size: 14px;
    margin-top: 12px;
  }
  .hero-lead .sub {
    font-size: clamp(18px, 3.5vw, 32px);
    margin-top: 12px;
  }
  .countdown {
    margin-top: 20px;
  }
  .countdown-cell {
    min-width: 56px;
    padding: 8px 8px 6px;
  }
  .countdown-num {
    font-size: 24px;
  }
  .countdown-unit {
    font-size: 9px;
  }
  .hero-stats {
    margin-top: 20px;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-stats .stat {
    font-size: 20px;
  }
  .hero-stats small {
    font-size: 11px;
  }
  .hero-actions {
    margin-top: 20px;
  }
  .hero-festivals-grid {
    margin-top: 32px;
  }
  .festivals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .festival-card {
    padding: 20px 16px 16px;
  }
  .festival-logo-wrap {
    width: 100px;
    height: 100px;
    margin: 4px 0 12px;
  }
  .festival-name {
    font-size: clamp(28px, 4vw, 42px);
  }
  .festival-desc {
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.5;
  }
  .festival-pillars {
    margin-top: 12px;
    font-size: 12px;
    gap: 6px;
  }
  .festival-badge {
    font-size: 8px;
    padding: 4px 8px;
    top: 12px;
    left: 12px;
  }
  .festivals-footnote {
    margin-top: 20px;
    font-size: 16px;
  }
  .nav-inner {
    padding: 10px 20px;
  }
  .brand-logo {
    height: 40px;
  }
  .screen {
    aspect-ratio: 21 / 9;
  }
  .screen-headline {
    font-size: clamp(18px, 3.5vw, 28px);
  }
  .screen-logo-card {
    top: 6px;
    padding: 4px 8px;
  }
  .screen-logo {
    height: 24px;
  }
  .screen-logo-square {
    height: 32px;
    width: 32px;
  }
  .slide-sponsor .screen-overlay {
    padding-top: 52px;
  }
  .screen-sub {
    font-size: 9px;
    margin-top: 8px;
  }
  .screen-partner-tag {
    font-size: 9px;
    margin-bottom: 8px;
  }
  .billboard {
    padding: 32px 0 48px;
  }
  .section-partners,
  .section-about,
  .section-experience,
  .section-details,
  .section-tickets,
  .section-communities,
  .section-vision,
  .section-cta,
  .section-support,
  .section {
    padding: 40px 0;
  }
  .section-title {
    font-size: clamp(28px, 5vw, 48px);
  }
  .partner-card {
    grid-template-columns: 3fr 7fr;
    padding: 16px;
    gap: 16px;
    align-items: center;
  }
  .partner-logo-panel {
    min-height: 100px;
    padding: 12px;
  }
  .partner-logo {
    max-width: 160px;
    max-height: 100px;
  }
  .partner-logo-birdview {
    max-width: 140px;
    max-height: 90px;
  }
  .partner-logo-kitonga {
    max-width: 160px;
    max-height: 120px;
  }
  .partner-name {
    font-size: clamp(22px, 3.5vw, 36px);
    margin-bottom: 8px;
  }
  .partner-copy p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.5;
  }
  .partners-head {
    margin-bottom: 24px;
  }
  .partners-head .section-title {
    font-size: clamp(28px, 5vw, 48px);
  }
  .lead-muted {
    font-size: 14px;
    margin-top: 12px;
  }
  .tickets-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .ticket-card {
    padding: 20px 16px;
    gap: 10px;
  }
  .ticket-name {
    font-size: 24px;
  }
  .ticket-price {
    font-size: 32px;
  }
  .ticket-list li {
    font-size: 13px;
    padding: 3px 0;
  }
  .about-grid {
    grid-template-columns: 3fr 9fr;
    gap: 24px;
  }
  .about-head .display {
    font-size: clamp(32px, 5vw, 52px);
  }
  .about-body p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 12px;
  }
  .exp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .exp-cell {
    padding: 20px 16px;
  }
  .exp-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .exp-cell h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .exp-cell p {
    font-size: 12px;
    line-height: 1.4;
  }
  .details-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .detail-card {
    padding: 20px;
  }
  .section-title-sm {
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 12px;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 20px;
  }
  .stat-cell {
    padding: 16px 8px;
  }
  .stat-num {
    font-size: clamp(28px, 4vw, 42px);
  }
  .support-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
  }
  .support-head .section-title {
    font-size: clamp(28px, 5vw, 48px);
  }
  .support-copy {
    font-size: 14px;
  }
  .comm-head {
    margin-bottom: 24px;
  }
  .comm-head .display {
    font-size: clamp(28px, 5vw, 48px);
  }
  .chip {
    padding: 6px 14px;
    font-size: 14px;
  }
  .chip-grid {
    gap: 8px;
  }
  .vision-quote {
    font-size: clamp(24px, 4vw, 40px);
  }
  .cta-title {
    font-size: clamp(36px, 6vw, 72px);
  }
  .cta-tag {
    font-size: 14px;
    margin-top: 16px;
  }
  .cta-form {
    margin-top: 20px;
    flex-direction: row;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 32px 24px;
    gap: 24px;
  }
  .footer-tag,
  .footer-block,
  .footer-list {
    font-size: 12px;
  }
}

/* ===== Mid-range landscape (taller phones like iPhone Plus/Max) ===== */
@media (min-height: 431px) and (max-height: 500px) and (orientation: landscape) {
  .hero-family {
    padding: 96px 0 48px;
  }
  .hero-lead .mega {
    font-size: clamp(36px, 8vw, 64px);
  }
  .hero-fusion {
    font-size: 15px;
    margin-top: 16px;
  }
  .countdown {
    margin-top: 28px;
  }
  .countdown-cell {
    min-width: 64px;
    padding: 10px 10px 8px;
  }
  .countdown-num {
    font-size: 28px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
  }
  .hero-actions {
    margin-top: 28px;
  }
  .festivals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .festival-card {
    padding: 28px 20px 24px;
  }
  .festival-logo-wrap {
    width: 140px;
    height: 140px;
  }
  .partner-card {
    grid-template-columns: 4fr 8fr;
    align-items: center;
  }
  .section-partners,
  .section-about,
  .section-experience,
  .section-details,
  .section-tickets,
  .section-communities,
  .section-vision,
  .section-cta,
  .section-support,
  .section {
    padding: 56px 0;
  }
  .nav-inner {
    padding: 12px 24px;
  }
  .brand-logo {
    height: 48px;
  }
}
