/* ============================================================
   CRAIOVA BUSINESS CLUB — Premium Redesign v2
   Philosophy: Minimal · Corporate · Dark · Gold
   NO EMOJIS · SVG Icons · Staggered Animations
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --bg:          #0B1326;
  --bg-2:        #070F1E;
  --bg-card:     #0E1A32;
  --bg-elevated: #122244;

  --border:      rgba(212,175,55,0.22);
  --border-sub:  rgba(255,255,255,0.08);

  --gold:        #D4AF37;
  --gold-light:  #E8C84A;
  --gold-dim:    rgba(212,175,55,0.10);
  --gold-glow:   rgba(212,175,55,0.22);
  --gold-glow-2: rgba(212,175,55,0.07);

  --text:        #F0F2FA;
  --text-2:      #8B93A8;
  --text-3:      #4E5569;

  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --t:           0.3s;
  --t-slow:      0.6s;

  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 48px rgba(201,168,76,0.12);
  --shadow-card: 0 2px 20px rgba(0,0,0,0.4);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Film grain micro-texture — non-interactive, blends over everything */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; opacity: 0.5; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; }

.display-serif { font-family: 'Montserrat', sans-serif; }
.gold  { color: var(--gold); }
.gradient-text {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 55%, #F5DFA0 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 28px; }
.section        { padding: 110px 0; }
.section--sm    { padding: 64px 0; }

/* ── BADGE ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--gold-dim);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
/* NO pulsing dot — replaced with static accent line */
.badge::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  border-radius: 1px;
  display: block;
}

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 1px;
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.section-header p { color: var(--text-2); margin-top: 18px; font-size: 1.05rem; line-height: 1.75; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              background var(--t) var(--ease),
              border-color var(--t) var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0F121C;
  box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t) var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(201,168,76,0.38); }
.btn-primary:hover::after { background: rgba(255,255,255,0.08); }

.btn-outline {
  border: 1px solid var(--border-sub);
  color: var(--text);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
}
.btn-outline:hover { border-color: var(--border); color: var(--gold); background: var(--gold-dim); transform: translateY(-2px); }

.btn-ghost { color: var(--gold); padding: 10px 0; gap: 8px; font-size: 0.85rem; font-weight: 600; }
.btn-ghost svg { transition: transform var(--t) var(--ease); }
.btn-ghost:hover svg { transform: translateX(5px); }

/* ── CARD ────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--t) var(--ease),
              transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
}
.card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.card:hover::before { opacity: 1; }

/* ── STAGGER ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0.00s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.40s; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 22px 0;
  transition: padding var(--t) var(--ease), background var(--t) var(--ease), border-color var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(7, 15, 30, 0.94);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: var(--border-sub);
  padding: 14px 0;
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; }
.navbar__logo img { height: 38px; width: auto; }
.navbar__menu { display: flex; align-items: center; gap: 4px; }
.navbar__link {
  padding: 8px 14px;
  font-size: 0.83rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--text-2); border-radius: var(--radius-sm);
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
}
.navbar__link:hover { color: var(--text); }
.navbar__link.active { color: var(--gold); }
.navbar__cta {
  margin-left: 12px; padding: 10px 22px; font-size: 0.8rem;
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid rgba(201,168,76,0.55) !important;
  box-shadow: none !important;
}
.navbar__cta::after { display: none !important; }
.navbar__cta:hover {
  background: var(--gold-dim) !important;
  border-color: var(--gold) !important;
  transform: translateY(-2px);
}

.navbar__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.navbar__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 1px; transition: var(--t); }

.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 1100; /* peste navbar (1000), ca X-ul să fie deasupra hamburger-ului */
  background: rgba(15,18,28,0.98); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.4rem; font-weight: 600; color: var(--text-2); padding: 14px 32px; transition: color var(--t); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: 20px; font-size: 0.95rem; }
/* Text închis pe butonul auriu — altfel regula „.mobile-nav a" îl face gri/invizibil */
.mobile-nav .btn-primary { color: #0F121C; }
.mobile-nav__close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 44px; height: 44px;           /* tap target mare pe mobil */
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; line-height: 1;
  color: #fff;                          /* alb, mereu vizibil */
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.mobile-nav__close:hover { background: var(--gold-dim); color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 0%, rgba(212,175,55,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 100% 100%, rgba(212,175,55,0.04) 0%, transparent 60%),
    var(--bg);
  z-index: 0;
}
.hero__grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* ── Two-column split: video left · content right ─────────── */
.hero__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT column — video animation, no pointer-events */
.hero__col-video {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  pointer-events: none;
  /* fade to right so it blends into the content half */
  mask-image: linear-gradient(to right, black 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 55%, transparent 100%);
}
.hero__col-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

/* Variantă fără coloana video — un singur rând centrat */
.hero__cols--single {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}
.hero__col-content--centered {
  padding: 160px 40px 100px;
  text-align: left;
}
.hero__col-content--centered .hero__sub { max-width: 620px; }
.hero__col-content--centered .hero__stats { max-width: 560px; }

/* RIGHT column — text, actions, stats */
.hero__col-content {
  padding: 130px 80px 80px 56px;
  position: relative;
  z-index: 2;
}
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.hero__eyebrow-line { width: 40px; height: 1px; background: var(--gold); opacity: 0.5; }
.hero__eyebrow span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; }
.hero__sub { font-size: 1.08rem; color: var(--text-2); max-width: 520px; margin-bottom: 48px; line-height: 1.78; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
/* "Video Despre Noi" button — guaranteed above every decorative layer */
.hero__video-btn { position: relative; z-index: 2; pointer-events: auto; }
.hero__stats { position: relative; z-index: 1; display: flex; gap: 40px; margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--border-sub); flex-wrap: wrap; }
.hero__stat-num { font-family: 'Montserrat', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.hero__stat-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-top: 7px; }

