:root {
  --bg: #00112E;
  --bg-card: #001A4D;
  --bg-card-hover: #002366;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --red: #C41E3A;
  --text: #FFFFFF;
  --text-muted: #B0C4DE;
  --border: #003A7A;
  --accent: #00308F;
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

/* Header */
.site-header {
  background: linear-gradient(180deg, #000B1F 0%, #00112E 100%);
  border-bottom: 2px solid var(--gold);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-title span {
  color: var(--text);
  font-weight: 400;
  font-size: 0.9rem;
  display: block;
  letter-spacing: 0;
  text-transform: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-muted);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s;
}

nav a:hover, nav a.active {
  color: var(--gold);
  background: rgba(212, 160, 23, 0.15);
}

nav a.accent {
  color: var(--red);
  font-weight: 600;
}
nav a.accent:hover {
  color: var(--gold-light);
  background: rgba(196, 30, 58, 0.15);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #000B1F 0%, #001A4D 40%, #00308F 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Main content */
.main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.page-title {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.page-intro {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.2s;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.card h2 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.card h2 a { color: inherit; }

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Bio section */
.bio-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.bio-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.bio-highlights {
  background: var(--bg-card);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.bio-highlights h2 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.bio-highlights ul {
  list-style: none;
  padding: 0;
}

.bio-highlights li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.bio-highlights li:last-child { border-bottom: none; }

.bio-highlights li::before {
  content: "\2660";
  color: var(--gold);
  position: absolute;
  left: 0;
}

/* News articles */
.news-article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.news-article h2 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.news-article p {
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
}

.news-article p:last-child { margin-bottom: 0; }

/* Tips */
.tip-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.tip-item:hover { border-color: var(--gold); }

.tip-item h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.tip-meta {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.tip-meta .author { color: var(--gold); }

.tip-item .excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
}

.gallery-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.gallery-item a {
  display: block;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gallery-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.75rem;
  text-align: center;
}

/* Bio image */
.bio-photo {
  float: left;
  margin: 0 1.5rem 1rem 0;
  border-radius: 8px;
  border: 2px solid var(--gold);
  max-width: 180px;
}

@media (max-width: 480px) {
  .bio-photo {
    float: none;
    display: block;
    margin: 0 auto 1.5rem;
    max-width: 160px;
  }
}

/* Footer */
.site-footer {
  background: #000B1F;
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav a:hover { color: var(--gold); }

.copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    justify-content: center;
  }

  .hero h1 { font-size: 2rem; }

  .hero-stats { gap: 1.5rem; }

  .stat-number { font-size: 1.8rem; }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .page-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero { padding: 2.5rem 1rem; }
  .hero h1 { font-size: 1.6rem; }
  .site-title { font-size: 1.3rem; }
  nav a { padding: 0.3rem 0.5rem; font-size: 0.75rem; }
}
