/* ═══════════════════════════════════════════════════════════════
   ID CUP MUNICH — design system
   Palette: India tricolor on deep navy / paper white
   Motion: spring easings, staggered reveals, Disney principles
   ═══════════════════════════════════════════════════════════════ */

:root {
  --saffron: #ff7a1a;
  --saffron-deep: #e85d04;
  --green: #1a8f3c;
  --green-deep: #0f6b2b;
  --chakra: #1440a0;
  --navy: #0b1533;
  --navy-2: #101d42;
  --ink: #172038;
  --paper: #fdfaf5;
  --paper-2: #f6f0e6;
  --muted: #5b6478;
  --ball: #c62828;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;

  /* springs — overshoot cubic-beziers (exaggeration + slow-out) */
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --spring-soft: cubic-bezier(0.22, 1.2, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius: 18px;
  --shadow: 0 18px 50px -18px rgba(11, 21, 51, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-display);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.tri-text {
  background: linear-gradient(100deg, var(--saffron) 10%, var(--saffron-deep) 32%, var(--chakra) 50%, var(--green) 68%, var(--green-deep) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

/* ═══════════ INTRO (Remotion-style timed sequence) ═══════════ */
.intro {
  position: fixed; inset: 0; z-index: 200;
  background: var(--navy);
  display: grid; place-items: center;
  overflow: hidden;
}
.intro__stripe {
  position: absolute; left: 0; width: 100%; height: 34%;
  transform: scaleX(0);
}
.intro__stripe--saffron { top: 0; background: var(--saffron); transform-origin: left; animation: stripeIn 0.7s var(--ease-out) 0.1s forwards; }
.intro__stripe--white { top: 33%; background: #f4efe8; transform-origin: right; animation: stripeIn 0.7s var(--ease-out) 0.25s forwards; }
.intro__stripe--green { top: 66%; background: var(--green); transform-origin: left; animation: stripeIn 0.7s var(--ease-out) 0.4s forwards; }
@keyframes stripeIn { to { transform: scaleX(1); } }

.intro__center { position: relative; z-index: 2; text-align: center; }
.intro__ball {
  display: inline-block;
  animation: ballDrop 0.9s cubic-bezier(0.34, 1.4, 0.64, 1) 0.7s both;
}
@keyframes ballDrop {
  0%   { transform: translateY(-42vh) scale(1); }
  62%  { transform: translateY(0) scaleX(1.25) scaleY(0.72); } /* squash */
  78%  { transform: translateY(-26px) scaleX(0.94) scaleY(1.08); } /* stretch */
  100% { transform: translateY(0) scale(1); }
}
.intro__word {
  font-weight: 900; font-size: clamp(3rem, 10vw, 6.5rem);
  letter-spacing: 0.06em; color: var(--navy); line-height: 1;
  margin-top: 0.4rem; display: flex; justify-content: center;
}
.intro__word span {
  display: inline-block; opacity: 0;
  animation: charPop 0.55s var(--spring) both;
}
.intro__word span:nth-child(1) { animation-delay: 1.15s; }
.intro__word span:nth-child(2) { animation-delay: 1.23s; }
.intro__word span:nth-child(4) { animation-delay: 1.39s; }
.intro__word span:nth-child(5) { animation-delay: 1.47s; }
.intro__word span:nth-child(6) { animation-delay: 1.55s; }
.intro__gap { width: 0.35em; }
@keyframes charPop {
  0% { opacity: 0; transform: translateY(0.6em) rotate(6deg) scale(0.6); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}
.intro__sub {
  margin-top: 0.9rem; font-weight: 700; letter-spacing: 0.45em;
  font-size: 0.72rem; color: var(--navy);
  opacity: 0; animation: fadeUp 0.6s var(--ease-out) 1.8s both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.intro--done { animation: introOut 0.75s var(--ease-out) forwards; }
@keyframes introOut {
  to { transform: translateY(-100%); border-radius: 0 0 50% 50% / 0 0 8% 8%; }
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav--solid {
  background: rgba(253, 250, 245, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(11, 21, 51, 0.08);
  padding-top: 0.55rem; padding-bottom: 0.55rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.65rem; font-weight: 800; letter-spacing: 0.04em; }
.nav__brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--saffron); }
.nav__brand .nav__brand-svl {
  width: auto; height: 44px; border-radius: 0; border: none; object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(11, 21, 51, 0.18));
}
.nav__brand em { font-style: normal; color: var(--saffron-deep); }
.nav__links { display: flex; align-items: center; gap: clamp(0.8rem, 2vw, 1.6rem); font-weight: 600; font-size: 0.92rem; }
.nav__links a { position: relative; padding: 0.3rem 0; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  background: var(--navy); color: #fff; padding: 0.55rem 1.1rem; border-radius: 999px;
  transition: transform 0.3s var(--spring), background 0.3s;
}
.nav__cta:hover { transform: scale(1.06); background: var(--saffron-deep); }
.nav__burger { display: none; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(6rem, 12vh, 9rem) clamp(1.2rem, 6vw, 5rem) 4rem;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(255, 122, 26, 0.16), transparent 60%),
    radial-gradient(1000px 700px at -10% 110%, rgba(26, 143, 60, 0.14), transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero__fx { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__wash {
  position: absolute; inset: 0; pointer-events: none;
  background: conic-gradient(from 180deg at 50% 120%, transparent 40%, rgba(20, 64, 160, 0.05) 50%, transparent 60%);
}
.hero__skyline {
  position: absolute; left: 0; right: 0; bottom: -6px; height: clamp(90px, 18vw, 200px);
  color: rgba(11, 21, 51, 0.1); pointer-events: none;
}
.hero__skyline svg { width: 100%; height: 100%; }
.sk-wheel { transform-origin: 90px 140px; animation: wheelSpin 40s linear infinite; }
@keyframes wheelSpin { to { transform: rotate(360deg); } }

.hero__ball { position: absolute; z-index: 3; top: 18%; left: -60px; pointer-events: none; opacity: 0; }
.hero__ball svg { animation: ballSpin 1.4s linear infinite; }
@keyframes ballSpin { to { transform: rotate(360deg); } }
.hero--go .hero__ball { animation: ballFly 3.2s cubic-bezier(0.3, 0.1, 0.4, 1) 2.5s forwards; }
@keyframes ballFly {
  0%   { opacity: 0; transform: translate(0, 0); }
  8%   { opacity: 1; }
  30%  { transform: translate(30vw, -16vh); }
  55%  { transform: translate(58vw, -4vh); }
  78%  { transform: translate(82vw, -20vh); }
  100% { opacity: 0; transform: translate(110vw, -8vh); }
}

.hero__inner { position: relative; z-index: 4; max-width: 980px; }
.hero__consulate {
  position: relative; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
  text-align: center; margin: 0 auto 2rem;
}
.hero__consulate-logo {
  height: clamp(76px, 13vw, 100px); width: auto;
  filter: drop-shadow(0 10px 24px rgba(11, 21, 51, 0.18));
}
.hero__consulate-text {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--chakra); max-width: 90vw;
}
.jubilee {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 1.1rem; padding: 0.5rem 1.1rem; border-radius: 999px;
  background: linear-gradient(110deg, #f6f2ea 0%, #e7e2d6 45%, #cfc9ba 50%, #e7e2d6 55%, #f6f2ea 100%);
  background-size: 220% 100%;
  border: 1px solid rgba(11, 21, 51, 0.14);
  box-shadow: 0 10px 26px -12px rgba(11, 21, 51, 0.3), inset 0 1px 0 #fff;
  animation: jubileeShimmer 3.2s ease-in-out infinite;
}
@keyframes jubileeShimmer { 0% { background-position: 110% 0; } 60% { background-position: -10% 0; } 100% { background-position: -10% 0; } }
.jubilee__laurel { font-size: 1.05rem; }
.jubilee__text {
  font-weight: 900; font-size: 0.82rem; letter-spacing: 0.22em;
  background: linear-gradient(100deg, #6b7280, #1f2937 40%, #9ca3af 70%, #374151);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__title {
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  line-height: 1.02; font-weight: 900; letter-spacing: -0.02em;
  margin: 1.2rem 0 1.4rem; text-wrap: balance;
}
.hero__title sup { font-size: 0.45em; }
.line { display: block; overflow: hidden; }
.line__in { display: inline-block; }
.hero__sub { font-size: clamp(1.02rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 620px; line-height: 1.6; }
.hero__sub strong { color: var(--ink); }

.hero__meta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 1.8rem 0; }
.chip {
  background: #fff; border: 1px solid rgba(11, 21, 51, 0.1); border-radius: 14px;
  padding: 0.7rem 1.1rem; box-shadow: 0 8px 26px -14px rgba(11, 21, 51, 0.25);
  display: flex; flex-direction: column; gap: 0.1rem;
  transition: transform 0.35s var(--spring), box-shadow 0.35s;
}
.chip:hover { transform: translateY(-4px) rotate(-0.5deg); box-shadow: 0 16px 34px -14px rgba(11, 21, 51, 0.35); }
.chip__big { font-weight: 800; letter-spacing: 0.03em; }
.chip__small { font-size: 0.8rem; color: var(--muted); }
.chip--date { border-top: 3px solid var(--saffron); }
.chip--free { border-top: 3px solid var(--green); }
.chip--free .chip__big { color: var(--green-deep); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.98rem; padding: 0.85rem 1.6rem; border-radius: 999px;
  transition: transform 0.35s var(--spring), box-shadow 0.35s, background 0.3s, color 0.3s;
  will-change: transform;
}
.btn:active { transform: scale(0.95); }
.btn--primary { background: linear-gradient(105deg, var(--saffron), var(--saffron-deep)); color: #fff; box-shadow: 0 12px 30px -10px rgba(232, 93, 4, 0.55); }
.btn--primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 40px -10px rgba(232, 93, 4, 0.6); }
.btn__arrow { font-style: normal; transition: transform 0.3s var(--spring); }
.btn--primary:hover .btn__arrow { transform: translateX(5px); }
.btn--ghost { border: 2px solid rgba(11, 21, 51, 0.16); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-3px); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-3px) scale(1.03); }
.btn--outline { border: 2px solid rgba(255, 255, 255, 0.5); color: #fff; }
.btn--outline:hover { border-color: #fff; transform: translateY(-3px); }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.86rem; }

.hero__scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 4; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero__scroll span {
  width: 2px; height: 34px; background: linear-gradient(var(--saffron), var(--green));
  border-radius: 2px; animation: scrollPulse 1.8s var(--ease-out) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* intro-choreographed hero elements (staging + follow-through) */
[data-intro] { opacity: 0; transform: translateY(34px); }
.hero--go [data-intro] { animation: heroIn 0.9s var(--spring-soft) forwards; }
.hero--go [data-intro="1"] { animation-delay: 0.15s; }
.hero--go [data-intro="2"] { animation-delay: 0.3s; }
.hero--go [data-intro="3"] { animation-delay: 0.42s; }
.hero--go [data-intro="4"] { animation-delay: 0.62s; }
.hero--go [data-intro="5"] { animation-delay: 0.78s; }
.hero--go [data-intro="6"] { animation-delay: 0.92s; }
.hero--go [data-intro="7"] { animation-delay: 1.4s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
.hero--go .line__in { animation: lineUp 1s var(--ease-out) both; }
.hero--go .line:nth-child(1) .line__in { animation-delay: 0.3s; }
.hero--go .line:nth-child(2) .line__in { animation-delay: 0.44s; }
@keyframes lineUp { from { transform: translateY(110%); } to { transform: translateY(0); } }

/* ═══════════ RIBBON ═══════════ */
.ribbon { display: flex; height: 8px; }
.ribbon i { flex: 1; }
.ribbon i:nth-child(1) { background: var(--saffron); }
.ribbon i:nth-child(2) { background: #fff; }
.ribbon i:nth-child(3) { background: var(--green); }

/* ═══════════ STATS ═══════════ */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.2rem, 6vw, 5rem);
  background: var(--navy); color: #fff;
}
.stat { text-align: center; padding: 1rem; }
.stat__num {
  display: block; font-weight: 900; font-size: clamp(2.4rem, 5vw, 3.6rem);
  background: linear-gradient(100deg, var(--saffron) 20%, #ffd7b0 50%, var(--saffron));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat:nth-child(even) .stat__num { background: linear-gradient(100deg, #7ee2a0 10%, #d9ffe6 50%, #4cc078); -webkit-background-clip: text; background-clip: text; }
.stat__label { display: block; margin-top: 0.4rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.65); letter-spacing: 0.04em; }

/* ═══════════ SECTIONS ═══════════ */
.section { padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 6vw, 5rem); }
.section--tint { background: var(--paper-2); }
.section--dark { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); color: #e8ecf8; }
.section__head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.eyebrow {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--saffron-deep); margin-bottom: 0.8rem;
}
.eyebrow--light { color: var(--saffron); }
.section__head h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.06; }
.section__head h2.light { color: #fff; }
.lede { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.lede--light { color: rgba(232, 236, 248, 0.7); }

/* ═══════════ MATCH BANNER ═══════════ */
.match {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.5rem;
  background: #fff; border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(11, 21, 51, 0.08);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.6rem); margin: 0 auto 3rem; max-width: 1000px;
  position: relative; overflow: hidden;
}
.match::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: linear-gradient(90deg, var(--saffron), #fff 50%, var(--green));
}
.match__team { text-align: center; }
.match__team h3 { font-size: clamp(1.1rem, 2.4vw, 1.5rem); font-weight: 800; }
.match__team p { color: var(--muted); font-size: 0.85rem; margin-top: 0.25rem; }
.match__badge {
  display: inline-grid; place-items: center; width: 74px; height: 74px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #2a4bb5, var(--navy));
  color: #fff; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.05em;
  margin-bottom: 0.8rem; box-shadow: 0 10px 24px -8px rgba(11, 21, 51, 0.5);
  transition: transform 0.4s var(--spring);
}
.match__badge--b { background: radial-gradient(circle at 30% 30%, var(--saffron), #b33f00); }
.match__team:hover .match__badge { transform: scale(1.12) rotate(-4deg); }
.match__vs { text-align: center; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.match__format { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.24em; color: var(--muted); }
.match__v {
  font-family: var(--font-serif); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(120deg, var(--saffron-deep), var(--chakra));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.match__live { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.78rem; font-weight: 700; color: var(--ball); }
.match__live i { width: 8px; height: 8px; border-radius: 50%; background: var(--ball); animation: livePulse 1.4s ease-out infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.5); } 100% { box-shadow: 0 0 0 10px rgba(198, 40, 40, 0); } }

/* ═══════════ GRID + CARDS ═══════════ */
.grid { display: grid; gap: 1.2rem; max-width: 1200px; margin: 0 auto; }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card {
  background: #fff; border-radius: var(--radius); padding: 1.8rem 1.5rem;
  border: 1px solid rgba(11, 21, 51, 0.07); box-shadow: 0 10px 30px -18px rgba(11, 21, 51, 0.2);
  transition: transform 0.45s var(--spring), box-shadow 0.45s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 44px -18px rgba(11, 21, 51, 0.3); }
.card__icon { font-size: 1.9rem; margin-bottom: 0.9rem; display: inline-block; transition: transform 0.4s var(--spring); }
.card:hover .card__icon { transform: scale(1.25) rotate(-8deg); }
.card h3 { font-size: 1.06rem; font-weight: 800; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.94rem; line-height: 1.6; }
.card p strong { color: var(--green-deep); }

.feature {
  position: relative; background: #fff; border-radius: var(--radius);
  padding: 2rem 1.8rem 1.8rem; overflow: hidden;
  border: 1px solid rgba(11, 21, 51, 0.07); box-shadow: 0 10px 30px -18px rgba(11, 21, 51, 0.18);
  transition: transform 0.45s var(--spring), box-shadow 0.45s;
}
.feature:hover { transform: translateY(-6px) rotate(0.4deg); box-shadow: 0 24px 46px -18px rgba(11, 21, 51, 0.28); }
.feature__num {
  position: absolute; top: -0.6rem; right: 0.6rem;
  font-family: var(--font-serif); font-size: 4.6rem; font-weight: 700;
  color: rgba(255, 122, 26, 0.12); line-height: 1;
}
.feature h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.7rem; }
.feature p { color: var(--muted); line-height: 1.65; font-size: 0.96rem; }
.feature p strong { color: var(--ink); }

/* ═══════════ CULTURAL ACTS STRIP ═══════════ */
.acts { max-width: 1000px; margin: 3rem auto 0; text-align: center; }
.acts__label {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.4rem;
}
.acts__row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.2rem, 3vw, 2.4rem); }
.act { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; width: 108px; }
.act img, .act--text span {
  width: 84px; height: 84px; border-radius: 50%; object-fit: cover;
  border: 3px solid #fff; box-shadow: 0 10px 26px -12px rgba(11, 21, 51, 0.35);
  transition: transform 0.4s var(--spring), box-shadow 0.4s;
}
.act--text span {
  display: grid; place-items: center; font-weight: 900; font-size: 1.3rem; color: #fff;
  background: radial-gradient(circle at 30% 30%, var(--saffron), #b33f00);
}
.act:nth-child(even).act--text span,
.act--text:last-child span { background: radial-gradient(circle at 30% 30%, #2a4bb5, var(--navy)); }
.act:hover img, .act--text:hover span { transform: scale(1.12) rotate(-4deg); box-shadow: 0 16px 34px -12px rgba(11, 21, 51, 0.45); }
.act figcaption { font-size: 0.78rem; font-weight: 700; color: var(--muted); line-height: 1.3; }

/* ═══════════ STORY ═══════════ */
.story__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 1150px; margin: 0 auto; align-items: center;
}
.story__text h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.story__text p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.story__text p strong { color: var(--ink); }
.story__quote {
  font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; line-height: 1.5;
  border-left: 4px solid var(--saffron); padding: 0.4rem 0 0.4rem 1.2rem; margin-top: 1.6rem;
  color: var(--ink);
}
.story__media { position: relative; padding-bottom: 2.4rem; }
.story__photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.story__photo img { transition: transform 0.8s var(--ease-out); }
.story__photo:hover img { transform: scale(1.05); }
.story__photo--a { transform: rotate(-2deg); }
.story__photo--b {
  position: absolute; width: 62%; right: -4%; bottom: 0;
  transform: rotate(3deg); border: 6px solid #fff;
}
.story__media figcaption { position: absolute; bottom: -0.4rem; left: 0.2rem; font-size: 0.8rem; color: var(--muted); }

/* ═══════════ TIMELINE ═══════════ */
.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 1rem 0 2rem; }
.timeline__rail {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: rgba(255, 255, 255, 0.12); border-radius: 3px;
}
.timeline__progress {
  width: 100%; height: 0%;
  background: linear-gradient(180deg, var(--saffron), #fff, var(--green));
  border-radius: 3px;
}
.tl-item { position: relative; padding: 0 0 3rem clamp(52px, 9vw, 0px); }
@media (min-width: 860px) {
  .tl-item { width: 50%; padding: 0 3rem 3.4rem 0; text-align: right; }
  .tl-item:nth-child(odd) { margin-left: 50%; padding: 0 0 3.4rem 3rem; text-align: left; }
  /* note: :nth-child counts the rail div, so "odd" items are the 2nd, 4th… entries */
}
.tl-item__dot {
  position: absolute; top: 0.35rem; width: 17px; height: 17px;
  border-radius: 50%; background: var(--navy); border: 3px solid rgba(255, 255, 255, 0.5);
  left: 100%; margin-left: -8.5px;
  z-index: 2;
}
@media (min-width: 860px) { .tl-item:nth-child(odd) .tl-item__dot { left: 0; } }
@media (max-width: 859px) { .tl-item__dot { left: 18px; margin-left: -7px; } .timeline__rail { left: 18px; } }
.tl-item__dot--saffron { background: var(--saffron); border-color: #ffd9b5; }
.tl-item__dot--now {
  background: var(--green); border-color: #b8f4cc;
  animation: nowPulse 2s ease-out infinite;
}
@keyframes nowPulse { 0% { box-shadow: 0 0 0 0 rgba(26, 143, 60, 0.5); } 100% { box-shadow: 0 0 0 16px rgba(26, 143, 60, 0); } }
.tl-item__year {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem; color: var(--saffron);
  margin-bottom: 0.5rem;
}
.tl-item--now .tl-item__year { color: #7ee2a0; }
.tl-item__card {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); padding: 1.3rem 1.4rem;
  transition: transform 0.45s var(--spring), background 0.3s, border-color 0.3s;
}
.tl-item__card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.22); }
.tl-item__card h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 0.5rem; color: #fff; }
.tl-item__card p { font-size: 0.93rem; line-height: 1.65; color: rgba(232, 236, 248, 0.72); }
.tl-item__card p strong { color: #fff; }
.tl-item__card--photo img { margin-top: 1rem; border-radius: 10px; max-height: 220px; width: 100%; object-fit: cover; }
.tl-item__card--poster img {
  max-height: 340px; object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: zoom-in;
  transition: transform 0.4s var(--spring);
}
.tl-item__card--poster img:hover { transform: scale(1.03); }
.tl-item__card--now {
  background: linear-gradient(140deg, rgba(255, 122, 26, 0.14), rgba(26, 143, 60, 0.14));
  border-color: rgba(255, 176, 108, 0.35);
}
.tl-item__card--now .btn { margin-top: 1rem; }

/* ═══════════ GALLERY ═══════════ */
.gallery {
  display: grid; gap: 0.9rem; max-width: 1200px; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-auto-rows: 190px; grid-auto-flow: dense;
}
.gallery__item {
  border-radius: 14px; overflow: hidden; cursor: zoom-in; position: relative;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out), filter 0.5s;
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 21, 51, 0.35));
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none; /* never intercept clicks meant for the lightbox */
}
.gallery__item:hover img { transform: scale(1.08) rotate(0.5deg); }
.gallery__item:hover::after { opacity: 1; }

/* ═══════════ MARQUEE ═══════════ */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track {
  display: flex; gap: 3.5rem; width: max-content; align-items: center;
  animation: marquee 34s linear infinite; padding: 1rem 0;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__item {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  min-width: 130px; filter: grayscale(0.2);
  transition: transform 0.4s var(--spring), filter 0.3s;
}
.marquee__item:hover { transform: scale(1.1); filter: grayscale(0); }
.marquee__item img { height: 64px; width: auto; object-fit: contain; }
.marquee__item span { font-size: 0.76rem; color: var(--muted); font-weight: 600; }
.marquee__word {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem !important;
  color: var(--ink) !important; height: 64px; display: grid; place-items: center;
}
.orgs { max-width: 820px; margin: 2.5rem auto 0; text-align: center; color: var(--muted); line-height: 1.7; font-size: 0.95rem; }
.orgs strong { color: var(--ink); }

/* ═══════════ CTA ═══════════ */
.cta {
  position: relative; padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 6vw, 5rem);
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(255, 122, 26, 0.35), transparent 60%),
    radial-gradient(800px 400px at 80% 100%, rgba(26, 143, 60, 0.35), transparent 60%),
    var(--navy);
  color: #fff; text-align: center; overflow: hidden;
}
.cta__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -0.02em; }
.cta h2 span { color: var(--saffron); }
.cta p { margin: 1.2rem 0 2rem; color: rgba(255, 255, 255, 0.75); font-size: 1.08rem; }
.cta__chips { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: #0a1129; color: rgba(255, 255, 255, 0.7); padding: 3.5rem clamp(1.2rem, 6vw, 5rem) 0; }
.footer__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem; max-width: 1100px; margin: 0 auto 3rem;
}
.footer__logo { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; margin-bottom: 1rem; border: 2px solid var(--saffron); }
.footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer p { line-height: 1.8; font-size: 0.92rem; }
.footer a { border-bottom: 1px solid rgba(255, 255, 255, 0.2); transition: color 0.25s, border-color 0.25s; }
.footer a:hover { color: var(--saffron); border-color: var(--saffron); }
.footer__bar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0; max-width: 1100px; margin: 0 auto; font-size: 0.78rem;
}
.footer__legal a { font-weight: 700; }
.footer__tri { display: inline-flex; width: 60px; height: 6px; border-radius: 3px; overflow: hidden; }
.footer__tri i { flex: 1; }
.footer__tri i:nth-child(1) { background: var(--saffron); }
.footer__tri i:nth-child(2) { background: #fff; }
.footer__tri i:nth-child(3) { background: var(--green); }

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(8, 12, 30, 0.92);
  display: grid; place-items: center; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease; padding: 2rem;
}
.lightbox--open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(92vw, 1100px); max-height: 84vh; border-radius: 12px;
  transform: scale(0.92); transition: transform 0.4s var(--spring);
  object-fit: contain;
}
.lightbox--open img { transform: scale(1); }
.lightbox__close {
  position: absolute; top: 1.2rem; right: 1.6rem; font-size: 2.4rem; color: #fff;
  background: none; border: none; cursor: pointer; line-height: 1;
  transition: transform 0.3s var(--spring);
}
.lightbox__close:hover { transform: rotate(90deg) scale(1.15); }

/* ═══════════ COOKIE BANNER ═══════════ */
.cookiebar {
  position: fixed; left: 50%; bottom: 1.2rem; z-index: 250;
  width: min(92vw, 760px);
  transform: translate(-50%, 140%);
  opacity: 0;
  transition: transform 0.6s var(--spring-soft), opacity 0.45s ease;
}
.cookiebar--in { transform: translate(-50%, 0); opacity: 1; }
.cookiebar__inner {
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  background: rgba(11, 21, 51, 0.96); color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px; padding: 1rem 1.3rem;
  box-shadow: 0 24px 60px -20px rgba(11, 21, 51, 0.6);
}
.cookiebar__inner::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--saffron), #fff 50%, var(--green));
}
.cookiebar__text { flex: 1 1 380px; font-size: 0.86rem; line-height: 1.6; margin: 0; }
.cookiebar__text strong { color: #fff; }
.cookiebar__text a { color: var(--saffron); font-weight: 700; }
.cookiebar__text a:hover { text-decoration: underline; }
.cookiebar__actions { flex: 0 0 auto; }

/* ═══════════ SCROLL REVEAL (Framer-style stagger) ═══════════ */
[data-reveal] {
  opacity: 0; transform: translateY(46px) scale(0.98);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--spring-soft);
  transition-delay: var(--stagger, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: translateY(0) scale(1); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 820px) {
  .nav__links {
    position: fixed; inset: 0 0 auto 0; top: 0; padding: 5.5rem 2rem 2rem;
    background: rgba(253, 250, 245, 0.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start;
    transform: translateY(-105%); transition: transform 0.5s var(--ease-out);
    box-shadow: 0 20px 50px rgba(11, 21, 51, 0.2); font-size: 1.1rem;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px; background: none; border: none;
    cursor: pointer; z-index: 110; padding: 6px;
  }
  .nav__burger span { width: 26px; height: 3px; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--spring), opacity 0.25s; }
  .nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__burger.open span:nth-child(2) { opacity: 0; }
  .nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .match { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; }
  .story__media { margin-top: 1rem; }
  .gallery { grid-auto-rows: 150px; }
  .gallery__item--wide { grid-column: span 1; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .intro { display: none; }
  [data-intro], [data-reveal] { opacity: 1 !important; transform: none !important; }
  .line__in { transform: none !important; }
}
