/* ================================================================
   FESTIVALUL PESCARILOR — STYLES
   Fonts: ZalamanderCaps + Zalamander (display) | Etna Condensed + Etna
   ================================================================ */

/* ── @FONT-FACE — local fonts from /fonts ── */
@font-face {
  font-family: 'ZalamanderCaps';
  src: url('fonts/ZalamanderCaps-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'ZalamanderCaps';
  src: url('fonts/ZalamanderCaps-Semibold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'ZalamanderCaps';
  src: url('fonts/ZalamanderCaps-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'ZalamanderCaps';
  src: url('fonts/ZalamanderCaps-Extrabold.ttf') format('truetype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Zalamander';
  src: url('fonts/Zalamander-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Zalamander';
  src: url('fonts/ZalamanderCaps-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Zalamander';
  src: url('fonts/ZalamanderCaps-Semibold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Zalamander';
  src: url('fonts/ZalamanderCaps-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Etna';
  src: url('fonts/Etna Light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}

@font-face {
  font-family: 'Etna Condensed';
  src: url('fonts/Etna Condensed.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* Russian language font override — Etna/Etna Condensed don't support Cyrillic */
:lang(ru) body {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
}
:lang(ru) {
  --condensed: 'Times New Roman', Times, serif;
  --body: 'Times New Roman', Times, serif;
}

/* Russian: navbar smaller to compensate for Times New Roman being wider than Etna Condensed */
:lang(ru) .nav-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
:lang(ru) .nav-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
:lang(ru) .drawer-link {
  font-weight: 700;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body { overflow-x: hidden; font-family: 'Etna', Georgia, serif; max-width: 100vw; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── GLOBAL MAX WIDTH ── */
:root { --max-w: 1200px; }

/* ── TOKENS ── */
:root {
  /* colors — exact from Figma */
  --cream:      #FFE8C2;
  --cream2:     #FFE8C2;
  --navy:       #1c2341;
  --red:        #B22A2A;
  --yellow:     #f7b239;
  --dark:       #1A2B1E;
  --brown:      #925133;
  --ink:        #2a1f14;
  --colon:      #dddfee;

  /* fonts — using LOCAL Zalamander + Etna */
  --display:    'ZalamanderCaps', Georgia, serif;        /* uppercase titles */
  --serif:      'Zalamander', Georgia, serif;            /* mixed-case serif */
  --condensed:  'Etna Condensed', 'Etna', sans-serif;    /* nav, labels */
  --body:       'Etna', sans-serif;                      /* body text */

  --nav-h: 64px;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── BORDER / SEPARATOR PATTERNS — real HTML elements ──
   Figma pattern: filled red diamond (rotated square) + dark dot, repeating
   ──────────────────────────────────────────────────────── */
.separator {
  width: 100%;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: clip;
}
.sep-diamond,
.sep-dot {
  flex-shrink: 0;
  display: inline-block;
}
.sep-diamond {
  width: 10px;
  height: 10px;
  background: var(--red);
  transform: rotate(45deg);
}
.sep-dot {
  width: 5px;
  height: 5px;
  background: var(--dark);
  border-radius: 50%;
}

/* Small (hero — diamonds 10px) */
.sep-sm { margin: 24px 0; height: 12px; }
.sep-sm .sep-diamond { width: 10px; height: 10px; background: transparent; border: 2px solid var(--red); }
.sep-sm .sep-dot     { width: 5px;  height: 5px; background: var(--dark);  }

/* Medium (section borders — diamonds 16px) */
.sep-md { height: 22px; }
.sep-md .sep-diamond { width: 10px; height: 10px;  }
.sep-md .sep-dot     { width: 5px;  height: 5px;  }

/* Color variants */
.sep-cream .sep-diamond { background: transparent; border: 2px solid var(--cream2); }
.sep-cream .sep-dot     { background: var(--red); }
.sep-dark  .sep-diamond { background: transparent; border: 2px solid var(--navy); }
.sep-dark  .sep-dot     { background: var(--red); }


/* ================================================================
   TYPOGRAPHY HELPERS
   ================================================================ */
.section-label {
  display: block;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.section-label--gold  { color: var(--yellow); }

.section-title {
  font-family: var(--display);
  font-size: clamp(52px, 6.3vw, 91px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--red);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.section-title--light { color: var(--cream2); margin-top: 20px;}
.section-title--gold  { color: var(--yellow); }

.section-body {
  font-family: var(--body);
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--navy);
  max-width: 605px;
}
.section-body--light { color: var(--cream2); }


.texture-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100%;
  background: url('images/texture.jpg') repeat;
  mix-blend-mode: multiply;
  opacity: .4;
  pointer-events: none;
  z-index: 99999;
}

body{
  background: var(--cream);
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  width: 100vw;
  height: var(--nav-h);
  background: var(--cream);
  z-index: 900;
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(26,35,65,0.13);
  background: var(--cream);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo { flex-shrink: 0; }
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* CTA button — shared style */
.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  background: var(--red);
  padding: 10px 22px 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
}
.nav-cta:hover {
  background: #8f1f1f;
  transform: translateY(-2px);
}
.nav-cta:active { transform: translateY(0); }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
}
.lang-btn {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.2s;
  padding: 2px 0;
}
.lang-btn:hover { opacity: 0.8; }
.lang-btn--active { opacity: 1; }
.lang-sep { font-size: 10px; color: var(--navy); opacity: 0.25; }
@media (max-width: 900px) { .lang-switcher { display: none; } }

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


/* ── Mobile Drawer ── */
.mobile-drawer {
  position: fixed;
  top: 0; right: -300px;
  width: 280px; height: 100dvh;
  background: var(--cream);
  z-index: 950;
  display: flex;
  flex-direction: column;
  padding: 80px 28px 40px;
  gap: 6px;
  transition: right 0.35s var(--ease);
  box-shadow: -4px 0 32px rgba(0,0,0,0.1);
}
.mobile-drawer.open { right: 0; }

.drawer-close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 1.4rem;
  color: var(--ink);
  padding: 8px;
}
.drawer-close:hover { color: var(--red); }

.drawer-link {
  font-family: var(--condensed);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  padding: 11px 0;
  border-bottom: 1px solid rgba(26,35,65,0.12);
  transition: color 0.2s, padding-left 0.2s;
}
.drawer-link:hover { color: var(--red); padding-left: 6px; }
.drawer-cta { margin-top: 20px; text-align: center; font-size: 15px; padding: 14px 20px; white-space: nowrap; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,35,65,0.35);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(4px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }


/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: var(--cream) ;
  padding-top: var(--nav-h);
  /* min-height: 850px; */
  height: 750px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo-wrap {
  width: 100%;
  max-width: 580px;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
  scale: .9;
}
.hero-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(26,35,65,0.08));
}

/* meta strip */
.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  animation: fadeUp 0.9s var(--ease) 0.25s both;
}

.meta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.meta-col:first-child { padding-left: 0; }
.meta-col:last-child  { padding-right: 0; }

.meta-label {
  font-family: var(--body);
  font-size: 14.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin-bottom: 4px;
}
.meta-val {
  font-family: var(--serif);
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  white-space: nowrap;
}

.meta-divider {
  width: 1px;
  height: 50px;
  background: rgba(26,35,65,0.2);
  flex-shrink: 0;
}

.hero-desc {
  font-family: var(--body);
  font-size: clamp(16px, 1.57vw, 22.5px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.65;
  max-width: 837px;
  text-align: center;
  animation: fadeUp 0.9s var(--ease) 0.4s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ================================================================
   COUNTDOWN
   ================================================================ */
.countdown {
  background: var(--navy);
  padding: 15px 0;
}

.countdown-inner {
  padding: 60px 32px;
  text-align: center;
}

.countdown-label {
  font-family: var(--body);
  font-size: 23px;
  font-weight: 700;
  color: var(--cream2);
  text-transform: lowercase;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  display: block;
}

.countdown-timer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cd-num {
  font-family: var(--display);
  font-size: clamp(72px, 8.2vw, 118px);
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
  min-width: 1.5ch;
  text-align: center;
  display: block;
  transition: transform 0.15s var(--ease);
}
.cd-num.flip {
  animation: numFlip 0.2s var(--ease);
}
@keyframes numFlip {
  0%   { transform: translateY(-8px); opacity: 0.5; }
  100% { transform: translateY(0);    opacity: 1; }
}

.cd-lbl {
  font-family: var(--body);
  font-size: clamp(16px, 2.3vw, 33px);
  font-weight: 300;
  color: var(--cream2);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.cd-colon {
  font-family: var(--display);
  font-size: clamp(60px, 7vw, 100px);
  font-weight: 400;
  color: var(--colon);
  line-height: 1.05;
  padding-top: 4px;
  flex-shrink: 0;
}


/* ================================================================
   LINE-UP
   ================================================================ */
.lineup {
 background: var(--cream) ;
  
  padding: 80px 0 0;
}

.lineup-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px 80px;
}

.lineup-title-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}
.lineup-title-sep {
  flex: 1;
  min-width: 0;
}
.lineup-title {
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin: 0;
}

/* 3-artist grid (top row: irina, kamelia, marcel) */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 28px;
  justify-content: end;
  justify-items: center;
}

.artist-card {
  position: relative;
  cursor: pointer;
  /* overflow: hidden; */
}
.artist-card-img {
  /* aspect-ratio: 292 / 380; */
  max-height: 420px;
}
.artist-card-img img {
  /* width: 100%; */
  height: 400px;
  /* object-fit: cover; */
  object-position: center top;
  transition: transform 0.5s var(--ease);
}
.artist-card:hover .artist-card-img img { transform: scale(.98); }

.artist-card-name {
  margin-top: 24px;
  font-family: var(--display);
  font-size: 3.5em;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  text-align: center;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

/* Hero card — haiducu (BELOW the 3-card row, like Figma) */
.artist-hero {
  position: relative;
  width: 100%;
  max-width: 650px;
  margin: 50px auto;
  overflow: hidden;
  cursor: pointer;
}
.artist-hero-img {
  width: 100%;
  aspect-ratio: 749 / 475;
  overflow: hidden;
}
.artist-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease);
}
.artist-hero:hover .artist-hero-img img { transform: scale(.98); }

.artist-hero-name {
  /* margin-top: 24px; */
  font-family: var(--display);
  font-size: 3.5em;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.01em;
}


/* ================================================================
   DESPRE  (yellow background)
   ================================================================ */
.despre {
  background: var(--yellow);
  overflow: hidden;
}

.despre-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 48px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.despre-body { max-width: none; color: var(--ink); }

/* ── Marquee ── */
.despre-marquee-wrap {
  overflow: hidden;
  padding: 32px 0 56px;
}

.despre-marquee {
  display: flex;
  width: max-content;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee-scroll 40s linear infinite;
  padding: 24px 0;
}
.marquee-track:has(.marquee-cta:hover) { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Photo card */
.marquee-photo {
  flex-shrink: 0;
  width: 340px;
  border-radius: 4px;
  overflow: hidden;
  transform: rotate(var(--r, 0deg));
  transition: transform 0.3s var(--ease);
}
.marquee-photo:hover { transform: rotate(0deg) scale(1.03); }
.marquee-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* "Vezi mai multe" CTA card */
.marquee-cta {
  flex-shrink: 0;
  width: 340px;
  aspect-ratio: 4/5;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 36px 32px;
  text-decoration: none;
  transform: rotate(var(--r, 0deg));
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.marquee-cta:hover { transform: rotate(0deg) scale(1.03); opacity: 0.92; }

.marquee-cta-text {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 800;
  color: var(--cream2);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.marquee-cta-arrow {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--cream2);
  margin-top: 28px;
  position: relative;
  border-radius: 2px;
}
.marquee-cta-arrow::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid var(--cream2);
}


/* ================================================================
   PROGRAM  (navy background)
   ================================================================ */
.program {
  background: var(--navy);
  padding: 80px 0;
}

.program-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* Two-column header: title left, body right */
.program-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.program-head-left { display: flex; flex-direction: column; }
.program-head-right { max-width: 520px; }

/* Tabs */
.program-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
}
.prog-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,232,194,0.55);
  padding: 14px 28px 12px;
  border: 1px solid rgba(255,232,194,0.25);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}
.prog-tab-day {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 4px;
}
.prog-tab-date {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1;
}
.prog-tab.active {
  background: var(--cream2);
  border-color: var(--cream2);
  color: var(--red);
}
.prog-tab.active .prog-tab-day { color: var(--red); }
.prog-tab:hover:not(.active) { color: var(--cream2); border-color: var(--cream2); }

/* Schedule */
.schedule { margin-top: 32px; }
.schedule.hidden { display: none; }

/* sep-sched: very small, low-contrast outlined diamonds between items */
.sep-sched {
  height: 14px;
  gap: 6px;
  margin: 0;
}
.sep-sched .sep-diamond {
  width: 8px; height: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,232,194,0.25);
}
.sep-sched .sep-dot {
  width: 4px; height: 4px;
  background: rgba(255,232,194,0.25);
}

.sched-item { }

.sched-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 0 32px;
  align-items: center;
  padding: 28px 0;
}

.sched-time {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--cream2);
  letter-spacing: 0.02em;
  line-height: 1;
}

.sched-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sched-body strong {
  display: block;
  font-family: var(--condensed);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
  line-height: 1.2;
}
.sched-body span {
  font-family: var(--body);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 300;
  color: rgba(255,232,194,0.6);
}

.sched-tag {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,232,194,0.6);
  border: 1px solid rgba(255,232,194,0.3);
  padding: 6px 14px;
  white-space: nowrap;
}


/* ================================================================
   CONCURS  (cream2 background)
   ================================================================ */
.concurs {
  background: var(--cream) ;
  
  padding-bottom: 60px;
}

.concurs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px 120px;
}

/* Two-column head */
.concurs-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 48px;
  align-items: center;
  /* margin-bottom: 56px; */
}
.concurs-head-left { display: flex; flex-direction: column; }
.concurs-head-right { max-width: none; }

/* Two-column body */
.concurs-body {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 48px;
  align-items: start;
}

/* Prize cards */
.prize-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sep-prize {
  height: 14px;
  gap: 6px;
  margin: 0;
}
.sep-prize .sep-diamond {
  width: 8px; height: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,232,194,0.4);
}
.sep-prize .sep-dot {
  width: 4px; height: 4px;
  background: rgba(255,232,194,0.4);
}

