:root {
  --accent:       #e44d26;
  --gold:         #c9a84c;
  --gold-light:   #f0d080;
  --rose:         #9d2f5a;
  --rose-light:   #d4678e;
  --rose-pale:    #fce7f0;
  --sepia:        #8b5e3c;
  --sepia-light:  #c49a6c;
  --dark:         #120509;
  --dark2:        #1c0812;
  --dark3:        #260e1a;
  --text-light:   #f5eaf0;
  --text-muted:   #a07080;
  --border:       rgba(157,47,90,0.18);
  --border-light: rgba(212,103,142,0.32);
  --border-gold:  rgba(201,168,76,0.22);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', sans-serif;
}

*, *::before, *::after { 
  box-sizing: border-box; 
}

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body { 
  font-family: var(--font-body); 
  color: var(--text-light); 
  background: var(--dark); 
}

/* FIX GLOBAL IMAGINI */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 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(18,5,9,.97); 
  backdrop-filter: blur(16px); 
  box-shadow: 0 2px 24px rgba(0,0,0,.6); 
  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(--rose-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(--rose-pale); 
  background: rgba(157,47,90,.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(18,5,9,.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: 82vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  overflow: hidden; 
}

.banner-img-bg { 
  position: absolute; 
  inset: 0; 
  background-image: url('images/casa-memoriala-elena-farago-fit.jpg'); 
  background-size: cover; 
  background-position: center 30%; 
  z-index: 0; 
}

.banner-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(165deg, rgba(18,5,9,.15) 0%, rgba(18,5,9,.55) 45%, rgba(18,5,9,.97) 100%); 
  z-index: 1; 
}

/* Pattern literar subtil */
.banner-pattern { 
  position: absolute; 
  inset: 0; 
  opacity: .04; 
  background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(245,234,240,.5) 40px, rgba(245,234,240,.5) 41px); 
  z-index: 1; 
  pointer-events: none; 
}

.banner-content { 
  position: relative; 
  z-index: 2; 
  max-width: 820px; 
  padding: 110px 24px 64px; 
}

.banner-dates { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  background: rgba(157,47,90,.18); 
  border: 1px solid rgba(212,103,142,.3); 
  border-radius: 30px; 
  padding: 6px 18px; 
  margin-bottom: 18px; 
}

.banner-dates-text { 
  font-size: 12px; 
  font-weight: 600; 
  letter-spacing: .12em; 
  text-transform: uppercase; 
  color: var(--rose-pale); 
}

.banner-eyebrow { 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: .22em; 
  text-transform: uppercase; 
  color: var(--rose-light); 
  margin-bottom: 14px; 
}

.banner-content h1 { 
  font-family: var(--font-display); 
  font-size: clamp(2.2rem, 5.5vw, 4.2rem); 
  font-weight: 700; 
  line-height: 1.08; 
  color: #fff; 
  margin: 0 0 14px; 
  text-shadow: 0 2px 30px rgba(0,0,0,.7); 
}

.banner-content h1 em { 
  font-style: italic; 
  color: var(--gold-light); 
}

.banner-quote { 
  font-family: var(--font-display); 
  font-style: italic; 
  font-size: clamp(.9rem, 2vw, 1.05rem); 
  color: rgba(255,255,255,.72); 
  max-width: 540px; 
  margin: 0 auto 28px; 
  line-height: 1.75; 
}

.banner-quote::before { 
  content: '\201E'; 
  color: var(--rose-light); 
  font-size: 1.4rem; 
  line-height: 0; 
  vertical-align: -0.3em; 
}

.banner-quote::after { 
  content: '\201D'; 
  color: var(--rose-light); 
  font-size: 1.4rem; 
  line-height: 0; 
  vertical-align: -0.3em; 
}

.banner-quote-attr { 
  font-size: 12px; 
  color: var(--rose-light); 
  font-weight: 600; 
  display: block; 
  margin-top: 8px; 
  font-style: normal; 
}

