/* ==========================================================================
   TEDxBuzău — versiune finală (sinteză)
   --------------------------------------------------------------------------
   Bază: „Galerie tipografică" — hero negru monumental, restul alb și aerisit.
   Roșu TED #E62B1E folosit chirurgical: wordmark, punctul final din titlu,
   CTA-uri, marcaje fine. Montserrat 800 / 300.
   Mobile-first · WCAG AA · prefers-reduced-motion respectat.
   ========================================================================== */

/* ---------- 1. Design tokens (cu rapoarte de contrast documentate) ---------- */
:root {
  --red:        #E62B1E;  /* alb pe roșu: 4.44:1 → doar text ≥19px bold sau non-text */
  --red-deep:   #C2170C;  /* pe alb: 6.18:1 → AA și la text mic; hover butoane */
  --black:      #0B0B0C;
  --ink:        #161616;  /* pe alb: 16.6:1 */
  --gray-700:   #4A4A4A;  /* pe alb: 8.5:1 */
  --gray-500:   #6E6E6E;  /* pe alb: 5.1:1 — AA text normal */
  --gray-300:   #C9C9C7;  /* doar decorativ (hairlines, separatori) */
  --hairline:   #E6E6E3;
  --paper:      #FFFFFF;
  --paper-soft: #FAFAF8;
  --on-dark-2:  #B9B9B9;  /* pe negru: 10:1 */
  --font:       "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --max:        1200px;
  --gut:        clamp(20px, 5vw, 48px);
  --ease:       cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset & bază ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-padding-top: 100px; /* compensează header-ul fix la ancore */ }
/* smooth scroll doar ca opt-in, dacă utilizatorul nu cere mișcare redusă */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; }
strong { font-weight: 700; }

::selection { background: var(--red); color: #fff; }

/* Focus vizibil — nenegociabil pentru accesibilitate */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
  border-radius: 1px;
}
.s-dark :focus-visible { outline-color: #fff; }

/* Link de „sari la conținut" pentru tastatură / screen-reader */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--black);
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  padding: 14px 22px;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ---------- 3. Utilitare de layout & tipografie ---------- */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: clamp(88px, 14vw, 168px); }
.s-dark  { background: var(--black); color: #fff; }

/* utilitare în locul stilurilor inline */
.u-pt0     { padding-top: 0; }
.u-mt-lead { margin-top: 28px; }
.u-mt-p    { margin-top: 1.2em; color: var(--gray-700); }
.d-1 { --d: .1s; }
.d-2 { --d: .12s; }
.t-red { color: var(--red); }   /* accent roșu pe o porțiune de text (ex. „TEDx" într-un titlu) */

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
  flex: none;
}
/* numărul de secțiune — semnătură editorială, pur decorativ */
.kicker .num {
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--ink);
}
.s-dark .kicker { color: var(--on-dark-2); }
.s-dark .kicker .num { color: #fff; }

.h-display {
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  text-wrap: balance;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.8;
  color: var(--gray-700);
  max-width: 60ch;
}
.s-dark .lead { color: var(--on-dark-2); }

/* ---------- 4. Butoane & micro-link-uri ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.1875rem;          /* ≥ 19px bold = „large text" WCAG → AA pe roșu */
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: 19px 40px;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { background: var(--red-deep); border-color: var(--red-deep); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(6px); }

/* Link tipografic cu săgeată care glisează */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.arrow-link .arr { transition: transform .3s var(--ease); }
.arrow-link:hover .arr { transform: translateX(8px); }
.arrow-link .lbl { position: relative; }
.arrow-link .lbl::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.arrow-link:hover .lbl::after { transform: scaleX(1); }

/* ---------- 5. Wordmark TEDx (conformitate brand) ----------
   Spanuri separate pentru „TED" / „x" / „Buzău": litera regulii de brand
   rămâne garantată indiferent de stilizări viitoare.
   Conform TEDx Identity Guidelines: tipografia oficială a logo-ului e
   Helvetica (placename în Regular, kerning 0); doar pe fundal alb sau negru. */
.wordmark {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1;
}
.wordmark .ted { color: var(--red); }    /* „TED" — bold, roșu */
.wordmark .x {                           /* „x" — roșu, MIC și RIDICAT (superscript), ca în logo-ul oficial TEDx */
  color: var(--red);
  font-weight: 700;
  font-size: .62em;
  vertical-align: .42em;
  letter-spacing: 0;
}
.wordmark .city {                        /* „Buzău" — negru sau alb, după fundal */
  color: currentColor;
  font-weight: 400;                      /* placename în Regular, conform ghidului */
  margin-left: .03em;
}

/* Lockup oficial = wordmark + tagline „x = independently organized TED event" dedesubt.
   Conform ghidului TEDx, logo-ul și tagline-ul formează un „lockup" inseparabil. */
.logo-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}
.lockup-tag {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: .64rem;
  font-weight: 400;
  letter-spacing: .02em;
  white-space: nowrap;
  color: var(--on-dark-2);               /* lockup pe fundal închis (header) → tagline deschis, lizibil */
}
.lockup-tag .x { color: var(--red); font-weight: 700; }

