:root {
  --navy: #0d1f3c;
  --navy-mid: #1a3260;
  --navy-light: #2a4a80;
  --gold: #b8962e;
  --gold-light: #d4af50;
  --white: #ffffff;
  --off-white: #f6f4f0;
  --gray-light: #e8e5e0;
  --gray: #9a9490;
  --gray-dark: #4a4845;
  --text: #1a1816;
  --red: #8b1a1a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.serif { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-date { font-weight: 300; }
.topbar-links { display: flex; gap: 20px; }
.topbar-links a { color: rgba(255,255,255,0.6); transition: color .2s; }
.topbar-links a:hover { color: var(--gold-light); }

/* ── LANG SWITCHER ── */
.lang-btn {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.lang-btn button {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 3px 9px;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.lang-btn button.active {
  background: var(--gold);
  color: var(--navy);
}

/* ── MASTHEAD ── */
.masthead {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  padding: 20px 0 16px;
}
.masthead .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-block { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-tagline {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}
.masthead-search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-input {
  border: 1px solid var(--gray-light);
  border-radius: 2px;
  padding: 7px 14px;
  font-size: 12px;
  font-family: inherit;
  color: var(--text);
  width: 200px;
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--navy); }
.search-btn {
  background: var(--navy);
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  cursor: pointer;
  border-radius: 2px;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background .2s;
}
.search-btn:hover { background: var(--navy-light); }

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-link {
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 16px 18px;
  display: block;
  transition: all .2s;
  border-bottom: 3px solid transparent;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: white;
  border-bottom-color: var(--gold);
  background: rgba(255,255,255,0.05);
}
.nav-admin {
  margin-left: auto;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: background .2s;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.nav-admin:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,31,60,0.96) 0%, rgba(13,31,60,0.7) 100%),
    url('https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?w=1600&q=80') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
  animation: heroFade .8s ease forwards;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-category {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-category::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hero-category span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: white;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-excerpt {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  font-family: 'Crimson Pro', serif;
  max-width: 560px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.hero-author { color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 500; }
.hero-date { color: rgba(255,255,255,0.4); font-size: 12px; }
.meta-dot { color: rgba(255,255,255,0.2); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s;
  border: 2px solid var(--gold);
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-primary svg { transition: transform .2s; }
.btn-primary:hover svg { transform: translateX(4px); }

/* ── HERO SIDEBAR ── */
.hero-sidebar {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 340px;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.hero-sidebar-title {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-sidebar-item {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background .2s;
}
.hero-sidebar-item:hover { background: rgba(255,255,255,0.04); }
.sidebar-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.sidebar-headline {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
  margin-bottom: 6px;
}
.sidebar-date { font-size: 10px; color: rgba(255,255,255,0.35); }

/* ── SECTION HEADERS ── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}
.section-title span { color: var(--gold); }
.section-more {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.section-more:hover { color: var(--gold); border-color: var(--gold); }

/* ── LATEST NEWS GRID ── */
.latest-news { padding: 64px 0; background: var(--white); }
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-light);
}
.news-card {
  padding: 28px;
  border-right: 1px solid var(--gray-light);
  transition: background .2s;
  cursor: pointer;
  position: relative;
}
.news-card:last-child { border-right: none; }
.news-card:hover { background: var(--off-white); }
.news-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width .3s;
}
.news-card:hover::after { width: 100%; }
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 18px;
  display: block;
}
.card-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.card-excerpt {
  font-size: 13px;
  color: var(--gray-dark);
  line-height: 1.65;
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  margin-bottom: 16px;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
}
.card-date { font-size: 11px; color: var(--gray); }
.card-read {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .2s;
}
.news-card:hover .card-read { color: var(--gold); }

/* ── FEATURED ANALYSIS ── */
.analysis { padding: 0 0 64px; background: var(--off-white); }
.analysis-inner { padding: 64px 0; }
.analysis-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  border: 1px solid var(--gray-light);
  background: var(--white);
}
.analysis-main {
  padding: 40px;
  border-right: 1px solid var(--gray-light);
}
.analysis-main-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 28px;
}
.analysis-main-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.analysis-main-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
}
.analysis-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.analysis-excerpt {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 24px;
}
.analysis-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info { font-size: 12px; }
.author-name { font-weight: 600; color: var(--navy); }
.author-title { color: var(--gray); margin-top: 1px; }
.analysis-sidebar { padding: 32px; }
.analysis-sidebar-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-light);
  cursor: pointer;
}
.analysis-sidebar-item:first-child { padding-top: 0; }
.analysis-sidebar-item:last-child { border-bottom: none; }
.sidebar-item-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.sidebar-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
  transition: color .2s;
}
.analysis-sidebar-item:hover .sidebar-item-title { color: var(--gold); }
.sidebar-item-date { font-size: 11px; color: var(--gray); }