.prize-card { }
.prize-card--red   { background: #8B1A1A; }
.prize-card--navy  { background: var(--navy); }
.prize-card--forest { background: #1A3020; }

.prize-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  min-width: 0;
}

.prize-card-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.prize-medal {
  width: 44px;
  height: 52px;
  flex-shrink: 0;
  color: var(--cream2);
}

.prize-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prize-place {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--cream2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.prize-desc {
  font-family: var(--body);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 300;
  color: rgba(255,232,194,0.7);
  line-height: 1.4;
}
.prize-amount {
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Rules column */
.concurs-rules-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.concurs-rules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: rules;
}
.concurs-rules li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--body);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 300;
  color: rgba(26,43,30,0.75);
  line-height: 1.55;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,43,30,0.08);
  counter-increment: rules;
}
.concurs-rules li:last-child { border-bottom: none; }
.concurs-rules li::before {
  content: counter(rules);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px; height: 22px;
  border: 1px solid rgba(26,43,30,0.35);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 400;
  color: rgba(26,43,30,0.5);
  flex-shrink: 0;
  margin-top: 2px;
}
.concurs-rules li strong { font-weight: 600; color: var(--ink); }

.concurs-cta { }
.concurs-btn {
  width: 100%;
  font-size: clamp(14px, 1.2vw, 18px);
  padding: 18px 32px 16px;
  text-align: center;
  justify-content: center;
  letter-spacing: 0.08em;
}


/* ================================================================
   LOCAȚIE
   ================================================================ */
.locatie {
  background: var(--cream) ;
  
}

.locatie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 32px;
}

.locatie-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.locatie-head-left { display: flex; flex-direction: column; }
.locatie-head-left .section-title { margin-bottom: 0; }

.locatie-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.locatie-map {
  width: 100%;
  overflow: hidden;
}

.locatie-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.locatie-details {
  display: flex;
  flex-direction: column;
}

.loc-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(28, 35, 65, 0.15);
}

.loc-row:first-child { border-top: 1px solid rgba(28, 35, 65, 0.15); }

.loc-cat {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(28, 35, 65, 0.45);
  padding-top: 3px;
}

.loc-title {
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 6px;
}

.loc-info p {
  font-family: var(--body);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--navy);
  margin: 0;
}


/* ================================================================
   INSCRIERE
   ================================================================ */
.inscriere {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.inscriere-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.reg-form {
  margin-top: 48px;
  text-align: left;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,232,194,0.65);
}
.form-field input,
.form-field select {
  font-family: var(--body);
  font-size: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream2);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-field input::placeholder { color: rgba(255,232,194,0.3); }
.form-field input:focus,
.form-field select:focus { border-color: var(--yellow); }
.form-field select option { background: var(--navy); color: var(--cream2); }

.form-btn {
  width: 100%;
  margin-top: 8px;
  font-size: 26px;
  padding: 16px 32px 14px;
}

.form-success {
  padding: 60px 0;
  text-align: center;
}
.form-success.hidden { display: none; }
.success-check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--cream2);
  margin-bottom: 12px;
}
.form-success p {
  font-family: var(--body);
  font-size: 1.05rem;
  color: rgba(255,232,194,0.65);
}


/* ================================================================
   FAQ
   ================================================================ */
.faq {
 background: var(--cream) ;
  
  padding: 80px 0;
}

.faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.faq-list { margin-top: 16px; }

.faq-item { border-bottom: 2px solid rgba(26,35,65,0.12); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover, .faq-q.open { color: var(--red); }

.faq-icon {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding-bottom 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 0;
}
.faq-a.open {
  padding-bottom: 20px;
}
.faq-a p {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.7;
}



/* ================================================================
   SPONSORS  (inside hero)
   ================================================================ */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(28, 35, 65, 0.55);
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: currentColor;
}

.hero-scroll-chevron {
  width: 18px;
  height: auto;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50%       { transform: translateY(6px); opacity: 0.7; }
}