/* ---------- 6. Header & navigație (max 5 iteme + logo) ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(11, 11, 12, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: rgba(255, 255, 255, .12); }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}
.nav-bar .wordmark { font-size: 1.95rem; }

.nav-list {
  display: none; /* mobile-first: lista e ascunsă, vezi overlay-ul */
}

/* Linkuri desktop cu underline animat */
.nav-list a:not(.nav-cta) {
  position: relative;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #E8E8E8;
  padding-block: 8px;
}
.nav-list a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-list a:not(.nav-cta):hover::after,
.nav-list a:not(.nav-cta):focus-visible::after { transform: scaleX(1); }

/* CTA din nav: alb pe negru → contrast 19:1, roșul rămâne accent la hover */
.nav-cta {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: #fff;
  color: var(--black);
  padding: 12px 26px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-cta:hover, .nav-cta:focus-visible { background: var(--red); color: #fff; }

/* Burger (mobil) */
.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-4.5px) rotate(-45deg); }

/* Overlay mobil — meniu tipografic pe negru, în spiritul galeriei */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--black);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px var(--gut) 48px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s var(--ease), visibility 0s .35s;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity .35s var(--ease);
}
.mobile-menu a {
  display: block;
  font-weight: 800;
  font-size: clamp(2rem, 9vw, 3rem);
  letter-spacing: -.02em;
  line-height: 1.15;
  padding-block: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mobile-menu a:hover, .mobile-menu a:focus-visible { color: var(--red); }
.mobile-menu .menu-foot {
  margin-top: 40px;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
body.menu-open { overflow: hidden; }

/* ---------- 7. HERO — negru, monumental, un singur accent roșu ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--black);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-block: 130px 96px;
}

.hero-brand { margin-bottom: clamp(36px, 6vh, 64px); }
.hero-brand .wordmark { font-size: clamp(1.6rem, 4vw, 2.4rem); display: block; }
/* Tagline-ul oficial TEDx — FĂRĂ text-transform: trebuie să se randeze exact
   „x = independently organized TED event" (x minuscul, TED majuscul).
   Logo-ul e un „lockup": nu se folosește fără acest tagline. */
.hero-brand .ted-tag {
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--on-dark-2);
}
.ted-tag .x,
.footer-tag .x { color: var(--red); font-weight: 700; } /* „x"-ul roșu, ca în lockup-ul oficial */

.hero-title {
  font-weight: 800;
  font-size: clamp(2.7rem, 10.5vw, 8.25rem);
  line-height: .98;
  letter-spacing: -.04em;
  text-wrap: balance;
  max-width: 14ch;
}
.hero-title .dot { color: var(--red); } /* unicul accent roșu al compoziției */

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-top: clamp(32px, 5vh, 52px);
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #DCDCDC;
}
.hero-meta span { display: inline-flex; align-items: center; }
.hero-meta span + span::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: rgba(255, 255, 255, .35);
  margin-inline: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 40px;
  margin-top: clamp(36px, 6vh, 60px);
}
.hero-actions .arrow-link { color: #fff; }

/* indicator de scroll — o linie care respiră */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, .25);
  overflow: hidden;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateY(-100%);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: translateY(-100%); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- 8. Countdown — bandă subțire, tipografică ---------- */
