/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* =========================================================
   TOKENS
   ========================================================= */
:root {
  /* colours */
  --bg:         #07090e;
  --bg-1:       #0c1018;
  --bg-2:       #111620;
  --bg-3:       #171d29;
  --s:          rgba(255,255,255,.042);
  --s1:         rgba(255,255,255,.073);
  --b:          rgba(255,255,255,.07);
  --b1:         rgba(255,255,255,.13);
  --ink:        #eef1f7;
  --ink-2:      rgba(238,241,247,.52);
  --ink-3:      rgba(238,241,247,.28);
  --rose:       #c0375e;
  --rose-hi:    #e8538a;
  --rose-dim:   rgba(192,55,94,.14);
  --rose-glow:  rgba(192,55,94,.38);

  /* light section colours */
  --lt:         #f4eff3;
  --lt-1:       #fff;
  --lt-ink:     #0d1520;
  --lt-ink-2:   rgba(13,21,32,.52);
  --lt-ink-3:   rgba(13,21,32,.28);
  --lt-b:       rgba(13,21,32,.07);

  /* radius */
  --r:   12px;
  --r1:  18px;
  --r2:  26px;

  /* fluid spacing */
  --gap: clamp(1rem, 3vw, 2rem);

  /* ease */
  --ease: cubic-bezier(.16,1,.3,1);
  --ease-std: cubic-bezier(.4,0,.2,1);
  --t: .24s;
  --t-fast: .16s;
}

/* =========================================================
   BASE
   ========================================================= */
html            { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-rendering: optimizeSpeed; }
body            { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--ink);
                  overflow-x: hidden; -webkit-font-smoothing: antialiased; line-height: 1.6;
                  text-rendering: optimizeLegibility; }
img             { display: block; max-width: 100%; height: auto; }
a               { text-decoration: none; color: inherit; }
ul, ol          { list-style: none; }
button          { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
:focus-visible  { outline: 2px solid var(--rose-hi); outline-offset: 3px; border-radius: 6px; }

.skip {
  position: absolute; top: -200%; left: 1rem;
  background: var(--rose); color: #fff;
  padding: .5rem 1rem; font-size: .875rem; font-weight: 600;
  border-radius: 0 0 var(--r) var(--r); z-index: 999; transition: top .3s;
}
.skip:focus { top: 0; }

/* =========================================================
   NAV
   ========================================================= */
#nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 90;
  will-change: background;
  transition: background var(--t) var(--ease-std), box-shadow var(--t) var(--ease-std);
}
#nav.solid {
  background: rgba(7,9,14,.86);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 0 0 1px var(--b);
}

.ni {
  max-width: 1240px; margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: clamp(56px, 8vw, 68px);
  display: flex; align-items: center; gap: clamp(.75rem, 2vw, 1.75rem);
}

.n-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
}

.n-logo img {
  height: clamp(30px, 5vw, 38px); border-radius: 8px; object-fit: contain; width: auto;
}

.n-wordmark {
  font-size: clamp(.9375rem, 1.6vw, 1.0625rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1;
}

.n-links {
  display: flex; align-items: center; gap: .15rem; margin-left: auto;
}
.n-links a {
  padding: .45rem clamp(.625rem, 1.5vw, .875rem);
  border-radius: 8px; font-size: clamp(.8rem, 1.4vw, .875rem); font-weight: 500;
  color: var(--ink-2); transition: color var(--t), background var(--t);
}
.n-links a:hover { color: var(--ink); background: var(--s); }

.n-cta {
  padding: .5rem clamp(.875rem, 2vw, 1.375rem);
  border-radius: 10px; background: var(--rose); color: #fff;
  font-size: clamp(.8rem, 1.4vw, .875rem); font-weight: 700;
  transition: transform var(--t), opacity var(--t); flex-shrink: 0;
}
.n-cta:hover { transform: translateY(-1px); opacity: .88; }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: .5rem; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* drawer */
#drawer {
  position: fixed; inset: 0 0 0 0; top: clamp(56px,8vw,68px);
  background: rgba(7,9,14,.97); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  z-index: 88; transform: translateX(100%);
  transition: transform .35s var(--ease);
  border-top: 1px solid var(--b);
}
#drawer:not([aria-hidden="true"]) { transform: none; }
.di { padding: 2rem clamp(1rem,5vw,2rem); }
.di ul { display: flex; flex-direction: column; gap: .375rem; }
.d-link { display: block; padding: .875rem 1rem; border-radius: var(--r); font-size: 1rem; font-weight: 500; color: var(--ink-2); transition: color var(--t), background var(--t); }
.d-link:hover { color: var(--ink); background: var(--s); }
.d-cta { display: flex; align-items: center; justify-content: center; gap: .625rem; margin-top: .875rem; padding: 1rem; border-radius: var(--r); background: var(--rose); color: #fff; font-size: 1rem; font-weight: 700; transition: opacity var(--t); }
.d-cta:hover { opacity: .88; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: clamp(.7rem,1.5vw,.875rem) clamp(1.25rem,3vw,1.875rem);
  border-radius: var(--r); font-size: clamp(.875rem,1.8vw,.9375rem); font-weight: 700;
  letter-spacing: .01em;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease), box-shadow var(--t) var(--ease);
  will-change: transform;
}
.btn-fill { background: var(--rose); color: #fff; box-shadow: 0 4px 20px var(--rose-glow); }
.btn-fill:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--rose-glow); }
.btn-ghost {
  border: 1px solid var(--b1); background: var(--s);
  color: var(--ink-2); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--b1); background: var(--s1); color: var(--ink); transform: translateY(-2px); }