/* Standalone sponsors section (between FAQ and footer) */
.sponsors {
  background: var(--cream) ;
  background-size: 900px auto;
  padding: 40px 32px;
}

.sponsors-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-sponsors {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  scale: .82;
}

.sponsors-label {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(28, 35, 65, 0.4);
}

.sponsors-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
  flex-wrap: nowrap;
}

.sponsor-logo {
  opacity: 0.6;
  transition: opacity 0.25s;
}
.sponsor-logo:hover { opacity: 1; }

.sponsor-logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}
.sponsor-logo:nth-child(1) img { height: 62px; }
.sponsor-logo:nth-child(2) img { height: 38px; }
.sponsor-logo:nth-child(3) img { height: 32px; }
.sponsor-logo:nth-child(4) img { height: 79px; }
.sponsor-logo:nth-child(5) img { height: 40px; }
.sponsor-logo:nth-child(6) img { height: 79px; }
.sponsor-logo:nth-child(7) img { height: 79px; }


/* ================================================================
   NEWSLETTER (footer, all pages)
   ================================================================ */
.newsletter {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.newsletter-label {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  opacity: 0.6;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-input {
  font-family: var(--body);
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(28,35,65,0.2);
  background: transparent;
  color: var(--navy);
  outline: none;
  min-width: 220px;
}
.newsletter-input:focus { border-color: var(--red); }
.newsletter-input::placeholder { color: rgba(28,35,65,0.35); }
.newsletter-btn { font-size: 13px; padding: 10px 18px 8px; position: relative; }
.newsletter-btn.is-loading { color: transparent; pointer-events: none; }
.newsletter-btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border: 2px solid rgba(255,232,194,0.35);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: newsletter-spin 0.6s linear infinite;
}
@keyframes newsletter-spin { to { transform: rotate(360deg); } }
.newsletter-msg {
  width: 100%;
  font-family: var(--body);
  font-size: 13px;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.newsletter-msg.is-visible { opacity: 1; transform: translateY(0); }
.newsletter-msg--ok  { color: var(--navy); font-weight: 600; }
.newsletter-msg--err { color: var(--red); }
@media (max-width: 640px) {
  .newsletter { padding: 24px 20px 0; flex-direction: column; }
  .newsletter-input { min-width: 0; width: 100%; }
  .newsletter-form { width: 100%; flex-direction: column; }
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--cream);
  color: var(--navy);
}

.footer-sponsors {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 640px) {
  .footer-sponsors { padding: 40px 20px 32px; }
  .footer-sponsors .sponsors-logos { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .footer-sponsors .sponsor-logo img { height: 36px !important; }
  .footer-sponsors .sponsor-logo:nth-child(1) img { height: 50px !important; }
  .footer-sponsors .sponsor-logo:nth-child(4) img { height: 50px !important; }
  .footer-sponsors .sponsor-logo:nth-child(6) img { height: 50px !important; }
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 32px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.footer-logo {
  height: 88px;
  width: auto;
  margin-bottom: 16px;
  opacity: 1;
}

.footer-brand p {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  color: var(--navy);
  max-width: 260px;
  line-height: 1.7;
}

.footer-nav, .footer-contact { }
.footer-nav h4, .footer-contact h4 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 1;
  margin-bottom: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-nav a:hover { color: var(--red); padding-left: 6px; }

.footer-contact p {
  font-family: var(--body);
  font-size: 15px;
  color: rgba(26,35,65,0.65);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid rgba(26,35,65,0.12);
}
.footer-bottom p {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(26,35,65,0.35);
}


/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
/* ── 1100px ── */
@media (max-width: var(--max-w)) {
  .nav-links { gap: 20px; }
  .nav-link  { font-size: 14px; }
  .nav-cta   { font-size: 14px; padding: 10px 18px 8px; }
}

/* ── 900px ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links .nav-cta { display: none; }
  .nav-inner > .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { justify-content: space-between; }

  .hero-inner { padding: 48px 24px 64px; }
  .hero-logo-wrap { max-width: 420px; }
  .hero-meta { gap: 0; }
  .meta-col  { padding: 0 16px; }
  .meta-val  { font-size: 22px; }

  .lineup-inner { padding: 0 24px 60px; }
  .lineup-title { margin-bottom: 32px; }
  .artist-grid { grid-template-columns: repeat(3, 1fr); }

  .program-inner { padding: 0 24px; }
  .program-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .program-head-right { max-width: 100%; }

  .concurs-inner { padding: 0 24px; }
  .concurs-head {
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 20px;
    margin-bottom: 40px; }
  .concurs-body { grid-template-columns: 1fr; }

  .despre-inner { grid-template-columns: 1fr; gap: 2px; padding: 0 24px; margin-top: 20px;}

  .locatie-inner { padding: 60px 24px; }
  .locatie-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .locatie-body { grid-template-columns: 1fr; }
  .locatie-map { min-height: 300px; }
  .locatie-map iframe { min-height: 300px; }
  .loc-row { grid-template-columns: 100px 1fr; gap: 16px; }

  .faq-inner { padding: 0 24px; }

  .footer-inner { grid-template-columns: 1fr 1fr; padding: 0 24px; }
  .footer-brand { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }

  .sponsors-inner { padding: 0 24px; }
}

/* ── 640px (mobile) ── */
@media (max-width: 640px) {
  :root { --nav-h: 56px; }

  /* typography */
  .section-title { font-size: clamp(38px, 11vw, 60px); margin-bottom: 20px; }
  .section-body  { font-size: 16px; }
  .section-label { font-size: 14px; }

  /* ── HERO ── */
  .hero { overflow: hidden; padding-top: 100px;  height: 700px;}
  .hero-inner { padding: 12px 20px 48px; width: 100%; }
  .hero-logo-wrap { max-width: 100%; width: 280px; }
  /* meta: 2 per row, larger text */
  .hero-meta { flex-wrap: wrap; justify-content: center; gap: 0; width: 100%; }
  .meta-col  { flex: 0 0 50%; padding: 14px 12px; border-bottom: 1px solid rgba(26,35,65,0.1); }
  .meta-col:nth-child(odd)  { border-right: 1px solid rgba(26,35,65,0.1); }
  .meta-col:nth-last-child(-n+2) { border-bottom: none; }
  .meta-label { font-size: 13px; }
  .meta-val  { font-size: clamp(18px, 5.5vw, 26px); white-space: normal; }
  .meta-divider { display: none; }
  .hero-desc { font-size: 15px; padding: 0; width: 100%; }
  .sep-sm { margin: 14px 0; }
  .hero-sponsors { margin-top: 24px; width: 100%; }
  /* sponsor logos — toate egale */
  .hero-sponsors .sponsors-logos { gap: 16px; flex-wrap: wrap; justify-content: center; align-items: center;}
  .hero-sponsors .sponsor-logo img { height: 36px !important; width: auto !important; }
  /* .hero-sponsors .sponsor-logo:nth-child(1) img { } */
  .hero-sponsors .sponsor-logo:nth-child(2) img { height: 30px !important;}
  .hero-sponsors .sponsor-logo:nth-child(3) img { height: 25px !important;}
  .hero-sponsors .sponsor-logo:nth-child(4) img { height: 50px !important;}
  .hero-sponsors .sponsor-logo:nth-child(5) img { height: 30px !important;}
  .hero-sponsors .sponsor-logo:nth-child(6) img { height: 50px !important; }

  /* ── COUNTDOWN ── */
  .countdown-inner { padding: 0 20px; }
  .countdown-label { font-size: 13px; margin: 15px;}
  .countdown-timer {margin-bottom: 20px;}
  .cd-num { font-size: clamp(36px, 12vw, 60px); }
  .cd-lbl { font-size: 11px; }

  /* ── LINEUP ── */
  .lineup-inner { padding: 0 20px 48px; }
  .lineup-title { font-size: clamp(36px, 12vw, 60px);}
  .artist-grid { grid-template-columns: 1fr; gap: 52px; margin-top: -50px;}
  .artist-card-img img { height: 320px; }
  .artist-card-name { font-size: 3em; margin-top: 16px; }

  /* Haiducu hero: nu tăia imaginea */
  .artist-hero { max-width: 100%; overflow: visible; }
  .artist-hero-img { aspect-ratio: auto; height: auto; overflow: visible; }
  .artist-hero-img img { height: auto; max-height: 340px; object-fit: contain; }
  .artist-hero-name { font-size: 3em; margin-top: 22px; }

  /* ── PROGRAM ── */
  .program { padding: 60px 0; }
  .program-inner { padding: 0 16px; }
  .program-head { margin-bottom: 28px; }
  .prog-tab { font-size: 13px; padding: 10px 14px; }
  .prog-tab-day { font-size: 16px; }
  .prog-tab-date { font-size: 13px; }
  /* schedule row: time big on left, body fills rest, tag hidden */
  .sched-row {
    grid-template-columns: 90px 1fr;
    gap: 0 12px;
    padding: 20px 0;
  }
  .sched-tag { display: none; }
  .sched-time {
    font-size: clamp(16px, 4.5vw, 22px);
    line-height: 1.2;
    padding-top: 3px;
    white-space: nowrap;
  }
  .sched-body strong { font-size: 15px; }
  .sched-body span { font-size: 13px; }

  /* ── CONCURS ── */
  .concurs { padding-top: 60px; }
  .concurs-inner { padding: 0 16px; width: 100%; }
  .concurs-body { width: 100%; grid-template-columns: minmax(0, 1fr); }
  .concurs-rules-col { min-width: 0; width: 100%; max-width: 100%; overflow: visible; }
  .prize-cards { min-width: 0; width: 100%; }
  .concurs-rules { min-width: 0; max-width: 100%; }
  .concurs-rules li { min-width: 0; max-width: 100%; }
  .concurs-rules li span { min-width: 0; flex: 1 1 0; overflow-wrap: break-word; word-break: break-word; }
  /* prize cards — keep row layout on mobile, amount on the right */
  .prize-card-inner {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
  }
  .prize-card-left { gap: 10px; flex: 1; min-width: 0; }
  .prize-medal-img { width: 36px; height: 36px; }
  .prize-place { font-size: 16px; }
  .prize-desc { font-size: 11px; }
  .prize-amount {
    font-size: clamp(13px, 4.5vw, 18px);
    white-space: normal;
    text-align: right;
    min-width: 72px;
    flex-shrink: 0;
  }
  /* rules — fix overflow */
  .concurs-rules-col { overflow: visible; width: 100%; max-width: 100%; }
  .concurs-rules { padding: 0; width: 100%; max-width: 100%; overflow: hidden; }
  .concurs-rules li { font-size: 14px; padding: 12px 0; max-width: 100%; overflow: hidden; }
  .concurs-rules li span { min-width: 0; flex: 1 1 0; overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
  .concurs-btn { font-size: 15px; padding: 12px 24px 10px; width: 100%; text-align: center; }

  /* ── DESPRE ── */
  .despre-inner { padding: 0 20px; }
  .despre-body { font-size: 16px; }

  /* ── LOCATIE ── */
  .locatie-inner { padding: 48px 20px; }
  .locatie-map { min-height: 240px; }
  .locatie-map iframe { min-height: 240px; }
  .loc-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .loc-cat { font-size: 11px; }
  .loc-title { font-size: 16px; }

  /* ── FAQ ── */
  .faq-inner { padding: 0 20px; }
  .faq-q { font-size: 15px; padding: 16px 0; }
  .faq-a p { font-size: 14px; }

  /* ── SPONSORS — toate la aceeași dimensiune ── */
  .sponsors-inner { padding: 0 20px; }
  .sponsors-logos { gap: 20px; flex-wrap: wrap; justify-content: center; align-items: center; }
  .sponsors-inner .sponsor-logo img { height: 40px !important; width: auto !important; }
  .sponsors-inner .sponsor-logo:nth-child(1) img,
  .sponsors-inner .sponsor-logo:nth-child(2) img,
  .sponsors-inner .sponsor-logo:nth-child(3) img,
  .sponsors-inner .sponsor-logo:nth-child(4) img,
  .sponsors-inner .sponsor-logo:nth-child(5) img,
  .sponsors-inner .sponsor-logo:nth-child(6) img { height: 40px !important; }

  /* ── FOOTER ── */
  .footer-inner { grid-template-columns: 1fr; padding: 0 20px; gap: 32px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { padding: 16px 20px; font-size: 12px; }

  /* ── ARTIST MODAL — sheet de jos, fără colțuri rotunjite sus ── */
  .artist-modal-overlay { padding: 0; align-items: flex-end; }
  .artist-modal { max-width: 100%; max-height: 90vh; border-radius: 0; }
  .artist-modal--wide { max-width: 100%; }
  .artist-modal-inner { grid-template-columns: 1fr; }
  .artist-modal--wide .artist-modal-inner { grid-template-columns: 1fr; }
  .artist-modal-left {
    padding: 24px 20px 20px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
  .artist-modal-photo { width: 250px; height: 250px; aspect-ratio: 1/1; flex-shrink: 0; margin-bottom: 0; object-fit: cover;}
  .artist-modal--wide .artist-modal-photo { width: 140px; height: 140px; aspect-ratio: 1/1; }
  .artist-modal-name { font-size: 22px; margin-bottom: 4px; }
  .artist-modal-bio { font-size: 13px; line-height: 1.5; }
  .artist-modal-right { padding: 16px 20px; }
  .artist-modal-close { top: 12px; right: 12px; font-size: 18px; width: 32px; height: 32px; }
}

/* ── 440px ── */
@media (max-width: 440px) {
}

/* ================================================================
   ARTIST MODAL
   ================================================================ */
.artist-card-hint {
  display: block;
  font-family: var(--condensed);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--red);
  opacity: 0;
  transition: opacity 0.2s;
  margin-top: 6px;
  text-transform: uppercase;
}
.artist-card:hover .artist-card-hint,
.artist-hero:hover .artist-card-hint { opacity: 1; }
.artist-card { cursor: pointer; }
.artist-hero { cursor: pointer; }

.artist-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 65, 0.75);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.artist-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.artist-modal {
  background: var(--cream);
  background-image: url('images/texture.jpg');
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s var(--ease);
}
.artist-modal--wide {
  max-width: var(--max-w);
}
.artist-modal-overlay.open .artist-modal {
  transform: translateY(0);
}
.artist-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 20px;
  color: var(--ink);
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.artist-modal-close:hover { background: rgba(0,0,0,0.08); }

.artist-modal-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
}
.artist-modal--wide .artist-modal-inner {
  grid-template-columns: 640px 1fr;
}
.artist-modal--wide .artist-modal-photo {
  width: 100%;
  aspect-ratio: unset;
  height: 420px;
  object-fit: contain;
  object-position: center bottom;
}
.artist-modal-left {
  background: var(--cream);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.artist-modal-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  object-position: center bottom;
  margin: 20px 0;
}
.artist-modal-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  text-transform: lowercase;
  line-height: 1.1;
  margin-bottom: 0px;
}
.artist-modal-bio {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
}
.artist-modal-right {
  background-color: var(--red);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.artist-modal-embed iframe {
  width: 100%;
  display: block;
}

/* Tabs */
.program-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
}
.prog-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,232,194,0.55);
  padding: 14px 28px 12px;
  border: 1px solid rgba(255,232,194,0.25);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}