.banner-cta-group { 
  display: flex; 
  gap: 14px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

/* BUTTONS */
.btn-primary { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  background: var(--rose); 
  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(--rose-light); 
  transform: translateY(-1px); 
}

.btn-outline { 
  background: transparent; 
  color: var(--gold-light); 
  padding: 13px 28px; 
  border-radius: 8px; 
  border: 1px solid var(--gold); 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 15px; 
  transition: background .2s, transform .15s; 
}

.btn-outline:hover { 
  background: rgba(201,168,76,.12); 
  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: 13px; 
  color: var(--text-muted); 
}

.breadcrumb a { 
  color: var(--rose-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: 28px 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 12px; 
  border-right: 1px solid var(--border); 
}

.stat-item:last-child { 
  border-right: none; 
}

.stat-number { 
  font-family: var(--font-display); 
  font-size: 1.5rem; 
  font-weight: 700; 
  color: var(--gold-light); 
  line-height: 1; 
  margin-bottom: 4px; 
}

.stat-label { 
  font-size: 10px; 
  color: var(--text-muted); 
}

/* MAIN LAYOUT */
.main-layout { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 56px 24px 80px; 
  display: grid; 
  grid-template-columns: 220px 1fr; 
  gap: 48px; 
  align-items: start; 
}

/* SIDEBAR */
.sidebar-nav { 
  position: sticky; 
  top: 88px; 
}

.sidebar-nav-title { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--text-muted); 
  text-transform: uppercase; 
  letter-spacing: .1em; 
  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: 2px; 
}

.sidebar-nav ul li a { 
  display: block; 
  font-size: 13px; 
  color: var(--text-muted); 
  text-decoration: none; 
  padding: 6px 10px; 
  border-radius: 6px; 
  border-left: 2px solid transparent; 
  transition: all .2s; 
}

.sidebar-nav ul li a:hover, 
.sidebar-nav ul li a.active { 
  color: var(--rose-light); 
  background: rgba(157,47,90,.08); 
  border-left-color: var(--rose-light); 
}

.sidebar-info { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 16px; 
}

.sidebar-info-title { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--gold); 
  text-transform: uppercase; 
  letter-spacing: .08em; 
  margin-bottom: 10px; 
}

.sidebar-info-row { 
  display: flex; 
  gap: 8px; 
  font-size: 12px; 
  color: var(--text-muted); 
  margin-bottom: 7px; 
  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(--rose-pale); 
  display: block; 
}

/* ARTICLE */
.article { 
  max-width: 820px; 
}

.intro-lead { 
  font-size: 1.1rem; 
  color: rgba(245,234,240,.9); 
  line-height: 1.85; 
  margin: 0 0 20px; 
  font-weight: 300; 
}

.intro-lead strong { 
  color: var(--gold-light); 
  font-weight: 600; 
}

.main-img { 
  width: 100%; 
  border-radius: 12px; 
  display: block; 
  margin-bottom: 12px; 
  border: 1px solid var(--border); 
  aspect-ratio: 16/9; 
  object-fit: cover; 
}

.img-caption { 
  font-size: 12px; 
  color: var(--text-muted); 
  text-align: center; 
  margin-bottom: 28px; 
  font-style: italic; 
}

/* CITAT LITERAR */
.literary-quote { 
  background: var(--dark3); 
  border: 1px solid var(--border-light); 
  border-left: 4px solid var(--rose-light); 
  border-radius: 12px; 
  padding: 24px 28px; 
  margin: 28px 0; 
}

.lq-text { 
  font-family: var(--font-display); 
  font-style: italic; 
  font-size: 1.05rem; 
  color: rgba(245,234,240,.88); 
  line-height: 1.75; 
  margin: 0 0 10px; 
}

.lq-attr { 
  font-size: 12px; 
  color: var(--rose-light); 
  font-weight: 600; 
}

/* SECTIUNE ARTICOL */
.art-section { 
  margin-bottom: 52px; 
  scroll-margin-top: 90px; 
}

.art-section:last-child { 
  margin-bottom: 0; 
}

.art-section-header { 
  display: flex; 
  align-items: center; 
  gap: 14px; 
  margin-bottom: 16px; 
}

