:root {
  --accent:         #e44d26;
  --gold:           #c9a84c;
  --gold-light:     #f0d080;
  --emerald:        #059669;
  --emerald-light:  #34d399;
  --emerald-pale:   #d1fae5;
  --dark:           #021208;
  --dark2:          #041c0e;
  --dark3:          #072718;
  --text-light:     #e8f5ed;
  --text-muted:     #6aad88;
  --border:         rgba(5,150,105,0.18);
  --border-gold:    rgba(201,168,76,0.22);
  --border-light:   rgba(52,211,153,0.28);
  --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(2,18,8,.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(--emerald-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(--emerald-pale); 
  background: rgba(5,150,105,.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(2,18,8,.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 */
#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/banner.jpg'); 
  background-size: cover; 
  background-position: center; 
  z-index: 0; 
}

.banner-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(165deg, rgba(2,18,8,.15) 0%, rgba(2,18,8,.6) 45%, rgba(2,18,8,.97) 100%); 
  z-index: 1; 
}

.banner-content { 
  position: relative; 
  z-index: 2; 
  max-width: 820px; 
  padding: 110px 24px 64px; 
}

.banner-eyebrow { 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: .22em; 
  text-transform: uppercase; 
  color: var(--emerald-light); 
  margin-bottom: 14px; 
}

.banner-content h1 { 
  font-family: var(--font-display); 
  font-size: clamp(2.2rem, 5.5vw, 4.4rem); 
  font-weight: 700; 
  line-height: 1.1; 
  color: #fff; 
  margin: 0 0 18px; 
  text-shadow: 0 2px 30px rgba(0,0,0,.7); 
}

.banner-content h1 em { 
  font-style: normal; 
  color: var(--gold-light); 
}

.banner-content p { 
  font-size: clamp(.95rem, 2.3vw, 1.15rem); 
  color: rgba(255,255,255,.82); 
  max-width: 580px; 
  margin: 0 auto 32px; 
  line-height: 1.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(--emerald); 
  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(--emerald-light); 
  color: var(--dark); 
  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(--emerald-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(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.6rem; 
  font-weight: 700; 
  color: var(--gold-light); 
  line-height: 1; 
  margin-bottom: 4px; 
}

.stat-label { 
  font-size: 10px; 
  color: var(--text-muted); 
}

/* LAYOUT SECTIUNI */
.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(--emerald-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: 680px; 
  margin: 0 auto; 
  line-height: 1.8; 
}

.divider { 
  width: 44px; 
  height: 2px; 
  background: var(--emerald-light); 
  margin: 14px auto 0; 
  border-radius: 2px; 
}

/* INTRO CITY */
.city-intro { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 48px; 
  align-items: start; 
}

.city-intro-text h2 { 
  font-family: var(--font-display); 
  font-size: clamp(1.6rem, 3vw, 2.2rem); 
  color: var(--text-light); 
  margin: 0 0 18px; 
  line-height: 1.2; 
}

.city-intro-text p { 
  font-size: 15px; 
  color: var(--text-muted); 
  line-height: 1.8; 
  margin: 0 0 14px; 
}

.city-intro-text p strong { 
  color: var(--gold-light); 
  font-weight: 600; 
}

.city-facts { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.fact-item { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 10px; 
  padding: 14px 18px; 
  display: flex; 
  gap: 14px; 
  align-items: flex-start; 
}

.fact-icon { 
  font-size: 1.5rem; 
  flex-shrink: 0; 
  line-height: 1; 
}

.fact-item h4 { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--emerald-light); 
  margin: 0 0 3px; 
  text-transform: uppercase; 
  letter-spacing: .06em; 
}

.fact-item p { 
  font-size: 13px; 
  color: var(--text-muted); 
  margin: 0; 
  line-height: 1.5; 
}

.fact-item p strong { 
  color: var(--gold-light); 
}

/* CRONOLOGIE TIMELINE */
.timeline { 
  position: relative; 
  padding-left: 32px; 
}

.timeline::before { 
  content: ''; 
  position: absolute; 
  left: 7px; 
  top: 0; 
  bottom: 0; 
  width: 2px; 
  background: linear-gradient(to bottom, var(--emerald), rgba(5,150,105,.1)); 
  border-radius: 2px; 
}

.tl-item { 
  position: relative; 
  margin-bottom: 32px; 
}

.tl-item:last-child { 
  margin-bottom: 0; 
}

.tl-dot { 
  position: absolute; 
  left: -28px; 
  top: 4px; 
  width: 14px; 
  height: 14px; 
  border-radius: 50%; 
  background: var(--dark); 
  border: 2px solid var(--emerald); 
  flex-shrink: 0; 
}

.tl-dot.gold { 
  border-color: var(--gold); 
}

.tl-dot.gold::after { 
  background: var(--gold); 
}

.tl-dot::after { 
  content: ''; 
  position: absolute; 
  inset: 2px; 
  border-radius: 50%; 
  background: var(--emerald); 
}

.tl-year { 
  font-family: var(--font-display); 
  font-size: 1rem; 
  font-weight: 700; 
  color: var(--gold); 
  margin-bottom: 4px; 
}

.tl-title { 
  font-size: 15px; 
  font-weight: 600; 
  color: var(--text-light); 
  margin-bottom: 4px; 
}

.tl-desc { 
  font-size: 13px; 
  color: var(--text-muted); 
  line-height: 1.6; 
  margin: 0; 
}

.tl-desc strong { 
  color: var(--emerald-pale); 
}

/* EPOCI ISTORICE */
.epochs-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
  gap: 16px; 
}

.epoch-card { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 12px; 
  padding: 20px 20px 22px; 
  position: relative; 
  overflow: hidden; 
  transition: border-color .2s, transform .2s; 
}

.epoch-card::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 3px; 
  background: var(--emerald); 
}

.epoch-card:hover { 
  border-color: var(--border-light); 
  transform: translateY(-3px); 
}

.epoch-period { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--emerald-light); 
  letter-spacing: .1em; 
  text-transform: uppercase; 
  margin-bottom: 8px; 
}

.epoch-card h3 { 
  font-family: var(--font-display); 
  font-size: 1.05rem; 
  color: var(--text-light); 
  margin: 0 0 8px; 
}

.epoch-card p { 
  font-size: 13px; 
  color: var(--text-muted); 
  margin: 0; 
  line-height: 1.6; 
}

.epoch-card p strong { 
  color: var(--gold-light); 
}

/* PERSONALITATI */
.personalities-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 20px; 
}

.person-card { 
  background: var(--dark2); 
  border: 1px solid var(--border); 
  border-radius: 14px; 
  padding: 22px 22px 24px; 
  transition: border-color .2s, transform .2s; 
}

.person-card:hover { 
  border-color: rgba(201,168,76,.4); 
  transform: translateY(-3px); 
}

.person-header { 
  display: flex; 
  align-items: flex-start; 
  gap: 14px; 
  margin-bottom: 12px; 
}

.person-initial { 
  width: 46px; 
  height: 46px; 
  border-radius: 50%; 
  background: rgba(201,168,76,.12); 
  border: 1px solid var(--border-gold); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-family: var(--font-display); 
  font-size: 1.3rem; 
  font-weight: 700; 
  color: var(--gold-light); 
  flex-shrink: 0; 
}

.person-meta h3 { 
  font-family: var(--font-display); 
  font-size: 1.05rem; 
  color: var(--text-light); 
  margin: 0 0 3px; 
}

.person-years { 
  font-size: 11px; 
  color: var(--text-muted); 
}

.person-domain { 
  display: inline-block; 
  font-size: 10px; 
  font-weight: 600; 
  color: var(--emerald-light); 
  text-transform: uppercase; 
  letter-spacing: .08em; 
  background: rgba(5,150,105,.1); 
  border: 1px solid var(--border); 
  padding: 2px 8px; 
  border-radius: 12px; 
  margin-top: 4px; 
}

.person-card p { 
  font-size: 13px; 
  color: var(--text-muted); 
  margin: 0; 
  line-height: 1.6; 
}

.person-card p strong { 
  color: var(--gold-light); 
  font-weight: 600; 
}

/* DATE GEOGRAFICE */
.geo-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
  gap: 14px; 
}