.prog-tab-day {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 4px;
}
.prog-tab-date {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1;
}
.prog-tab.active {
  background: var(--cream2);
  border-color: var(--cream2);
  color: var(--red);
}

.program-head{
  gap: 1px;
}

.section-title{
  font-size: 4em;
}

@media (max-width: 640px) {
  .artist-modal-inner { grid-template-columns: 1fr; }
  .artist-modal-left { padding: 20px 20px 16px; }
  .artist-modal-photo { width: 60%; aspect-ratio: 1/1; }
  #artistModal[data-artist="haiducu"] .artist-modal-photo { width: 90%; aspect-ratio: unset; height: auto; object-fit: contain; }
  .artist-modal--wide .artist-modal-left { padding: 8px 16px 8px; }
  .artist-modal--wide .artist-modal-photo { width: 92%; height: auto; aspect-ratio: unset; object-fit: contain; margin-bottom: 8px; }
  .artist-modal--wide .artist-modal-name { font-size: 20px; margin-top: 0; }
  .artist-modal--wide .artist-modal-bio  { font-size: 13px; }
  .artist-modal-right { padding: 24px 20px; }

  .marquee-photo { width: 180px; }
  .marquee-cta   { width: 180px; }


}

body.modal-open .texture-overlay { opacity: 0; }

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: marquee-scroll 40s linear infinite;
  padding: 24px 0;
}

.faq{
  padding: 30px 0;
}

.footer-brand {
  margin-top: 25px;
}


/* PAGINA DESPRE */

