/* shared.css - used by all inner pages */
:root {
  --navy: #1B2A4A;
  --navy-deep: #0F1E35;
  --mid-blue: #2E5B8C;
  --accent: #378ADD;
  --light-blue: #D5E8F0;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --text: #1A1A1A;
  --muted: #666666;
  --border: #E2E2E2;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.page-hero {
  background: var(--navy);
  padding: 110px 40px 60px;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  max-width: 600px;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.body-text {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.8;
}

.pull-block {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--off-white);
}

.pull-block p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

.key-points {
  background: var(--navy);
  padding: 40px;
  margin: 40px 0;
}

.key-points-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.key-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.key-point {
  padding: 16px;
  background: rgba(255,255,255,0.06);
  border-left: 2px solid var(--accent);
}

.key-point p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.download-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 32px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.download-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}

.download-info p {
  font-size: 14px;
  color: var(--muted);
}

.download-btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.download-btn:hover { background: var(--mid-blue); }

.field-note {
  border-left: 3px solid var(--mid-blue);
  background: var(--light-blue);
  padding: 16px 20px;
  margin: 24px 0;
}

.field-note-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.field-note p {
  font-size: 14px;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

footer {
  background: var(--navy);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
}

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

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 40px;
}

.back-link:hover { color: var(--mid-blue); }

hr.section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 90px 20px 40px; }
  .page-content { padding: 40px 20px; }
  .key-points-grid { grid-template-columns: 1fr; }
  .download-block { flex-direction: column; align-items: flex-start; }
  footer { padding: 20px; flex-direction: column; gap: 8px; text-align: center; }
}