.geo-item { 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 10px; 
  padding: 16px 18px; 
}

.geo-icon { 
  font-size: 1.5rem; 
  margin-bottom: 8px; 
  display: block; 
}

.geo-item h4 { 
  font-size: 12px; 
  font-weight: 600; 
  color: var(--emerald-light); 
  text-transform: uppercase; 
  letter-spacing: .08em; 
  margin: 0 0 4px; 
}

.geo-item p { 
  font-size: 14px; 
  color: var(--text-light); 
  margin: 0; 
  font-weight: 500; 
}

.geo-item span { 
  display: block; 
  font-size: 12px; 
  color: var(--text-muted); 
  margin-top: 2px; 
}

/* RECORD/PREMII */
.records-list { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}

.record-item { 
  display: flex; 
  gap: 16px; 
  align-items: flex-start; 
  background: var(--dark3); 
  border: 1px solid var(--border); 
  border-radius: 10px; 
  padding: 16px 18px; 
  transition: border-color .2s; 
}

.record-item:hover { 
  border-color: var(--border-light); 
}

.record-medal { 
  font-size: 1.8rem; 
  flex-shrink: 0; 
  line-height: 1; 
}

.record-info h4 { 
  font-size: 14px; 
  font-weight: 600; 
  color: var(--text-light); 
  margin: 0 0 4px; 
}

