/* =========================================================
   SipIt — Bar Mobil pentru Evenimente
   Design system + componente
   ========================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Culori de bază — "party luxe": plum foarte închis */
  --ink-900: #07030E;
  --ink-800: #0D0619;
  --ink-700: #150A28;
  --ink-600: #1E1038;
  --ink-500: #2A1750;

  /* Accente care inspiră petrecere */
  --magenta: #FF2E82;
  --violet: #9B5CFF;
  --cyan: #2BE3E6;
  --gold: #FFC94D;
  --lime: #B4FF39;

  /* Text */
  --txt: #F7F3FF;
  --txt-soft: #CFC2E8;
  --txt-dim: #9C8CBE;

  /* Linii & suprafețe */
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.07);

  /* Gradiente */
  --grad-party: linear-gradient(120deg, var(--magenta) 0%, var(--violet) 48%, var(--cyan) 100%);
  --grad-gold: linear-gradient(120deg, #FFE29A 0%, var(--gold) 45%, #E39B2E 100%);
  --grad-neon: linear-gradient(120deg, var(--cyan), var(--violet));

  /* Umbre / glow */
  --glow-magenta: 0 10px 40px -10px rgba(255, 46, 130, 0.65);
  --glow-violet: 0 10px 40px -10px rgba(155, 92, 255, 0.6);
  --shadow-card: 0 24px 60px -30px rgba(0, 0, 0, 0.9);

  /* Tipografie */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Outfit", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --wrap-narrow: 880px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --header-h: 76px;
  --section-y: clamp(64px, 9vw, 130px);
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 40px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  line-height: 1.7;
  color: var(--txt-soft);
  background: var(--ink-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--magenta); color: #fff; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- 3. Fundal ambiental global ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(155, 92, 255, 0.22), transparent 60%),
    radial-gradient(760px 520px at 92% 8%, rgba(255, 46, 130, 0.18), transparent 62%),
    radial-gradient(700px 700px at 50% 105%, rgba(43, 227, 230, 0.12), transparent 60%),
    var(--ink-900);
}

.bg-fx::after {
  /* granulație subtilă ca să nu arate "plat" */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  animation: float 18s ease-in-out infinite;
}
.orb--1 { width: 420px; height: 420px; top: -80px; left: -100px; background: rgba(255, 46, 130, 0.5); }
.orb--2 { width: 380px; height: 380px; top: 30%; right: -120px; background: rgba(43, 227, 230, 0.35); animation-delay: -6s; }
.orb--3 { width: 460px; height: 460px; bottom: -160px; left: 25%; background: rgba(155, 92, 255, 0.4); animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(40px, -30px, 0) scale(1.08); }
  66% { transform: translate3d(-30px, 25px, 0) scale(0.95); }
}

/* ---------- 4. Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 34px);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(46px, 6vw, 80px); }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.center { text-align: center; }
.stack-sm { display: grid; gap: 10px; }

/* ---------- 5. Tipografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--txt);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.h-xxl { font-size: clamp(2.6rem, 1.6rem + 4.6vw, 5.2rem); }
.h-xl  { font-size: clamp(2.1rem, 1.5rem + 2.9vw, 3.6rem); }
.h-lg  { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.2rem); }
.h-md  { font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem); }

.lead {
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.28rem);
  color: var(--txt-soft);
  max-width: 62ch;
}

.muted { color: var(--txt-dim); }
.small { font-size: 0.875rem; }

.grad-text {
  background: var(--grad-party);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.italic-serif { font-style: italic; font-family: var(--font-display); }

/* Eticheta de secțiune */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--grad-gold);
}
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--grad-gold);
}

.section-head { max-width: 720px; margin-bottom: clamp(34px, 4vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 16px; }
.section-head--center p { margin-inline: auto; }

/* ---------- 6. Butoane ---------- */
.btn {
  --btn-bg: var(--glass-2);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--txt);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.35); }
.btn:active { transform: translateY(0); }

.btn--primary {
  border-color: transparent;
  background: var(--grad-party);
  background-size: 180% 180%;
  color: #fff;
  box-shadow: var(--glow-magenta);
  animation: shift 8s ease infinite;
}
.btn--primary:hover { box-shadow: 0 16px 50px -12px rgba(255, 46, 130, 0.85); }

@keyframes shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn--gold {
  border-color: transparent;
  background: var(--grad-gold);
  color: #2A1600;
  box-shadow: 0 10px 36px -12px rgba(255, 201, 77, 0.6);
}