/* ── PAGE HERO ── */
    .page-hero {
      background: var(--navy);
      padding: calc(var(--nav-h) + 80px) 32px 80px;
      text-align: center;
    }
    .page-hero-label {
      display: block;
      font-family: var(--body);
      font-size: 18px;
      font-weight: 700;
      color: var(--yellow);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .page-hero-title {
      font-family: var(--display);
      font-size: clamp(56px, 8vw, 110px);
      font-weight: 700;
      color: var(--cream);
      text-transform: uppercase;
      line-height: 1;
      letter-spacing: -0.02em;
      margin-bottom: 28px;
    }
    .page-hero-title em {
      color: var(--red);
      font-style: normal;
    }
    .page-hero-body {
      font-family: var(--body);
      font-size: clamp(15px, 1.3vw, 18px);
      font-weight: 300;
      color: var(--cream);
      opacity: 0.8;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* ── ABOUT INTRO ── */
    .about-intro {
      background: var(--cream);
      padding: 30px 32px;
    }
    .about-intro-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-intro-text .section-title { margin-bottom: 20px; }
    .about-intro-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .stat-block {
      border-left: 3px solid var(--red);
      padding-left: 20px;
    }
    .stat-num {
      font-family: var(--display);
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
      display: block;
    }
    .stat-label {
      font-family: var(--condensed);
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--brown);
      margin-top: 6px;
      display: block;
    }

    /* ── EDITIONS ── */
    .editions {
      background: var(--cream);
      padding: 0 0 100px;
    }
    .editions-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 32px;
    }
    .editions-header {
      text-align: center;
      padding: 30px 0;
    }
    .edition-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-bottom: 80px;
      background: white;
      overflow: hidden;
    }
    .edition-card:nth-child(even) { direction: rtl; }
    .edition-card:nth-child(even) > * { direction: ltr; }
    .edition-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .edition-content {
      background: var(--navy);
      padding: 52px 52px 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
    }
    .edition-eyebrow {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .edition-roman {
      font-family: var(--display);
      font-size: 64px;
      font-weight: 700;
      color: var(--red);
      line-height: 1;
    }
    .edition-year-tag {
      font-family: var(--condensed);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--cream);
      background: rgba(255,255,255,0.12);
      padding: 6px 14px;
      align-self: flex-start;
    }
    .edition-title {
      font-family: var(--display);
      font-size: clamp(32px, 3.5vw, 48px);
      font-weight: 600;
      color: var(--cream);
      text-transform: uppercase;
      line-height: 1.1;
    }
    .edition-desc {
      font-family: var(--body);
      font-size: clamp(14px, 1.2vw, 16px);
      font-weight: 300;
      color: var(--cream);
      opacity: 0.8;
      line-height: 1.65;
    }
    .edition-facts {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 8px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .edition-fact {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .edition-fact strong {
      font-family: var(--condensed);
      font-size: 22px;
      color: var(--yellow);
      font-weight: 700;
    }
    .edition-fact span {
      font-family: var(--body);
      font-size: 13px;
      color: var(--cream);
      opacity: 0.6;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ── CTA BAND ── */
    .about-cta {
      background: var(--red);
      padding: 80px 32px 120px;
      text-align: center;
    }
    .about-cta h2 {
      font-family: var(--display);
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 700;
      color: var(--cream);
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .about-cta p {
      font-family: var(--body);
      font-size: clamp(14px, 1.2vw, 17px);
      color: var(--cream);
      opacity: 0.85;
      max-width: 500px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }
    .about-cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-outline-cream {
      display: inline-flex;
      align-items: center;
      font-family: var(--condensed);
      font-size: 15px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--cream);
      border: 2px solid var(--cream);
      padding: 12px 28px 10px;
      transition: background 0.2s, color 0.2s;
    }
    .btn-outline-cream:hover {
      background: var(--cream);
      color: var(--red);
    }
    .btn-solid-cream {
      display: inline-flex;
      align-items: center;
      font-family: var(--condensed);
      font-size: 15px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--red);
      background: var(--cream);
      padding: 12px 28px 10px;
      transition: opacity 0.2s;
    }
    .btn-solid-cream:hover { opacity: 0.88; }

    /* ── RESPONSIVE ── */
    @media (max-width: 760px) {
      .about-intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .edition-card,
      .edition-card:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
      }
      .edition-img { height: 240px; }
      .edition-content { padding: 36px 28px; }
    }

/* ── 360px — very small phones ── */
@media (max-width: 360px) {
  .hero-meta { flex-direction: column; }
  .meta-col  { flex: 0 0 100%; border-right: none !important; }
  .cd-num    { font-size: 28px; }
  .nav-inner { padding: 0 14px; }
}

/* ================================================================
   REGISTRATION MODAL
   ================================================================ */
.reg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 35, 65, 0.75);
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.reg-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.reg-modal {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(24px);
  transition: transform 0.35s var(--ease);
}
.reg-modal-overlay.open .reg-modal {
  transform: translateY(0);
}
.reg-modal-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 520px;
}
.reg-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cream);
  z-index: 2;
  border-radius: 50%;
  transition: background 0.2s;
}
.reg-modal-close:hover { background: rgba(255,255,255,0.15); }

/* Left panel — navy */
.reg-modal-left {
  background: var(--navy);
  padding: 52px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reg-modal-label {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
}
.reg-modal-title {
  font-family: var(--display);
  font-size: 2em;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.0;
}
.reg-modal-desc {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 8px;
}
.reg-modal-rules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  margin-top: auto;
}
.reg-modal-rules li {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.65;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.reg-modal-rules li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 7px;
  top: 4px;
  color: var(--yellow);
  opacity: 1;
}

/* Right panel — cream */
.reg-modal-right {
  background: var(--cream);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
}

/* Form fields (reuse inscriere.html pattern but on cream bg) */
.reg-modal-right .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.reg-modal-right .form-field label {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.55;
}
.reg-modal-right .form-field input,
.reg-modal-right .form-field select,
.reg-modal-right .form-field textarea {
  background: rgba(26,35,65,0.06);
  border: 1px solid rgba(26,35,65,0.18);
  color: var(--navy);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  padding: 11px 14px 10px;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.reg-modal-right .form-field input:focus,
.reg-modal-right .form-field select:focus,
.reg-modal-right .form-field textarea:focus {
  border-color: var(--red);
  background: rgba(26,35,65,0.09);
}
.reg-modal-right .form-field textarea { resize: vertical; min-height: 70px; }
.reg-modal-right .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.reg-modal-submit {
  width: 100%;
  background: var(--red);
  color: var(--cream);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 20px 12px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s, transform 0.15s;
}
.reg-modal-submit:hover { background: #8f1f1f; transform: translateY(-2px); }
.reg-modal-submit:active { transform: translateY(0); }

/* Success state */
.reg-modal-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  flex: 1;
  padding: 40px 0;
}
.reg-modal-success.visible { display: flex; }
.reg-modal-success-icon {
  width: 64px; height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--cream);
}
.reg-modal-success h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}
.reg-modal-success p {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.6;
}

/* Mobile reg modal — centered with padding */
@media (max-width: 640px) {
  .reg-modal-overlay { padding: 16px; align-items: center; }
  .reg-modal { max-height: 90vh; border-radius: 0; transform: translateY(24px); }
  .reg-modal-overlay.open .reg-modal { transform: translateY(0); }
  .reg-modal-inner { grid-template-columns: 1fr; }
  .reg-modal-left  { padding: 28px 20px 20px; gap: 12px; }
  .reg-modal-rules { display: none; }
  .reg-modal-right { padding: 20px 20px 28px; }
  .reg-modal-right .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .reg-modal-close { color: var(--cream); }
}
@media (min-width: 641px) {
  .reg-modal-close { color: var(--cream); }
}
/* ================================================================
   GALERIE PAGE
   ================================================================ */
.gallery-section {
  background: var(--cream);
  padding: 72px 32px 100px;
}
.gallery-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.gallery-grid {
  column-count: 4;
  column-gap: 12px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s var(--ease), filter 0.3s;
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(0.88); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 0.35; }
.gallery-item-overlay svg { color: var(--cream); width: 40px; height: 40px; opacity: 0; transform: scale(0.7); transition: opacity 0.3s, transform 0.3s; }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; transform: scale(1); }
@media (max-width: 1100px) { .gallery-grid { column-count: 3; } }
@media (max-width: 720px)  { .gallery-grid { column-count: 2; } }
@media (max-width: 420px)  { .gallery-grid { column-count: 1; } }

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,14,30,0.96);
  z-index: 200000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap { max-width: 90vw; max-height: 88vh; position: relative; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; box-shadow: 0 40px 120px rgba(0,0,0,0.8); }
.lightbox-close {
  position: fixed; top: 24px; right: 28px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: none; color: var(--cream); font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; font-family: var(--condensed);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.10);
  border: none; color: var(--cream); font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; font-family: var(--condensed);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--condensed); font-size: 14px; color: var(--cream);
  opacity: 0.5; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ================================================================
   INSCRIERE PAGE
   ================================================================ */
.inscriere-section {
  background: var(--cream);
  padding: 0 32px 100px;
}
.inscriere-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.inscriere-info .section-title { margin-bottom: 20px; }
.inscriere-info .section-body  { margin-bottom: 40px; }
.info-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,35,65,0.12);
}
.info-row:first-child { border-top: 1px solid rgba(26,35,65,0.12); }
.info-cat { font-family: var(--condensed); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brown); padding-top: 2px; }
.info-val { font-family: var(--body); font-size: 16px; font-weight: 300; color: var(--navy); line-height: 1.5; }
.info-val strong { font-weight: 600; color: var(--navy); }
.inscriere-note { background: var(--navy); padding: 24px 28px; display: flex; gap: 16px; align-items: flex-start; }
.inscriere-note-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.inscriere-note p { font-family: var(--body); font-size: 15px; font-weight: 300; color: var(--cream); line-height: 1.55; }
.inscriere-note strong { color: var(--yellow); font-weight: 600; }
.reg-card {
  background: var(--navy);
  padding: 40px 36px 44px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.reg-card-label { font-family: var(--body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--yellow); margin-bottom: 8px; display: block; }
.reg-card-title { font-family: var(--display); font-size: clamp(30px,3.5vw,44px); font-weight: 700; color: var(--cream); text-transform: uppercase; line-height: 1.05; margin-bottom: 32px; }

/* Shared form field styles */
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-field label { font-family: var(--condensed); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cream); opacity: 0.6; }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  font-family: var(--body); font-size: 16px; font-weight: 300;
  padding: 13px 16px 12px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%; border-radius: 0; -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { opacity: 0.4; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--yellow); background: rgba(255,255,255,0.12); }