.record-info p { 
  font-size: 13px; 
  color: var(--text-muted); 
  margin: 0; 
  line-height: 1.5; 
}

/* CITAT */
.quote-block { 
  background: var(--dark3); 
  border: 1px solid var(--border-light); 
  border-left: 4px solid var(--emerald-light); 
  border-radius: 12px; 
  padding: 28px 32px; 
  margin: 32px 0; 
}

.quote-text { 
  font-family: var(--font-display); 
  font-size: 1.25rem; 
  color: var(--text-light); 
  font-style: italic; 
  line-height: 1.65; 
  margin: 0 0 12px; 
}

.quote-text::before { 
  content: '\201E'; 
  color: var(--gold); 
  font-size: 2rem; 
  line-height: 0; 
  vertical-align: -0.4em; 
  margin-right: 4px; 
}

.quote-text::after { 
  content: '\201D'; 
  color: var(--gold); 
  font-size: 2rem; 
  line-height: 0; 
  vertical-align: -0.4em; 
  margin-left: 4px; 
}

.quote-author { 
  font-size: 13px; 
  color: var(--emerald-light); 
  font-weight: 600; 
}

/* TIP BOX */
.tip-box { 
  background: rgba(5,150,105,.07); 
  border: 1px solid rgba(5,150,105,.2); 
  border-left: 3px solid var(--emerald-light); 
  border-radius: 10px; 
  padding: 18px 22px; 
  margin-top: 28px; 
}

.tip-box-label { 
  font-size: 11px; 
  font-weight: 600; 
  color: var(--emerald-light); 
  text-transform: uppercase; 
  letter-spacing: .12em; 
  margin-bottom: 8px; 
}

.tip-box p { 
  font-size: 14px; 
  color: rgba(232,245,237,.75); 
  margin: 0; 
  line-height: 1.65; 
}

/* 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(--emerald-pale); 
}

.faq-icon { 
  font-size: 20px; 
  color: var(--emerald-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: 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-copy { 
  background: var(--dark3); 
  color: var(--emerald-pale); 
  border: 1px solid var(--border); 
}

/* FOOTER */
#footer { 
  background: #010805; 
  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(--emerald-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(--emerald-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 BANNER */
#gdpr-banner { 
  position: fixed; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  z-index: 9998; 
  background: rgba(2,18,8,.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(--emerald-light); 
  text-decoration: none; 
}

.gdpr-actions { 
  display: flex; 
  gap: 10px; 
  flex-shrink: 0; 
}

.gdpr-accept { 
  background: var(--emerald); 
  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(--emerald-light); 
  color: var(--dark); 
}

.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; 
  }
  
  /* Intro city pe o coloană */
  .city-intro { 
    grid-template-columns: 1fr; 
    gap: 28px; 
  }
  
  /* Stats 3 coloane */
  .stats-grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
  
  .stat-item:nth-child(3) { 
    border-right: none; 
  }
  
  /* Footer 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 { 
    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: 12px 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; 
  }
  
  /* Timeline padding redus */
  .timeline {
    padding-left: 24px;
  }
  
  .tl-dot {
    left: -24px;
    width: 12px;
    height: 12px;
  }
  
  /* Griduri pe o coloană */
  .epochs-grid,
  .personalities-grid,
  .geo-grid { 
    grid-template-columns: 1fr; 
  }
  
  /* Records list pe verticală */
  .record-item {
    flex-direction: column;
    gap: 10px;
  }
  
  /* Quote block compact */
  .quote-block {
    padding: 20px 24px;
    margin: 24px 0;
  }
  
  .quote-text {
    font-size: 1.1rem;
  }
  
  /* Footer pe o coloană */
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 30px; 
  }
  
  /* Footer simplificat */
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
    gap: 8px; 
  }
}
