/* =========================================================
   ANTREPRENOR ÎMPREUNĂ CU DUMNEZEU · landing page
   Concept: Convergență. Business și Credință se întâlnesc
   în „Împreună”. Tot ce e aici e mobile-first.
   ========================================================= */

:root {
  /* PALETA ACTIVĂ: navy + alb + gri */
  --ink: #0e1626;           /* text principal, navy aproape negru */
  --ink-2: #3b4658;
  --ink-3: #6d7787;
  --forest: #14284b;        /* navy principal (numele variabilei e istoric) */
  --forest-deep: #0b1a36;   /* navy profund, fundaluri */
  --forest-soft: #23407a;
  --cream: #f5f6f8;         /* fundalul paginii, alb ușor cald */
  --paper: #ffffff;         /* carduri */
  --sand: #e3e6ea;          /* gri deschis */
  --sand-deep: #cfd5dd;
  --mist: #e8edf3;          /* gri-albastru, secțiunea locație */
  --copper: #b8863a;        /* accent cald, folosit rar */
  --line: rgba(14, 22, 38, .14);

  /* Variante anterioare (pentru revenire)
     verde + crem:  --forest: #1b4a40; --forest-deep: #12332c; --forest-soft: #2a5f53; --ink: #14201c;
     navy + crem:   --cream: #f4efe6; --paper: #faf7f1; --sand: #e7dfcf; --sand-deep: #d9cfbb; --mist: #ece6da; --ink: #101a2c;
  */

  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --pad: clamp(20px, 5vw, 72px);
  --max: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, p, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

/* ---------- tipografie ---------- */
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.06;
  letter-spacing: -.015em;
  text-wrap: balance;
  max-width: 18ch;
}
.h2 em, .hero__title em { font-style: italic; font-weight: 300; color: var(--forest); }
.eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 18px;
}
.lede { font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-2); max-width: 52ch; margin-top: 18px; }
.dot { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .5; display: inline-block; vertical-align: middle; }

/* ---------- butoane ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px;
  background: var(--forest);
  color: var(--cream);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .01em;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .3s;
  white-space: nowrap;
}
.btn:hover { background: var(--forest-deep); transform: translateY(-1px); }
.btn--light { background: var(--cream); color: var(--forest); }
.btn--light:hover { background: #fff; }
.btn--small { padding: 10px 18px; font-size: 14px; }
.btn--big { padding: 20px 36px; font-size: 17px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap .3s var(--ease);
}
.link-arrow::after { content: '→'; transition: transform .3s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 0 var(--pad);
  color: var(--cream);
  transition: background .4s, color .4s, box-shadow .4s;
}
.nav.is-solid { background: rgba(245, 246, 248, .88); backdrop-filter: blur(12px); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.mark { width: 26px; height: 26px; color: currentColor; }
.nav__name { display: flex; flex-direction: column; line-height: 1.05; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; white-space: nowrap; }
@media (min-width: 480px) { .nav__name { font-size: 12px; } }
.nav__name span:last-child { font-weight: 400; opacity: .8; }
.nav__links { display: none; gap: 28px; font-size: 14px; font-weight: 500; }
.nav__links a { opacity: .75; transition: opacity .2s; }
.nav__links a:hover { opacity: 1; }
.nav .btn--small { background: var(--cream); color: var(--forest); }
.nav.is-solid .btn--small { background: var(--forest); color: var(--cream); }
@media (min-width: 900px) { .nav__links { display: flex; } }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  color: var(--cream);
  background: var(--forest-deep);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__video { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.hero__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 2.4s var(--ease); }
body.is-ready .hero__photo { transform: scale(1); }
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,26,54,.45) 0%, rgba(11,26,54,.15) 45%, rgba(11,26,54,.75) 100%);
}
.hero__content {
  padding: calc(var(--nav-h) + 8vh) var(--pad) 40px;
  align-self: end;
  max-width: var(--max);
}
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; color: var(--cream); opacity: 1; margin-bottom: 28px; font-size: clamp(14px, 1.3vw, 18px); letter-spacing: .12em; font-weight: 600; }
.hero__meta .dot { width: 5px; height: 5px; opacity: .7; }
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(46px, 10.5vw, 132px);
  line-height: .96;
  letter-spacing: -.025em;
  margin-bottom: 28px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { color: var(--cream); opacity: .92; }
.hero__lede { font-size: clamp(17px, 1.7vw, 22px); max-width: 44ch; opacity: .9; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.hero__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 var(--pad) 26px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .7;
}
.hero__count b { font-weight: 600; }
.hero__scroll::after { content: ''; display: inline-block; width: 1px; height: 28px; background: currentColor; margin-left: 12px; vertical-align: middle; animation: scrollhint 2.2s var(--ease) infinite; }
@keyframes scrollhint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* intrarea titlului */
.hero__title .line { transform: translateY(105%); opacity: 0; transition: transform 1.1s var(--ease), opacity .8s; }
body.is-ready .hero__title .line { transform: none; opacity: 1; }
body.is-ready .hero__title .line:nth-child(2) { transition-delay: .1s; }
body.is-ready .hero__title .line:nth-child(3) { transition-delay: .2s; }
.hero__meta, .hero__lede, .hero__cta { opacity: 0; transform: translateY(14px); transition: opacity .9s, transform .9s var(--ease); }
body.is-ready .hero__meta { opacity: 1; transform: none; transition-delay: .35s; }
body.is-ready .hero__lede { opacity: .9; transform: none; transition-delay: .5s; }
body.is-ready .hero__cta { opacity: 1; transform: none; transition-delay: .65s; }