.btn--ghost { background: transparent; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Link cu freccia */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--cyan);
  transition: gap 0.25s ease, color 0.25s ease;
}
.link-arrow:hover { gap: 14px; color: var(--txt); }

/* ---------- 7. Header / navigație ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(9, 4, 18, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}

.header__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark {
  width: 38px;
  height: 38px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--grad-party);
  box-shadow: var(--glow-violet);
}
.logo__mark svg { width: 20px; height: 20px; }
.logo__txt { display: grid; line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--txt);
  letter-spacing: 0.02em;
}
.logo__sub {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: clamp(4px, 1.2vw, 10px); }
.nav__link {
  position: relative;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--txt-soft);
  transition: color 0.25s ease, background 0.25s ease;
}
.nav__link:hover { color: var(--txt); background: var(--glass); }
.nav__link.is-active { color: var(--txt); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad-party);
}

.header__cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--glass);
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--txt);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 100px clamp(24px, 8vw, 60px) 40px;
  background: rgba(7, 3, 14, 0.97);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0.32s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 1.2rem + 3vw, 2.6rem);
  color: var(--txt);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.mobile-menu a span { font-family: var(--font-body); font-size: 0.75rem; color: var(--gold); letter-spacing: 0.2em; }
.mobile-menu .btn { margin-top: 26px; justify-self: start; }

body.no-scroll { overflow: hidden; }

/* ---------- 8. Card generic (bordură gradient) ---------- */
.card {
  position: relative;
  padding: clamp(22px, 2.4vw, 32px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(var(--ink-800), var(--ink-800)) padding-box,
    linear-gradient(150deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 45%, rgba(255, 255, 255, 0.1)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(420px 220px at 50% -30%, rgba(155, 92, 255, 0.28), transparent 70%);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 34px 70px -34px rgba(255, 46, 130, 0.4), var(--shadow-card); }
.card:hover::before { opacity: 1; }

.card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  margin-bottom: 20px;
  background: linear-gradient(150deg, rgba(255, 46, 130, 0.22), rgba(43, 227, 230, 0.14));
  border: 1px solid var(--line-strong);
  color: var(--gold);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.98rem; }

.card__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  background: var(--grad-party);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  display: block;
}

/* ---------- 9. Chips / badges ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: var(--glass);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--txt-soft);
}
.chip--gold { border-color: rgba(255, 201, 77, 0.4); color: var(--gold); background: rgba(255, 201, 77, 0.08); }
.chip--cyan { border-color: rgba(43, 227, 230, 0.4); color: var(--cyan); background: rgba(43, 227, 230, 0.08); }

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  background: var(--glass);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--txt-soft);
  backdrop-filter: blur(8px);
}
.badge-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(180, 255, 57, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(180, 255, 57, 0); }
  100% { box-shadow: 0 0 0 0 rgba(180, 255, 57, 0); }
}

/* ---------- 10. Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 90px));
  padding-bottom: clamp(50px, 7vw, 100px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.hero h1 { margin: 22px 0; }
.hero h1 em { font-style: italic; }
.hero__sub { max-width: 52ch; }
.hero .btn-row { margin-top: 32px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 44px);
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero__meta div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--txt);
  line-height: 1;
}
.hero__meta div span { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-dim); }

/* Vizual hero: pahar + carduri plutitoare */
.hero__visual { position: relative; aspect-ratio: 1 / 1.05; }
.hero__disc {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: conic-gradient(from 200deg, rgba(255, 46, 130, 0.55), rgba(155, 92, 255, 0.5), rgba(43, 227, 230, 0.45), rgba(255, 201, 77, 0.4), rgba(255, 46, 130, 0.55));
  filter: blur(4px);
  opacity: 0.55;
  animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__ring {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
}
.hero__glass {
  position: absolute;
  inset: 14%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(9, 4, 18, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
}
.hero__glass svg { width: 58%; height: auto; filter: drop-shadow(0 10px 30px rgba(255, 46, 130, 0.5)); }

.float-card {
  position: absolute;
  padding: 13px 17px;
  border-radius: 16px;
  background: rgba(21, 10, 40, 0.82);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  font-size: 0.82rem;
  line-height: 1.4;
  animation: bob 6s ease-in-out infinite;
}
.float-card strong { display: block; color: var(--txt); font-size: 0.95rem; font-weight: 600; }
.float-card--1 { top: 4%; right: -2%; }
.float-card--2 { bottom: 12%; left: -6%; animation-delay: -2s; }
.float-card--3 { bottom: -2%; right: 8%; animation-delay: -4s; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- 11. Marquee ---------- */
.marquee {
  position: relative;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  --mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: var(--mask);
  mask-image: var(--mask);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 44px; padding-right: 44px; }
.marquee span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.9rem + 0.9vw, 1.7rem);
  font-style: italic;
  color: var(--txt);
  white-space: nowrap;
}
.marquee i {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--grad-party);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 12. Split (imagine/text alternant) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4.5vw, 66px);
  align-items: center;
}
.split--reverse > *:first-child { order: 2; }

.visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 330px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(255, 46, 130, 0.35), transparent 60%),
    radial-gradient(110% 90% at 85% 85%, rgba(43, 227, 230, 0.3), transparent 60%),
    linear-gradient(160deg, var(--ink-600), var(--ink-800));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
}
.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent);
  mask-image: radial-gradient(70% 70% at 50% 50%, #000, transparent);
}
.visual svg { position: relative; width: 44%; max-width: 190px; opacity: 0.95; }
.visual--tall { min-height: 460px; }
.visual__label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--txt-dim);
}

/* Listă cu bife */
.check-list { display: grid; gap: 13px; margin-top: 26px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.98rem; }
.check-list li::before {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(var(--ink-700), var(--ink-700)) padding-box,
    var(--grad-party) border-box;
  border: 1px solid transparent;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232BE3E6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
}

/* ---------- 13. Timeline (istoric) ---------- */
.timeline { position: relative; display: grid; gap: clamp(26px, 3vw, 42px); }
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--violet), var(--magenta), var(--cyan), transparent);
  opacity: 0.6;
}
.tl-item { position: relative; padding-left: 66px; }
.tl-item__dot {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink-800);
  border: 2px solid var(--violet);
  display: grid;
  place-items: center;
}
.tl-item__dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-party);
}
.tl-item__year {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.tl-item h3 { margin-bottom: 8px; }
.tl-item p { font-size: 0.97rem; }

/* ---------- 14. Pachete / prețuri ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(20px, 2.4vw, 28px);
  align-items: start;
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.6vw, 36px);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.tier:hover { transform: translateY(-8px); border-color: var(--line-strong); }

.tier--featured {
  border-color: rgba(255, 201, 77, 0.45);
  background:
    radial-gradient(140% 90% at 50% 0%, rgba(255, 201, 77, 0.16), transparent 60%),
    linear-gradient(170deg, var(--ink-600), var(--ink-800));
  box-shadow: 0 30px 70px -34px rgba(255, 201, 77, 0.45), var(--shadow-card);
}
.tier--silver { border-color: rgba(200, 214, 235, 0.3); }

.tier__flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: var(--grad-gold);
  color: #2A1600;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tier__name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--txt);
  letter-spacing: 0.04em;
}
.tier__tag { font-size: 0.85rem; color: var(--txt-dim); margin-top: 4px; }
.tier__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 22px 0 6px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.tier__price b { font-family: var(--font-display); font-size: 2.5rem; color: var(--txt); line-height: 1; }
.tier__price--ask b { font-size: 1.5rem; letter-spacing: 0.01em; }
.tier__price span { font-size: 0.86rem; color: var(--txt-dim); }
.tier__note { font-size: 0.82rem; color: var(--txt-dim); }
.tier__list { display: grid; gap: 11px; margin: 26px 0 30px; font-size: 0.94rem; }
.tier__list li { display: flex; gap: 11px; align-items: flex-start; }
.tier__list li svg { flex: none; width: 18px; height: 18px; margin-top: 4px; color: var(--cyan); }
.tier__list li.is-off { color: var(--txt-dim); opacity: 0.55; }
.tier__list li.is-off svg { color: var(--txt-dim); }
.tier__list strong { color: var(--txt); font-weight: 600; }
.tier .btn { margin-top: auto; }

.tier__cocktails {
  margin: 0 0 26px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}
.tier__cocktails h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.tier__cocktails p { font-size: 0.9rem; color: var(--txt-soft); }

/* ---------- 15. Tabel comparativ ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--ink-700), var(--ink-800));
  box-shadow: var(--shadow-card);
}
table.compare { width: 100%; border-collapse: collapse; min-width: 660px; }
table.compare th, table.compare td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}
table.compare thead th {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--txt);
  background: rgba(255, 255, 255, 0.035);
  white-space: nowrap;
}
table.compare tbody th { font-weight: 500; color: var(--txt-soft); font-family: var(--font-body); }
table.compare td { text-align: center; }
table.compare thead th:not(:first-child) { text-align: center; }
table.compare tbody tr:last-child th, table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare tbody tr:hover { background: rgba(255, 255, 255, 0.028); }
.yes { color: var(--cyan); font-weight: 700; }
.no { color: var(--txt-dim); opacity: 0.5; }
.col-gold { background: rgba(255, 201, 77, 0.06); }

/* ---------- 16. Testimoniale ---------- */
.quote {
  position: relative;
  padding: clamp(26px, 3vw, 38px);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--ink-700), var(--ink-800));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote__stars { display: flex; gap: 4px; color: var(--gold); }