/* neutralise old absolute-panel classes (no longer in HTML but kept safe) */
.hero__image-block { display: none !important; }
.hero__gallery-col { display: none; }
.hero__gallery-img { display: none; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats { background: var(--bg-2); border-top: 1px solid var(--border-sub); border-bottom: 1px solid var(--border-sub); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item { padding: 64px 48px; text-align: center; position: relative; }
.stats__item + .stats__item::before { content: ''; position: absolute; left: 0; top: 30%; bottom: 30%; width: 1px; background: var(--border-sub); }
.stats__num { font-family: 'Playfair Display', serif; font-size: 3.4rem; font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.03em; }
.stats__label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-3); margin-top: 10px; }

/* ── ABOUT / FOUNDER — ASYMMETRIC ────────────────────────── */
.about { background: var(--bg-2); position: relative; overflow: hidden; }
.about::after {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Founder asymmetric layout */
.founder-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.founder-photo-col { position: relative; }
.founder-photo-frame {
  position: relative;
  width: 280px;
}
.founder-photo-frame img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  border-radius: 140px 140px 20px 20px;
  display: block;
  position: relative; z-index: 1;
}
.founder-photo-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 141px 141px 21px 21px;
  background: linear-gradient(160deg, var(--gold) 0%, transparent 60%);
  z-index: 0;
}
.founder-photo-frame::after {
  content: '';
  position: absolute;
  bottom: -24px; left: 24px; right: -24px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.18) 0%, transparent 70%);
  filter: blur(16px);
  z-index: 0;
}
.founder-name-block {
  margin-top: 28px;
}
.founder-name-block .name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.01em;
}
.founder-name-block .role {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

.founder-content-col { padding-top: 12px; }
.founder-content-col .badge { display: inline-flex; }
.founder-content-col h2 { margin-bottom: 0; }
.founder-content-col .divider { margin: 24px 0; }

.founder-text p {
  color: var(--text-2); line-height: 1.85; font-size: 0.95rem;
  max-width: 65ch;
  margin-bottom: 20px;
}
.founder-text p strong { color: var(--text); font-weight: 600; }

.founder-quote {
  margin-top: 36px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.founder-quote .quote-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--text); line-height: 1.5;
  letter-spacing: -0.01em;
}
.founder-quote .quote-attr {
  font-size: 0.78rem; color: var(--text-3);
  margin-top: 10px; font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── VALUES — PREMIUM GRID ───────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-sub);
  border-radius: var(--radius);
  overflow: hidden;
}
.value-item {
  background: var(--bg-card);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: background var(--t) var(--ease), transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.value-item__icon,
.value-item__num,
.value-item h3,
.value-item p {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.value-item::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
  transform: scaleX(0);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.value-item:hover { background: var(--bg-elevated); }
.value-item:hover::before { opacity: 1; transform: scaleX(1); }

.value-item__icon {
  width: 44px; height: 44px;
  margin-bottom: 22px;
  color: var(--gold);
  opacity: 0.85;
}
.value-item__num {
  position: absolute; top: 28px; right: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--border-sub);
  line-height: 1; letter-spacing: -0.04em;
  transition: color var(--t-slow) var(--ease);
}
.value-item:hover .value-item__num { color: rgba(201,168,76,0.1); }
.value-item h3 { font-size: 1rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.value-item p { color: var(--text-2); font-size: 0.85rem; line-height: 1.72; }

/* ── PRESENCE SECTION (replaces generic map) ─────────────── */
.presence { background: var(--bg-2); overflow: hidden; position: relative; }
.presence::before {
  content: '';
  position: absolute; top: -300px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.presence__inner { text-align: center; position: relative; z-index: 1; }
.presence__watermark {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text); opacity: 0.035;
  user-select: none; pointer-events: none;
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  white-space: nowrap;
}
.presence__overline {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 32px;
}
.presence__overline::before, .presence__overline::after {
  content: ''; flex: 1; max-width: 80px; height: 1px;
  background: var(--gold); opacity: 0.3;
}
.presence__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px;
}
.presence__sub {
  color: var(--text-2); font-size: 1.05rem; line-height: 1.8;
  max-width: 540px; margin: 0 auto 64px;
}
.presence__stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border-sub);
  border-radius: var(--radius); overflow: hidden;
  max-width: 720px; margin: 0 auto 64px;
}
.presence__stat { background: var(--bg-card); padding: 40px 24px; text-align: center; }
.presence__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -0.03em; margin-bottom: 10px;
}
.presence__stat-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3);
}
.presence__pillars {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; max-width: 880px; margin: 0 auto;
}
.presence__pillar {
  text-align: center; padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
  cursor: default;
}
.presence__pillar:hover { border-color: var(--border); background: var(--bg-elevated); }
.presence__pillar-icon {
  width: 44px; height: 44px; margin: 0 auto 14px;
  background: var(--gold-dim); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: background var(--t) var(--ease);
}
.presence__pillar:hover .presence__pillar-icon { background: var(--gold); color: var(--bg); }
.presence__pillar-icon svg { width: 20px; height: 20px; }
.presence__pillar h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 6px; }
.presence__pillar p { font-size: 0.78rem; color: var(--text-3); line-height: 1.55; }

/* keep old .map classes from breaking other pages */
.map { background: var(--bg-2); }
.map__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.map-svg-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  padding: 32px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.map-svg-wrap svg { width: 100%; height: 100%; }

