@font-face {
  font-family: 'CloisterBlack';
  src: url('/assets/CloisterBlack.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
--navy: #3d3875;
--navy-mid: #4a4588;
--navy-light: #57519b;
  --gold: #c8a96e;
  --gold-light: #dfc28d;
  --gold-pale: #f5eed8;
  --cream: #faf8f4;
  --white: #ffffff;
  --red: #8b1a1a;
  --red-light: #fef2f2;
  --text: #1a1a2e;
  --text-mid: #444;
  --text-muted: #888;
  --border: #e8e5de;
  --radius: 8px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

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

/* ── CRISIS BAR ── */
.crisis-bar {
  background: var(--red);
  padding: 9px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.crisis-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fca5a5;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.crisis-bar p {
  font-size: 12px;
  color: white;
  font-weight: 500;
}
.crisis-bar p span { font-weight: 300; opacity: 0.85; margin-left: 6px; }
.crisis-bar a {
  margin-left: auto;
  font-size: 12px;
  color: white;
  text-decoration: underline;
  white-space: nowrap;
  opacity: 0.9;
}

/* ── NAV ── */
.nav {
  background: #000000;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 37px;
  z-index: 99;
  border-bottom: 1px solid rgba(200,169,110,0.25);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.nav-brand { font-family: 'DM Sans', system-ui, sans-serif; }
.nav-brand strong { font-size: 17px; font-weight: 600; color: #ffffff; display: block; line-height: 1.2; letter-spacing: 0.01em; font-family: 'DM Sans', system-ui, sans-serif; }
.nav-brand small { font-size: 11px; color: #c8a96e; letter-spacing: 0.12em; text-transform: uppercase; font-family: 'DM Sans', system-ui, sans-serif; font-weight: 600; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #000000;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

/* hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  background: #000000;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 40px;
  font-size: 14px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--gold); }
.btn-dark:hover { background: var(--navy-mid); }

/* ── SECTION HEADERS ── */
.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}
.section-title { font-size: 38px; color: var(--text); margin-bottom: 14px; }
.section-title.light { color: white; }
.section-sub { font-size: 15px; color: var(--text-muted); line-height: 1.75; max-width: 560px; }
.section-sub.light { color: rgba(255,255,255,0.6); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 56px 40px 32px;
  color: rgba(255,255,255,0.9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: white; font-weight: 500; margin-bottom: 0; white-space: nowrap; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 14px; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 6px; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.footer-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.footer-lang-tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(200,169,110,0.25);
  color: rgba(200,169,110,0.7);
}

/* ── UTILITIES ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.page-fade { animation: fadeUp 0.5s ease both; }
@keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 16px; height: 60px; top: 33px; background: #000000; }
  .nav-logo img { width: 38px; height: 38px; }
  .nav-brand strong { font-size: 13px; color: #ffffff; }
  .nav-brand small { display: none; }
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 36px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .crisis-bar { padding: 8px 20px; }
  .mobile-menu a { color: #ffffff; font-size: 14px; padding: 14px 20px; }
  .mobile-menu { background: #000000; }
}
