:root {
      /* Poster-ul 2026: negru de scenă · galben electric · alb pergament · roșu de cortină */
      --yellow:        #f5d000;
      --yellow-bright: #ffe619;
      --yellow-dim:    #c9a800;
      --yellow-pale:   #fef8cc;
      --red:           #c0392b;
      --red-light:     #e74c3c;
      --white-pg:      #f7f2e8;   /* pergament */
      --white-dim:     #c8c0b0;
      --dark:          #080706;
      --dark2:         #0f0d0b;
      --dark3:         #181410;
      --dark4:         #221e18;
      --text-light:    #f7f2e8;
      --text-muted:    #9a9080;
      --border:        rgba(245,208,0,.14);
      --border-y:      rgba(245,208,0,.32);
      --border-r:      rgba(192,57,43,.28);
      --font-display:  'EB Garamond', Georgia, serif;
      --font-body:     'DM Sans', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: var(--text-light); background: var(--dark); margin: 0; }

    /* ── HEADER ── */
    #site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; transition: background .4s, backdrop-filter .4s, box-shadow .4s; border-bottom: 1px solid transparent; }
    #site-header.scrolled { background: rgba(8,7,6,.97); backdrop-filter: blur(18px); box-shadow: 0 2px 32px rgba(0,0,0,.8); border-bottom-color: var(--border); }
    .header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
    .header-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--yellow); text-decoration: none; white-space: nowrap; flex-shrink: 0; letter-spacing: .01em; }
    .header-logo span { color: var(--white-pg); font-weight: 400; }
    .main-nav { display: flex; align-items: center; gap: 2px; }
    .main-nav a { color: var(--text-muted); text-decoration: none; font-size: 12px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; padding: 6px 11px; border-radius: 4px; transition: color .2s, background .2s; white-space: nowrap; }
    .main-nav a:hover, .main-nav a.active { color: var(--yellow); background: rgba(245,208,0,.08); }
    .lang-nav { display: flex; align-items: center; gap: 3px; flex-shrink: 0; }
    .lang-nav a { color: var(--text-muted); text-decoration: none; font-size: 11px; font-weight: 600; padding: 4px 7px; border-radius: 4px; border: 1px solid transparent; transition: all .2s; }
    .lang-nav a.active, .lang-nav a:hover { color: var(--yellow); border-color: rgba(245,208,0,.35); background: rgba(245,208,0,.07); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--text-light); border-radius: 2px; }
    .mobile-menu { display: none; flex-direction: column; background: rgba(8,7,6,.98); border-top: 1px solid var(--border); padding: 16px 24px 20px; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { color: var(--text-light); text-decoration: none; padding: 10px 0; font-size: 15px; border-bottom: 1px solid var(--border); }
    .mobile-menu a:last-child { border-bottom: none; }

    /* ── HERO ── */
    #banner { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
    .banner-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 70% 55% at 50% -5%,  rgba(245,208,0,.22)  0%, transparent 55%),
        radial-gradient(ellipse 45% 35% at 5%  90%,  rgba(192,57,43,.18)  0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 95% 85%,  rgba(245,208,0,.1)   0%, transparent 50%),
        linear-gradient(180deg, #0f0d0b 0%, #080706 100%);
    }
    /* Theatre spotlight texture */
    .banner-spotlight {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background:
        radial-gradient(ellipse 30% 60% at 50% 0%, rgba(245,208,0,.06) 0%, transparent 70%);
    }
    /* Floating quote marks / particles */
    .banner-particles {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background-image:
        radial-gradient(1.5px 1.5px at 7%   15%, rgba(245,208,0,.6)  0%, transparent 100%),
        radial-gradient(1px   1px   at 19%  72%, rgba(245,208,0,.4)  0%, transparent 100%),
        radial-gradient(2px   2px   at 35%  8%,  rgba(192,57,43,.5)  0%, transparent 100%),
        radial-gradient(1px   1px   at 50%  88%, rgba(245,208,0,.5)  0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 65%  30%, rgba(245,208,0,.45) 0%, transparent 100%),
        radial-gradient(1px   1px   at 78%  62%, rgba(245,208,0,.55) 0%, transparent 100%),
        radial-gradient(2px   2px   at 90%  9%,  rgba(192,57,43,.4)  0%, transparent 100%),
        radial-gradient(1px   1px   at 12%  50%, rgba(245,208,0,.4)  0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 57%  52%, rgba(245,208,0,.4)  0%, transparent 100%),
        radial-gradient(1px   1px   at 72%  90%, rgba(192,57,43,.4)  0%, transparent 100%),
        radial-gradient(1px   1px   at 28%  94%, rgba(245,208,0,.35) 0%, transparent 100%),
        radial-gradient(2px   2px   at 43%  25%, rgba(245,208,0,.38) 0%, transparent 100%),
        radial-gradient(1px   1px   at 86%  44%, rgba(245,208,0,.45) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 3%   64%, rgba(245,208,0,.4)  0%, transparent 100%),
        radial-gradient(1px   1px   at 95%  28%, rgba(192,57,43,.35) 0%, transparent 100%);
    }
    .banner-overlay { position: absolute; inset: 0; background: linear-gradient(168deg, rgba(8,7,6,.02) 0%, rgba(8,7,6,.2) 40%, rgba(8,7,6,.97) 100%); z-index: 2; }
    .banner-content { position: relative; z-index: 3; max-width: 900px; padding: 130px 24px 80px; }

    .banner-edition {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-body); font-size: 10px; font-weight: 600;
      letter-spacing: .25em; text-transform: uppercase; color: var(--yellow-dim);
      margin-bottom: 16px;
    }
    .banner-edition::before, .banner-edition::after {
      content: ''; display: block; width: 32px; height: 1px;
      background: var(--yellow-dim); opacity: .7;
    }

    .banner-award {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(192,57,43,.16); border: 1px solid rgba(192,57,43,.4);
      border-radius: 4px; padding: 7px 18px; margin-bottom: 22px;
    }
    .banner-award-text { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: #f5a0a0; }

    .banner-content h1 {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6.5vw, 5.6rem);
      font-weight: 700; line-height: 1.02;
      color: var(--yellow); margin: 0 0 8px;
      text-shadow: 0 0 80px rgba(245,208,0,.25), 0 2px 40px rgba(0,0,0,.9);
      letter-spacing: -.01em;
    }
    .banner-will { display: block; font-style: italic; font-weight: 400; font-size: .55em; color: var(--white-pg); letter-spacing: .04em; margin-bottom: 2px; }
    .banner-tagline {
      font-family: var(--font-display); font-style: italic;
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      color: rgba(247,242,232,.7); margin: 0 auto 14px;
      max-width: 640px; line-height: 1.5;
    }
    .banner-dates {
      display: inline-flex; align-items: center; gap: 12px;
      border-top: 1px solid rgba(245,208,0,.25);
      border-bottom: 1px solid rgba(245,208,0,.25);
      padding: 10px 24px; margin: 16px 0 30px;
    }
    .banner-dates span { font-size: 13px; font-weight: 500; color: var(--white-pg); letter-spacing: .05em; }
    .banner-dates .sep { color: var(--yellow); font-size: 18px; opacity: .7; }
    .banner-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--dark); padding: 13px 30px; border-radius: 4px; text-decoration: none; font-weight: 600; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; transition: background .2s, transform .15s; }
    .btn-primary:hover { background: var(--yellow-bright); transform: translateY(-1px); }
    .btn-outline { background: transparent; color: var(--white-pg); padding: 13px 30px; border-radius: 4px; border: 1px solid rgba(247,242,232,.3); text-decoration: none; font-weight: 500; font-size: 14px; letter-spacing: .04em; transition: border-color .2s, background .2s, transform .15s; }
    .btn-outline:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-1px); }

    /* ── BREADCRUMB ── */
    .breadcrumb { background: var(--dark2); padding: 13px 0; border-bottom: 1px solid var(--border); }
    .breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
    .breadcrumb a { color: var(--yellow-dim); text-decoration: none; }
    .breadcrumb a:hover { color: var(--yellow); }
    .breadcrumb-sep { opacity: .4; }

    /* ── STATS ── */
    .stats-band { background: var(--dark3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 26px 0; }
    .stats-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(6,1fr); }
    .stat-item { text-align: center; padding: 0 10px; border-right: 1px solid var(--border); }
    .stat-item:last-child { border-right: none; }
    .stat-number { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 4px; }
    .stat-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; line-height: 1.3; }

    /* ── MAIN LAYOUT ── */
    .main-layout { max-width: 1200px; margin: 0 auto; padding: 56px 24px 80px; display: grid; grid-template-columns: 224px 1fr; gap: 50px; align-items: start; }

    /* ── SIDEBAR ── */
    .sidebar-nav { position: sticky; top: 88px; }
    .sidebar-nav-title { font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
    .sidebar-nav ul { list-style: none; padding: 0; margin: 0 0 20px; }
    .sidebar-nav ul li { margin-bottom: 1px; }
    .sidebar-nav ul li a { display: block; font-size: 13px; color: var(--text-muted); text-decoration: none; padding: 6px 10px; border-radius: 4px; border-left: 2px solid transparent; transition: all .2s; }
    .sidebar-nav ul li a:hover, .sidebar-nav ul li a.active { color: var(--yellow); background: rgba(245,208,0,.07); border-left-color: var(--yellow); }
    .sidebar-info { background: var(--dark3); border: 1px solid var(--border); border-radius: 8px; padding: 16px; }
    .sidebar-info-title { font-size: 10px; font-weight: 600; color: var(--yellow-dim); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
    .sidebar-info-row { display: flex; gap: 9px; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; align-items: flex-start; line-height: 1.4; }
    .sidebar-info-row:last-child { margin-bottom: 0; }
    .sinfo-icon { flex-shrink: 0; font-size: 13px; }
    .sidebar-info-row strong { color: var(--white-pg); display: block; }
    .sidebar-back { margin-top: 16px; }
    .sidebar-back a { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--yellow-dim); text-decoration: none; font-weight: 600; transition: color .2s; }
    .sidebar-back a:hover { color: var(--yellow); }

    /* ── ARTICLE ── */
    .article { max-width: 820px; }

    /* ── NEWS ── */
    .news-block { background: var(--dark3); border: 1px solid var(--border-y); border-left: 3px solid var(--yellow); border-radius: 8px; padding: 18px 22px; margin-bottom: 40px; }
    .news-block h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--yellow-pale); margin: 0 0 13px; }
    .news-block ul { list-style: none; padding: 0; margin: 0 0 10px; display: flex; flex-direction: column; gap: 9px; }
    .news-block li { font-size: 13px; color: var(--text-muted); display: flex; gap: 9px; align-items: baseline; }
    .news-date { font-size: 11px; font-weight: 600; color: var(--red-light); white-space: nowrap; flex-shrink: 0; }
    .news-block li a { color: var(--yellow-dim); text-decoration: none; }
    .news-block li a:hover { color: var(--yellow); text-decoration: underline; }
    .news-archive a { font-size: 13px; color: var(--yellow-dim); text-decoration: none; font-weight: 600; }
    .news-archive a:hover { color: var(--yellow); text-decoration: underline; }

    /* ── INTRO ── */
    .intro-lead { font-family: var(--font-display); font-size: 1.22rem; color: rgba(247,242,232,.9); line-height: 1.82; margin: 0 0 22px; }
    .intro-lead strong { color: var(--yellow); font-weight: 500; }

    /* ── QUOTE ── */
    .pull-quote {
      border-left: 3px solid var(--yellow);
      padding: 14px 22px; margin: 28px 0;
      background: rgba(245,208,0,.04);
      border-radius: 0 6px 6px 0;
    }
    .pull-quote p {
      font-family: var(--font-display); font-style: italic;
      font-size: 1.1rem; color: rgba(247,242,232,.82);
      margin: 0 0 6px; line-height: 1.65;
    }
    .pull-quote cite { font-size: 12px; color: var(--yellow-dim); font-style: normal; font-weight: 500; letter-spacing: .06em; }

    /* ── MAIN IMAGE ── */
    .main-img { width: 100%; border-radius: 8px; display: block; margin-bottom: 32px; border: 1px solid var(--border); }
    .img-caption { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: -24px; margin-bottom: 32px; font-style: italic; }

    /* ── SECTION HEADER ── */
    .section-header { margin-bottom: 24px; scroll-margin-top: 90px; }
    .section-header h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--text-light); margin: 0 0 5px; line-height: 1.1; }
    .section-header h2 em { font-style: italic; color: var(--yellow); }
    .section-header .sub { font-size: 11px; font-weight: 600; color: var(--yellow-dim); letter-spacing: .12em; text-transform: uppercase; }
    .section-divider { height: 1px; background: var(--border); margin: 52px 0; }

    /* ── CHIPS ── */
    .chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0 18px; }
    .chip { display: inline-flex; align-items: center; gap: 5px; background: rgba(245,208,0,.08); border: 1px solid var(--border); color: var(--white-dim); font-size: 11px; font-weight: 500; padding: 4px 11px; border-radius: 3px; white-space: nowrap; }
    .chip-red  { background: rgba(192,57,43,.1);  border-color: var(--border-r); color: #f5a0a0; }
    .chip-y    { background: rgba(245,208,0,.12); border-color: var(--border-y); color: var(--yellow); }

    /* ── SECTIUNE CARD ── */
    .sectiune { margin-bottom: 52px; scroll-margin-top: 90px; }
    .sectiune-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
    .sectiune-num {
      font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
      color: var(--yellow); opacity: .25; line-height: 1; flex-shrink: 0;
      min-width: 52px;
    }
    .sectiune-title-wrap h2 { font-family: var(--font-display); font-size: clamp(1.3rem,2.6vw,1.75rem); color: var(--text-light); margin: 0 0 4px; line-height: 1.18; }
    .sectiune-title-wrap h2 em { color: var(--yellow); font-style: normal; }
    .sectiune-sub { font-size: 11px; font-weight: 600; color: var(--yellow-dim); letter-spacing: .1em; text-transform: uppercase; }
    .sectiune-img { width: 100%; border-radius: 8px; display: block; margin-bottom: 16px; border: 1px solid var(--border); aspect-ratio: 16/9; object-fit: cover; transition: transform .35s, filter .35s; filter: brightness(.95); }
    .sectiune-img:hover { transform: scale(1.012); filter: brightness(1.05); }
    .sectiune p { font-size: 15px; color: rgba(247,242,232,.76); line-height: 1.86; margin: 0 0 14px; }
    .sectiune p strong { color: var(--white-pg); font-weight: 500; }
    .sectiune p:last-child { margin-bottom: 0; }

    /* ── TIP BOX ── */
    .tip-box { background: rgba(245,208,0,.06); border: 1px solid rgba(245,208,0,.18); border-left: 3px solid var(--yellow); border-radius: 0 7px 7px 0; padding: 14px 20px; margin: 18px 0; }
    .tip-box-label { font-size: 10px; font-weight: 600; color: var(--yellow); text-transform: uppercase; letter-spacing: .15em; margin-bottom: 7px; }
    .tip-box p { font-size: 14px; color: rgba(247,242,232,.74); margin: 0; line-height: 1.68; }

    /* ── ALERT BOX ── */
    .alert-box { background: rgba(192,57,43,.1); border: 1px solid rgba(192,57,43,.28); border-left: 3px solid var(--red-light); border-radius: 0 7px 7px 0; padding: 14px 20px; margin: 18px 0; }
    .alert-box-label { font-size: 10px; font-weight: 600; color: var(--red-light); text-transform: uppercase; letter-spacing: .15em; margin-bottom: 7px; }
    .alert-box p { font-size: 14px; color: rgba(247,242,232,.74); margin: 0; line-height: 1.68; }
    .alert-box a { color: var(--yellow); text-decoration: none; font-weight: 600; }
    .alert-box a:hover { text-decoration: underline; }

    /* ── SECTIONS GRID (sectiunile festivalului) ── */
    .festival-sections { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 14px; margin: 20px 0 28px; }
    .fs-card {
      background: var(--dark3); border: 1px solid var(--border);
      border-radius: 6px; padding: 20px; transition: border-color .2s, background .2s;
      position: relative; overflow: hidden;
    }
    .fs-card:hover { border-color: var(--border-y); background: rgba(245,208,0,.03); }
    .fs-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: var(--yellow); transform: scaleX(0); transform-origin: left;
      transition: transform .3s ease;
    }
    .fs-card:hover::before { transform: scaleX(1); }
    .fs-card-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
    .fs-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--yellow); margin: 0 0 6px; font-style: italic; }
    .fs-card-text { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.6; }

    /* ── PROGRAMME TABLE ── */
    .programme-list { display: flex; flex-direction: column; gap: 2px; margin: 16px 0; }
    .prog-row { display: flex; align-items: stretch; background: var(--dark3); border: 1px solid var(--border); border-radius: 0; transition: border-color .2s; }
    .prog-row:first-child { border-radius: 6px 6px 0 0; }
    .prog-row:last-child  { border-radius: 0 0 6px 6px; }
    .prog-row + .prog-row { border-top: none; }
    .prog-row:hover { border-color: var(--border-y); z-index: 1; position: relative; }
    .prog-section { flex-shrink: 0; width: 140px; padding: 12px 14px; font-family: var(--font-display); font-size: 13px; font-style: italic; color: var(--yellow); border-right: 1px solid var(--border); display: flex; align-items: center; background: rgba(245,208,0,.04); }
    .prog-desc { flex: 1; padding: 12px 16px; }
    .prog-desc strong { display: block; font-size: 14px; color: var(--text-light); margin-bottom: 2px; font-weight: 500; }
    .prog-desc span { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
    .prog-badge { flex-shrink: 0; padding: 0 14px; display: flex; align-items: center; }
    .badge { font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 3px; white-space: nowrap; text-transform: uppercase; letter-spacing: .06em; }
    .badge-free    { background: rgba(100,200,120,.12); color: #80e095; border: 1px solid rgba(100,200,120,.22); }
    .badge-bilet   { background: rgba(245,208,0,.12);   color: var(--yellow); border: 1px solid rgba(245,208,0,.22); }
    .badge-erasmus { background: rgba(192,57,43,.12);   color: #f5a0a0; border: 1px solid rgba(192,57,43,.22); }

    /* ── PRACTICAL ── */
    .practical-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 18px 0; }
    .practical-card { background: var(--dark3); border: 1px solid var(--border); border-radius: 6px; padding: 16px; }
    .practical-card h4 { font-size: 11px; font-weight: 600; color: var(--yellow-dim); text-transform: uppercase; letter-spacing: .1em; margin: 0 0 9px; }
    .practical-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.6; }
    .practical-card p strong { color: var(--text-light); display: block; margin-bottom: 2px; }

    /* ── CITY BREAK GRID ── */
    .cb-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 12px; margin: 16px 0 22px; }
    .cb-card { background: var(--dark3); border: 1px solid var(--border); border-radius: 6px; padding: 18px; transition: border-color .2s; }
    .cb-card:hover { border-color: var(--border-y); }
    .cb-icon { font-size: 1.5rem; margin-bottom: 10px; display: block; }
    .cb-title { font-size: 14px; font-weight: 600; color: var(--text-light); margin: 0 0 5px; }
    .cb-text  { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.6; }

    /* ── CAZARE ── */
    .cazare-box { background: linear-gradient(135deg, rgba(192,57,43,.14) 0%, rgba(245,208,0,.07) 100%); border: 1px solid rgba(192,57,43,.3); border-radius: 8px; padding: 24px 28px; margin: 28px 0; }
    .cazare-box h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--yellow); margin: 0 0 10px; }
    .cazare-box p { font-size: 14px; color: var(--text-muted); margin: 0 0 18px; line-height: 1.68; }
    .btn-booking { display: inline-flex; align-items: center; gap: 8px; background: #003580; color: #fff; padding: 11px 24px; border-radius: 5px; text-decoration: none; font-weight: 600; font-size: 14px; transition: background .2s; }
    .btn-booking:hover { background: #0052b5; }

    /* ── FAQ ── */
    .faq-list { margin-top: 22px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-question { width: 100%; text-align: left; background: none; border: none; padding: 16px 0; font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--text-light); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; transition: color .2s; }
    .faq-question:hover { color: var(--yellow); }
    .faq-icon { font-size: 18px; color: var(--yellow); flex-shrink: 0; transition: transform .3s; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .faq-answer-inner { padding: 0 0 16px; font-size: 13px; color: var(--text-muted); line-height: 1.8; }
    .faq-item.open .faq-answer { max-height: 350px; }

    /* ── SHARE ── */
    .share-section { padding: 36px 0; border-top: 1px solid var(--border); }
    .share-title { font-size: 12px; font-weight: 600; color: var(--text-muted); text-align: center; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .14em; }
    .share-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
    .share-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 5px; font-size: 13px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: opacity .2s, transform .15s; font-family: var(--font-body); }
    .share-btn:hover { opacity: .88; transform: translateY(-1px); }
    .share-fb   { background: #1877f2; color: #fff; }
    .share-wa   { background: #25d366; color: #fff; }
    .share-pin  { background: #e60023; color: #fff; }
    .share-copy { background: var(--dark3); color: var(--white-dim); border: 1px solid var(--border); }

    /* ── FOOTER ── */
    #footer { background: #050403; border-top: 1px solid var(--border); padding: 56px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
    .footer-brand h2 { font-family: var(--font-display); font-size: 1.4rem; color: var(--yellow); margin: 0 0 10px; }
    .footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.72; margin: 0 0 18px; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-social-link { width: 36px; height: 36px; border-radius: 4px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; font-size: 14px; transition: border-color .2s, color .2s; }
    .footer-social-link:hover { border-color: var(--yellow); color: var(--yellow); }
    .footer-col h4 { font-size: 11px; font-weight: 600; color: var(--yellow-dim); letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; }
    .footer-col ul { list-style: none; padding: 0; margin: 0; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
    .footer-col ul li a:hover { color: var(--white-pg); }
    .footer-bottom { border-top: 1px solid var(--border); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
    .footer-bottom p { font-size: 12px; color: var(--text-muted); margin: 0; }
    .footer-bottom a { color: var(--yellow-dim); text-decoration: none; }
    .footer-bottom a:hover { color: var(--yellow); text-decoration: underline; }

    /* ── GDPR ── */
    #gdpr-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: rgba(8,7,6,.97); border-top: 1px solid var(--border); backdrop-filter: blur(12px); padding: 16px 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; transform: translateY(100%); transition: transform .4s ease; }
    #gdpr-banner.show { transform: translateY(0); }
    .gdpr-text { flex: 1; font-size: 13px; color: var(--text-muted); line-height: 1.55; min-width: 260px; }
    .gdpr-text a { color: var(--yellow-dim); text-decoration: none; }
    .gdpr-actions { display: flex; gap: 10px; flex-shrink: 0; }
    .gdpr-accept { background: var(--yellow); color: var(--dark); border: none; padding: 9px 20px; border-radius: 4px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font-body); }
    .gdpr-reject { background: transparent; color: var(--text-muted); border: 1px solid var(--border); padding: 9px 16px; border-radius: 4px; font-size: 13px; cursor: pointer; font-family: var(--font-body); }

    /* ── AI BTN ── */
    #ai-btn { position: fixed; bottom: 24px; right: 24px; z-index: 997; width: 56px; height: 56px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 18px rgba(192,57,43,.5); transition: transform .25s; font-size: 22px; }
    #ai-btn:hover { transform: scale(1.08); }
    #ai-tooltip { position: fixed; bottom: 32px; right: 90px; z-index: 997; background: var(--dark2); color: var(--text-light); font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 6px; border: 1px solid var(--border); white-space: nowrap; opacity: 0; transform: translateX(6px); transition: opacity .2s, transform .2s; pointer-events: none; }
    #ai-btn:hover ~ #ai-tooltip { opacity: 1; transform: translateX(0); }

    /* ── HASHTAG BADGE ── */
    .hashtag-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,208,0,.08); border: 1px solid var(--border-y); border-radius: 4px; padding: 8px 16px; margin: 8px 0; font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--yellow); letter-spacing: .02em; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .main-nav { display: none; }
      .hamburger { display: flex; }
      .main-layout { grid-template-columns: 1fr; gap: 0; }
      .sidebar-nav { position: static; margin-bottom: 32px; }
      .stats-grid { grid-template-columns: repeat(3,1fr); }
      .stat-item:nth-child(3) { border-right: none; }
      .practical-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .stats-grid { grid-template-columns: repeat(2,1fr); }
      .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 10px 0; }
      .stat-item:last-child { border-bottom: none; }
      .practical-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .lang-nav { display: none; }
      .banner-dates { padding: 8px 14px; }

           /* REPARATII FINALE MOBIL */
@media (max-width: 600px) {
    /* 1. Prevenim orice iesire accidentala in decor */
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* 2. Fortam containerele sa nu depaseasca latimea ecranului */
    .header-inner, .main-layout, .stats-grid, .breadcrumb-inner, .footer-grid {
        max-width: 100vw;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden; /* Taie ce depaseste */
    }

    /* 3. Reparam blocurile care intra/ies alandala */
    .stats-grid {
        grid-template-columns: 1fr 1fr; /* Maxim 2 pe rand pe mobil foarte mic */
        gap: 10px;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
    }

    /* 4. Imaginile sa nu forteze latimea */
    .attraction-img, .main-img {
        width: 100% !important;
        height: auto;
    }

    /* 5. Booking box-ul sa fie vertical pe mobil */
    .booking-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-booking {
        width: 100%; /* Butonul sa fie cat tot ecranul, e mai usor de apasat */
        justify-content: center;
    }

    /* 6. Reparam tabelele de tarife sa nu se sfarame */
    .tarif-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* REPARAȚIE FORȚATĂ PENTRU MENIU LIMBI PE MOBIL */
@media (max-width: 600px) {
    .header-inner {
        display: flex !important;
        justify-content: space-between !important;
        padding: 0 12px !important;
    }

    .lang-nav {
        display: flex !important; /* Forțăm afișarea chiar dacă e ascuns în altă parte */
        order: 2; /* Îl punem la mijloc, între Logo și Hamburger */
        gap: 2px !important;
    }

    .lang-nav a {
        padding: 3px 5px !important; /* Micșorăm butoanele să încapă */
        font-size: 10px !important;
    }

    .lang-label {
        display: none; /* Ascundem eticheta "Language:" ca să economisim spațiu */
    }

    .header-logo {
        order: 1;
        font-size: 15px !important;
    }

    .hamburger {
        order: 3;
    }
}

    }