/* Romania SVG styles */
.county-path {
  fill: rgba(201, 168, 76, 0.04);
  stroke: rgba(201, 168, 76, 0.15);
  stroke-width: 0.8;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.county-path:hover {
  fill: rgba(201, 168, 76, 0.16);
  stroke: rgba(201, 168, 76, 0.6);
  cursor: pointer;
}

/* Tooltip styles */
.map-tooltip {
  position: absolute;
  background: rgba(11, 19, 38, 0.95);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -100%) scale(0.9);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  white-space: nowrap;
}
.map-tooltip.visible {
  opacity: 1;
  transform: translate(-50%, -100%) scale(1);
}

.city-dot-group { cursor: pointer; }
.city-dot {
  fill: var(--gold);
  opacity: 0;
  transform-origin: center;
  animation: city-appear 0.4s var(--ease-out) forwards;
}
.city-dot-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0;
  animation: city-ring 2.5s ease-out infinite;
}
.city-label {
  fill: var(--text-2);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: city-appear 0.4s var(--ease-out) forwards;
}
.city-craiova .city-dot  { animation-delay: 0.2s; }
.city-craiova .city-dot-ring { animation-delay: 0.2s; }
.city-craiova .city-label { animation-delay: 0.4s; }
.city-bucharest .city-dot { animation-delay: 0.5s; }
.city-bucharest .city-dot-ring { animation-delay: 0.5s; }
.city-bucharest .city-label { animation-delay: 0.7s; }
.city-cluj .city-dot { animation-delay: 0.8s; }
.city-cluj .city-dot-ring { animation-delay: 0.8s; }
.city-cluj .city-label { animation-delay: 1.0s; }
.city-timisoara .city-dot { animation-delay: 1.1s; }
.city-timisoara .city-dot-ring { animation-delay: 1.1s; }
.city-timisoara .city-label { animation-delay: 1.3s; }
.city-iasi .city-dot { animation-delay: 1.4s; }
.city-iasi .city-dot-ring { animation-delay: 1.4s; }
.city-iasi .city-label { animation-delay: 1.6s; }
.city-constanta .city-dot { animation-delay: 1.7s; }
.city-constanta .city-dot-ring { animation-delay: 1.7s; }
.city-constanta .city-label { animation-delay: 1.9s; }

/* Connection lines */
.city-line {
  stroke: var(--gold);
  stroke-width: 0.5;
  stroke-dasharray: 4 4;
  opacity: 0;
  animation: line-appear 0.6s var(--ease-out) forwards;
}
.city-line:nth-child(1) { animation-delay: 0.9s; }
.city-line:nth-child(2) { animation-delay: 1.1s; }
.city-line:nth-child(3) { animation-delay: 1.3s; }

/* Map location list */
.map__locations { margin-top: 36px; display: flex; flex-direction: column; gap: 4px; }
.map__loc-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
  cursor: default;
}
.map__loc-item:hover { background: var(--bg-card); border-color: var(--border-sub); }
.map__loc-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.map__loc-icon svg { width: 16px; height: 16px; }
.map__loc-text { font-size: 0.875rem; color: var(--text-2); font-weight: 400; }
.map__loc-text strong { color: var(--text); font-weight: 600; display: block; font-size: 0.8rem; margin-bottom: 1px; }

/* ── FEATURES / OPORTUNITATI ──────────────────────────────── */
.features__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.features__icon svg { width: 22px; height: 22px; }
.card:hover .features__icon { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.features__card h3 { margin-bottom: 12px; font-size: 1rem; }
.features__card p { color: var(--text-2); font-size: 0.875rem; line-height: 1.72; margin-bottom: 22px; }
.features__img { width: 100%; height: 190px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 24px; opacity: 0.55; transition: opacity var(--t-slow) var(--ease); }
.features__card { display: flex; flex-direction: column; }
.features__card p { flex: 1; }
.card:hover .features__img { opacity: 1; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
/* ── TESTIMONIALS (3D Circular Redesign) ─────────────────── */
.testimonials {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.testimonial-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
}

/* 3D Image Stack Container */
.image-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 320px;
  perspective: 1200px;
  margin: 40px auto 0 auto;
}
@media (min-width: 992px) {
  .image-container {
    max-width: 400px;
    height: 400px;
    margin: 40px 0 0 0;
  }
}

.testimonial-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-sub);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, z-index;
}

/* Content Panel styling */
.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars span {
  color: var(--gold);
  font-size: 1.1rem;
}
.testimonial-quote {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 400;
  min-height: 180px;
}
@media (min-width: 768px) {
  .testimonial-quote {
    min-height: 140px;
  }
}
.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.testimonial-designation {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-2);
  margin-bottom: 32px;
}

/* Stagger word animations */
.word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(6px);
  animation: wordReveal 0.28s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes wordReveal {
  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px);
  }
}

/* Fade in class for other details */
.fade-in {
  animation: contentFadeIn 0.5s var(--ease) forwards;
}
@keyframes contentFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Navigation buttons styling */
.arrow-buttons {
  display: flex;
  gap: 16px;
}
.arrow-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--ease);
  cursor: pointer;
  outline: none;
}
.arrow-button:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.05);
}
.arrow-button svg {
  transition: transform var(--t) var(--ease);
}
.arrow-button:active {
  transform: scale(0.95);
}