.btn-outline-lt {
  border: 1.5px solid var(--lt-b); color: var(--lt-ink-2);
  transition: all var(--t) var(--ease);
}
.btn-outline-lt:hover { border-color: var(--rose); color: var(--rose); }

/* =========================================================
   LAYOUT
   ========================================================= */
section { padding: clamp(4rem,8vw,7rem) 0; }
.c { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1rem,5vw,2.5rem); }

/* dark / light alternation */
.dark { background: var(--bg-1); }
.light { background: var(--lt); }

/* section heading */
.sh {
  max-width: 580px; margin: 0 auto clamp(2.5rem,5vw,4rem); text-align: center;
}
.sh h2 {
  font-size: clamp(1.875rem,5vw,3rem); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.05; margin-bottom: .875rem;
}
.sh p { font-size: clamp(.9rem,2vw,1.0625rem); line-height: 1.7; }

/* dark heading */
.dh .sh h2 { color: var(--ink); }
.dh .sh p  { color: var(--ink-2); }

/* light heading */
.lh .sh h2 { color: var(--lt-ink); }
.lh .sh p  { color: var(--lt-ink-2); }

/* chip */
.chip {
  display: inline-block; margin-bottom: 1rem;
  padding: .3rem .875rem; border-radius: 999px;
  font-size: .6875rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  background: var(--rose-dim); color: var(--rose-hi); border: 1px solid rgba(192,55,94,.22);
}

/* =========================================================
   REVEAL
   ========================================================= */
.rv { opacity: 0; transform: translateY(18px); will-change: opacity, transform; transition: opacity .55s var(--ease), transform .55s var(--ease); }
.rv.in { opacity: 1; transform: translateY(0); will-change: auto; }
.rv.d1 { transition-delay: .07s; }
.rv.d2 { transition-delay: .14s; }
.rv.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1 !important; transform: none !important; transition: none !important; will-change: auto !important; } }

/* =========================================================
   LIVE DOT
   ========================================================= */
.dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose-hi);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 var(--rose-glow); }
  50%      { opacity: .7; box-shadow: 0 0 0 5px transparent; }
}

/* =========================================================
   HERO
   ========================================================= */
#hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: grid; place-items: center;
  padding: clamp(5rem,12vw,8rem) clamp(1rem,5vw,2.5rem) clamp(3rem,6vw,4rem);
  /* isolate stacking context for GPU compositing */
  isolation: isolate;
}

.h-noise {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-size: 200px;
}

.h-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: clamp(400px,80vw,1000px); height: clamp(300px,50vw,700px);
  background: radial-gradient(ellipse at center, rgba(192,55,94,.2) 0%, transparent 62%);
  pointer-events: none; z-index: 0;
}

.h-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: clamp(40px,8vw,80px) clamp(40px,8vw,80px);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 80%);
}

.h-inner {
  position: relative; z-index: 1;
  max-width: 860px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}

.h-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem 1rem; border-radius: 999px;
  border: 1px solid var(--b1); background: var(--s);
  font-size: clamp(.75rem,1.4vw,.8125rem); font-weight: 500; color: var(--ink-2);
  margin-bottom: clamp(1.5rem,3vw,2.5rem);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

#hero h1 {
  font-size: clamp(3.25rem,10vw,8rem);
  font-weight: 900; letter-spacing: -.045em; line-height: .96;
  margin-bottom: clamp(1.25rem,2.5vw,1.75rem);
}
#hero h1 .plain { color: var(--ink); }
#hero h1 .grad {
  background: linear-gradient(118deg, var(--rose) 10%, var(--rose-hi) 55%, #f7a0c0 90%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.h-motto {
  font-size: clamp(.9375rem,2.2vw,1.1875rem); color: var(--ink-2);
  font-style: italic; font-weight: 400;
  margin-bottom: clamp(.5rem,1vw,.75rem);
}

.h-sub {
  font-size: clamp(.875rem,1.8vw,1.0625rem); color: var(--ink-3);
  max-width: 540px; line-height: 1.7;
  margin-bottom: clamp(2rem,4vw,3rem);
}

.h-actions {
  display: flex; flex-wrap: wrap; gap: .875rem;
  justify-content: center; margin-bottom: clamp(2.5rem,5vw,4rem);
}

/* stats strip */
.h-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  border: 1px solid var(--b); border-radius: var(--r1);
  background: var(--s); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  overflow: hidden; width: fit-content;
}

.h-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(.875rem,2vw,1.375rem) clamp(1.5rem,4vw,2.75rem); gap: .2rem;
}

.h-stat-n {
  font-size: clamp(1.5rem,4vw,2.25rem); font-weight: 900; letter-spacing: -.03em; line-height: 1;
  display: inline-flex;
  align-items: center; /* vertically center all children including + */
  gap: .08em;
}