/* ---------- social proof ---------- */
.proof { padding: 56px var(--pad) 48px; background: var(--forest-deep); color: var(--cream); }
.proof__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 20px; max-width: var(--max); margin: 0 auto; }
.proof__stats li { display: flex; flex-direction: column; gap: 4px; }
.proof__stats b { font-family: var(--serif); font-weight: 300; font-size: clamp(38px, 5vw, 64px); line-height: 1; letter-spacing: -.02em; color: var(--cream); }
.proof__stats span { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; opacity: .55; }
@media (min-width: 720px) { .proof__stats { grid-template-columns: repeat(4, 1fr); } }

/* ---------- două lumi (secțiune sticky) ---------- */
.worlds { position: relative; height: 200vh; background: var(--forest-deep); color: var(--cream); }
.worlds__stage {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.worlds__word {
  position: absolute;
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(40px, 9vw, 120px); letter-spacing: -.02em; line-height: 1;
  color: var(--cream); opacity: .9;
  will-change: transform, opacity;
}
.worlds__word--a { transform: translateX(calc(-1 * var(--d, 34vw))); }
.worlds__word--b { transform: translateX(var(--d, 34vw)); }
.worlds__together {
  position: absolute;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 11vw, 150px); letter-spacing: -.03em; line-height: 1;
  color: #fff;
  opacity: 0; transform: scale(.94);
  will-change: transform, opacity;
}
.worlds__caption {
  position: absolute; left: 0; right: 0; bottom: 8vh; text-align: center;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--cream);
  opacity: 0; transition: opacity .6s;
}
.worlds.is-done .worlds__caption { opacity: .6; }

/* ---------- de ce ---------- */
.why { padding: 110px var(--pad) 120px; max-width: var(--max); margin: 0 auto; }
.why__intro { max-width: 900px; margin-bottom: 56px; }
.why__media { display: none; }
@media (min-width: 1000px) {
  .why { display: grid; grid-template-columns: 1fr 380px; gap: 0 72px; align-items: start; }
  .why__intro, .why__grid, .who { grid-column: 1; }
  .why__media[data-photo] { display: block; grid-column: 2; grid-row: 1 / span 3; position: sticky; top: calc(var(--nav-h) + 32px); aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; }
}
@media (min-width: 1200px) { .why { grid-template-columns: 1fr 440px; } }
.why__grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); margin-bottom: 72px; }
.why__item { padding: 28px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: start; }
.why__n { font-family: var(--serif); font-size: 22px; color: var(--forest); font-style: italic; font-weight: 300; }
.why__item p { color: var(--ink-2); max-width: 48ch; }
@media (min-width: 900px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); gap: 0 48px; }
  .why__item { grid-template-columns: 130px 1fr; padding: 30px 0; }
}

