/* ── Tokens ──────────────────────────────────────── */
:root {
  --navy:       #0B1120;
  --navy-mid:   #111827;
  --navy-soft:  #1C2A40;
  --gold:       #C9933A;
  --gold-light: #E8B96A;
  --cream:      #F5F0E8;
  --cream-dim:  #E2D9CC;
  --text:       #1C2A40;
  --text-muted: #5A6478;
  --white:      #FFFFFF;
  --border:     rgba(201,147,58,0.18);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    10px;
  --radius-lg: 16px;
  --max-w:     1100px;
  --section-pad: 80px;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ───────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--gold-light); }
.text-link { color: var(--gold); border-bottom: 1px solid rgba(201,147,58,0.3); }
.text-link:hover { border-bottom-color: var(--gold); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  border: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn-primary  { background: var(--gold); color: var(--navy); }
.btn-ghost    { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,0.3); }
.btn-nav      { background: var(--gold); color: var(--navy); padding: 8px 18px; font-size: 13px; }
.btn-full     { width: 100%; text-align: center; }

/* ── Nav ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,17,32,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.logo-mark { font-size: 22px; color: var(--gold); }
.logo-text  { font-family: var(--font-display); font-size: 20px; color: var(--white); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: var(--white);
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.9; }
  50%       { opacity: 0.2; }
}
@media (prefers-reduced-motion: reduce) {
  .star { animation: none; opacity: 0.6; }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 120px;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 72px);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-horizon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}

/* ── Page hero (inner pages) ─────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 120px 0 60px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}

/* ── Sections ────────────────────────────────────── */
.section     { padding: var(--section-pad) 0; }
.section-alt { background: var(--white); }
.section-dark {
  background: var(--navy-mid);
  color: var(--white);
}
.section-dark h2 { color: var(--white); }
.section-dark p  { color: rgba(255,255,255,0.72); }

.section-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}
.section-label { padding-top: 6px; }
.section-body h2 { margin-bottom: 16px; }

h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-heading { margin-bottom: 48px; }
p { color: var(--text-muted); margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* ── Content list ────────────────────────────────── */
.content-list {
  list-style: none;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-list li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.content-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ── Stats ───────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dim);
  flex-wrap: wrap;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Cards ───────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--cream-dim);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.card-icon {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 10px;
}
.card p { font-size: 14px; margin-bottom: 0; }

/* ── News ────────────────────────────────────────── */
.news-list { display: flex; flex-direction: column; }
.news-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--cream-dim);
  max-width: 720px;
}
.news-item:first-child { padding-top: 0; }
.news-item:last-child  { border-bottom: none; }
.news-date {
  display: block;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.news-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.news-body { font-size: 15px; margin-bottom: 0; line-height: 1.7; }

/* ── Contact ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.contact-list a { color: var(--gold-light); }
.contact-icon { font-size: 18px; }

/* ── Form ────────────────────────────────────────── */
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color 0.15s;
  outline: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-note {
  font-size: 13px;
  color: var(--gold-light);
  text-align: center;
  margin-top: 12px;
  min-height: 20px;
}

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-brand .logo-text { font-size: 18px; }
.footer-brand p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  line-height: 1.5;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin: 0;
  width: 100%;
  text-align: right;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy-mid);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 10px 0; font-size: 15px; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links li:last-child a { border-bottom: none; padding-top: 14px; }
  .btn-nav { background: none; color: var(--gold); padding: 14px 0 0; }

  .section-grid  { grid-template-columns: 1fr; gap: 8px; }
  .section-label { display: none; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer-copy   { text-align: left; }
  .hero-content  { padding: 60px 24px 100px; }
}

@media (max-width: 480px) {
  .stats-row    { gap: 28px; }
  .contact-form { padding: 24px 20px; }
}