/* ── EVENTS SLIDER ───────────────────────────────────────── */
.event-slider { position: relative; background: var(--bg-2); }
.event-slider__track-wrap { overflow: hidden; border-radius: var(--radius-lg); }
.event-slider__track { display: flex; transition: transform 0.6s var(--ease); }
.event-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.event-slide__content {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 1;
}
.event-slide__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem; font-weight: 900;
  line-height: 1; letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--gold), transparent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  opacity: 0.4;
}
.event-slide__icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 22px;
}
.event-slide__icon svg { width: 22px; height: 22px; }
.event-slide__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 14px; letter-spacing: -0.02em; line-height: 1.2; }
.event-slide__desc { color: var(--text-2); font-size: 0.9rem; line-height: 1.75; margin-bottom: 32px; }
.event-slide__img {
  position: relative; overflow: hidden;
}
.event-slide__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: opacity 0.5s var(--ease), transform 0.6s var(--ease); }
.event-slide:hover .event-slide__img img { opacity: 0.7; transform: scale(1.03); }
.event-slide__img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg-card) 0%, transparent 40%);
  z-index: 1; pointer-events: none;
}

.event-slider__controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 36px;
}
.event-slider__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t) var(--ease);
}
.event-slider__btn:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.event-slider__btn svg { width: 20px; height: 20px; }
.event-slider__dots { display: flex; gap: 8px; }
.event-slider__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-sub); border: none; transition: all var(--t) var(--ease); }
.event-slider__dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* ── GALLERY CAROUSEL ────────────────────────────────────── */
.gallery { background: var(--bg-2); }

.gcarousel { position: relative; overflow: hidden; border-radius: var(--radius); }

.gcarousel__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.gcarousel__slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.gcarousel__slide img {
  width: 100%; height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}
.gcarousel:hover .gcarousel__slide.active img { transform: scale(1.03); }

.gcarousel__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 28px 24px;
  background: linear-gradient(to top, rgba(7,15,30,0.88) 0%, transparent 100%);
  color: var(--gold);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}

.gcarousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(7,15,30,0.7); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; backdrop-filter: blur(8px);
  color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background var(--t), border-color var(--t), transform 0.2s;
  z-index: 2;
}
.gcarousel__btn:hover { background: var(--gold); border-color: var(--gold); color: #0F121C; transform: translateY(-50%) scale(1.08); }
.gcarousel__btn--prev { left: 16px; }
.gcarousel__btn--next { right: 16px; }

.gcarousel__dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 2;
}
.gcarousel__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none; padding: 0; cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.gcarousel__dot.active { background: var(--gold); transform: scale(1.3); }

@media (max-width: 768px) {
  .gcarousel__slide img { height: 260px; }
  .gcarousel__btn { width: 36px; height: 36px; }
}

/* ── PARTNERS GRID (with correct hover) ─────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2px;
  background: var(--border-sub);
  border-radius: var(--radius);
  overflow: hidden;
}
.partner-card {
  background: var(--bg-card);
  padding: 28px 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  min-height: 110px;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
  cursor: default;
  position: relative;
}
.partner-card:hover {
  background: var(--bg-elevated);
  box-shadow: inset 0 0 0 1px var(--border);
  transform: scale(1.01);
  z-index: 1;
}
/* THE FIX: logo full color by default */
.partner-card img {
  height: 44px; max-width: 110px;
  object-fit: contain;
  filter: none;
  transition: transform 0.4s var(--ease);
  display: block;
}
.partner-card:hover img {
  transform: scale(1.06);
}
.partner-card span { font-size: 0.68rem; color: var(--text-3); text-align: center; font-weight: 500; letter-spacing: 0.02em; }

/* Partners marquee */
.partners { background: var(--bg-2); }
.partners__marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); }
.partners__track { display: flex; gap: 20px; animation: marquee 32s linear infinite; width: max-content; }
.partners__track:hover { animation-play-state: paused; }
.partners__logo { width: 110px; height: 56px; object-fit: contain; filter: none; transition: transform 0.4s var(--ease); flex-shrink: 0; }
.partners__logo:hover { transform: scale(1.06); }

/* ── PARTNERSHIP BENEFITS — redesigned ───────────────────── */
.partnership-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--border-sub);
  border-radius: var(--radius);
  overflow: hidden;
}
.benefit-row {
  background: var(--bg-card);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  align-items: stretch;
  transition: background var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit-row::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
}
.benefit-row:hover { background: var(--bg-elevated); }
.benefit-row:hover::after { opacity: 1; }
.benefit-icon-cell {
  display: flex; align-items: center; justify-content: center;
  padding: 32px 0;
  border-right: 1px solid var(--border-sub);
  color: var(--gold);
}
.benefit-icon-cell svg { width: 24px; height: 24px; opacity: 0.8; transition: opacity var(--t) var(--ease), transform var(--t) var(--ease); }
.benefit-row:hover .benefit-icon-cell svg { opacity: 1; transform: scale(1.12); }
.benefit-text-cell { padding: 28px 32px; }
.benefit-text-cell h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.benefit-text-cell p { font-size: 0.83rem; color: var(--text-2); line-height: 1.65; }

/* CTA partnership button with shimmer hover */
.btn-partnership {
  display: inline-block;
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg);
  padding: 16px 40px;
  font-size: 0.875rem; font-weight: 700; letter-spacing: 0.04em;
  border-radius: 100px;
  box-shadow: 0 4px 24px var(--gold-glow);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.btn-partnership::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn-partnership:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(201,168,76,0.4); }
.btn-partnership:hover::before { left: 160%; }