.form-field select option { background: var(--navy); color: var(--cream); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit-btn {
  width: 100%; background: var(--red); color: var(--cream);
  font-family: var(--condensed); font-size: 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 16px 20px 14px; border: none; cursor: pointer; margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}
.form-submit-btn:hover { background: #8f1f1f; transform: translateY(-2px); }
.form-submit-btn:active { transform: translateY(0); }
.form-disclaimer { font-family: var(--body); font-size: 12px; color: var(--cream); opacity: 0.4; text-align: center; margin-top: 16px; line-height: 1.5; }
.form-success-state { display: none; flex-direction: column; align-items: center; text-align: center; padding: 20px 0; gap: 16px; }
.form-success-state.visible { display: flex; }
.success-icon { width: 64px; height: 64px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; }
.form-success-state h3 { font-family: var(--display); font-size: 32px; font-weight: 700; color: var(--cream); text-transform: uppercase; }
.form-success-state p { font-family: var(--body); font-size: 16px; font-weight: 300; color: var(--cream); opacity: 0.75; line-height: 1.6; }
@media (max-width: 860px) { .inscriere-inner { grid-template-columns: 1fr; gap: 48px; } .reg-card { position: static; } }
@media (max-width: 520px)  { .form-row-2 { grid-template-columns: 1fr; } .reg-card { padding: 28px 20px 32px; } }

/* ================================================================
   PARTENERI PAGE
   ================================================================ */
.why-section { background: var(--cream); padding: 80px 32px 100px; }
.why-inner { max-width: var(--max-w); margin: 0 auto; }
.why-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.why-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.why-card { background: var(--navy); padding: 36px 28px 32px; display: flex; flex-direction: column; gap: 16px; }
.why-card-icon { font-size: 32px; line-height: 1; }
.why-card-title { font-family: var(--condensed); font-size: 18px; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.2; }
.why-card-body { font-family: var(--body); font-size: 14px; font-weight: 300; color: var(--cream); opacity: 0.75; line-height: 1.65; flex: 1; }
.why-card-stat { font-family: var(--display); font-size: 40px; font-weight: 700; color: var(--cream); text-transform: uppercase; line-height: 1; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 16px; margin-top: 4px; }
.why-card-stat span { font-family: var(--condensed); font-size: 12px; font-weight: 600; color: var(--cream); opacity: 0.5; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-top: 4px; }
.tiers-section { background: var(--dark); padding: 80px 32px 100px; }
.tiers-inner { max-width: var(--max-w); margin: 0 auto; }
.tiers-head { text-align: center; margin-bottom: 56px; }
.tiers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.tier-card { background: rgba(255,255,255,0.04); padding: 48px 36px 40px; display: flex; flex-direction: column; gap: 24px; position: relative; }
.tier-card--gold   { background: rgba(247,178,57,0.08); border-top: 3px solid var(--yellow); }
.tier-card--silver { background: rgba(255,255,255,0.06); border-top: 3px solid #b0b8c9; }
.tier-card--bronze { background: rgba(146,81,51,0.12); border-top: 3px solid var(--brown); }
.tier-badge { font-family: var(--condensed); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; padding: 5px 14px; display: inline-block; align-self: flex-start; }
.tier-card--gold   .tier-badge { background: var(--yellow); color: var(--dark); }
.tier-card--silver .tier-badge { background: #b0b8c9; color: var(--dark); }
.tier-card--bronze .tier-badge { background: var(--brown); color: var(--cream); }
.tier-name { font-family: var(--display); font-size: clamp(28px,3.5vw,44px); font-weight: 700; color: var(--cream); text-transform: uppercase; line-height: 1; }
.tier-desc { font-family: var(--body); font-size: 14px; font-weight: 300; color: var(--cream); opacity: 0.65; line-height: 1.6; }
.tier-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tier-benefits li { font-family: var(--body); font-size: 14px; font-weight: 300; color: var(--cream); opacity: 0.8; padding-left: 20px; position: relative; line-height: 1.5; }
.tier-benefits li::before { content: '◆'; position: absolute; left: 0; font-size: 7px; top: 4px; opacity: 0.6; }
.tier-card--gold   .tier-benefits li::before { color: var(--yellow); }
.tier-card--silver .tier-benefits li::before { color: #b0b8c9; }
.tier-card--bronze .tier-benefits li::before { color: var(--brown); }
.tier-cta { display: inline-flex; align-items: center; font-family: var(--condensed); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cream); border: 1px solid rgba(255,255,255,0.25); padding: 10px 20px 8px; transition: background 0.2s, border-color 0.2s; margin-top: 8px; align-self: flex-start; }
.tier-cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.partners-section { background: var(--cream); padding: 80px 32px 100px; }
.partners-inner { max-width: var(--max-w); margin: 0 auto; }
.partners-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.partners-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.partner-card { background: var(--cream); padding: 40px 32px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; transition: scale 0.2s; }
.partner-card:hover { scale: 1.1; }
.partner-logo { height: 64px; width: auto; object-fit: contain; object-position: center; }
.partner-name { font-family: var(--condensed); font-size: 14px; font-weight: 600; color: var(--cream); opacity: 0.6; text-transform: uppercase; letter-spacing: 0.08em; }
.partner-cta-section { background: var(--red); padding: 80px 32px; text-align: center; }
.partner-cta-section h2 { font-family: var(--display); font-size: clamp(36px,5vw,68px); font-weight: 700; color: var(--cream); text-transform: uppercase; margin-bottom: 20px; }
.partner-cta-section p { font-family: var(--body); font-size: clamp(14px,1.2vw,16px); font-weight: 300; color: var(--cream); opacity: 0.85; max-width: 520px; margin: 0 auto 40px; line-height: 1.65; }
.partner-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cream-solid { font-family: var(--condensed); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); background: var(--cream); padding: 13px 28px 11px; transition: opacity 0.2s; display: inline-flex; align-items: center; }
.btn-cream-solid:hover { opacity: 0.88; }
.btn-cream-outline { font-family: var(--condensed); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cream); background: transparent; border: 2px solid var(--cream); padding: 11px 28px 9px; transition: background 0.2s, color 0.2s; display: inline-flex; align-items: center; }
.btn-cream-outline:hover { background: var(--cream); color: var(--red); }
@media (max-width: 900px) { .why-head { grid-template-columns: 1fr; gap: 32px; } .why-cards { grid-template-columns: 1fr 1fr; } .tiers-grid { grid-template-columns: 1fr; } .partners-head { grid-template-columns: 1fr; gap: 32px; } .partners-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .page-hero { padding: calc(var(--nav-h) + 48px) 20px 56px; } .why-section, .tiers-section, .partners-section { padding: 60px 20px 72px; } .why-cards { grid-template-columns: 1fr; gap: 2px; } .partners-grid { grid-template-columns: 1fr; } .partner-cta-section { padding: 60px 20px; } .tier-card { padding: 36px 24px 32px; } }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-hero { background: var(--cream); padding-top: var(--nav-h); overflow: hidden; }
.contact-hero-text { max-width: var(--max-w); margin: 0 auto; padding: 72px 32px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.contact-hero-title { font-family: var(--display); font-size: clamp(64px,9vw,120px); font-weight: 700; color: var(--navy); text-transform: uppercase; line-height: 0.9; letter-spacing: -0.02em; }
.contact-hero-title em { color: var(--red); font-style: normal; }
.contact-hero-label { display: block; font-family: var(--body); font-size: 16px; font-weight: 700; color: var(--brown); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.contact-hero-desc { font-family: var(--body); font-size: clamp(14px,1.2vw,17px); font-weight: 300; color: var(--navy); opacity: 0.75; line-height: 1.65; margin-bottom: 32px; }
.contact-quick-links { display: flex; flex-direction: column; gap: 12px; }
.contact-quick-link { display: flex; align-items: center; gap: 14px; font-family: var(--body); font-size: 16px; font-weight: 300; color: var(--navy); transition: color 0.2s; text-decoration: none; }
.contact-quick-link:hover { color: var(--red); }
.contact-quick-link-icon { width: 40px; height: 40px; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: background 0.2s; }
.contact-quick-link:hover .contact-quick-link-icon { background: var(--red); }
.contact-photo-strip { display: flex; gap: 0; height: 320px; overflow: hidden; }
.contact-photo-strip-item { flex: 1; overflow: hidden; position: relative; }
.contact-photo-strip-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.5s var(--ease); }
.contact-photo-strip-item:hover img { transform: scale(1.04); }
.contact-photo-strip-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(26,35,65,0.3) 100%); pointer-events: none; }
.contact-main { background: var(--cream); padding: 80px 32px 100px; }
.contact-main-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 440px; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 40px; }
.contact-info-rows { display: flex; flex-direction: column; gap: 0; }
.contact-info-row { display: grid; grid-template-columns: 120px 1fr; gap: 0 20px; padding: 22px 0; border-bottom: 1px solid rgba(26,35,65,0.1); }
.contact-info-row:first-child { border-top: 1px solid rgba(26,35,65,0.1); }
.contact-info-cat { font-family: var(--condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brown); padding-top: 3px; }
.contact-info-val { font-family: var(--body); font-size: 16px; font-weight: 300; color: var(--navy); line-height: 1.6; }
.contact-info-val a { color: var(--red); transition: opacity 0.2s; }
.contact-info-val a:hover { opacity: 0.75; }
.contact-info-val strong { font-weight: 600; }
.contact-map { border: 0; width: 100%; height: 320px; display: block; filter: saturate(0.7) contrast(1.05); }
/* Partner collaboration form layout */
.partner-collab-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}
@media (max-width: 860px) {
  .partner-collab-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-form-card { background: var(--navy); padding: 44px 36px 48px; position: sticky; top: calc(var(--nav-h) + 24px); }
.contact-form-label { font-family: var(--condensed); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--yellow); margin-bottom: 6px; display: block; }
.contact-form-title { font-family: var(--display); font-size: clamp(28px,3.5vw,40px); font-weight: 700; color: var(--cream); text-transform: uppercase; line-height: 1.05; margin-bottom: 32px; }
.contact-form-card .form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.contact-form-card .form-field label { font-family: var(--condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cream); opacity: 0.5; }
.contact-form-card .form-field input,
.contact-form-card .form-field select,
.contact-form-card .form-field textarea { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); color: var(--cream); font-family: var(--body); font-size: 15px; font-weight: 300; padding: 12px 14px 11px; outline: none; border-radius: 0; -webkit-appearance: none; transition: border-color 0.2s, background 0.2s; width: 100%; }
.contact-form-card .form-field input::placeholder,
.contact-form-card .form-field textarea::placeholder { opacity: 0.35; }
.contact-form-card .form-field input:focus,
.contact-form-card .form-field select:focus,
.contact-form-card .form-field textarea:focus { border-color: var(--yellow); background: rgba(255,255,255,0.10); }
.contact-form-card .form-field select option { background: var(--navy); color: var(--cream); }
.contact-form-card .form-field textarea { resize: vertical; min-height: 100px; }
.contact-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form-submit { width: 100%; background: var(--red); color: var(--cream); font-family: var(--condensed); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 14px 20px 12px; border: none; cursor: pointer; margin-top: 4px; transition: background 0.2s, transform 0.15s; }
.contact-form-submit:hover { background: #8f1f1f; transform: translateY(-2px); }
.contact-form-submit:active { transform: translateY(0); }
.contact-form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 32px 0; }
.contact-form-success.visible { display: flex; }
.contact-form-success-icon { width: 56px; height: 56px; background: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--dark); }
.contact-form-success h3 { font-family: var(--display); font-size: 26px; font-weight: 700; color: var(--cream); text-transform: uppercase; }
.contact-form-success p { font-family: var(--body); font-size: 14px; color: var(--cream); opacity: 0.65; line-height: 1.65; }
@media (max-width: 900px) { .contact-hero-text { grid-template-columns: 1fr; gap: 36px; padding: 56px 24px 40px; } .contact-photo-strip { height: 240px; } .contact-main-inner { grid-template-columns: 1fr; } .contact-form-card { position: static; } }
@media (max-width: 640px) { .contact-hero-text { padding: 40px 20px 32px; } .contact-photo-strip { height: 180px; } .contact-main { padding: 60px 20px 72px; } .contact-info-row { grid-template-columns: 1fr; gap: 4px; } .contact-form-card { padding: 28px 20px 32px; } .contact-form-row-2 { grid-template-columns: 1fr; gap: 0; } }