.who { background: var(--paper); border: 1px solid var(--line); padding: 32px clamp(22px, 4vw, 48px); border-radius: var(--radius); }
.who__label { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink-3); margin-bottom: 14px; }
.who__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip {
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: background .25s, color .25s, border-color .25s;
}
.chip:hover { border-color: var(--forest); color: var(--forest); }
.chip.is-active { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.who__text { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 28px); line-height: 1.35; max-width: 40ch; min-height: 3.6em; transition: opacity .3s; }
.who__text.is-swapping { opacity: 0; }

/* ---------- benzi CTA ---------- */
.cta { padding: 72px var(--pad); background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.cta__inner { max-width: 760px; margin: 0 auto; }
.cta__title { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -.015em; margin-bottom: 14px; text-wrap: balance; }
.cta__title em { font-style: italic; font-weight: 300; color: var(--forest); }
.cta__text { color: var(--ink-2); max-width: 46ch; margin: 0 auto 28px; }
.cta__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px 28px; }
@media (min-width: 900px) { .cta { padding: 88px var(--pad); } }

/* ---------- o zi la Sovata ---------- */
.day { background: var(--paper); border-top: 1px solid var(--line); padding: 100px var(--pad) 120px; }
.day__head { max-width: var(--max); margin: 0 auto 64px; }
.day__timeline { max-width: var(--max); margin: 0 auto; display: grid; gap: 0; }
.moment {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  padding: 36px 0; border-top: 1px solid var(--line);
  align-items: center;
}
.moment h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.1; margin-bottom: 8px; letter-spacing: -.01em; }
.moment p { color: var(--ink-2); max-width: 44ch; }
.moment__photo { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; }
@media (min-width: 820px) {
  .moment { grid-template-columns: 1fr 340px; gap: 48px; padding: 40px 0; }
  .moment__photo { aspect-ratio: 4 / 3; }
}
@media (min-width: 1100px) { .moment { grid-template-columns: 1fr 420px; gap: 72px; } }

/* ---------- speakeri: index editorial ---------- */
.speakers { padding: 110px var(--pad) 110px; max-width: var(--max); margin: 0 auto; position: relative; }
.speakers__head { margin-bottom: 56px; }
.speakers__list { border-top: 1px solid var(--line); }
.speaker {
  display: grid; grid-template-columns: 64px 1fr; grid-template-areas: 'thumb name' 'thumb meta' 'topic topic';
  gap: 6px 16px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--ease);
}
.speaker__thumb { grid-area: thumb; width: 64px; aspect-ratio: 4 / 5; border-radius: 3px; overflow: hidden; background: var(--sand) center / cover no-repeat; }
.speaker__name { grid-area: name; font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 3vw, 42px); line-height: 1.05; letter-spacing: -.015em; align-self: end; }
.speaker__meta { grid-area: meta; font-size: 14px; color: var(--ink-3); }
.speaker__topic { grid-area: topic; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 18px; color: var(--ink-2); margin-top: 6px; }
.speaker__idx { display: none; }
@media (min-width: 900px) {
  .speaker {
    grid-template-columns: 40px 64px 1fr 90px 1.4fr; grid-template-areas: 'idx thumb name meta topic';
    align-items: center; gap: 24px; padding: 20px 0;
    cursor: default;
  }
  .speaker__thumb { width: 64px; filter: grayscale(1); transition: filter .4s; }
  .speaker:hover .speaker__thumb { filter: none; }
  .speaker__idx { display: block; grid-area: idx; font-size: 13px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
  .speaker__topic { margin: 0; font-size: 17px; }
  .speaker:hover { padding-left: 10px; }
  .speaker:hover .speaker__name { color: var(--forest); }
}
.speakers__peek {
  position: fixed; z-index: 40; width: 200px; aspect-ratio: 4 / 5; pointer-events: none;
  background: var(--sand) center / cover no-repeat;
  border-radius: 4px; overflow: hidden;
  opacity: 0; transform: translate(-50%, -50%) scale(.92) rotate(-2deg);
  transition: opacity .25s, transform .35s var(--ease);
  box-shadow: 0 30px 60px -20px rgba(14,22,38,.35);
}
.speakers__peek.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0); }
@media (hover: none) { .speakers__peek { display: none; } }

