@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:       #0D0D0D;
  --bg-2:     #111111;
  --bg-3:     #161616;
  --bg-4:     #1C1C1C;
  --gold:     #C4963D;
  --gold-lt:  #D4AE5E;
  --gold-dk:  #9A7230;
  --text:     #E8E0D0;
  --text-2:   #B0A898;
  --text-3:   #7A7068;
  --text-4:   #4A4038;
  --border:   #1E1E1E;
  --border-2: #282828;
  --red-tag:  #7A1A1A;
  --red-bg:   #1A0808;
  --grn-tag:  #3A6A2A;
  --grn-bg:   #081A08;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
}

/* ── UTILITARE ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.gold { color: var(--gold); }
.serif { font-family: 'Playfair Display', serif; }

.tag {
  display: inline-block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
}
.tag-gold  { color: var(--gold);    border: 1px solid var(--gold); }
.tag-red   { color: #C44; background: var(--red-bg); }
.tag-green { color: #5A9; background: var(--grn-bg); }
.tag-gray  { color: var(--text-3);  background: var(--bg-3); }

/* ── HEADER ── */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark::before {
  content: '';
  position: absolute;
  width: 1px; height: 28px;
  background: var(--gold);
  opacity: 0.6;
}
.logo-mark::after {
  content: '';
  position: absolute;
  width: 28px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.logo-mark span {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.logo-text-wrap {}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo-tagline {
  font-size: 9px;
  color: var(--text-4);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }

.btn-sustine {
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-sustine:hover { background: var(--gold-lt); }

/* ── TICKER ── */
.ticker {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.ticker-label {
  font-size: 8px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 2px 6px;
  flex-shrink: 0;
}
.ticker-text {
  font-size: 11px;
  color: var(--text-4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  border-bottom: 1px solid var(--border);
}

.hero-main {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
}
.hero-accent {
  width: 3px;
  height: 40px;
  background: var(--gold);
  margin-bottom: 16px;
}
.hero-main h1 {
  font-size: 28px;
  color: var(--text);
  margin: 12px 0 16px;
  line-height: 1.2;
}
.hero-main p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.75;
  margin-bottom: 20px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-4);
}
.read-more {
  margin-left: auto;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.read-more:hover { color: var(--gold-lt); }

.hero-sidebar {
  display: flex;
  flex-direction: column;
}
.hero-side-item {
  padding: 20px;
  flex: 1;
  border-bottom: 1px solid var(--border);
}
.hero-side-item:last-child { border-bottom: none; }
.hero-side-item h3 {
  font-size: 14px;
  color: var(--text-2);
  margin: 8px 0;
  line-height: 1.4;
}
.hero-side-item p {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.65;
}

/* ── SECȚIUNE TITLU ── */
.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}
.section-head .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── GRID ARTICOLE ── */
.articles-section { padding: 28px 0; border-bottom: 1px solid var(--border); }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.article-card {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}
.article-card h4 {
  font-size: 14px;
  color: var(--text-2);
  margin: 8px 0;
  line-height: 1.4;
}
.article-card h4:hover { color: var(--text); }
.article-card p {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 10px;
}
.article-date { font-size: 10px; color: var(--text-4); }

/* ── VIDEO + NEWSLETTER ── */
.bottom-section {
  display: grid;
  grid-template-columns: 1fr 320px;
  border-bottom: 1px solid var(--border);
}

.video-section { padding: 24px 28px; border-right: 1px solid var(--border); }

.video-placeholder {
  background: var(--bg-3);
  border-radius: 4px;
  border: 1px solid var(--border-2);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.play-triangle {
  width: 0; height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--gold);
  margin-left: 4px;
}

.video-caption {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-4);
}
.video-title {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--gold);
  margin-top: 4px;
}

/* ── NEWSLETTER ── */
.newsletter-section { padding: 24px 20px; }

.newsletter-section p {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--text-2);
  margin: 8px 0 14px;
  line-height: 1.5;
}

.newsletter-section input[type="email"] {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 2px;
  padding: 9px 12px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  color: var(--text-3);
  margin-bottom: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-section input[type="email"]:focus {
  border-color: var(--gold);
}
.newsletter-section input[type="email"]::placeholder {
  color: var(--text-4);
}

.btn-newsletter {
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  padding: 9px;
  text-align: center;
  border-radius: 2px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.btn-newsletter:hover { background: var(--gold-lt); }

.social-links { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.social-label {
  font-size: 9px;
  color: var(--text-4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.social-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.social-link {
  font-size: 10px;
  color: var(--text-3);
  border: 1px solid var(--border-2);
  padding: 4px 10px;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
.site-footer {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 9px; color: var(--text-4); letter-spacing: 1px; }
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 10px;
  color: var(--text-4);
}

/* ── PAGINI INTERIOARE ── */
.page-hero {
  padding: 40px 0 30px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: 36px;
  color: var(--text);
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 13px;
  color: var(--text-3);
  max-width: 600px;
}

.articles-list { padding: 30px 0; }
.article-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.article-list-item h3 {
  font-size: 18px;
  color: var(--text);
  margin: 8px 0 10px;
  line-height: 1.3;
  transition: color 0.2s;
}
.article-list-item h3:hover { color: var(--gold); }
.article-list-item p { font-size: 13px; color: var(--text-3); line-height: 1.7; }
.article-list-date {
  font-size: 11px;
  color: var(--text-4);
  white-space: nowrap;
  padding-top: 6px;
}

/* ── ARTICOL COMPLET ── */
.article-full { max-width: 720px; margin: 0 auto; padding: 40px 20px 60px; }
.article-full .tag { margin-bottom: 16px; }
.article-full h1 { font-size: 34px; color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.article-byline { font-size: 12px; color: var(--text-4); margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.article-body { font-size: 15px; color: var(--text-2); line-height: 1.85; }
.article-body p { margin-bottom: 20px; }
.article-body h2 { font-size: 22px; color: var(--text); margin: 36px 0 14px; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--bg-3);
}
.article-body blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-2);
  margin: 0;
  font-size: 16px;
}

/* ── PAGINA AUDIO ── */
.audio-player {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}
.audio-player h3 { font-size: 16px; color: var(--text); margin-bottom: 6px; }
.audio-player p  { font-size: 12px; color: var(--text-3); margin-bottom: 14px; }
.audio-player audio { width: 100%; }

/* ── PAGINA CONTACT ── */
.contact-form { max-width: 560px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; color: var(--text-3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-4); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero-main { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-sidebar { display: none; }
  .articles-grid { grid-template-columns: 1fr; }
  .bottom-section { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .logo-name { font-size: 12px; }
}