.art-section-num { 
  font-family: var(--font-display); 
  font-size: 1.8rem; 
  font-weight: 700; 
  color: var(--rose-light); 
  opacity: .3; 
  line-height: 1; 
  flex-shrink: 0; 
}

.art-section-title-wrap h2 { 
  font-family: var(--font-display); 
  font-size: clamp(1.3rem, 2.5vw, 1.7rem); 
  color: var(--text-light); 
  margin: 0 0 3px; 
  line-height: 1.2; 
}

.art-section-sub { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--gold); 
  letter-spacing: .1em; 
  text-transform: uppercase; 
}

.art-section-img { 
  width: 100%; 
  border-radius: 12px; 
  display: block; 
  margin-bottom: 16px; 
  border: 1px solid var(--border); 
  aspect-ratio: 16/9; 
  object-fit: cover; 
  transition: transform .3s; 
}

.art-section-img:hover { 
  transform: scale(1.01); 
}

.art-section p { 
  font-size: 15px; 
  color: rgba(245,234,240,.78); 
  line-height: 1.82; 
  margin: 0 0 14px; 
}

.art-section p:last-child { 
  margin-bottom: 0; 
}

.art-section p strong { 
  color: var(--gold-light); 
  font-weight: 600; 
}

.art-section a { 
  color: var(--rose-light); 
  text-decoration: none; 
}

.art-section a:hover { 
  text-decoration: underline; 
}

.divider { 
  height: 1px; 
  background: var(--border); 
  margin: 52px 0; 
}

/* CHIPS */
.chips { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 7px; 
  margin: 10px 0 16px; 
}

.chip { 
  display: inline-flex; 
  align-items: center; 
  gap: 5px; 
  background: rgba(157,47,90,.1); 
  border: 1px solid var(--border); 
  color: var(--rose-pale); 
  font-size: 11px; 
  font-weight: 600; 
  padding: 4px 10px; 
  border-radius: 20px; 
  white-space: nowrap; 
}

.chip-gold { 
  background: rgba(201,168,76,.1); 
  border-color: var(--border-gold); 
  color: var(--gold-light); 
}

.chip-sepia { 
  background: rgba(139,94,60,.15); 
  border-color: rgba(196,154,108,.25); 
  color: var(--sepia-light); 
}

/* CRONOLOGIE */
.timeline { 
  position: relative; 
  padding-left: 28px; 
}

.timeline::before { 
  content: ''; 
  position: absolute; 
  left: 7px; 
  top: 0; 
  bottom: 0; 
  width: 2px; 
  background: linear-gradient(to bottom, var(--rose-light), rgba(157,47,90,.1)); 
  border-radius: 2px; 
}

.tl-item { 
  position: relative; 
  margin-bottom: 28px; 
}

.tl-item:last-child { 
  margin-bottom: 0; 
}

.tl-dot { 
  position: absolute; 
  left: -24px; 
  top: 4px; 
  width: 12px; 
  height: 12px; 
  border-radius: 50%; 
  background: var(--dark); 
  border: 2px solid var(--rose-light); 
}

.tl-dot::after { 
  content: ''; 
  position: absolute; 
  inset: 2px; 
  border-radius: 50%; 
  background: var(--rose-light); 
}

.tl-dot.gold { 
  border-color: var(--gold); 
}

.tl-dot.gold::after { 
  background: var(--gold); 
}

.tl-year { 
  font-family: var(--font-display); 
  font-size: .95rem; 
  font-weight: 700; 
  color: var(--gold); 
  margin-bottom: 3px; 
}

.tl-title { 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--text-light); 
  margin-bottom: 3px; 
}

.tl-desc { 
  font-size: 13px; 
  color: var(--text-muted); 
  line-height: 1.6; 
  margin: 0; 
}

.tl-desc strong { 
  color: var(--rose-pale); 
}

/* OPERE GRID */
.opere-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
  gap: 12px; 
  margin: 16px 0; 
}

.opera-card { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 10px; 
  padding: 14px 16px; 
  transition: border-color .2s, transform .2s; 
}

.opera-card:hover { 
  border-color: var(--border-light); 
  transform: translateY(-2px); 
}

.opera-year { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--gold); 
  text-transform: uppercase; 
  letter-spacing: .1em; 
  margin-bottom: 5px; 
}