/* ── BLOG ────────────────────────────────────────────────── */
.blog { background: var(--bg); }
.blog__card { display: flex; flex-direction: column; }
.blog__img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-sm) var(--radius-sm) 0 0; height: 200px; }
.blog__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.blog__card:hover .blog__img-wrap img { transform: scale(1.04); }
.blog__tag { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--bg); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.blog__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog__meta { font-size: 0.72rem; color: var(--text-3); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; font-weight: 500; letter-spacing: 0.02em; }
.blog__body h3 { margin-bottom: 12px; font-size: 0.98rem; line-height: 1.4; transition: color var(--t) var(--ease); }
.blog__card:hover .blog__body h3 { color: var(--gold); }
.blog__body p { color: var(--text-2); font-size: 0.85rem; line-height: 1.7; flex: 1; }
.blog__link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.78rem; font-weight: 600; margin-top: 18px; letter-spacing: 0.02em; transition: gap var(--t) var(--ease); }
.blog__link:hover { gap: 10px; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: var(--bg-2); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 90% at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 60%); }
.cta-inner { position: relative; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 18px; }
.cta-inner p { color: var(--text-2); margin-bottom: 40px; font-size: 1.02rem; line-height: 1.8; }
.cta-inner__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-inner__trust { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.cta-inner__trust span { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-3); font-weight: 500; }
.trust-check { width: 16px; height: 16px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-check svg { width: 9px; height: 9px; color: var(--gold); }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  padding: 168px 0 88px;
  background: radial-gradient(ellipse 80% 55% at 50% -5%, rgba(201,168,76,0.09) 0%, transparent 60%), var(--bg-2);
  border-bottom: 1px solid var(--border-sub);
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--text-2); max-width: 540px; margin: 0 auto; font-size: 1.02rem; line-height: 1.75; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact__info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact__info-icon { width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--gold-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact__info-icon svg { width: 18px; height: 18px; }
.contact__info-label { font-size: 0.68rem; color: var(--text-3); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.contact__info-value { font-size: 0.9rem; font-weight: 500; }
.contact__form { background: var(--bg-card); border: 1px solid var(--border-sub); border-radius: var(--radius); padding: 40px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--bg-2); border: 1px solid var(--border-sub); border-radius: var(--radius-sm); padding: 13px 16px; color: var(--text); font-family: inherit; font-size: 0.88rem; transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234E5569' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #050C19;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 96px 0 0;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
}
.footer__brand img { height: 42px; margin-bottom: 20px; }
.footer__brand p {
  color: var(--text-3); font-size: 0.84rem; line-height: 1.85;
  max-width: 255px; margin-bottom: 24px;
}
.footer__social { display: flex; gap: 10px; margin-bottom: 28px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); transition: all var(--t) var(--ease);
}
.footer__social a:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }
.footer__social a svg { width: 14px; height: 14px; }

/* Mini newsletter în footer */
.footer__nl { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px; }
.footer__nl p { font-size: 0.78rem; color: var(--text-3); margin-bottom: 12px; line-height: 1.6; }
.footer__nl form { display: flex; gap: 8px; }
.footer__nl input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px; padding: 10px 14px; color: var(--text); font-size: 0.82rem; outline: none;
  transition: border-color var(--t);
}
.footer__nl input:focus { border-color: rgba(201,168,76,0.45); }
.footer__nl input::placeholder { color: var(--text-3); }
.footer__nl button {
  background: var(--gold); color: #0F121C; font-weight: 700; font-size: 0.78rem;
  padding: 10px 16px; border-radius: 8px; white-space: nowrap;
  transition: opacity var(--t), transform var(--t);
}
.footer__nl button:hover { opacity: 0.88; transform: translateY(-1px); }

.footer__col h4 {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
  display: flex; align-items: center; gap: 8px;
}
.footer__col h4::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.2); }
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul li a {
  font-size: 0.84rem; color: rgba(170,170,180,0.8);
  transition: color var(--t) var(--ease); font-weight: 400;
  display: flex; align-items: center; gap: 6px;
}
.footer__col ul li a::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0; flex-shrink: 0;
  transition: opacity var(--t);
}
.footer__col ul li a:hover { color: var(--gold); }
.footer__col ul li a:hover::before { opacity: 1; }

.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0; }

.footer__bottom {
  padding: 28px 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.76rem; color: var(--text-3); }
.footer__badges { display: flex; gap: 14px; align-items: center; }
.footer__badges img {
  height: 26px; filter: grayscale(100%) brightness(0.4); opacity: 0.55;
  transition: all 0.3s;
}
.footer__badges img:hover { filter: none; opacity: 1; }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer__legal a {
  font-size: 0.72rem; color: rgba(150,150,165,0.65);
  transition: color var(--t); letter-spacing: 0.02em;
}
.footer__legal a:hover { color: var(--gold); }
.footer__legal span { color: rgba(255,255,255,0.1); font-size: 0.7rem; }

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .footer__nl form { flex-direction: column; }
}