.quote__stars svg { width: 17px; height: 17px; }
.quote p { font-size: 1rem; color: var(--txt-soft); flex: 1; }
.quote__who { display: flex; align-items: center; gap: 13px; padding-top: 16px; border-top: 1px solid var(--line); }
.quote__av {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  background: var(--grad-party);
}
.quote__who b { display: block; color: var(--txt); font-size: 0.95rem; }
.quote__who span { font-size: 0.82rem; color: var(--txt-dim); }

/* ---------- 17. Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.gallery figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.gallery figure:hover { transform: translateY(-6px) scale(1.015); border-color: rgba(255, 255, 255, 0.32); }
.gallery figure:nth-child(1) { background: linear-gradient(155deg, #3B0F3A, #7B1D5A 55%, #2A0B33); }
.gallery figure:nth-child(2) { background: linear-gradient(155deg, #10233F, #14556B 55%, #0A1428); }
.gallery figure:nth-child(3) { background: linear-gradient(155deg, #3A1247, #6C2AA0 55%, #1B0B31); }
.gallery figure:nth-child(4) { background: linear-gradient(155deg, #40260A, #9A6516 55%, #241505); }
.gallery figure:nth-child(5) { background: linear-gradient(155deg, #45102A, #A02352 55%, #240816); }
.gallery figure:nth-child(6) { background: linear-gradient(155deg, #0F2B2B, #1C6E6B 55%, #08191A); }
.gallery figure svg { width: 40%; opacity: 0.85; }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 16px 14px;
  background: linear-gradient(transparent, rgba(7, 3, 14, 0.9));
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--txt);
}

/* ---------- 18. Pași ---------- */
.steps { counter-reset: s; display: grid; gap: clamp(18px, 2.4vw, 26px); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.028);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.step:hover { border-color: var(--line-strong); transform: translateY(-5px); background: rgba(255, 255, 255, 0.05); }
.step::before {
  counter-increment: s;
  content: "0" counter(s);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  background: var(--grad-party);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; }