.opera-title { 
  font-family: var(--font-display); 
  font-style: italic; 
  font-size: 14px; 
  color: var(--text-light); 
  margin-bottom: 4px; 
}

.opera-nota { 
  font-size: 11px; 
  color: var(--text-muted); 
  line-height: 1.4; 
}

.opera-card.award { 
  border-color: rgba(201,168,76,.3); 
}

.opera-card.award .opera-year { 
  color: var(--gold-light); 
}

/* POEZII POPULARE */
.poems-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); 
  gap: 10px; 
  margin: 14px 0; 
}

.poem-card { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 10px; 
  padding: 14px; 
  text-align: center; 
  transition: border-color .2s; 
}

.poem-card:hover { 
  border-color: var(--border-light); 
}

.poem-emoji { 
  font-size: 1.8rem; 
  margin-bottom: 7px; 
  display: block; 
  line-height: 1; 
}

.poem-title { 
  font-family: var(--font-display); 
  font-style: italic; 
  font-size: 13px; 
  color: var(--text-light); 
  margin-bottom: 4px; 
}

.poem-note { 
  font-size: 11px; 
  color: var(--text-muted); 
  line-height: 1.4; 
}

/* MUZEU — COLECTII */
.museum-rooms { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); 
  gap: 14px; 
  margin: 16px 0; 
}

.room-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; 
}

.room-card:hover { 
  border-color: var(--border-light); 
}

.room-icon { 
  font-size: 1.7rem; 
  flex-shrink: 0; 
  line-height: 1; 
}

.room-card h4 { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--text-light); 
  margin: 0 0 4px; 
}

.room-card p { 
  font-size: 12px; 
  color: var(--text-muted); 
  margin: 0; 
  line-height: 1.55; 
}

/* PREMII */
.awards-list { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  margin: 14px 0; 
}

.award-item { 
  display: flex; 
  gap: 14px; 
  align-items: flex-start; 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 8px; 
  padding: 12px 16px; 
}

.award-medal { 
  font-size: 1.5rem; 
  flex-shrink: 0; 
}

.award-info h4 { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--gold-light); 
  margin: 0 0 3px; 
}

.award-info p { 
  font-size: 12px; 
  color: var(--text-muted); 
  margin: 0; 
  line-height: 1.5; 
}

/* CURIOZITATI */
.curio-section { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 14px; 
  padding: 28px; 
  margin: 40px 0; 
}

.curio-section-title { 
  font-family: var(--font-display); 
  font-size: 1.3rem; 
  color: var(--gold-light); 
  margin: 0 0 20px; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
}

.curio-list { 
  display: flex; 
  flex-direction: column; 
  gap: 14px; 
}

.curio-item { 
  display: flex; 
  gap: 14px; 
  align-items: flex-start; 
}

.curio-icon { 
  font-size: 1.3rem; 
  flex-shrink: 0; 
  line-height: 1; 
  margin-top: 2px; 
}

.curio-item p { 
  font-size: 14px; 
  color: var(--text-muted); 
  margin: 0; 
  line-height: 1.65; 
}

.curio-item p strong { 
  color: var(--gold-light); 
}

/* TIP BOX */
.tip-box { 
  background: rgba(157,47,90,.07); 
  border: 1px solid rgba(157,47,90,.2); 
  border-left: 3px solid var(--rose-light); 
  border-radius: 10px; 
  padding: 16px 20px; 
  margin: 18px 0; 
}

.tip-box-label { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--rose-light); 
  text-transform: uppercase; 
  letter-spacing: .12em; 
  margin-bottom: 7px; 
}

.tip-box p { 
  font-size: 14px; 
  color: rgba(245,234,240,.75); 
  margin: 0; 
  line-height: 1.65; 
}

/* INFO PRACTICA */
.practical-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 14px; 
  margin: 20px 0; 
}

.practical-card { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 10px; 
  padding: 16px; 
}

.practical-card h4 { 
  font-size: 12px; 
  font-weight: 600; 
  color: var(--rose-light); 
  text-transform: uppercase; 
  letter-spacing: .08em; 
  margin: 0 0 8px; 
}