/* ── KEYFRAMES ───────────────────────────────────────────── */
@keyframes scroll-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes marquee   { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@keyframes city-appear {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes city-ring {
  0%   { r: 4; opacity: 0.7; }
  100% { r: 14; opacity: 0; }
}
@keyframes line-appear {
  from { opacity: 0; stroke-dashoffset: 20; }
  to   { opacity: 0.18; stroke-dashoffset: 0; }
}

/* ── GRID UTILITIES ──────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats__grid       { grid-template-columns: repeat(2, 1fr); }
  .stats__item + .stats__item::before { display: none; }
  .footer__grid      { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero__col-content { padding: 130px 48px 80px 40px; }
  .map__inner        { grid-template-columns: 1fr; }
  .gallery__grid     { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:first-child { grid-column: span 2; }
  .founder-layout    { grid-template-columns: 260px 1fr; gap: 48px; }
  .values-grid       { grid-template-columns: repeat(2, 1fr); }
  .event-slide       { grid-template-columns: 1fr; min-height: auto; }
  .event-slide__img  { height: 220px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section   { padding: 72px 0; }
  .navbar__menu { display: none; }
  .navbar__hamburger { display: flex; }
  .hero__cols { grid-template-columns: 1fr; }
  .hero__col-video { display: none; }
  .hero__col-content { padding: 108px 24px 60px; }
  .hero__stats { gap: 0; flex-wrap: nowrap; justify-content: space-between; }
  .hero__stat { flex: 1 1 0; min-width: 0; }
  .hero__stat-num { font-size: 1.7rem; }
  .hero__stat-label { font-size: 0.58rem; letter-spacing: 0.08em; }
  .presence__pillars { grid-template-columns: repeat(2,1fr); }
  .presence__stats   { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .founder-layout { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .founder-photo-frame { margin: 0 auto; }
  .founder-quote { text-align: left; }
  .values-grid   { grid-template-columns: 1fr; }
  .testimonials__slide { min-width: 100%; }
  .footer__grid  { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .contact__grid { grid-template-columns: 1fr; }
  .page-hero { padding: 128px 0 60px; }
  .partnership-benefits { gap: 2px; }
  .event-slide__content { padding: 40px 32px; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item:first-child { grid-column: span 1; }
  .cta-inner__trust { flex-direction: column; gap: 10px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ── TEXT EFFECTS (ibelick Presets) ──────────────────────── */
.text-effect-container {
  display: block;
}

.text-effect-segment {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity, filter;
}

/* Fix for gradient text transparency issue when processed as inline-block text segments */
.text-effect-container .gradient-text {
  background: none !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
}
.text-effect-container .gradient-text .text-effect-segment {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 55%, #F5DFA0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0.15em 0.05em;
  margin: -0.15em -0.05em;
}

/* Blur preset */
.text-effect-animate.text-effect-blur .text-effect-segment {
  filter: blur(12px);
  animation: textEffectBlur 0.45s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes textEffectBlur {
  to {
    opacity: 1;
    filter: blur(0px);
  }
}

/* Slide preset */
.text-effect-animate.text-effect-slide .text-effect-segment {
  transform: translateY(18px);
  animation: textEffectSlide 0.45s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes textEffectSlide {
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Scale preset */
.text-effect-animate.text-effect-scale .text-effect-segment {
  transform: scale(0.3);
  animation: textEffectScale 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes textEffectScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Fade preset */
.text-effect-animate.text-effect-fade .text-effect-segment {
  animation: textEffectFade 0.4s ease forwards;
}
@keyframes textEffectFade {
  to {
    opacity: 1;
  }
}

/* ── TILTED SCROLL GRID (ScrollTiltedGrid adaptation) ────── */
.tilted-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px;
}
@media (max-width: 768px) {
  .tilted-grid {
    grid-template-columns: 1fr;
    gap: 72px;
    max-width: 440px;
    padding: 40px 20px;
  }
}

.tilted-tile {
  position: relative;
  z-index: 10;
  margin: 0;
}

.tilted-tile__inner {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-sub);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.tilted-tile__inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  border-color: rgba(212,175,55,0.3);
}

.tilted-tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s var(--ease);
}
.tilted-tile__inner:hover .tilted-tile__bg {
  transform: scale(1.04);
}

/* Premium gradient overlay for clear typography rendering */
.tilted-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 19, 38, 0) 0%,
    rgba(11, 19, 38, 0.4) 45%,
    rgba(7, 15, 30, 0.95) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.tilted-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .tilted-tile__content {
    padding: 36px 32px;
  }
}

.tilted-tile__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold-light);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.tilted-tile__meta {
  font-size: 0.75rem;
  color: var(--text-2);
  margin-bottom: 6px;
}

.tilted-tile__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.25;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 10px;
}

.tilted-tile__desc {
  font-size: 0.83rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tilted-tile__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 600;
  transition: color var(--t) var(--ease);
}

.tilted-tile__link svg {
  transition: transform var(--t) var(--ease);
}

.tilted-tile__link:hover {
  color: var(--gold-light);
}

.tilted-tile__link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   EVENIMENTE PAGE 2.0 — modular components
   Hero · PricingTier · Perks · Archive grid · Slide-over modal
   Uses the existing token system (--gold, --bg-card, --radius…)
   ============================================================ */

/* ── EVENT HERO ──────────────────────────────────────────── */
.ev-hero {
  position: relative;
  overflow: hidden;
  padding: 168px 0 96px;
  background: var(--bg-2);
}
.ev-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% -10%, rgba(212,175,55,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 110%, rgba(212,175,55,0.06) 0%, transparent 60%),
    var(--bg-2);
}
.ev-hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 10%, transparent 100%);
}
.ev-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.ev-hero__content h1 { margin: 18px 0 20px; }
.ev-hero__sub {
  color: var(--text-2); font-size: 1.05rem; line-height: 1.8;
  max-width: 520px; margin-bottom: 32px;
}

/* meta chips */
.ev-hero__meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.ev-meta {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-sm);
}
.ev-meta__icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 8px; background: var(--gold-dim);
  border: 1px solid var(--border); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.ev-meta__icon svg { width: 16px; height: 16px; }
.ev-meta > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ev-meta__label { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); white-space: nowrap; }
.ev-meta__value { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); white-space: nowrap; }

.ev-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.ev-hero__audience {
  font-size: 0.82rem; color: var(--text-3);
  display: flex; align-items: center; gap: 10px;
}
.ev-hero__audience::before { content: ''; width: 22px; height: 1px; background: var(--gold); opacity: 0.6; }