/* ================================================================
   CONCURS PAGE
   ================================================================ */
.competitions { background: var(--cream); padding: 80px 32px 100px; }
.competitions-inner { max-width: var(--max-w); margin: 0 auto; }
.competitions-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.comp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
.comp-card { background: var(--navy); padding: 40px 36px 36px; display: flex; flex-direction: column; gap: 16px; }
.comp-num { font-family: var(--display); font-size: 64px; font-weight: 700; color: var(--red); line-height: 1; opacity: 0.4; }
.comp-title { font-family: var(--condensed); font-size: 20px; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.2; }
.comp-desc { font-family: var(--body); font-size: 14px; font-weight: 300; color: var(--cream); opacity: 0.75; line-height: 1.65; flex: 1; }
.comp-tag { font-family: var(--condensed); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--yellow); opacity: 0.5; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 14px; margin-top: 4px; }
.prizes-section { background: var(--cream); padding: 0 32px 100px; }
.prizes-inner { max-width: var(--max-w); margin: 0 auto; }
.prizes-head { text-align: center; padding-bottom: 48px; }
.rules-section { background: var(--navy); padding: 80px 32px 100px; }
.rules-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 520px; gap: 80px; align-items: start; }
.rules-left { display: flex; flex-direction: column; gap: 0; }
.rules-right { background: var(--cream); padding: 48px 40px; position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 20px; }
.rules-right-label { font-family: var(--condensed); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); }
.rules-right-title { font-family: var(--display); font-size: clamp(32px,4vw,48px); font-weight: 700; color: var(--navy); text-transform: uppercase; line-height: 1.0; }
.rules-right-info { display: flex; flex-direction: column; gap: 0; }
.rules-info-row { display: grid; grid-template-columns: 90px 1fr; gap: 0 16px; padding: 14px 0; border-bottom: 1px solid rgba(26,35,65,0.1); }
.rules-info-row:first-child { border-top: 1px solid rgba(26,35,65,0.1); }
.rules-info-cat { font-family: var(--condensed); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brown); padding-top: 2px; }
.rules-info-val { font-family: var(--body); font-size: 14px; font-weight: 300; color: var(--navy); line-height: 1.55; }
.rules-info-val strong { font-weight: 600; color: var(--navy); }
.rules-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.rules-list li { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-family: var(--body); font-size: 15px; font-weight: 300; color: var(--cream); opacity: 0.85; line-height: 1.6; align-items: flex-start; }
.rules-list li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.rule-num { font-family: var(--condensed); font-size: 13px; font-weight: 700; color: var(--yellow); opacity: 0.6; flex-shrink: 0; min-width: 28px; padding-top: 2px; }
.rules-list li strong { color: var(--cream); font-weight: 600; opacity: 1; }
.concurs-cta-band { background: var(--red); padding: 80px 32px; text-align: center; }
.concurs-cta-band h2 { font-family: var(--display); font-size: clamp(36px,5vw,68px); font-weight: 700; color: var(--cream); text-transform: uppercase; margin-bottom: 20px; }
.concurs-cta-band p { font-family: var(--body); font-size: clamp(14px,1.2vw,16px); font-weight: 300; color: var(--cream); opacity: 0.85; max-width: 480px; margin: 0 auto 36px; line-height: 1.65; }
.concurs-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cream { font-family: var(--condensed); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--red); background: var(--cream); padding: 13px 28px 11px; transition: opacity 0.2s; display: inline-flex; align-items: center; }
.btn-cream:hover { opacity: 0.88; }
.btn-cream-border { font-family: var(--condensed); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--cream); border: 2px solid var(--cream); padding: 11px 28px 9px; transition: background 0.2s, color 0.2s; display: inline-flex; align-items: center; }
.btn-cream-border:hover { background: var(--cream); color: var(--red); }
@media (max-width: 900px) { .competitions-head { grid-template-columns: 1fr; gap: 32px; } .rules-inner { grid-template-columns: 1fr; } .rules-right { position: static; } }
@media (max-width: 640px) { .competitions { padding: 60px 20px 72px; } .comp-grid { grid-template-columns: 1fr; } .prizes-section { padding: 0 20px 72px; } .rules-section { padding: 60px 20px 72px; } .rules-inner { gap: 40px; } .rules-right { padding: 32px 24px; } .concurs-cta-band { padding: 60px 20px; } }

/* ================================================================
   COMPETITION TABS (index.html concurs section)
   ================================================================ */
.comp-tabs-bar {
  display: flex;
  gap: 2px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.comp-tab {
  flex: 1 1 auto;
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  background: rgba(26,35,65,0.08);
  border: none;
  padding: 14px 16px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1.3;
  text-align: center;
}
.comp-tab:hover { background: rgba(26,35,65,0.15); }
.comp-tab.active { background: var(--navy); color: var(--cream); }

.comp-panel { display: block; }
.comp-panel.hidden { display: none; }

.prize-note {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.6;
  padding: 16px 4px 4px;
  border-top: 1px solid rgba(26,35,65,0.12);
  margin-top: 4px;
}

.prize-amount--tbd {
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: 0.04em;
  opacity: 0.85;
}

@media (max-width: 640px) {
  .comp-tabs-bar { gap: 4px; }
  .comp-tab { font-size: 11px; padding: 10px 8px 9px; flex: 1 1 calc(50% - 4px); }
}

/* ================================================================
   FOOTER SOCIAL + CONTACT ICONS
   ================================================================ */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  opacity: 0.55;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-social-link:hover { opacity: 1; transform: translateY(-2px); }
.footer-social-link svg { width: 24px; height: 24px; display: block; flex-shrink: 0; }

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  transition: color 0.2s;
  text-decoration: none;
  margin-bottom: 10px;
}
.footer-contact-link:hover { color: var(--red); }
.footer-contact-link:hover svg { fill: var(--red); }
.footer-contact-link--form { opacity: 1; font-size: 13px; margin-top: 4px; }
.footer-contact-icon { display: none; }
.footer-contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: fill 0.2s;
}