/* ---------- 19. Bandă CTA ---------- */
.cta-band {
  position: relative;
  padding: clamp(40px, 6vw, 76px) clamp(24px, 4vw, 60px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(120% 130% at 15% 0%, rgba(255, 46, 130, 0.4), transparent 55%),
    radial-gradient(110% 120% at 85% 100%, rgba(43, 227, 230, 0.32), transparent 55%),
    linear-gradient(150deg, var(--ink-600), var(--ink-800));
  box-shadow: var(--shadow-card);
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { margin-inline: auto; margin-bottom: 30px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- 20. FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.028);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq__item.is-open { border-color: rgba(155, 92, 255, 0.5); background: rgba(155, 92, 255, 0.07); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: var(--txt);
}
.faq__q i {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}
.faq__q i::before, .faq__q i::after {
  content: "";
  position: absolute;
  inset: 50% 5px auto 5px;
  height: 1.5px;
  background: var(--cyan);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq__q i::after { transform: rotate(90deg); }
.faq__item.is-open .faq__q i::after { transform: rotate(0deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 22px 20px; font-size: 0.96rem; }

/* ---------- 21. Formular ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt-dim); }
.field input, .field select, .field textarea {
  padding: 14px 17px;
  border-radius: 13px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--txt);
  font-size: 0.97rem;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(156, 140, 190, 0.75); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: rgba(155, 92, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(155, 92, 255, 0.14);
}
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239C8CBE' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; background-size: 17px; padding-right: 42px; }
.field select option { background: var(--ink-700); color: var(--txt); }
.field .err { font-size: 0.8rem; color: #FF6B8A; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #FF6B8A; box-shadow: 0 0 0 4px rgba(255, 107, 138, 0.13); }
.field.is-invalid .err { display: block; }

.form__note { font-size: 0.82rem; color: var(--txt-dim); }
.form__ok {
  display: none;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(180, 255, 57, 0.45);
  background: rgba(180, 255, 57, 0.09);
}
.form__ok.is-visible { display: flex; }
.form__ok svg { flex: none; width: 24px; height: 24px; color: var(--lime); margin-top: 2px; }
.form__ok b { color: var(--txt); display: block; margin-bottom: 4px; }

/* ---------- 22. Contact ---------- */
.contact-card {
  display: flex;
  gap: 17px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
a.contact-card:hover { transform: translateY(-4px); border-color: var(--line-strong); background: rgba(255, 255, 255, 0.055); }
.contact-card__ico {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(255, 46, 130, 0.24), rgba(43, 227, 230, 0.16));
  border: 1px solid var(--line-strong);
  color: var(--gold);
}
.contact-card__ico svg { width: 21px; height: 21px; }
.contact-card b { display: block; color: var(--txt); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 3px; }
.contact-card span { font-size: 0.93rem; color: var(--txt-soft); }

.hours { display: grid; gap: 10px; margin-top: 18px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; font-size: 0.94rem; padding-bottom: 10px; border-bottom: 1px dashed var(--line); }
.hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.hours li span:last-child { color: var(--txt); font-weight: 600; }

.map-box {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(90% 90% at 30% 20%, rgba(155, 92, 255, 0.28), transparent 60%),
    linear-gradient(150deg, var(--ink-600), var(--ink-900));
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
}
.map-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
}
.map-box > div { position: relative; }

/* ---------- 23. Footer ---------- */
.footer {
  margin-top: clamp(50px, 7vw, 100px);
  border-top: 1px solid var(--line);
  background: rgba(7, 3, 14, 0.6);
  padding-top: clamp(46px, 5vw, 72px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 50px);
  padding-bottom: 44px;
}
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__links { display: grid; gap: 11px; font-size: 0.94rem; }
.footer__links a { color: var(--txt-soft); transition: color 0.2s ease, padding-left 0.2s ease; }
.footer__links a:hover { color: var(--txt); padding-left: 5px; }
.footer p { font-size: 0.94rem; }
.footer .logo { margin-bottom: 16px; }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--glass);
  color: var(--txt-soft);
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.socials a:hover { transform: translateY(-3px); color: #fff; background: var(--grad-party); border-color: transparent; }
.socials svg { width: 18px; height: 18px; }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--txt-dim);
}

/* ---------- 24. Page hero (subpagini) ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(50px, 7vw, 88px));
  padding-bottom: clamp(34px, 4.5vw, 58px);
  text-align: center;
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { margin-inline: auto; }
.crumbs {
  display: flex;
  justify-content: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--txt-dim);
  margin-bottom: 22px;
}
.crumbs a:hover { color: var(--cyan); }

/* ---------- 25. Reveal la scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.09s; }
.reveal[data-d="2"] { transition-delay: 0.18s; }
.reveal[data-d="3"] { transition-delay: 0.27s; }
.reveal[data-d="4"] { transition-delay: 0.36s; }
.reveal[data-d="5"] { transition-delay: 0.45s; }

/* ---------- 26. Buton "sus" ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(21, 10, 40, 0.85);
  backdrop-filter: blur(10px);
  color: var(--txt);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--grad-party); border-color: transparent; }
.to-top svg { width: 18px; height: 18px; }

/* ---------- 27. Responsive ---------- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; order: -1; }
  .float-card--2 { left: 0; }
}

@media (max-width: 880px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: block; }
  .split--reverse > *:first-child { order: 0; }
}

@media (max-width: 620px) {
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 18px 30px; }
  .float-card--1 { right: -8px; }
  .float-card--3 { display: none; }
  .btn { padding: 13px 22px; }
}

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

/* ---------- 29. Print ---------- */
@media print {
  .header, .mobile-menu, .to-top, .orb, .bg-fx, .marquee { display: none !important; }
  body { background: #fff; color: #111; }
  h1, h2, h3 { color: #111; }
}