.h-plus {
  font-size: .48em;
  font-weight: 900;
  color: var(--rose-hi);
  /* perfectly centered vertically with the number */
  align-self: center;
  line-height: 1;
  display: inline-block;
  /* nudge up a tiny bit to optically balance with the number glyphs */
  margin-bottom: .05em;
}

.h-stat-l {
  font-size: clamp(.625rem,.9vw,.75rem); font-weight: 600;
  color: var(--ink-3); text-transform: uppercase; letter-spacing: .07em;
}

.h-sep { width: 1px; background: var(--b); flex-shrink: 0; }

.h-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--ink-3); font-size: .875rem;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  55%      { transform: translateX(-50%) translateY(7px); }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,5rem);
  align-items: start;
  margin-bottom: clamp(3rem,6vw,5rem);
}

.a-text { display: flex; flex-direction: column; gap: 1.125rem; }

.a-text p { font-size: clamp(.875rem,1.6vw,1rem); color: var(--lt-ink-2); line-height: 1.75; }
.a-text strong { color: var(--lt-ink); }

.a-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .25rem; }
.a-tags span {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .875rem; border-radius: 999px; font-size: .8rem; font-weight: 600;
  background: rgba(192,55,94,.08); color: var(--rose); border: 1px solid rgba(192,55,94,.14);
  transition: background var(--t), transform var(--t);
}
.a-tags span:hover { background: rgba(192,55,94,.14); transform: translateY(-1px); }

/* timeline */
.tl { display: flex; flex-direction: column; position: relative; padding-left: 1.5rem; gap: 0; }
.tl::before {
  content: ''; position: absolute; left: 9px; top: 12px; bottom: 12px;
  width: 2px; background: linear-gradient(to bottom, var(--rose) 35%, rgba(192,55,94,.1));
}

.tl-item { position: relative; padding-bottom: clamp(1.5rem,3vw,2.25rem); }
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
  /* fixed position — scale would shift it; use box-shadow for hover glow instead */
  position: absolute; left: -1.5rem; top: 3px;
  width: 20px; height: 20px; border-radius: 50%; z-index: 1;
  border: 2px solid rgba(192,55,94,.28);
  background: var(--lt); display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: var(--rose);
  /* glow on hover instead of scale (scale shifts absolutely-positioned elements) */
  transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
/* hover: glow ring — no transform, no position shift */
.tl-item:hover .tl-dot {
  box-shadow: 0 0 0 5px rgba(192,55,94,.13);
  border-color: var(--rose);
}

.done .tl-dot { background: var(--rose); border-color: var(--rose); color: #fff; }
.done .tl-dot:hover { box-shadow: 0 0 0 5px rgba(192,55,94,.18); }

.active .tl-dot {
  border-color: var(--rose); background: var(--lt);
  box-shadow: 0 0 0 4px rgba(192,55,94,.15);
}
.active .tl-dot span {
  display: block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose); animation: dotPulse 2s infinite;
}

.tl-body { padding-left: .25rem; }
.tl-body time { display: block; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--rose); margin-bottom: .3rem; }
.future .tl-body time { color: var(--lt-ink-3); }

.tl-body h3 { font-size: clamp(.875rem,1.5vw,.9375rem); font-weight: 700; color: var(--lt-ink); margin-bottom: .2rem; line-height: 1.3; }
.tl-body p  { font-size: clamp(.8rem,1.3vw,.8125rem); color: var(--lt-ink-2); line-height: 1.5; }

.future .tl-body h3 { color: rgba(13,21,32,.4); }
.future .tl-body p  { color: rgba(13,21,32,.28); }

/* partners */
.partners {
  padding-top: clamp(2rem,4vw,3.5rem);
  border-top: 1px solid var(--lt-b);
}
.p-label {
  text-align: center; font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--lt-ink-3); margin-bottom: 1.625rem;
}
.p-row {
  display: flex; flex-wrap: wrap; gap: .875rem; justify-content: center;
}
.p-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1.375rem; border-radius: var(--r);
  border: 1px solid var(--lt-b); background: rgba(13,21,32,.025);
  font-size: .8125rem; font-weight: 600; color: var(--lt-ink-2);
  transition: border-color var(--t), background var(--t), transform var(--t);
  cursor: default;
}
.p-item:hover { border-color: rgba(192,55,94,.2); background: rgba(192,55,94,.04); transform: translateY(-2px); }
.p-item i { color: var(--rose); font-size: 1rem; flex-shrink: 0; }

/* =========================================================
   GALLERY (media section)
   ========================================================= */
.gallery {
  display: grid;
  gap: .75rem;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: clamp(200px,28vw,300px) clamp(160px,22vw,240px);
}

.g-item {
  position: relative; border-radius: var(--r1); overflow: hidden;
  cursor: pointer; will-change: transform;
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
}
.g-item:hover { transform: scale(1.016); box-shadow: 0 16px 56px rgba(0,0,0,.5); }
.g-big { grid-column: 1; grid-row: span 2; }

.g-fill {
  inset: 0; position: absolute;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(255,255,255,.1);
}