/* ── PRESS RELEASES ── */
.press { padding: 0 0 64px; }
.press-list { border-top: 2px solid var(--navy); }
.press-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 0;
  align-items: start;
  border-bottom: 1px solid var(--gray-light);
  padding: 22px 0;
  cursor: pointer;
  transition: background .2s;
}
.press-item:hover { background: var(--off-white); margin: 0 -24px; padding: 22px 24px; }
.press-date {
  font-size: 11px;
  color: var(--gray);
  padding-top: 3px;
  font-weight: 500;
}
.press-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 6px;
  transition: color .2s;
}
.press-item:hover .press-title { color: var(--gold); }
.press-excerpt { font-size: 13px; color: var(--gray-dark); line-height: 1.55; }
.press-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  margin-top: 3px;
}

/* ── CATEGORIES BAR ── */
.cats-bar { background: var(--navy); padding: 0; }
.cats-inner {
  display: flex;
  overflow-x: auto;
  gap: 0;
  scrollbar-width: none;
}
.cats-inner::-webkit-scrollbar { display: none; }
.cat-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  gap: 6px;
}
.cat-tab:hover, .cat-tab.active { background: rgba(255,255,255,0.07); }
.cat-tab.active .cat-tab-icon { color: var(--gold); }
.cat-tab-icon { font-size: 20px; }
.cat-tab-name {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.cat-tab.active .cat-tab-name { color: var(--gold-light); }

/* ── MEDIA SECTION ── */
.media { padding: 64px 0; background: var(--off-white); }
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.media-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 220px;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.media-card:hover img { transform: scale(1.05); }
.media-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.media-play {
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all .2s;
}
.media-card:hover .media-play {
  background: var(--gold);
  border-color: var(--gold);
}
.media-play svg { color: white; }
.media-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  line-height: 1.35;
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--navy);
  padding: 64px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-text p {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 28px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 26px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s;
  cursor: pointer;
  font-family: inherit;
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-box {
  background: var(--navy);
  padding: 32px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── NEWSLETTER ── */
.newsletter { background: var(--gold); padding: 48px 0; }
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.newsletter-text p { font-size: 14px; color: rgba(13,31,60,0.7); }
.newsletter-form {
  display: flex;
  gap: 0;
  flex: 0 0 480px;
}
.newsletter-input {
  flex: 1;
  border: none;
  border-bottom: 2px solid var(--navy);
  background: transparent;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy);
  outline: none;
}
.newsletter-input::placeholder { color: rgba(13,31,60,0.45); }
.newsletter-btn {
  background: var(--navy);
  color: white;
  border: none;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.newsletter-btn:hover { background: var(--navy-light); }

/* ── FOOTER ── */
footer {
  background: #080f1e;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo-name { font-size: 24px; color: white; }
.footer-brand .logo-tagline { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 700;
  transition: all .2s;
  cursor: pointer;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color .2s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════
   ADMIN PANEL
══════════════════════════════════════ */
#admin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,15,30,0.85);
  z-index: 1000;
  backdrop-filter: blur(4px);
  overflow: auto;
}
#admin-overlay.open { display: flex; }
.admin-panel {
  width: 100%;
  max-width: 1100px;
  margin: 30px auto;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  display: flex;
  min-height: 700px;
}

/* ── Admin Sidebar ── */
.admin-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
}
.admin-logo {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.admin-logo-sub {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.admin-nav { flex: 1; padding: 16px 0; }
.admin-nav-section {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 12px 20px 6px;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  border-left: 3px solid transparent;
}
.admin-nav-item:hover { background: rgba(255,255,255,0.05); color: white; }
.admin-nav-item.active {
  background: rgba(184,150,46,0.1);
  color: var(--gold-light);
  border-left-color: var(--gold);
}
.admin-nav-item-icon { font-size: 15px; width: 18px; text-align: center; }
.admin-nav-badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
}
.admin-user {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-user-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--navy);
}
.admin-user-info { font-size: 11px; }
.admin-user-name { color: white; font-weight: 600; }
.admin-user-role { color: var(--gold); margin-top: 1px; letter-spacing: 0.5px; }
.admin-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 18px;
  transition: color .2s;
  padding: 4px;
}
.admin-close:hover { color: white; }

/* ── Admin Main ── */
.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.admin-topbar {
  padding: 18px 28px;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}
.admin-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.admin-content {
  flex: 1;
  padding: 28px;
  overflow: auto;
  background: #f7f5f2;
}

/* ── Admin Screens ── */
.admin-screen { display: none; }
.admin-screen.active { display: block; }

/* Dashboard */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.dash-stat {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--navy);
  padding: 20px;
}
.dash-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.dash-stat-label { font-size: 10px; color: var(--gray); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.dash-stat-change { font-size: 11px; color: #1a7a4a; margin-top: 8px; font-weight: 600; }

.dash-recent { background: var(--white); border: 1px solid var(--gray-light); }
.dash-recent-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
}
.dash-row {
  display: grid;
  grid-template-columns: 1fr 140px 100px 80px;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-light);
  align-items: center;
  font-size: 12px;
}
.dash-row:last-child { border-bottom: none; }
.dash-row:hover { background: var(--off-white); }
.dash-row-title { font-weight: 500; color: var(--navy); }
.dash-row-cat { color: var(--gray-dark); }
.dash-row-date { color: var(--gray); }
.status-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.status-active { background: #e6f4ee; color: #1a7a4a; }
.status-draft { background: #fef3e2; color: #b45309; }

/* News form */
.admin-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
}
.form-input, .form-select, .form-textarea {
  border: 1px solid var(--gray-light);
  border-radius: 2px;
  padding: 10px 14px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
}
.form-textarea { height: 120px; resize: vertical; line-height: 1.6; }
.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  grid-column: 1 / -1;
}
.btn-save {
  background: var(--navy);
  color: white;
  border: none;
  padding: 11px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.btn-save:hover { background: var(--navy-light); }
.btn-cancel {
  background: none;
  border: 1px solid var(--gray-light);
  color: var(--gray-dark);
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
}
.hero-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 2px;
  cursor: pointer;
}
.toggle-switch {
  width: 40px; height: 20px;
  background: var(--gray-light);
  border-radius: 10px;
  position: relative;
  transition: background .2s;
}
.toggle-switch.on { background: var(--navy); }
.toggle-knob {
  width: 16px; height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 2px;
  transition: left .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch.on .toggle-knob { left: 22px; }
.toggle-label { font-size: 12px; color: var(--gray-dark); font-weight: 500; }

/* category list */
.cat-list { background: var(--white); border: 1px solid var(--gray-light); }
.cat-list-header {
  display: grid;
  grid-template-columns: 1fr 120px 100px 80px 80px;
  gap: 12px;
  padding: 12px 20px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.cat-row {
  display: grid;
  grid-template-columns: 1fr 120px 100px 80px 80px;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-light);
  align-items: center;
  font-size: 12px;
}
.cat-row:last-child { border-bottom: none; }
.cat-name { font-weight: 600; color: var(--navy); }
.cat-slug { color: var(--gray); font-family: monospace; font-size: 11px; }
.cat-count { color: var(--gray-dark); }
.cat-status { }
.cat-actions { display: flex; gap: 6px; }
.action-btn {
  background: none;
  border: 1px solid var(--gray-light);
  color: var(--gray-dark);
  padding: 4px 10px;
  font-size: 10px;
  border-radius: 2px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: all .2s;
}
.action-btn:hover { border-color: var(--navy); color: var(--navy); }
.action-btn.del:hover { border-color: var(--red); color: var(--red); }

/* toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy);
  color: white;
  padding: 14px 22px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s;
  z-index: 2000;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-sidebar { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .analysis-grid { grid-template-columns: 1fr; }
  .analysis-main { border-right: none; border-bottom: 1px solid var(--gray-light); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-inner { flex-direction: column; gap: 24px; }
  .newsletter-form { flex: 0 0 auto; width: 100%; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .admin-panel { flex-direction: column; }
  .admin-sidebar { width: 100%; min-height: auto; }
  .admin-nav { display: flex; flex-wrap: wrap; padding: 8px; gap: 4px; }
  .admin-nav-section { display: none; }
  .admin-nav-item { border-left: none; border-bottom: 2px solid transparent; font-size: 11px; padding: 8px 12px; }
  .admin-nav-item.active { border-bottom-color: var(--gold); border-left: none; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
}