/* ---------- program ---------- */
.program { background: var(--forest-deep); color: var(--cream); padding: 110px var(--pad) 120px; }
.program__head { max-width: var(--max); margin: 0 auto 48px; }
.program .h2 em { color: var(--sand); }
.program .eyebrow { color: rgba(245,246,248,.6); }
.program__soon { max-width: var(--max); margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(245,246,248,.16); }
.program__days { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; margin-bottom: 14px; }
.program__msg { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(22px, 2.6vw, 34px); line-height: 1.2; }
.program__tabs { max-width: var(--max); margin: 0 auto 8px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tab {
  text-align: left; padding: 16px 16px 18px;
  border: 1px solid rgba(245,246,248,.16); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 4px;
  transition: background .3s, border-color .3s;
}
.tab small { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .6; }
.tab b { font-family: var(--serif); font-weight: 400; font-size: clamp(18px, 2vw, 26px); line-height: 1.05; }
.tab > span { font-size: 13px; opacity: .7; display: none; }
.tab__d { display: none; }
.tab:hover { border-color: rgba(245,246,248,.5); }
.tab.is-active { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.tab.is-active small, .tab.is-active > span { opacity: .6; }
@media (min-width: 720px) { .tab { padding: 20px 22px; } .tab > span { display: block; } .tab__d { display: inline; } }

.program__panel { max-width: var(--max); margin: 0 auto; }
.part { margin-top: 32px; }
.part__label {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .6;
  margin-bottom: 6px;
}
.part__label::after { content: ''; flex: 1; height: 1px; background: rgba(245,246,248,.16); }
.item {
  display: grid; grid-template-columns: 64px 1fr; gap: 4px 16px;
  padding: 16px 0; border-bottom: 1px solid rgba(245,246,248,.1);
  align-items: baseline;
}
.item__time { font-family: var(--serif); font-size: 15px; font-variant-numeric: tabular-nums; opacity: .85; }
.item__title { font-family: var(--serif); font-weight: 400; font-size: clamp(18px, 2vw, 24px); line-height: 1.15; }
.item__who { grid-column: 2; font-size: 14px; opacity: .65; }
.item__kind { grid-column: 2; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .5; }
.item--spiritual .item__title { font-style: italic; font-weight: 300; }
.item--meal, .item--networking { opacity: .8; }
@media (min-width: 820px) {
  .item { grid-template-columns: 90px 1fr 220px 130px; gap: 20px; padding: 18px 0; }
  .item__who, .item__kind { grid-column: auto; }
  .item__kind { text-align: right; }
}
.program__panel[data-anim] .part { animation: fadeup .5s var(--ease) both; }
.program__panel[data-anim] .part:nth-child(2) { animation-delay: .07s; }
.program__panel[data-anim] .part:nth-child(3) { animation-delay: .14s; }
@keyframes fadeup { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- comunitate ---------- */
.community {
  padding: 130px var(--pad) 120px; color: var(--cream);
  background: linear-gradient(180deg, rgba(11,26,54,.86), rgba(11,26,54,.78) 50%, rgba(11,26,54,.9)), url(../assets/photos/community.jpg?v=36) center / cover no-repeat;
}
.community .eyebrow { color: rgba(245,246,248,.6); }
.community .h2 em { color: var(--sand); }
.community__head { max-width: var(--max); margin: 0 auto 56px; }
.community__head .h2 { max-width: 22ch; }
.community__quotes { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid rgba(245,246,248,.2); }
.quote { padding: 32px 0; border-bottom: 1px solid rgba(245,246,248,.2); display: grid; gap: 16px; }
.quote p { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); line-height: 1.25; letter-spacing: -.01em; max-width: 24ch; }
.quote p::before { content: '„'; color: var(--sand); }
.quote p::after { content: '”'; color: var(--sand); }
.quote footer { font-size: 14px; opacity: .65; }
.quote footer b { font-weight: 500; opacity: 1; }
@media (min-width: 900px) {
  .community__quotes { grid-template-columns: repeat(3, 1fr); gap: 0 48px; }
  .quote { border-bottom: 0; padding: 40px 0 0; }
}

/* ---------- locație ---------- */
.place { display: grid; grid-template-columns: 1fr; background: var(--mist); border-top: 1px solid var(--line); }
.place__media { min-height: 50vw; }
.place__body { padding: 72px var(--pad); max-width: 640px; }
.place__body > p { color: var(--ink-2); margin: 22px 0 30px; max-width: 46ch; }
.place__facts { display: grid; gap: 14px; margin-bottom: 30px; }
.place__facts div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; border-top: 1px solid var(--line); padding-top: 12px; }
.place__facts dt { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); padding-top: 3px; }
.place__facts dd { margin: 0; }
@media (min-width: 900px) {
  .place { grid-template-columns: 1fr 1fr; }
  .place__media { min-height: 640px; }
  .place__body { padding: 110px var(--pad); align-self: center; }
}