.gg1 { background: linear-gradient(145deg,#18082a,#5a1438,#c0375e); }
.gg2 { background: linear-gradient(145deg,#081626,#0b3657); }
.gg3 { background: linear-gradient(145deg,#081a08,#1a4d18); }
.gg4 { background: linear-gradient(145deg,#1a0808,#5c1008); }
.gg5 { background: linear-gradient(145deg,#100822,#3a1060); }

.g-cap {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 2.5rem 1.25rem 1.125rem;
  background: linear-gradient(transparent, rgba(4,6,12,.72));
  font-size: clamp(.75rem,1.4vw,.875rem); font-weight: 600; color: rgba(255,255,255,.8);
  opacity: 0; transition: opacity .3s var(--ease);
}
.g-item:hover .g-cap, .g-item:focus .g-cap { opacity: 1; }

/* lightbox */
#lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(3,5,10,.93);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  display: flex; align-items: center; justify-content: center;
  animation: lbIn .22s var(--ease);
}
#lb[hidden] { display: none; }
@keyframes lbIn { from { opacity:0; } to { opacity:1; } }

.lb-x {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--s1); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  transition: background var(--t);
}
.lb-x:hover { background: rgba(255,255,255,.15); }

.lb-a {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--s); border: 1px solid var(--b);
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
}
.lb-a:hover { background: var(--s1); }
.lb-prev { left: clamp(.5rem,2vw,1.5rem); }
.lb-next { right: clamp(.5rem,2vw,1.5rem); }

.lb-stage { display: flex; flex-direction: column; align-items: center; gap: 1rem; }

.lb-img {
  width: clamp(280px,80vw,900px); height: clamp(200px,55vh,580px);
  border-radius: var(--r1);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(255,255,255,.1);
}
.lb-cap { font-size: clamp(.8rem,1.5vw,.9375rem); color: var(--ink-2); font-weight: 500; }

/* =========================================================
   EVENTS
   ========================================================= */
.ev-group { margin-bottom: clamp(2rem,4vw,3.5rem); }

.ev-label {
  display: flex; align-items: center; gap: .75rem;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  color: var(--rose); margin-bottom: clamp(1rem,2vw,1.5rem);
}
.ev-label.dim { color: var(--lt-ink-3); }

.ev-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(260px,40vw,360px), 1fr));
  gap: clamp(.75rem,2vw,1.125rem);
}

.ev-card {
  padding: clamp(1.25rem,2.5vw,1.875rem);
  border-radius: var(--r1); background: var(--lt-1);
  border: 1px solid var(--lt-b);
  box-shadow: 0 1px 12px rgba(13,21,32,.04);
  will-change: transform;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}
.ev-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(13,21,32,.09); }
.ev-card.live { border-color: rgba(192,55,94,.18); box-shadow: 0 0 0 1px rgba(192,55,94,.09) inset, 0 4px 20px rgba(192,55,94,.07); }

.ev-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }

.ev-date { font-size: clamp(.75rem,1.3vw,.8125rem); font-weight: 800; color: var(--rose); letter-spacing: .03em; }

.ev-badge {
  font-size: .625rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: .25rem .625rem; border-radius: 999px;
}
.ev-badge.live-b {
  background: rgba(192,55,94,.1); color: var(--rose);
  display: flex; align-items: center; gap: .35rem;
}
.ev-badge.live-b::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--rose); animation: dotPulse 2s infinite; }
.ev-badge.soon { background: rgba(13,21,32,.06); color: var(--lt-ink-3); }

.ev-card h4 { font-size: clamp(1rem,2vw,1.125rem); font-weight: 800; color: var(--lt-ink); margin-bottom: .625rem; line-height: 1.3; }
.ev-card p  { font-size: clamp(.8125rem,1.4vw,.875rem); color: var(--lt-ink-2); line-height: 1.65; margin-bottom: 1.125rem; }

.ev-meta { display: flex; flex-wrap: wrap; gap: .625rem; }
.ev-meta li { display: flex; align-items: center; gap: .35rem; font-size: .75rem; font-weight: 500; color: var(--lt-ink-3); }

/* past table */
.ev-past {
  border-radius: var(--r1); overflow: hidden;
  border: 1px solid var(--lt-b); background: var(--lt-1);
}
.ev-past-row {
  display: grid; grid-template-columns: clamp(100px,18vw,150px) 1fr auto;
  align-items: center; gap: clamp(.75rem,2vw,1.5rem);
  padding: clamp(.875rem,1.8vw,1.25rem) clamp(1rem,2.5vw,1.75rem);
  border-bottom: 1px solid var(--lt-b);
  transition: background var(--t);
}
.ev-past-row:last-child { border-bottom: none; }
.ev-past-row:hover { background: rgba(13,21,32,.02); }

.ev-pr-date { font-size: clamp(.7rem,1.2vw,.8125rem); font-weight: 600; color: var(--lt-ink-3); text-decoration: line-through; text-decoration-color: rgba(13,21,32,.15); white-space: nowrap; }
.ev-pr-title { font-size: clamp(.875rem,1.5vw,.9375rem); font-weight: 700; color: rgba(13,21,32,.48); }
.ev-pr-body  { font-size: clamp(.75rem,1.2vw,.8125rem); color: var(--lt-ink-3); line-height: 1.5; margin-top: .2rem; }
.ev-pr-done  { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(13,21,32,.06); font-size: .625rem; color: var(--lt-ink-3); flex-shrink: 0; }

