    :root {
      --accent:        #e44d26;
      --gold:          #c9a84c;
      --gold-light:    #f0d080;
      --green:         #3a7d44;
      --green-light:   #5aaf68;
      --green-pale:    #d4edd9;
      --dark:          #060f06;
      --dark2:         #0d1a0d;
      --dark3:         #142014;
      --text-light:    #edf5ee;
      --text-muted:    #7da882;
      --border:        rgba(90,175,104,0.18);
      --border-gold:   rgba(201,168,76,0.2);
      --font-display:  'Playfair Display', Georgia, serif;
      --font-body:     'Source Sans 3', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; }
    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(6,15,6,.96); backdrop-filter: blur(14px); box-shadow: 0 2px 24px rgba(0,0,0,.5); 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: 18px; color: var(--gold-light); text-decoration: none; white-space: nowrap; flex-shrink: 0; }
    .header-logo span { color: var(--green-light); }
    .main-nav { display: flex; align-items: center; gap: 4px; }
    .main-nav a { color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 6px 10px; border-radius: 6px; transition: color .2s, background .2s; white-space: nowrap; }
    .main-nav a:hover { color: var(--green-pale); background: rgba(90,175,104,.1); }
    .lang-nav { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
    .lang-nav a { color: var(--text-muted); text-decoration: none; font-size: 12px; 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(--gold-light); border-color: var(--border-gold); background: rgba(201,168,76,.08); }
    .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(6,15,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: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
    .banner-img-bg { position: absolute; inset: 0; background-image: url('../../images/parcul_romanescu_debarcader_2_crop.jpg'); background-size: cover; background-position: center; z-index: 0; }
    .banner-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(6,15,6,.1) 0%, rgba(6,15,6,.55) 50%, rgba(6,15,6,.9) 100%); z-index: 1; }
    .banner-content { position: relative; z-index: 2; max-width: 780px; padding: 110px 24px 60px; }
    .banner-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--green-light); margin-bottom: 14px; }
    .banner-content h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 700; line-height: 1.1; color: #fff; margin: 0 0 18px; text-shadow: 0 2px 30px rgba(0,0,0,.6); }
    .banner-content h1 em { font-style: normal; color: var(--green-pale); }
    .banner-content p { font-size: clamp(.95rem, 2.3vw, 1.15rem); color: rgba(255,255,255,.82); max-width: 540px; margin: 0 auto; line-height: 1.7; }
    /* 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: 13px; color: var(--text-muted); }
    .breadcrumb a { color: var(--green-light); text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    /* STATS */
    .stats-band { background: var(--dark3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 30px 0; }
    .stats-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4,1fr); }
    .stat-item { text-align: center; padding: 0 20px; border-right: 1px solid var(--border); }
    .stat-item:last-child { border-right: none; }
    .stat-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--green-light); line-height: 1; margin-bottom: 5px; }
    .stat-label { font-size: 12px; color: var(--text-muted); }
    /* LAYOUT */
    .section { padding: 76px 0; }
    .section-alt { background: var(--dark2); }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-header { text-align: center; margin-bottom: 48px; }
    .section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--green-light); margin-bottom: 12px; }
    .section-title { font-family: var(--font-display); font-size: clamp(1.7rem,3.5vw,2.5rem); font-weight: 700; color: var(--text-light); margin: 0 0 12px; line-height: 1.2; }
    .section-desc { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.75; }
    .divider { width: 44px; height: 2px; background: var(--green-light); margin: 14px auto 0; border-radius: 2px; }
    /* PARK HERO CARD */
    .park-hero { display: grid; grid-template-columns: 1fr 1fr; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 40px; background: var(--dark2); }
    .park-hero-img { position: relative; min-height: 440px; }
    .park-hero-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important; /* Aici lăsăm 100% pentru că e container fix, dar cu object-fit */
    object-fit: cover;
}
    .park-hero-badge { position: absolute; top: 16px; left: 16px; background: var(--green); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; z-index: 2; }
    .park-hero-body { padding: 38px 38px; display: flex; flex-direction: column; justify-content: center; }
    .park-hero-tag { font-size: 11px; font-weight: 600; color: var(--green-light); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
    .park-hero-body h2 { font-family: var(--font-display); font-size: clamp(1.5rem,2.5vw,2rem); color: var(--text-light); margin: 0 0 14px; line-height: 1.25; }
    .park-hero-body p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin: 0 0 12px; }
    .park-hero-body p strong { color: var(--green-pale); font-weight: 600; }
    /* CHIPS */
    .info-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
    .chip { display: inline-flex; align-items: center; gap: 5px; background: rgba(90,175,104,.1); border: 1px solid var(--border); color: var(--green-pale); font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: 20px; white-space: nowrap; }
    .chip-gold { background: rgba(201,168,76,.1); border-color: var(--border-gold); color: var(--gold-light); }
    /* ATRACȚII */
    .attractions-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 14px; margin-top: 26px; }
    .attraction-card { background: var(--dark3); border: 1px solid var(--border); border-radius: 10px; padding: 18px 16px; display: flex; gap: 12px; align-items: flex-start; transition: border-color .2s, transform .2s; }
    .attraction-card:hover { border-color: rgba(90,175,104,.45); transform: translateY(-2px); }
    .attraction-icon { font-size: 1.7rem; flex-shrink: 0; line-height: 1; }
    .attraction-card h3 { font-size: 14px; font-weight: 600; color: var(--text-light); margin: 0 0 4px; }
    .attraction-card p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5; }
    /* PARKS GRID */
    .parks-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 22px; }
    .park-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
    .park-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(0,0,0,.5); border-color: rgba(90,175,104,.4); }
    .park-card-img-wrap { position: relative; overflow: hidden; }
    .park-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    height: auto !important; /* REPARAȚIE: Păstrează proporția corectă */
    transition: transform .4s;
}
    .park-card:hover .park-card-img { transform: scale(1.05); }
    .park-card-tag { position: absolute; top: 12px; left: 12px; background: rgba(6,15,6,.82); color: var(--green-light); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; border: 1px solid var(--border); backdrop-filter: blur(4px); }
    .park-card-free { position: absolute; top: 12px; right: 12px; background: rgba(58,125,68,.85); color: #d4edd9; font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(4px); }
    .park-card-body { padding: 22px 22px 24px; }
    .park-card-body h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text-light); margin: 0 0 10px; }
    .park-card-body p { font-size: 14px; color: var(--text-muted); margin: 0 0 16px; line-height: 1.65; }
    .park-card-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
    .meta-item { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
    .meta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }
    /* BUTTONS */
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: #fff; padding: 13px 28px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 15px; transition: background .2s, transform .15s; }
    .btn-primary:hover { background: var(--green-light); color: var(--dark); transform: translateY(-1px); }
    .btn-card { display: inline-flex; align-items: center; gap: 6px; background: transparent; color: var(--green-light); border: 1px solid rgba(90,175,104,.35); padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .2s, color .2s, border-color .2s; }
    .btn-card:hover { background: var(--green-light); color: var(--dark); border-color: var(--green-light); }
    .btn-card svg { width: 14px; height: 14px; }
    /* TIP BOX */
    .tip-box { background: rgba(58,125,68,.08); border: 1px solid rgba(58,125,68,.3); border-left: 3px solid var(--green-light); border-radius: 10px; padding: 18px 22px; margin-top: 30px; }
    .tip-box-label { font-size: 11px; font-weight: 600; color: var(--green-light); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 8px; }
    .tip-box p { font-size: 14px; color: rgba(237,245,238,.75); margin: 0; line-height: 1.65; }
    /* HARTĂ */
    .map-section { background: var(--dark3); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
    .map-placeholder { height: 280px; background: var(--dark2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--text-muted); }
    .map-info { padding: 24px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
    .map-info-item h4 { font-size: 13px; font-weight: 600; color: var(--green-light); margin: 0 0 4px; }
    .map-info-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
    /* FAQ */
    .faq-list { max-width: 800px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-question { width: 100%; text-align: left; background: none; border: none; padding: 18px 0; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--text-light); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color .2s; }
    .faq-question:hover { color: var(--green-pale); }
    .faq-icon { font-size: 20px; color: var(--green-light); 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 18px; font-size: 14px; color: var(--text-muted); line-height: 1.75; }
    .faq-item.open .faq-answer { max-height: 300px; }
    /* SHARE */
    .share-section { padding: 36px 0; border-top: 1px solid var(--border); }
    .share-title { font-size: 13px; font-weight: 600; color: var(--text-muted); text-align: center; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .1em; }
    .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: 8px; 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(--green-pale); border: 1px solid var(--border); }
    /* FOOTER */
    #footer { background: #020803; 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.35rem; color: var(--gold-light); margin: 0 0 10px; }
    .footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0 0 18px; }
    .footer-socials { display: flex; gap: 10px; }
    .footer-social-link { width: 36px; height: 36px; border-radius: 50%; 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(--green-light); color: var(--green-light); }
    .footer-col h4 { font-size: 12px; font-weight: 600; color: var(--green-light); letter-spacing: .12em; 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(--green-pale); }
    .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: 13px; color: var(--text-muted); margin: 0; }
    .footer-bottom a { color: var(--green-light); text-decoration: none; }
    .footer-bottom a:hover { text-decoration: underline; }
    /* GDPR */
    #gdpr-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: rgba(6,15,6,.97); border-top: 1px solid var(--border); backdrop-filter: blur(10px); 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(--green-light); text-decoration: none; }
    .gdpr-actions { display: flex; gap: 10px; flex-shrink: 0; }
    .gdpr-accept { background: var(--green); color: #fff; border: none; padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: background .2s; }
    .gdpr-accept:hover { background: var(--green-light); }
    .gdpr-reject { background: transparent; color: var(--text-muted); border: 1px solid var(--border); padding: 9px 16px; border-radius: 6px; font-size: 13px; cursor: pointer; font-family: var(--font-body); }
    .gdpr-reject:hover { color: var(--text-light); }
    /* AI BTN */
    #ai-btn { position: fixed; bottom: 24px; right: 24px; z-index: 997; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 16px rgba(228,77,38,.45); 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: 8px; 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); }
   /* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .park-hero { grid-template-columns: 1fr; }
    .park-hero-img { min-height: 280px; }
    .park-hero-body { padding: 24px 22px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .map-info { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    /* 1. Reset Global Mobil */
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* 2. Containere Sigure */
    .header-inner, .container, .stats-grid, .breadcrumb-inner, .footer-grid {
        max-width: 100vw;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 3. Imagini Proporționale */
    .park-card-img, .park-hero-img img, .attraction-img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }

    /* 4. Statistici și Grid-uri */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); padding: 12px 0; }
    .stat-item:last-child { border-bottom: none; }
    .parks-grid { grid-template-columns: 1fr; }

    /* 5. Meniu Limbi Forțat */
    .header-inner {
        display: flex !important;
        justify-content: space-between !important;
    }

    .lang-nav {
        display: flex !important;
        order: 2;
        gap: 4px !important;
    }

    .lang-nav a {
        padding: 3px 6px !important;
        font-size: 11px !important;
    }

    .lang-label { display: none; }
    .header-logo { order: 1; font-size: 15px !important; }
    .hamburger { order: 3; }

    /* 6. Footer și Altele */
    .footer-grid { grid-template-columns: 1fr; }
}