.countdown {
  border-bottom: 1px solid var(--hairline);
  padding-block: 30px;
  background: var(--paper);
}
.countdown .wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.countdown-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.count {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 4vw, 44px);
  font-variant-numeric: tabular-nums;
}
.count .unit b {
  display: block;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--ink);
}
.count .unit small {
  display: block;
  margin-top: 6px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.count .sep {
  font-weight: 300;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--gray-300);
  align-self: flex-start;
}

/* ---------- 9. Despre — alb, aerisit, cifre mari ---------- */
.about-grid {
  display: grid;
  gap: clamp(40px, 6vw, 88px);
}
.about-copy p + p { margin-top: 1.2em; }
/* roșu-adânc la text mic pe alb: 6.18:1 → AA (roșul pur pică la text normal) */
.about-copy .accent-word { color: var(--red-deep); font-weight: 700; font-style: normal; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline);
  margin-top: clamp(48px, 7vw, 80px);
}
.stat {
  padding: clamp(28px, 4vw, 44px) 8px;
  border-bottom: 1px solid var(--hairline);
}
/* bară roșie fină — leagă cifrele de brand fără să încalce zgârcenia */
.stat::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--red);
  margin-bottom: 18px;
}
.stat b {
  display: block;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
}
.stat b sup { font-size: .42em; font-weight: 800; vertical-align: super; }
.stat span {
  display: block;
  margin-top: 12px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* Principiile TEDx — iconografie SVG line, minimă */
.principles {
  display: grid;
  gap: 36px;
}
.principle { display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: start; }
.principle .icon {
  width: 40px; height: 40px;
  color: var(--ink);
}
.principle h3 {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.principle p { font-size: .95rem; color: var(--gray-700); line-height: 1.7; }

/* Citat-manifest — moment tipografic, tot pe alb */
.manifest {
  margin-top: clamp(64px, 9vw, 120px);
  padding-left: clamp(22px, 4vw, 44px);
  border-left: 2px solid var(--ink);
}
.manifest blockquote {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -.01em;
  max-width: 26em;
}
/* em la ≥21px bold = large text → roșul pur trece AA aici */
.manifest blockquote em { font-style: normal; font-weight: 700; color: var(--red); }
.manifest cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* Edițiile — o linie de istorie, nimic mai mult */
.editions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 0;
  margin-top: clamp(56px, 8vw, 96px);
  padding-top: 26px;
  border-top: 1px solid var(--hairline);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.editions span { display: inline-flex; align-items: center; }
.editions b { font-weight: 800; color: var(--ink); margin-right: 8px; }
.editions span + span::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--gray-300);
  margin-inline: 16px;
}
.editions .now b { color: var(--red-deep); } /* 6.18:1 — AA la text mic */

/* ---------- 10. Vorbitori — carduri duotone: poză, nume, subiect. Atât. ---------- */
.speakers-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.speakers-head .lead { max-width: 38ch; }
.speakers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 56px) clamp(24px, 3vw, 40px);
}