.ev-more { display: flex; justify-content: center; margin-top: clamp(2rem,4vw,3rem); }

/* =========================================================
   TEAMS
   ========================================================= */
.vol-banner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: clamp(1.25rem,3vw,2rem);
  padding: clamp(1.75rem,3.5vw,2.5rem);
  border-radius: var(--r2);
  background: linear-gradient(135deg, var(--bg-3), rgba(192,55,94,.12));
  border: 1px solid rgba(192,55,94,.18);
  margin-bottom: clamp(2rem,4vw,3.5rem);
}
.vb-text h3 { font-size: clamp(1.25rem,2.5vw,1.5rem); font-weight: 800; color: var(--ink); margin-bottom: .5rem; }
.vb-text p  { font-size: clamp(.875rem,1.6vw,.9375rem); color: var(--ink-2); max-width: 440px; }

/* dept grid */
.dg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--b);
  border-radius: var(--r2); overflow: hidden;
}

.dg-cell {
  background: var(--bg-2);
  padding: clamp(1.5rem,3vw,2.25rem) clamp(1.25rem,2.5vw,2rem);
  transition: background var(--t); position: relative; overflow: hidden;
}
.dg-cell::after {
  content: ''; position: absolute; inset-inline: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--rose-hi));
  opacity: 0; transition: opacity var(--t);
}
.dg-cell:hover { background: var(--bg-3); }
.dg-cell:hover::after { opacity: 1; }

.dg-icon {
  width: clamp(38px,5vw,48px); height: clamp(38px,5vw,48px);
  border-radius: var(--r); background: var(--rose-dim);
  color: var(--rose-hi); display: flex; align-items: center; justify-content: center;
  font-size: clamp(1rem,2vw,1.25rem); margin-bottom: 1.125rem;
  transition: transform var(--t), background var(--t);
}
.dg-cell:hover .dg-icon { transform: scale(1.06); background: rgba(192,55,94,.22); }
.dg-icon.ac { background: rgba(192,55,94,.18); color: var(--rose-hi); }

.dg-cell h3 { font-size: clamp(.875rem,1.5vw,1rem); font-weight: 700; color: var(--ink); margin-bottom: .5rem; line-height: 1.3; }
.dg-cell p  { font-size: clamp(.8rem,1.3vw,.875rem); color: var(--ink-2); line-height: 1.6; }
.dg-special { border: 1px dashed rgba(192,55,94,.28); background: rgba(192,55,94,.04); }

.dg-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem; font-size: clamp(.75rem,1.2vw,.8125rem);
  font-weight: 700; color: var(--rose-hi); transition: gap var(--t);
}
.dg-link:hover { gap: .75rem; }

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: #040609; border-top: 1px solid var(--b);
}
.footer-in {
  max-width: 1240px; margin: 0 auto;
  padding: clamp(2.5rem,6vw,4.5rem) clamp(1rem,5vw,2.5rem);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(1.5rem,4vw,3rem);
}
.fb img { border-radius: 7px; object-fit: contain; height: clamp(28px,4vw,36px); width: auto; margin-bottom: .875rem; }
.fb p { font-size: clamp(.75rem,1.2vw,.8125rem); color: var(--ink-3); margin-bottom: .3rem; }
.fb-motto { font-style: italic; margin-top: .375rem; }
.fn-head, .fi-head { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-3); margin-bottom: .875rem; }
.fn ul { display: flex; flex-direction: column; gap: .5rem; }
.fn a { font-size: clamp(.8rem,1.3vw,.875rem); color: var(--ink-2); transition: color var(--t); }
.fn a:hover { color: var(--ink); }
.fi ul { display: flex; flex-direction: column; gap: .5rem; }
.fi li { display: flex; align-items: center; gap: .625rem; font-size: clamp(.8rem,1.3vw,.875rem); color: var(--ink-2); }
.fi i  { color: var(--rose); opacity: .65; font-size: .875rem; flex-shrink: 0; }
.footer-btm {
  max-width: 1240px; margin: 0 auto;
  padding: 1.25rem clamp(1rem,5vw,2.5rem);
  border-top: 1px solid var(--b);
}
.footer-btm p { font-size: clamp(.7rem,1.1vw,.75rem); color: var(--ink-3); text-align: center; }

/* =========================================================
   VOLUNTEERS PAGE
   ========================================================= */