/* ---------- bilete ---------- */
.tickets { padding: 110px var(--pad) 110px; max-width: var(--max); margin: 0 auto; }
.tickets__head { max-width: 900px; margin-bottom: 56px; }
.tickets__grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.ticket {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px 28px;
  display: flex; flex-direction: column; gap: 20px;
  background: var(--paper);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.ticket:hover { transform: translateY(-3px); box-shadow: 0 30px 50px -30px rgba(14,22,38,.3); }
.ticket--featured { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.ticket__name { font-family: var(--serif); font-size: 28px; font-weight: 400; display: flex; flex-direction: column; gap: 4px; }
.ticket__name small { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }
.ticket__price { font-family: var(--serif); font-weight: 300; font-size: clamp(44px, 5vw, 64px); line-height: 1; letter-spacing: -.02em; }
.ticket__price small { font-size: 18px; letter-spacing: 0; margin-left: 6px; opacity: .7; }
.ticket__features { display: grid; gap: 10px; font-size: 15px; flex: 1; }
.ticket__features li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; opacity: .85; }
.ticket__features li::before { content: ''; width: 12px; height: 1px; background: currentColor; margin-top: 11px; }
.ticket .btn { width: 100%; }
.ticket--featured .btn { background: var(--cream); color: var(--forest); }
.ticket--featured .btn:hover { background: #fff; }
@media (min-width: 820px) { .tickets__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } .ticket { padding: 36px 34px 34px; } }

/* ---------- faq ---------- */
.faq { padding: 60px var(--pad) 140px; max-width: 900px; margin: 0 auto; }
.faq__head { margin-bottom: 40px; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: grid; grid-template-columns: 1fr 28px; gap: 16px; align-items: center;
  padding: 22px 0; font-family: var(--serif); font-size: clamp(19px, 2vw, 24px); line-height: 1.2;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--sans); font-weight: 300; font-size: 26px; color: var(--forest); transition: transform .3s var(--ease); text-align: center; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 44px 24px 0; color: var(--ink-2); max-width: 60ch; }

/* ---------- finalul: punctul de întâlnire ---------- */
.finale {
  background: linear-gradient(180deg, rgba(11,26,54,.55), rgba(11,26,54,.88)), url(../assets/photos/finale.jpg?v=36) center / cover no-repeat;
  color: var(--cream);
  min-height: 92svh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  text-align: center; padding: 120px var(--pad);
  position: relative; overflow: hidden;
}
.finale__mark {
  width: 10px; height: 10px; border-radius: 50%; background: var(--cream);
  transform: scale(0); transition: transform .8s var(--ease) .1s;
}
.finale.is-met .finale__mark { transform: scale(1); }
.finale__title { font-family: var(--serif); font-weight: 300; font-size: clamp(44px, 9vw, 120px); line-height: 1; letter-spacing: -.025em; margin-top: 8px; }
.finale__sub { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; opacity: .6; margin-bottom: 10px; }