.speaker { position: relative; }
.speaker .portrait {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--black);
}
/* „Fotografie" placeholder pur CSS — duotone, alb-negru */
.speaker .portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  filter: grayscale(1) contrast(1.08);
  transition: transform .6s var(--ease), filter .6s var(--ease);
}
.speaker:nth-of-type(6n+1) .portrait::before { background: radial-gradient(120% 95% at 30% 22%, #777 0%, #3c3c3c 52%, #151515 100%); }
.speaker:nth-of-type(6n+2) .portrait::before { background: radial-gradient(120% 95% at 68% 20%, #8a8a8a 0%, #444 50%, #101010 100%); }
.speaker:nth-of-type(6n+3) .portrait::before { background: radial-gradient(130% 100% at 50% 14%, #6d6d6d 0%, #353535 55%, #181818 100%); }
.speaker:nth-of-type(6n+4) .portrait::before { background: radial-gradient(115% 90% at 26% 30%, #909090 0%, #4a4a4a 50%, #121212 100%); }
.speaker:nth-of-type(6n+5) .portrait::before { background: radial-gradient(125% 95% at 72% 26%, #7f7f7f 0%, #3a3a3a 52%, #141414 100%); }
.speaker:nth-of-type(6n+6) .portrait::before { background: radial-gradient(130% 100% at 50% 30%, #2c2c2c 0%, #1c1c1c 60%, #0c0c0c 100%); }
.speaker:hover .portrait::before,
.speaker:focus-within .portrait::before { transform: scale(1.04); filter: grayscale(1) contrast(1.16); }

.speaker .initials {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 24px;
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 3.6rem);
  letter-spacing: -.04em;
  line-height: 1;
  color: rgba(255, 255, 255, .92);
}
.speaker .index {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 1;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .26em;
  color: rgba(255, 255, 255, .65);
}
/* linia roșie care „crește" sub portret la hover — micro-interacțiune fină */
.speaker .portrait::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.speaker:hover .portrait::after,
.speaker:focus-within .portrait::after { transform: scaleX(1); }

.speaker .meta { padding-top: 22px; }
.speaker h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.speaker .talk {
  margin-top: 12px;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.55;
  color: var(--gray-700);
  max-width: 30ch;
}
.speaker .talk::before {
  content: "Talk —";
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}

/* cardul „încă 5" — gol intenționat, doar tipografie */
.speaker.tba .initials { color: rgba(255, 255, 255, .5); }
.speaker.tba .talk::before { content: "În curând —"; }

/* ---------- 11. Program — timeline vertical, hairline + puncte roșii ---------- */
.agenda {
  max-width: 780px;
  margin-top: clamp(44px, 6vw, 72px);
  border-left: 1px solid var(--hairline);
}
.slot {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 26px 0 26px clamp(28px, 5vw, 52px);
}
.slot + .slot { border-top: 1px solid var(--hairline); }
.slot::before {
  content: "";
  position: absolute;
  left: -4.5px;
  top: 38px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.slot time {
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .2em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.slot h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -.01em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.slot .tag {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray-500);
  border: 1px solid var(--gray-300);
  padding: 3px 10px;
}
.slot p { font-size: .95rem; color: var(--gray-700); max-width: 54ch; }

/* ---------- 12. Bilete — bandă CTA pe negru, fără grilă de prețuri ---------- */
.tickets { text-align: left; }
.tickets .big {
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 5rem);
  letter-spacing: -.04em;
  line-height: 1.04;
  max-width: 16ch;
  text-wrap: balance;
}
.tickets .big .dot { color: var(--red); }
.tickets .note {
  margin-top: 28px;
  max-width: 56ch;
  color: var(--on-dark-2);
  font-size: 1rem;
}
.tickets .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 44px;
  margin-top: clamp(36px, 5vw, 56px);
}
.tickets .row .arrow-link { color: #fff; }

/* ---------- 13. Contact — trei rânduri, trei săgeți ---------- */
.contact-list {
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--hairline);
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 24px;
  padding-block: 26px;
  border-bottom: 1px solid var(--hairline);
}
.contact-row .who {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gray-500);
}
/* micro-descrieri care reiau regulile TEDx în copy */
.contact-row .desc {
  margin-top: 6px;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--gray-700);
  max-width: 44ch;
}
.contact-row .mail {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  letter-spacing: -.01em;
  color: var(--ink);
}
.contact-row .mail .arr { color: var(--red); transition: transform .3s var(--ease); }
.contact-row .mail:hover .arr,
.contact-row .mail:focus-visible .arr { transform: translateX(8px); }
.contact-row .mail .lbl { position: relative; }
.contact-row .mail .lbl::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.contact-row .mail:hover .lbl::after,
.contact-row .mail:focus-visible .lbl::after { transform: scaleX(1); }

/* ---------- 13b. „Ce este TEDx?" — boilerplate oficial TED ----------
   Cerut de TEDx Identity Guidelines: descrierea TEDx + TED în josul homepage-ului,
   cu link vizibil către ted.com/tedx. */
.ted-about {
  background: var(--paper-soft);
  border-top: 1px solid var(--hairline);
}
.ted-about-grid { display: grid; gap: clamp(36px, 5vw, 64px); }
.ted-about h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.ted-about p { font-size: .98rem; line-height: 1.8; color: var(--gray-700); max-width: 58ch; }
.ted-about .links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  margin-top: clamp(32px, 5vw, 48px);
}
.ted-about .arrow-link { color: var(--ink); }

/* ---------- 14. Footer — simplificat, doar esențialul ---------- */
.site-footer {
  background: var(--black);
  color: var(--on-dark-2);
  padding-block: clamp(56px, 8vw, 88px) 40px;
  font-size: .9rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.site-footer .wordmark { font-size: 1.5rem; color: #fff; }
/* tagline-ul ține de lockup: logo-ul nu apare fără el nici în footer */
.footer-tag {
  margin-top: 8px;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .16em;
  color: var(--on-dark-2);
}
.footer-about { margin-top: 14px; max-width: 34ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.footer-nav a {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #E0E0E0;
  position: relative;
  padding-block: 4px;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.footer-nav a:hover::after, .footer-nav a:focus-visible::after { transform: scaleX(1); }

.socials { display: flex; gap: 14px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #E0E0E0;
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover, .socials a:focus-visible {
  border-color: var(--red);
  color: #fff;
  transform: translateY(-3px);
}
.socials svg { width: 18px; height: 18px; }

.footer-partners {
  padding-block: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: .82rem;
  line-height: 1.8;
  color: #A6A6A6;
}
.footer-partners a { color: #E0E0E0; font-weight: 700; }
.footer-partners a:hover { color: var(--red); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 40px;
  padding-top: 28px;
  font-size: .8rem;
  line-height: 1.7;
  color: #A6A6A6;
}
.footer-legal .disclaimer strong { color: #ECECEC; font-weight: 700; }
.footer-legal a { color: #D2D2D2; }
.footer-legal a:hover { color: #fff; }

/* ---------- 15. Animații la scroll (IntersectionObserver) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* stagger discret în grile */
.speakers-grid .reveal:nth-child(2) { --d: .08s; }
.speakers-grid .reveal:nth-child(3) { --d: .16s; }
.speakers-grid .reveal:nth-child(4) { --d: .08s; }
.speakers-grid .reveal:nth-child(5) { --d: .16s; }
.speakers-grid .reveal:nth-child(6) { --d: .24s; }
.stats .reveal:nth-child(2) { --d: .08s; }
.stats .reveal:nth-child(3) { --d: .16s; }
.stats .reveal:nth-child(4) { --d: .24s; }

/* ---------- 16. Respectă preferința pentru mișcare redusă ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .reveal { opacity: 1; transform: none; }
  .scroll-cue { display: none; }
}

/* ---------- 17. Responsive — mobile-first, lărgim progresiv ---------- */
@media (min-width: 640px) {
  .countdown .wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .stats {
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--hairline);
  }
  .stat { border-bottom: 0; padding-block: clamp(28px, 4vw, 44px); }
  .principles { grid-template-columns: repeat(3, 1fr); gap: 44px; }
}

@media (min-width: 900px) {
  .nav-list {
    display: flex;
    align-items: center;
    gap: 38px;
  }
  .burger { display: none; }
  .mobile-menu { display: none; }
  .speakers-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: start; }
  .principles { grid-template-columns: 1fr; gap: 36px; }
  .ted-about-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   18. COMPONENTE EXTINSE — moderator, news, pagini interioare
   Adăugate pentru: highlight moderator (homepage) + pagina /speakeri,
   cartoane de news stil TED, hero de pagină interioară, stare nav „pagina curentă".
   ========================================================================== */

/* sub-titlu sub un h2 de secțiune (mai mic decât h-display standard) */
.h-display.h-sub { font-size: clamp(1.8rem, 4vw, 2.6rem); }

/* ---------- 18.1 Stare „pagina curentă" în navigație ---------- */
.nav-list a[aria-current="page"] { color: #fff; }
.nav-list a[aria-current="page"]:not(.nav-cta)::after { transform: scaleX(1); }
.mobile-menu a[aria-current="page"] { color: var(--red); }

/* ---------- 18.2 Portret reutilizabil (duotone, alb-negru) ---------- */
.portrait-ph {
  position: relative;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: flex-end;
}
.portrait-ph::before {
  content: "";
  position: absolute;
  inset: 0;
  filter: grayscale(1) contrast(1.08);
  background: radial-gradient(120% 95% at 34% 22%, #8a8a8a 0%, #444 50%, #101010 100%);
  transition: transform .6s var(--ease), filter .6s var(--ease);
}
.portrait-ph .initials {
  position: relative;
  z-index: 1;
  padding: 22px 24px;
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  letter-spacing: -.04em;
  line-height: 1;
  color: rgba(255, 255, 255, .92);
}
.portrait-ph .index {
  position: absolute;
  top: 18px; right: 20px;
  z-index: 1;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .26em;
  color: rgba(255, 255, 255, .65);
}

/* ---------- 18.3 Moderator — highlight pe homepage ---------- */
.moderator {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  margin-bottom: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(48px, 7vw, 80px);
  border-bottom: 1px solid var(--hairline);
}
.moderator .portrait-ph { aspect-ratio: 4 / 4.4; }
.moderator .portrait-ph::before { background: radial-gradient(120% 95% at 64% 20%, #9a9a9a 0%, #4a4a4a 50%, #121212 100%); }
.moderator .portrait-ph::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  z-index: 2;
  width: 100%; height: 3px;
  background: var(--red);
}
.moderator .badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 6px 12px;
  margin-bottom: 18px;
}
.moderator h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.moderator .role {
  margin-top: 8px;
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.moderator .bio { margin-top: 20px; color: var(--gray-700); max-width: 52ch; }
.moderator .mod-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.moderator .mod-stats b {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.moderator .mod-stats span {
  display: block;
  margin-top: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
  max-width: 18ch;
}
.moderator .mod-cta { margin-top: 30px; }

/* CTA „vezi toți vorbitorii" sub grila de speakeri */
.speakers-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: clamp(40px, 6vw, 64px);
  padding-top: clamp(32px, 4vw, 44px);
  border-top: 1px solid var(--hairline);
}

/* ---------- 18.4 News — cartoane stil TED ---------- */
.news-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 36px);
}
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
}
.news-card a.news-link { display: flex; flex-direction: column; height: 100%; }
.news-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--black);
}
.news-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  filter: grayscale(1) contrast(1.06);
  transition: transform .6s var(--ease);
}
.news-card:nth-of-type(5n+1) .news-thumb::before { background: radial-gradient(120% 120% at 30% 20%, #6f6f6f, #2a2a2a 60%, #121212); }
.news-card:nth-of-type(5n+2) .news-thumb::before { background: radial-gradient(120% 120% at 70% 25%, #808080, #383838 55%, #101010); }
.news-card:nth-of-type(5n+3) .news-thumb::before { background: radial-gradient(130% 120% at 45% 30%, #5e5e5e, #2e2e2e 60%, #141414); }
.news-card:nth-of-type(5n+4) .news-thumb::before { background: radial-gradient(120% 120% at 60% 18%, #888, #3f3f3f 55%, #111); }
.news-card:nth-of-type(5n+5) .news-thumb::before { background: radial-gradient(125% 120% at 38% 26%, #757575, #333 58%, #131313); }
.news-card a.news-link:hover .news-thumb::before { transform: scale(1.05); }
.news-thumb .news-cat {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 1;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 6px 12px;
}
.news-body { padding-top: 20px; display: flex; flex-direction: column; flex: 1; }
.news-body h3 {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.22;
}
.news-link:hover .news-body h3 { color: var(--red-deep); }
.news-body .excerpt {
  margin-top: 12px;
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.65;
  flex: 1;
}
.news-meta {
  margin-top: 18px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  align-items: center;
}
.news-meta .dot-sep { margin: 0 10px; width: 3px; height: 3px; border-radius: 50%; background: var(--gray-300); display: inline-block; }

/* ---------- 18.5 Hero de pagină interioară (mai scund decât homepage) ---------- */
.page-hero {
  background: var(--black);
  color: #fff;
  padding-block: clamp(128px, 18vh, 188px) clamp(56px, 8vw, 88px);
}
.page-hero .wordmark-tag { margin-bottom: clamp(28px, 5vh, 48px); }
.page-hero .wordmark-tag .ted-tag {
  margin-top: 10px;
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .22em;
  color: var(--on-dark-2);
}
.page-hero .wordmark-tag .ted-tag .x { color: var(--red); font-weight: 700; }
.page-hero h1 {
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 1;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.page-hero h1 .dot { color: var(--red); }
.page-hero .page-lead {
  margin-top: clamp(20px, 3vw, 28px);
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--on-dark-2);
  line-height: 1.7;
}
.breadcrumb {
  margin-top: 24px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin: 0 10px; color: rgba(255,255,255,.4); }

/* ---------- 18.6 Moderator — versiune amplă pe pagina /speakeri ---------- */
.moderator-full {
  display: grid;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
.moderator-full .portrait-ph { aspect-ratio: 4 / 4.7; }
.moderator-full .portrait-ph::before { background: radial-gradient(120% 95% at 60% 18%, #9a9a9a 0%, #484848 50%, #121212 100%); }
.moderator-full .portrait-ph::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0; z-index: 2;
  width: 100%; height: 4px;
  background: var(--red);
}
.moderator-full .badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 6px 12px;
  margin-bottom: 18px;
}
.moderator-full h2 {
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  letter-spacing: -.03em;
  line-height: 1.02;
}
.moderator-full .role {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.moderator-full .mod-body p { margin-top: 1.1em; color: var(--gray-700); max-width: 60ch; }
.moderator-full .mod-body p:first-child { margin-top: 22px; }
.moderator-full .pullquote {
  margin: clamp(32px, 5vw, 48px) 0;
  padding-left: clamp(20px, 3vw, 36px);
  border-left: 3px solid var(--red);
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -.01em;
  color: var(--ink);
  max-width: 24em;
}
.moderator-full .mod-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.moderator-full .mod-stats b {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.moderator-full .mod-stats span {
  display: block;
  margin-top: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
  max-width: 18ch;
}
.moderator-full .press {
  margin-top: 26px;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--gray-500);
}
.moderator-full .press b { color: var(--ink); font-weight: 700; }

/* ---------- 18.7 Carduri de speakeri cu bio (pe pagina /speakeri) ---------- */
.speaker .role {
  margin-top: 6px;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.speaker .topic {
  display: inline-block;
  margin-top: 14px;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red-deep);
  border: 1px solid var(--hairline);
  padding: 4px 10px;
}
.speaker .bio {
  margin-top: 14px;
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray-700);
}

/* ---------- 18.8 Responsive pentru componentele noi ---------- */
@media (min-width: 640px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .moderator { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: center; }
  .moderator-full { grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  /* cardul featured ocupă toată lățimea, cu layout pe orizontală */
  .news-card.featured { grid-column: 1 / -1; }
  .news-card.featured .news-link { flex-direction: row; gap: clamp(28px, 4vw, 48px); align-items: stretch; }
  .news-card.featured .news-thumb { flex: 1 1 56%; aspect-ratio: auto; min-height: 320px; }
  .news-card.featured .news-body { flex: 1 1 44%; justify-content: center; padding-top: 0; }
  .news-card.featured .news-body h3 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); }
  .news-card.featured .news-body .excerpt { font-size: 1.05rem; flex: 0; }
}

/* ==========================================================================
   19. POZE LOCALE + TIMELINE PE EDIȚII (2022 ↔ 2026)
   ========================================================================== */

/* ---------- 19.1 Poză locală peste placeholder-ul duotone ----------
   Dacă fișierul există, poza acoperă gradientul și inițialele.
   Dacă lipsește (onerror în main.js), rămâne placeholder-ul elegant. */
.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1) contrast(1.05);
  z-index: 1;                 /* peste gradientul ::before, sub badge/index și linia roșie */
  transition: transform .6s var(--ease), filter .6s var(--ease);
}
.has-photo .initials { display: none; }   /* poza încarcă → ascundem inițialele */
.speaker:hover .portrait-img,
.speaker:focus-within .portrait-img { transform: scale(1.04); filter: grayscale(1) contrast(1.14); }
/* index-ul și linia roșie rămân deasupra pozei */
.portrait .index, .portrait-ph .index { z-index: 3; }
.speaker .portrait::after, .moderator .portrait-ph::after, .moderator-full .portrait-ph::after { z-index: 4; }

/* ---------- 19.2 Comutator-timeline pe ediții ---------- */
.edition-switch { margin-bottom: clamp(44px, 6vw, 72px); }
.tl-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
}
.tl-node {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 16px 4px 0;
  background: none;
  border: 0;
  border-top: 2px solid var(--hairline);
  text-align: left;
  cursor: pointer;
  color: var(--gray-500);
  font-family: var(--font);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.tl-node::before {            /* punctul de pe linia timeline-ului */
  content: "";
  position: absolute;
  top: -7px; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.tl-node .tl-year {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.tl-node .tl-sub {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tl-node:hover { color: var(--ink); }
.tl-node[aria-selected="true"] { color: var(--ink); border-top-color: var(--red); }
.tl-node[aria-selected="true"]::before { background: var(--red); transform: scale(1.35); }
.tl-node:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }

/* ---------- 19.3 Panourile de ediție + animația la comutare ---------- */
.edition-panel[hidden] { display: none; }
.edition-panel .panel-intro {
  margin-bottom: clamp(32px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 24px;
}
.edition-panel .panel-intro h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
}
.edition-panel .panel-intro .meta-line {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.edition-panel.is-active .speaker { animation: cardIn .55s var(--ease) both; }
.edition-panel.is-active .speaker:nth-child(1) { animation-delay: .02s; }
.edition-panel.is-active .speaker:nth-child(2) { animation-delay: .08s; }
.edition-panel.is-active .speaker:nth-child(3) { animation-delay: .14s; }
.edition-panel.is-active .speaker:nth-child(4) { animation-delay: .20s; }
.edition-panel.is-active .speaker:nth-child(5) { animation-delay: .26s; }
.edition-panel.is-active .speaker:nth-child(6) { animation-delay: .32s; }
.edition-panel.is-active .speaker:nth-child(7) { animation-delay: .38s; }
.edition-panel.is-active .speaker:nth-child(8) { animation-delay: .44s; }

/* ---------- 19.4 Carduri de arhivă (2022) cu link la talk ---------- */
.speaker .watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-deep);
}
.speaker .watch .arr { transition: transform .3s var(--ease); }
.speaker .watch:hover .arr { transform: translateX(6px); }
.speaker.archive .index { background: rgba(255,255,255,.14); }

/* notă „completează datele reale 2022" — vizibilă doar ca ghidaj editorial */
.edit-hint {
  margin-top: clamp(36px, 5vw, 56px);
  padding: 20px 22px;
  border: 1px dashed var(--gray-300);
  background: var(--paper-soft);
  font-size: .88rem;
  line-height: 1.65;
  color: var(--gray-700);
}
.edit-hint b { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .edition-panel.is-active .speaker { animation: none; }
}