.pg-hero {
  position: relative; overflow: hidden;
  padding: clamp(7rem,14vw,11rem) clamp(1rem,5vw,2.5rem) clamp(3.5rem,6vw,5rem);
  text-align: center; background: var(--bg);
}
.pg-hero h1 {
  font-size: clamp(2.75rem,8vw,5.5rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.0;
  margin-bottom: clamp(.875rem,2vw,1.375rem); position: relative; z-index: 1;
}
.pg-hero p { font-size: clamp(.9375rem,1.8vw,1.0625rem); color: var(--ink-2); max-width: 480px; margin: 0 auto clamp(2rem,4vw,3rem); position: relative; z-index: 1; }
.pg-hero-actions { display: flex; justify-content: center; gap: .875rem; flex-wrap: wrap; position: relative; z-index: 1; }

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(200px,25vw,260px), 1fr));
  gap: 1px; background: var(--b);
  border-radius: var(--r2); overflow: hidden;
}
.bn {
  background: var(--bg-2);
  padding: clamp(1.5rem,3vw,2.25rem) clamp(1.25rem,2.5vw,1.875rem);
  transition: background var(--t);
}
.bn:hover { background: var(--bg-3); }
.bn-icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: var(--rose-dim); color: var(--rose-hi);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem; margin-bottom: 1rem;
}
.bn h3 { font-size: clamp(.9375rem,1.6vw,1rem); font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.bn p  { font-size: clamp(.8125rem,1.3vw,.875rem); color: var(--ink-2); line-height: 1.6; }

/* dept cards light */
.depts-lt {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(260px,30vw,340px), 1fr));
  gap: clamp(.875rem,2vw,1.25rem);
}
.dl-card {
  background: var(--lt-1); border: 1px solid var(--lt-b);
  border-radius: var(--r1); padding: clamp(1.5rem,2.5vw,1.875rem);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.dl-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(13,21,32,.09); border-color: rgba(192,55,94,.18); }
.dl-icon { width: 48px; height: 48px; border-radius: var(--r); background: rgba(192,55,94,.08); color: var(--rose); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1.125rem; }
.dl-card h3 { font-size: clamp(1rem,1.8vw,1.0625rem); font-weight: 800; color: var(--lt-ink); margin-bottom: .625rem; }
.dl-card p  { font-size: clamp(.8125rem,1.3vw,.875rem); color: var(--lt-ink-2); line-height: 1.65; margin-bottom: .75rem; }
.dl-card ul { display: flex; flex-direction: column; gap: .4rem; }
.dl-card li { display: flex; align-items: flex-start; gap: .5rem; font-size: clamp(.75rem,1.2vw,.8125rem); color: var(--lt-ink-3); line-height: 1.5; }
.dl-card li i { font-size: .55rem; color: var(--rose); margin-top: .3rem; flex-shrink: 0; }
.dl-footer { margin-top: 1.125rem; padding-top: 1rem; border-top: 1px solid var(--lt-b); font-size: .7rem; font-weight: 700; letter-spacing: .06em; color: var(--lt-ink-3); }

/* form */
.vol-form-section { background: var(--bg-2); padding: clamp(4rem,8vw,7rem) clamp(1rem,5vw,2.5rem); }
.vfw { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.125rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-size: .8125rem; font-weight: 600; color: var(--ink-2); }
.req { color: var(--rose-hi); margin-left: .2rem; }
.field input, .field select, .field textarea {
  padding: .875rem 1rem; border-radius: var(--r);
  background: rgba(255,255,255,.05); border: 1px solid var(--b1);
  color: var(--ink); font: inherit; outline: none;
  transition: border-color var(--t), background var(--t);
  -webkit-appearance: none; appearance: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(192,55,94,.5); background: rgba(255,255,255,.07); }
