:root {
  --primary: #DC2626;
  --primary-dark: #791414;
  --accent: #1E40AF;
  --accent-hover: #18338c;
  --bg-primary: #FEF2F2;
  --bg-secondary: #f6eaea;
  --bg-card: #fff;
  --text-primary: #450A0A;
  --text-secondary: #555;
  --border-color: #FECACA;
  --font-heading: 'Newsreader', serif;
  --font-body: 'Roboto', sans-serif;
  
  --news-navy: #0B1D3A;
  --news-gold: #D4A84B;
  --news-cream: #F4F4F0;
  --news-charcoal: #1E1E1E;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--news-cream);
  background: var(--news-navy);
  overflow-x: hidden;
  transition: all 0.3s ease;
}

body.dark-mode {
  background: var(--news-charcoal);
  color: var(--news-gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--news-gold);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.1rem; }

p {
  margin-bottom: 1.5rem;
  color: var(--news-cream);
  font-size: 1.1rem;
}

a {
  color: var(--news-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #E6B866;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.wide-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.section-alt {
  background: rgba(20, 39, 62, 0.8);
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }
.mb-6 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }
.mt-6 { margin-top: 48px; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.gradient-text {
  background: linear-gradient(135deg, var(--news-gold), #F5D982);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.drop-cap::first-letter {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  float: left;
  line-height: 1;
  margin: 0 8px 0 0;
  color: var(--news-gold);
}

.columns-2 {
  column-count: 2;
  column-gap: 40px;
  column-rule: 1px solid rgba(212, 168, 75, 0.2);
}

.pull-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--news-gold);
  border-left: 4px solid var(--news-gold);
  padding-left: 24px;
  margin: 32px 0;
  position: relative;
}

.pull-quote::before {
  content: '"';
  font-size: 3rem;
  position: absolute;
  left: -12px;
  top: -8px;
  color: var(--news-gold);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.7rem; }
  h4 { font-size: 1.4rem; }
  
  .container, .wide-container {
    padding: 0 16px;
  }
  
  .section {
    padding: 48px 0;
  }
  
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .columns-2 {
    column-count: 1;
  }
  
  .flex {
    flex-direction: column;
    gap: 16px;
  }
}