.practical-card p { 
  font-size: 13px; 
  color: var(--text-muted); 
  margin: 0; 
  line-height: 1.55; 
}

.practical-card p strong { 
  color: var(--text-light); 
  display: block; 
}

/* FAQ */
.faq-list { 
  margin-top: 20px; 
}

.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: 600; 
  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(--rose-pale); 
}

.faq-icon { 
  font-size: 18px; 
  color: var(--rose-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 16px; 
  font-size: 13px; 
  color: var(--text-muted); 
  line-height: 1.75; 
}

.faq-item.open .faq-answer { 
  max-height: 320px; 
}

/* 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(--rose-pale); 
  border: 1px solid var(--border); 
}

/* FOOTER */
#footer { 
  background: #080203; 
  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(--gold); 
  color: var(--gold); 
}

.footer-col h4 { 
  font-size: 12px; 
  font-weight: 600; 
  color: var(--rose-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(--rose-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(--gold); 
  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(18,5,9,.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(--rose-light); 
  text-decoration: none; 
}

.gdpr-actions { 
  display: flex; 
  gap: 10px; 
  flex-shrink: 0; 
}

.gdpr-accept { 
  background: var(--rose); 
  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(--rose-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); 
}

/* 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 ==================== */

/* TABLET ȘI MAI MIC (pana la 900px) */
@media (max-width: 900px) {
  .main-nav { 
    display: none; 
  }
  
  .hamburger { 
    display: flex; 
  }
  
  /* Layout cu sidebar devine vertical */
  .main-layout { 
    grid-template-columns: 1fr; 
    gap: 0; 
  }
  
  .sidebar-nav { 
    position: static; 
    margin-bottom: 32px; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 20px; 
  }
  
  .sidebar-nav-title { 
    grid-column: 1 / -1; 
  }
  
  /* Stats: 3 coloane */
  .stats-grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
  
  .stat-item:nth-child(3) { 
    border-right: none; 
  }
  
  /* Griduri pe 2 coloane */
  .opere-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .poems-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .museum-rooms { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .practical-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  /* Footer pe 2 coloane */
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
  }
}

/* MOBIL MIC (pana la 600px) */
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
  }
  
  /* Spațiere compactă */
  .header-inner, 
  .container, 
  .breadcrumb-inner, 
  .main-layout { 
    padding-left: 16px; 
    padding-right: 16px; 
  }
  
  /* 🔧 LANG NAV VIZIBIL PE MOBIL */
  .lang-nav { 
    display: flex; 
    gap: 2px; 
  }
  
  .lang-nav a { 
    padding: 3px 6px; 
    font-size: 10px; 
  }
  
  /* Header ordonat */
  .header-inner {
    gap: 8px;
  }
  
  .header-logo {
    font-size: 15px;
  }
  
  /* Stats: 2 coloane */
  .stats-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
  }
  
  .stat-item { 
    border-right: none; 
    border-bottom: 1px solid var(--border); 
    padding: 10px 0; 
  }
  
  .stat-item:nth-child(even) {
    border-right: none;
  }
  
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  
  .stat-item:last-child { 
    border-bottom: none; 
  }
  
  /* Sidebar pe o coloană */
  .sidebar-nav { 
    grid-template-columns: 1fr; 
  }
  
  /* Griduri pe o coloană */
  .opere-grid { 
    grid-template-columns: 1fr; 
  }
  
  .poems-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .museum-rooms { 
    grid-template-columns: 1fr; 
  }
  
  .practical-grid { 
    grid-template-columns: 1fr; 
  }
  
  /* Footer pe o coloană */
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 30px; 
  }
  
  /* Imagini proporții */
  .art-section-img {
    aspect-ratio: 4 / 3; 
  }
  
  /* Banner mai compact */
  #banner { 
    min-height: 75vh; 
  }
  
  .banner-content { 
    padding: 100px 16px 40px; 
  }
  
  /* Cronologie padding redus */
  .timeline {
    padding-left: 24px;
  }
  
  /* Footer simplificat */
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
    gap: 8px; 
  }
}