.field textarea { resize: vertical; min-height: 120px; }
.sel-w { position: relative; }
.sel-w i { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--ink-3); font-size: .875rem; pointer-events: none; }
.field select { background-color: var(--bg-2); }
.ck-row { display: flex; align-items: flex-start; gap: .75rem; }
.ck-row input[type="checkbox"] { margin-top: .2rem; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--rose); cursor: pointer; border-radius: 5px; }
.ck-row label { font-size: .875rem; color: var(--ink-2); line-height: 1.55; cursor: pointer; }
.ck-row label span { color: var(--rose-hi); }
.alert { display: flex; align-items: flex-start; gap: .75rem; padding: 1rem 1.25rem; border-radius: var(--r); font-size: .875rem; line-height: 1.5; }
.a-ok  { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.2); color: #4ade80; }
.a-err { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); color: #f87171; }
.alert i { flex-shrink: 0; margin-top: .1rem; }
.btn-sub { width: 100%; padding: 1rem; border-radius: var(--r); background: var(--rose); color: #fff; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: .625rem; transition: opacity var(--t); }
.btn-sub:hover:not(:disabled) { opacity: .88; }
.btn-sub:disabled { opacity: .5; cursor: not-allowed; }

/* =========================================================
   EVENTS PAGE
   ========================================================= */
.ev-pills { display: flex; flex-wrap: wrap; gap: .625rem; justify-content: center; margin-bottom: clamp(2rem,4vw,3rem); }
.ev-pill { padding: .5rem clamp(.875rem,2vw,1.125rem); border-radius: 999px; font-size: clamp(.8rem,1.4vw,.875rem); font-weight: 600; cursor: pointer; transition: all var(--t); border: 1.5px solid transparent; }
.ev-pill.on  { background: var(--rose); color: #fff; border-color: var(--rose); }
.ev-pill.off { background: rgba(13,21,32,.05); color: var(--lt-ink-3); border-color: rgba(13,21,32,.1); }
.ev-pill.off:hover { border-color: var(--rose); color: var(--rose); }

/* =========================================================
   UTILITIES
   ========================================================= */
.hidden { display: none !important; }
.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; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   ACTIVITATI
   ========================================================= */
.act-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(220px, 28vw, 300px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.act-card {
  position: relative;
  background: var(--lt-1);
  border: 1px solid var(--lt-b);
  border-radius: var(--r1);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.act-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,21,32,.1); border-color: rgba(192,55,94,.2); }
.act-num {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 3rem; font-weight: 900; color: rgba(192,55,94,.06);
  letter-spacing: -.05em; line-height: 1; pointer-events: none;
}
.act-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: rgba(192,55,94,.08); color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
  transition: background var(--t), transform var(--t);
}
.act-card:hover .act-icon { background: rgba(192,55,94,.15); transform: scale(1.08); }
.act-card h3 { font-size: clamp(.9375rem, 1.6vw, 1.0625rem); font-weight: 800; color: var(--lt-ink); margin-bottom: .5rem; line-height: 1.3; }
.act-card p  { font-size: clamp(.8125rem, 1.3vw, .875rem); color: var(--lt-ink-2); line-height: 1.65; }

/* =========================================================
   GALLERY — REAL PHOTOS
   ========================================================= */
.g-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.g-item:hover .g-photo { transform: scale(1.04); }
.gallery {
  display: grid;
  gap: .75rem;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: clamp(200px, 28vw, 300px) clamp(160px, 22vw, 240px);
}
.g-big { grid-column: 1; grid-row: span 2; }
.gallery-more { display: flex; justify-content: center; margin-top: clamp(1.5rem, 3vw, 2.5rem); }

/* Lightbox real image */
.lb-img-real {
  width: clamp(280px, 80vw, 960px);
  max-height: 80vh;
  border-radius: var(--r1);
  object-fit: contain;
  display: block;
}

/* =========================================================
   DEPT GRID — LIGHT THEME (Echipa section)
   ========================================================= */
.dg-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.75rem, 2vw, 1.25rem);
}
.dg-cell-lt {
  background: var(--lt-1);
  border: 1px solid var(--lt-b);
  border-radius: var(--r1);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 2.5vw, 1.75rem);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
  position: relative; overflow: hidden;
}
.dg-cell-lt::after {
  content: ''; position: absolute; inset-inline: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-hi));
  opacity: 0; transition: opacity var(--t);
}
.dg-cell-lt:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(13,21,32,.09); border-color: rgba(192,55,94,.2); }
.dg-cell-lt:hover::after { opacity: 1; }
.dg-cell-lt-special { border: 1.5px dashed rgba(192,55,94,.3); background: rgba(192,55,94,.03); }
.dg-icon-lt {
  width: 48px; height: 48px; border-radius: var(--r);
  background: rgba(192,55,94,.08); color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1rem;
  transition: background var(--t), transform var(--t);
}
.dg-cell-lt:hover .dg-icon-lt { background: rgba(192,55,94,.15); transform: scale(1.06); }
.dg-cell-lt h3 { font-size: clamp(.875rem, 1.5vw, 1rem); font-weight: 700; color: var(--lt-ink); margin-bottom: .5rem; line-height: 1.3; }
.dg-cell-lt p  { font-size: clamp(.8rem, 1.3vw, .875rem); color: var(--lt-ink-2); line-height: 1.6; }

/* =========================================================
   PARTNERS
   ========================================================= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(260px, 38vw, 420px), 1fr));
  gap: clamp(.875rem, 2vw, 1.25rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.partner-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--r1);
  background: var(--bg-2); border: 1px solid var(--b);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.partner-card:hover { background: var(--bg-3); border-color: rgba(192,55,94,.25); transform: translateY(-2px); }
.partner-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--r); background: var(--rose-dim);
  color: var(--rose-hi); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.partner-info h3 { font-size: clamp(.9375rem, 1.6vw, 1.0625rem); font-weight: 700; color: var(--ink); margin-bottom: .375rem; }
.partner-info p  { font-size: clamp(.8125rem, 1.3vw, .875rem); color: var(--ink-2); line-height: 1.55; }

/* impact strip */
.impact-strip {
  display: flex; flex-wrap: wrap; justify-content: center;
  border: 1px solid var(--b); border-radius: var(--r1);
  background: rgba(255,255,255,.025); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  overflow: hidden; width: fit-content; margin: 0 auto;
}
.impact-item {
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 4vw, 2.75rem); gap: .25rem;
}
.impact-n {
  font-size: clamp(1.625rem, 4vw, 2.375rem); font-weight: 900;
  letter-spacing: -.03em; color: var(--ink);
  display: flex; align-items: baseline; gap: .1em;
}
.impact-sm { font-size: .55em; font-weight: 900; color: var(--rose-hi); }
.impact-l  { font-size: clamp(.625rem, .9vw, .75rem); font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: .07em; text-align: center; }
.impact-sep { width: 1px; background: var(--b); flex-shrink: 0; }

/* =========================================================
   JOIN SECTION
   ========================================================= */