/* hero visual card */
.ev-hero__visual { position: relative; }
.ev-hero__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-sub);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.ev-hero__card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) contrast(1.05); }
.ev-hero__card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,19,38,0.1) 0%, rgba(7,15,30,0.85) 100%);
}
.ev-hero__date-badge {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0F121C; border-radius: var(--radius);
  padding: 14px 20px; text-align: center;
  box-shadow: 0 8px 30px var(--gold-glow);
}
.ev-hero__date-badge .day { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.ev-hero__date-badge .mon { display: block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.ev-hero__visual-tag {
  position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2;
  font-size: 0.78rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.ev-hero__visual-tag span {
  background: rgba(11,19,38,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); color: var(--gold-light);
  padding: 7px 14px; border-radius: 100px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}

/* countdown */
.ev-countdown { display: flex; gap: 10px; margin-bottom: 32px; }
.ev-cd__cell {
  flex: 1; max-width: 92px; text-align: center;
  background: var(--bg-card); border: 1px solid var(--border-sub);
  border-radius: var(--radius-sm); padding: 14px 8px;
}
.ev-cd__num {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem; font-weight: 800; line-height: 1; color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.ev-cd__lbl { display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-top: 8px; }
.ev-cd__live { font-size: 0.95rem; font-weight: 600; color: var(--gold); padding: 6px 0; }

/* ── PRICING TIERS ───────────────────────────────────────── */
.ev-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.ev-pricing__note {
  text-align: center; color: var(--text-3); font-size: 0.85rem;
  margin-top: 32px; max-width: 620px; margin-left: auto; margin-right: auto;
}
.ev-tier {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.ev-tier:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: var(--shadow-card); }
.ev-tier--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,175,55,0.06), var(--bg-card) 40%);
  box-shadow: var(--shadow-gold);
}
.ev-tier__ribbon {
  position: absolute; top: -1px; right: 24px;
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0F121C; font-size: 0.64rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 0 0 10px 10px;
}
.ev-tier__ribbon svg { width: 12px; height: 12px; }
.ev-tier__name { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 800; }
.ev-tier__tagline { color: var(--text-2); font-size: 0.85rem; line-height: 1.6; margin-top: 8px; }
.ev-tier__price { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 4px; }
.ev-tier__amount {
  font-family: 'Montserrat', sans-serif; font-size: 3.2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.03em;
}
.ev-tier__currency { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-2); }
.ev-tier__vip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim); border: 1px solid var(--border);
  color: var(--gold-light); font-size: 0.76rem; font-weight: 700;
  padding: 8px 14px; border-radius: 100px; margin-top: 16px;
}
.ev-tier__vip svg { width: 13px; height: 13px; }
.ev-tier__features { margin: 26px 0 30px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.ev-tier__features li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.86rem; color: var(--text-2); line-height: 1.5; }
.ev-tier__check {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--border);
  color: var(--gold); display: inline-flex; align-items: center; justify-content: center;
}
.ev-tier__check svg { width: 11px; height: 11px; }
.ev-tier__cta { width: 100%; justify-content: center; }
.ev-tier__cta svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform var(--t) var(--ease); }
.ev-tier__cta:hover svg { transform: translateX(4px); }

/* ── PERKS ("Ce te așteaptă") ────────────────────────────── */
.ev-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-sub);
  border-radius: var(--radius);
  overflow: hidden;
}
.ev-perk {
  background: var(--bg-card);
  padding: 36px 30px;
  transition: background var(--t) var(--ease);
}
.ev-perk:hover { background: var(--bg-elevated); }
.ev-perk__icon {
  width: 50px; height: 50px; margin-bottom: 20px;
  border-radius: 12px; background: var(--gold-dim); border: 1px solid var(--border);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.ev-perk:hover .ev-perk__icon { background: var(--gold); color: var(--bg); }
.ev-perk__icon svg { width: 22px; height: 22px; }
.ev-perk__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.ev-perk__desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }

/* reservation CTA band */
.ev-reserve {
  margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}
.ev-reserve__text h3 { font-size: 1.3rem; font-family: 'Playfair Display', serif; font-weight: 800; margin-bottom: 6px; }
.ev-reserve__text p { color: var(--text-2); font-size: 0.88rem; }
.ev-reserve__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ev-reserve__phone { display: inline-flex; align-items: center; gap: 10px; }
.ev-reserve__phone svg { width: 16px; height: 16px; }

/* ── ARCHIVE (Past events) ───────────────────────────────── */
.ev-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: -32px auto 52px; }
.ev-pill {
  padding: 9px 20px; border-radius: 100px;
  border: 1px solid var(--border-sub); background: var(--bg-card);
  color: var(--text-2); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  transition: all var(--t) var(--ease);
}
.ev-pill:hover { color: var(--text); border-color: var(--border); }
.ev-pill.active { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }

.ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.ev-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-sub);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.ev-card:hover, .ev-card:focus-visible {
  transform: translateY(-4px); border-color: var(--border);
  box-shadow: var(--shadow-gold); outline: none;
}
.ev-card:focus-visible { box-shadow: 0 0 0 2px var(--gold), var(--shadow-gold); }
.ev-card__media { position: relative; height: 200px; overflow: hidden; }
.ev-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.ev-card:hover .ev-card__media img { transform: scale(1.05); }
.ev-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(11,19,38,0.78); backdrop-filter: blur(8px);
  border: 1px solid var(--border); color: var(--gold-light);
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
}
.ev-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.ev-card__meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 12px; }
.ev-card__meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; color: var(--text-3); font-weight: 500; }
.ev-card__meta svg { width: 13px; height: 13px; color: var(--gold); opacity: 0.8; }
.ev-card__title { font-size: 1.05rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; transition: color var(--t) var(--ease); }
.ev-card:hover .ev-card__title { color: var(--gold); }
.ev-card__excerpt { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; flex: 1; }
.ev-card__link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gold); font-size: 0.78rem; font-weight: 600; margin-top: 18px;
  transition: gap var(--t) var(--ease);
}
.ev-card__link svg { width: 14px; height: 14px; }
.ev-card:hover .ev-card__link { gap: 11px; }