/* Prize place images */
.prize-medal-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Contact quick link — no square for SVG variant */
.contact-quick-link-icon--svg {
  background: none !important;
  width: auto !important;
  height: auto !important;
  font-size: 0 !important;
}
.contact-quick-link-icon--svg svg {
  width: 22px;
  height: 22px;
  display: block;
}
.contact-quick-link:hover .contact-quick-link-icon--svg { background: none !important; }


/* Time range — stacked display */
.sched-time--range {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.sched-time-end {
  font-size: 0.65em;
  opacity: 0.5;
  letter-spacing: 0.02em;
}


/* ================================================================
   POST-EVENT PAGE STYLES
   ================================================================ */

/* ── POST-HERO ── */
.post-hero {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 32px 72px;
}
.post-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.post-hero-logo-wrap { margin-bottom: 28px; }
.post-hero-logo { width: clamp(180px, 26vw, 320px); height: auto; }
.post-hero-edition {
  margin-bottom: 0;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.post-hero .hero-meta {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.post-hero .meta-col {
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-right: 1px solid rgba(28,35,65,0.15);
}
.post-hero .meta-col:last-child { border-right: none; }
.post-hero .meta-label {
  font-family: var(--condensed);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brown);
  opacity: 0.8;
}
.post-hero .meta-val {
  font-family: var(--display);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.post-hero-desc {
  color: var(--navy) !important;
  text-align: center;
  max-width: 560px;
  margin-top: 8px;
}
.post-hero-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  color: var(--red);
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.3s;
  animation: heroScrollBounce 2s ease-in-out infinite;
}
.post-hero-scroll:hover { opacity: 1; }
@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ── POST-SPONSORS ── */
.post-sponsors { background: var(--cream); }
.post-sponsors-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 32px;
  text-align: center;
}
.post-sponsors-inner .section-label { text-align: center; }
.post-sponsors-inner .section-title { margin-bottom: 48px; }
.sponsors-logos--post {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
  margin-top: 16px;
}
.sponsors-logos--post .sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsors-logos--post .sponsor-logo img {
  height: clamp(36px, 4vw, 60px);
  width: auto;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.2s;
}
.sponsors-logos--post .sponsor-logo img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ── AFTERMOVIE ── */
.aftermovie-section {
  background: var(--dark);
  padding: 80px 32px;
}
.aftermovie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.aftermovie-inner .section-label { text-align: center; }
.aftermovie-body {
  margin: 0 auto 48px;
  text-align: center;
}
.aftermovie-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.aftermovie-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.aftermovie-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, #0d1a10 0%, #1a2b1e 100%);
  color: rgba(255,232,194,0.5);
}
.aftermovie-play-icon { opacity: 0.4; }
.aftermovie-soon-label {
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── POST-GALLERY ── */
.post-gallery {
  background: var(--cream);
  padding: 72px 32px 80px;
}
.post-gallery-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.post-gallery-inner .section-label { text-align: left; }
.post-gallery-inner .section-title { margin-bottom: 28px; }

/* Filter pills */
.pg-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.pg-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--navy);
  border-radius: 100px;
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.pg-filter:hover {
  background: var(--navy);
  color: var(--cream);
}
.pg-filter.active {
  background: var(--navy);
  color: var(--cream);
}
.pg-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 20px;
  padding: 0 6px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  background: var(--red);
  color: #fff;
  line-height: 1;
}

/* Masonry grid */
.pg-grid {
  column-count: 4;
  column-gap: 10px;
}
.pg-item {
  break-inside: avoid;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  display: block;
}
.pg-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s var(--ease);
}
.pg-item:hover img { transform: scale(1.04); }
.pg-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,35,65,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, background 0.25s;
  color: #fff;
}
.pg-item:hover .pg-item-overlay {
  opacity: 1;
  background: rgba(28,35,65,0.35);
}
.pg-item.pg-hidden { display: none; }

@media (max-width: 1100px) { .pg-grid { column-count: 3; } }
@media (max-width: 720px)  { .pg-grid { column-count: 2; } }
@media (max-width: 420px)  { .pg-grid { column-count: 1; } }

/* ── LIGHTBOX ── */
.pg-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pg-lightbox.open { display: flex; }
.pg-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
}
.pg-lb-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1100px);
  max-height: calc(100svh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-lb-img {
  max-width: 100%;
  max-height: calc(100svh - 100px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.pg-lb-close,
.pg-lb-prev,
.pg-lb-next {
  position: fixed;
  z-index: 2;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s;
  backdrop-filter: blur(4px);
}
.pg-lb-close:hover,
.pg-lb-prev:hover,
.pg-lb-next:hover { background: rgba(255,255,255,0.25); }
.pg-lb-close { top: 20px; right: 20px; font-size: 18px; }
.pg-lb-prev   { left: 20px;  top: 50%; transform: translateY(-50%); font-size: 28px; }
.pg-lb-next   { right: 20px; top: 50%; transform: translateY(-50%); font-size: 28px; }

.pg-lb-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}
.pg-lb-counter {
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.pg-lb-like {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  backdrop-filter: blur(4px);
}
.pg-lb-like:hover { background: rgba(178,42,42,0.4); color: #fff; }
.pg-lb-like.liked { background: rgba(178,42,42,0.7); color: #fff; }
.pg-lb-heart {
  flex-shrink: 0;
  fill: currentColor;
  transition: transform 0.2s var(--ease);
}
.pg-lb-like.liked .pg-lb-heart { transform: scale(1.2); }
.pg-lb-like-count { min-width: 20px; text-align: left; }

@media (max-width: 640px) {
  .post-hero .meta-col { padding: 12px 16px; }
  .post-hero .meta-val { font-size: 15px; }
  .aftermovie-section { padding: 56px 20px; }
  .post-gallery { padding: 56px 16px 60px; }
  .pg-lb-prev { left: 8px; }
  .pg-lb-next { right: 8px; }
  .pg-lb-close { top: 12px; right: 12px; }
  .sponsors-logos--post { gap: 24px 32px; }
}

/* ── SPONSORS TIERS ── */
.sponsors-tiers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  margin-top: 8px;
}
.sponsors-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.sponsors-tier-label {
  font-family: var(--condensed);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.7;
}
.sponsors-logos--lg .sponsor-logo img {
  height: clamp(50px, 6vw, 80px) !important;
}
.sponsors-tier--full { border-top: 1px solid rgba(28,35,65,0.1); padding-top: 16px; }

/* ── MASONRY GALLERY — stable columns with width/height on img ── */
.pg-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s var(--ease);
  /* aspect-ratio preserved via width+height attributes — no reflow */
}

/* ── POST-EVENT HERO override (auto height for 8 sponsor logos) ── */
.post-event-hero {
  height: auto;
  min-height: 750px;
  padding-bottom: 48px;
}
.post-event-hero .sponsors-logos .sponsor-logo img {
  height: 30px !important;
  width: auto;
}

/* ── SPONSORS COMPACT ROWS ── */
.sponsors-compact-rows {
  display: flex;
  flex-direction: column;
  max-width: 880px;
  margin: 0 auto;
  gap: 40px;
}
.sponsors-compact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  gap: 0;
}
.sponsors-compact-sep {
  width: 1px;
  align-self: stretch;
  flex-shrink: 0;
  margin: 0 40px;
  /* no background — borders removed */
}
.sponsors-compact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.sponsors-compact-item--group { flex: 2; }
/* Uniform height for all compact logos — overrides nth-child rules */
.sponsors-compact-rows .sponsor-logo img,
.sponsors-compact-rows .sponsor-logo--sm img {
  height: 44px !important;
  width: auto;
  filter: grayscale(10%);
  opacity: 0.8;
  transition: opacity 0.2s, filter 0.2s;
}
.sponsors-compact-rows .sponsor-logo img:hover,
.sponsors-compact-rows .sponsor-logo--sm img:hover { opacity: 1; filter: grayscale(0); }
/* Primăria logo a touch bigger */
.sponsors-compact-row:first-child .sponsors-compact-item:first-child img {
  height: 60px !important;
}
/* All partner logos exactly the same height */
.sponsors-logos--sm .sponsor-logo img,
.sponsors-logos--sm .sponsor-logo--sm img {
  height: 44px !important;
}
.sponsors-logos--sm {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 18px 24px;
}
@media (max-width: 640px) {
  .sponsors-compact-rows { gap: 28px; }
  .sponsors-compact-row { padding: 0 12px; flex-direction: column; gap: 24px; }
  .sponsors-compact-sep { display: none; }
  .sponsors-compact-item--group { flex: none; width: 100%; }
}

/* ── GALLERY TOOLBAR (filters + sort) ── */
.pg-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 36px;
}
.pg-toolbar .pg-filters { margin-bottom: 0; }
.pg-sort-wrap { position: relative; }
.pg-sort {
  -webkit-appearance: none;
  appearance: none;
  padding: 10px 38px 10px 18px;
  border: 2px solid var(--navy);
  border-radius: 100px;
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1L5.5 6L10 1' stroke='%231c2341' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  color: var(--navy);
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.pg-sort:focus { outline: 2px solid var(--red); outline-offset: 2px; }
.pg-sort:hover { border-color: var(--red); }
@media (max-width: 560px) {
  .pg-toolbar { flex-direction: column; align-items: flex-start; }
}