/* ---------- footer ---------- */
.footer { background: var(--forest-deep); color: var(--cream); padding: 60px var(--pad) 40px; border-top: 1px solid rgba(245,246,248,.12); }
.footer__brand { display: flex; align-items: center; gap: 16px; margin-bottom: 44px; max-width: var(--max); margin-inline: auto; }
.footer__name { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.footer__tag { font-family: var(--serif); font-style: italic; opacity: .7; font-size: 16px; }
.footer__cols { display: grid; grid-template-columns: 1fr; gap: 32px; max-width: var(--max); margin: 0 auto 48px; }
.footer__cols div { display: grid; gap: 8px; font-size: 15px; }
.footer__cols a { opacity: .7; transition: opacity .2s; }
.footer__cols a:hover { opacity: 1; }
.footer__h { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; opacity: .5; margin-bottom: 4px; }
.footer__copy { font-size: 13px; opacity: .45; max-width: var(--max); margin: 0 auto; }
@media (min-width: 720px) { .footer__cols { grid-template-columns: repeat(2, max-content); gap: 32px 96px; } }

/* ---------- CTA persistent ---------- */
.sticky {
  position: fixed; z-index: 45; left: 12px; right: 12px; bottom: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 10px 10px 18px;
  background: rgba(14,22,38,.92); color: var(--cream);
  backdrop-filter: blur(10px); border-radius: 999px;
  transform: translateY(120%); opacity: 0;
  transition: transform .5s var(--ease), opacity .4s;
}
.sticky.is-visible { transform: none; opacity: 1; }
.sticky__text { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.sticky .btn--small { background: var(--cream); color: var(--forest); }
@media (min-width: 900px) { .sticky { left: auto; right: 24px; bottom: 24px; } }

/* ---------- reveal la scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .55s, transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], .hero__title .line, .hero__meta, .hero__lede, .hero__cta { opacity: 1 !important; transform: none !important; transition: none !important; }
  .worlds { height: auto; padding: 120px var(--pad); }
  .worlds__stage { position: static; height: auto; flex-direction: column; gap: 12px; }
  .worlds__word, .worlds__together { position: static; transform: none !important; opacity: 1 !important; }
}

/* ---------- fotografie ----------
   Imaginile de mai jos sunt placeholder-e Unsplash. Se înlocuiesc cu fotografie
   documentară din edițiile trecute: același nume de fișier, aceeași cale. */
[data-photo] { background-color: var(--sand); background-size: cover; background-position: center; position: relative; }
[data-photo="dawn"] { background-image: url(../assets/photos/dawn.jpg?v=36); }
[data-photo="morning"] { background-image: url(../assets/photos/morning.jpg?v=36); }
[data-photo="noon"] { background-image: url(../assets/photos/noon.jpg?v=36); }
[data-photo="afternoon"] { background-image: url(../assets/photos/afternoon.jpg?v=36); }
[data-photo="dusk"] { background-image: url(../assets/photos/dusk.jpg?v=36); }
[data-photo="night"] { background-image: url(../assets/photos/night.jpg?v=36); }
[data-photo="sovata"] { background-image: url(../assets/photos/venue.jpg?v=36); }
[data-photo="why"] { background-image: url(../assets/photos/why.jpg?v=36); }

/* fotografiile intră cu un ușor zoom-out la scroll */
.moment__photo { overflow: hidden; }
.moment__photo::before { content: ''; position: absolute; inset: 0; background: inherit; transform: scale(1.08); transition: transform 1.4s var(--ease); }
.moment.is-in .moment__photo::before { transform: scale(1); }

@media (min-width: 900px) and (hover: hover) {
  .community, .finale { background-attachment: fixed, fixed; }
}