/* edition number badge (numerologic) */
.ev-card__edition {
  position: absolute; bottom: 12px; right: 12px;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0F121C; font-size: 0.82rem; font-weight: 900; letter-spacing: -0.02em;
  padding: 5px 11px; border-radius: 100px;
  box-shadow: 0 4px 16px var(--gold-glow);
}

/* archive pagination */
.ev-archive__more { text-align: center; margin-top: 44px; }
.ev-archive__count { font-size: 0.8rem; color: var(--text-3); margin-bottom: 18px; letter-spacing: 0.02em; }
.ev-archive__btn { display: inline-flex; }

/* modal edition kicker */
.ev-modal__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 12px;
}
.ev-modal__kicker svg { width: 13px; height: 13px; }

/* ── VIDEO MODAL (homepage "Video Despre Noi") ───────────── */
.video-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden; opacity: 0;
  transition: opacity var(--t) var(--ease), visibility var(--t) var(--ease);
}
.video-modal.open { visibility: visible; opacity: 1; }
.video-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(5, 9, 18, 0.85);
  backdrop-filter: blur(6px);
}
.video-modal__panel {
  position: relative; z-index: 1;
  width: min(960px, 92vw); aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  background: #000;
  transform: scale(0.96);
  transition: transform var(--t) var(--ease);
}
.video-modal.open .video-modal__panel { transform: scale(1); }
.video-modal__frame, .video-modal__frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.video-modal__close {
  position: absolute; top: -46px; right: 0; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-sub); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t) var(--ease);
}
.video-modal__close:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.video-modal__close svg { width: 18px; height: 18px; }
@media (max-width: 768px) {
  .video-modal__close { top: 8px; right: 8px; background: rgba(11,19,38,0.75); }
}

/* ── SLIDE-OVER MODAL ────────────────────────────────────── */
.ev-modal {
  position: fixed; inset: 0; z-index: 10000;
  visibility: hidden; pointer-events: none;
}
.ev-modal.open { visibility: visible; pointer-events: auto; }
.ev-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(5, 9, 18, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.ev-modal.open .ev-modal__overlay { opacity: 1; }
.ev-modal__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(560px, 100%);
  background: var(--bg);
  border-left: 1px solid var(--border);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.ev-modal.open .ev-modal__panel { transform: translateX(0); }
.ev-modal__scroll { overflow-y: auto; height: 100%; }
.ev-modal__close {
  position: absolute; top: 18px; right: 18px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(11,19,38,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border-sub); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t) var(--ease);
}
.ev-modal__close:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.ev-modal__close svg { width: 18px; height: 18px; }
.ev-modal__media { position: relative; height: 280px; }
.ev-modal__hero { width: 100%; height: 100%; object-fit: cover; }
.ev-modal__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg) 100%);
}
.ev-modal__cat {
  position: absolute; bottom: 18px; left: 28px; z-index: 2;
  background: var(--gold-dim); border: 1px solid var(--border); color: var(--gold-light);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.ev-modal__content { padding: 28px 28px 40px; }
.ev-modal__title { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.ev-modal__meta { display: flex; flex-wrap: wrap; gap: 16px; padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--border-sub); }
.ev-modal__meta span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; color: var(--text-2); font-weight: 500; }
.ev-modal__meta svg { width: 15px; height: 15px; color: var(--gold); }
.ev-modal__desc { color: var(--text-2); font-size: 0.92rem; line-height: 1.8; margin-bottom: 24px; }
.ev-modal__highlights { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.ev-modal__highlights li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.86rem; color: var(--text); line-height: 1.5; }
.ev-modal__galtitle { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.ev-modal__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 30px; }
.ev-modal__thumb {
  aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--border-sub); padding: 0;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.ev-modal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ev-modal__thumb:hover { transform: translateY(-2px); }
.ev-modal__thumb.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.ev-modal__fb { width: 100%; justify-content: center; }
.ev-modal__fb svg { width: 16px; height: 16px; }

/* ── EVENTS PAGE RESPONSIVE ──────────────────────────────── */
@media (max-width: 980px) {
  .ev-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .ev-hero__visual { max-width: 460px; }
  .ev-perks { grid-template-columns: repeat(2, 1fr); }
  .ev-grid  { grid-template-columns: repeat(2, 1fr); }
  /* 3 tier-uri → 2 coloane pe tablet */
  .ev-pricing__grid { grid-template-columns: repeat(2, 1fr); max-width: 700px; }
}
@media (max-width: 768px) {
  .ev-hero { padding: 128px 0 72px; }
  /* 3 tier-uri → 1 coloană pe mobil */
  .ev-pricing__grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .ev-reserve { flex-direction: column; align-items: flex-start; text-align: left; padding: 28px; }
  .ev-modal__panel { width: 100%; border-left: none; }
}
@media (max-width: 560px) {
  .ev-perks { grid-template-columns: 1fr; }
  .ev-grid  { grid-template-columns: 1fr; }
  .ev-hero__meta { flex-direction: column; }
  .ev-meta { width: 100%; }
  .ev-cd__cell { padding: 12px 4px; }
  .ev-cd__num { font-size: 1.5rem; }
  .ev-reserve__actions { width: 100%; flex-direction: column; }
  .ev-reserve__actions .btn { width: 100%; justify-content: center; }
  .ev-modal__thumbs { grid-template-columns: repeat(3, 1fr); }
}

/* ── FOUNDER SECTION POLISH ── */
.about__photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about__photo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.about__photo img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 50px rgba(212,175,55,0.25);
}
.about__photo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.about__photo-role {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
}
.about__quote {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 300px;
  position: relative;
  border-top: 1px solid var(--border-sub);
  padding-top: 12px;
  margin-top: 4px;
}
.founder-photo-frame img {
  border-radius: 20px;
}
