@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #185FA5;
  --primary-dark: #042C53;
  --secondary: #0F6E56;
  --scaffold: #F8F7F4;
  --emergency: #A32D2D;
  --text: #1A1A2E;
  --text-muted: #5A6070;
  --border: #E0E0E0;
  --white: #FFFFFF;
  --card-radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--scaffold);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg {
  width: 22px;
  height: 22px;
}

.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

/* ── FOOTER ── */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 24px 32px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-email a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* ── INNER PAGE SHELL ── */
.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 56px 24px 48px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

.page-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 52px 24px 80px;
}

.placeholder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 40px;
  text-align: center;
}

.placeholder-card .icon {
  width: 56px;
  height: 56px;
  background: #EAF1FA;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.placeholder-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.placeholder-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .footer-links { gap: 16px; }
}