.join-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.join-text { display: flex; flex-direction: column; gap: 1rem; }
.join-text h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; letter-spacing: -.03em; color: var(--lt-ink); line-height: 1.1; margin: 0; }
.join-text p  { font-size: clamp(.875rem, 1.6vw, 1rem); color: var(--lt-ink-2); line-height: 1.7; }
.join-social { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .5rem; }
.join-soc-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .625rem 1.25rem; border-radius: var(--r);
  font-size: .875rem; font-weight: 700;
  background: rgba(13,21,32,.06); color: var(--lt-ink-2);
  border: 1px solid var(--lt-b);
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.join-soc-btn:hover { background: rgba(192,55,94,.08); color: var(--rose); border-color: rgba(192,55,94,.2); transform: translateY(-2px); }
.join-card {
  background: var(--lt-1); border: 1px solid var(--lt-b);
  border-radius: var(--r2); padding: clamp(2rem, 4vw, 2.75rem);
  display: flex; flex-direction: column; gap: .75rem;
  box-shadow: 0 4px 32px rgba(13,21,32,.07);
}
.join-card-icon {
  width: 56px; height: 56px; border-radius: var(--r1);
  background: rgba(192,55,94,.08); color: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.join-cs-badge {
  display: inline-flex; align-items: center;
  padding: .3rem .875rem; border-radius: 999px;
  font-size: .6875rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(192,55,94,.08); color: var(--rose); border: 1px solid rgba(192,55,94,.18);
  width: fit-content;
}
.join-card h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 800; color: var(--lt-ink); margin: 0; }
.join-card p  { font-size: clamp(.875rem, 1.5vw, .9375rem); color: var(--lt-ink-2); line-height: 1.65; margin: 0; }

/* =========================================================
   RESPONSIVE — ENHANCED
   ========================================================= */
/* 4K / large displays */
@media (min-width: 1600px) {
  .c, .footer-in, .footer-btm { max-width: 1480px; }
  .act-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Tablet landscape */
@media (max-width: 1100px) {
  .dg { grid-template-columns: repeat(2, 1fr); }
  .dg-light { grid-template-columns: repeat(2, 1fr); }
  .footer-in { grid-template-columns: 1fr 1fr; }
  .fb { grid-column: span 2; }
  .join-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: clamp(200px,32vw,280px) clamp(160px,25vw,220px) clamp(160px,25vw,220px);
  }
  .g-big { grid-column: span 2; grid-row: span 1; }
  .dg { grid-template-columns: 1fr 1fr; }
  .dg-light { grid-template-columns: 1fr 1fr; }
  .act-grid { grid-template-columns: repeat(auto-fill, minmax(clamp(200px,40vw,280px),1fr)); }
  .partners-grid { grid-template-columns: 1fr; }
  .impact-strip { width: 100%; }
  .impact-item { padding: 1rem 1.25rem; }
}

/* Mobile landscape / large phone */
@media (max-width: 768px) {
  .n-links, .n-cta { display: none; }
  .burger { display: flex; }
  .h-stats { flex-direction: row; width: min(100%, 480px); }
  .h-sep { width: 1px; height: 40px; align-self: center; }
  .vol-banner { flex-direction: column; align-items: flex-start; }
  .ev-past-row { grid-template-columns: auto 1fr; gap: .5rem; }
  .ev-pr-done { display: none; }
  .footer-in { grid-template-columns: 1fr; gap: 2rem; }
  .fb { grid-column: span 1; }
  .f-row { grid-template-columns: 1fr; }
  .join-wrap { grid-template-columns: 1fr; }
  .dg-light { grid-template-columns: 1fr 1fr; }
  .act-grid { grid-template-columns: 1fr 1fr; }
  .impact-strip { flex-wrap: wrap; }
  .impact-sep { display: none; }
  .impact-item { width: 50%; border-bottom: 1px solid var(--b); }
  .impact-item:nth-child(odd) { border-right: 1px solid var(--b); }
}

/* Mobile portrait */
@media (max-width: 580px) {
  .gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .g-big { grid-column: 1; grid-row: 1; }
  .g-photo { position: relative; min-height: clamp(200px,50vw,280px); height: auto; }
  .g-fill { min-height: clamp(180px,48vw,260px); position: relative; }
  .dg { grid-template-columns: 1fr; }
  .dg-light { grid-template-columns: 1fr; }
  .act-grid { grid-template-columns: 1fr; }
  .h-stats { flex-direction: column; width: 100%; }
  .h-sep { width: 100%; height: 1px; }
  .h-stat { width: 100%; }
  .ev-past-row { grid-template-columns: 1fr; }
  .ev-pr-date { text-decoration: none; font-weight: 800; }
  .impact-item { width: 100%; }
  .impact-item:nth-child(odd) { border-right: none; }
  .partners-grid { grid-template-columns: 1fr; }
  .join-social { flex-direction: column; }
  .join-soc-btn { justify-content: center; }
  .gallery-more { flex-direction: column; align-items: center; }
}

/* Smartwatch / tiny screens ≤320px */
@media (max-width: 320px) {
  #hero h1 { font-size: 2.875rem !important; }
  .pg-hero h1 { font-size: 2.5rem !important; }
  .h-actions { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .act-grid, .dg-light, .partners-grid { grid-template-columns: 1fr; }
  .ni { gap: .5rem; }
}

/* High-DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .h-noise { background-size: 150px; }
}

/* High contrast */
@media (forced-colors: active) {
  .btn-fill, .n-cta { border: 2px solid ButtonText; forced-color-adjust: none; }
  .ev-card, .dg-cell, .dg-cell-lt, .act-card { border: 1px solid ButtonText; }
}

/* Print */
@media print {
  #nav, .h-glow, .h-noise, .h-grid, .gallery, #lb, .burger, #drawer { display: none !important; }
  body, .dark, #hero { background: #fff !important; color: #000 !important; }
}

