/* shared.css — included by all pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #1B5FA8;
  --blue-light: #E6F1FB;
  --blue-mid: #B5D4F4;
  --text: #1a1a1a;
  --text-muted: #555;
  --text-faint: #888;
  --border: rgba(0,0,0,0.12);
  --border-mid: rgba(0,0,0,0.2);
  --bg: #ffffff;
  --bg-soft: #f7f6f3;
  --serif: 'Lora', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --max: 860px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }

nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 0.5px solid var(--border); padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 56px; }
.nav-logo { font-family: var(--serif); font-size: 15px; font-weight: 500; color: var(--text); display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 28px; width: auto; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 13px; color: var(--text-muted); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { font-family: var(--sans); font-size: 13px; font-weight: 500; background: var(--blue); color: #fff; padding: 8px 16px; border-radius: 6px; border: none; cursor: pointer; transition: opacity 0.15s; text-decoration: none; }
.nav-cta:hover { opacity: 0.88; }
.hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 36px; height: 36px; cursor: pointer; border-radius: 6px; background: transparent; border: none; padding: 0; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; background: #fff; border-bottom: 0.5px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 14px 20px; font-size: 15px; color: var(--text); border-bottom: 0.5px solid var(--border); text-decoration: none; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mob-cta { background: var(--blue); color: #fff; margin: 12px 16px 16px; border-radius: 8px; text-align: center; border-bottom: none; font-weight: 500; }

.page-hero { max-width: var(--max); margin: 0 auto; padding: 64px 24px 48px; border-bottom: 0.5px solid var(--border); }
.page-hero .eyebrow { font-size: 10px; font-weight: 500; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(30px, 5vw, 44px); font-weight: 500; line-height: 1.2; color: var(--text); margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: var(--text-muted); line-height: 1.8; max-width: 560px; }

.page-body { max-width: var(--max); margin: 0 auto; padding: 56px 24px; }
.page-body h2 { font-family: var(--serif); font-size: clamp(18px, 2.5vw, 22px); font-weight: 500; color: var(--text); margin: 36px 0 12px; line-height: 1.3; }
.page-body h2:first-child { margin-top: 0; }
.page-body p { font-size: 15px; color: var(--text-muted); line-height: 1.9; max-width: 640px; margin-bottom: 14px; }
.page-body blockquote { border-left: 3px solid var(--blue); padding: 16px 20px; margin: 28px 0; background: var(--bg-soft); border-radius: 0 6px 6px 0; }
.page-body blockquote p { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--text); margin: 0; }
.page-body blockquote cite { display: block; font-size: 12px; color: var(--text-faint); margin-top: 8px; font-style: normal; }

.belief-item { border-bottom: 0.5px solid var(--border); padding: 24px 0; }
.belief-item:last-child { border-bottom: none; }
.belief-item h3 { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--text); margin-bottom: 10px; }
.belief-item p { font-size: 15px; color: var(--text-muted); line-height: 1.85; max-width: 640px; margin: 0; }

.cta-block { background: var(--blue); padding: 56px 24px; }
.cta-inner { max-width: var(--max); margin: 0 auto; }
.cta-block h2 { font-family: var(--serif); font-size: clamp(22px, 3.5vw, 30px); font-weight: 500; color: #fff; line-height: 1.25; margin-bottom: 12px; }
.cta-block p { font-size: 15px; color: rgba(255,255,255,0.80); line-height: 1.8; max-width: 460px; margin-bottom: 28px; }
.btn-white { font-family: var(--sans); font-size: 14px; font-weight: 500; background: #fff; color: var(--blue); padding: 12px 24px; border-radius: 6px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: opacity 0.15s; }
.btn-white:hover { opacity: 0.9; }

footer { border-top: 0.5px solid var(--border); padding: 28px 24px; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-left { font-size: 13px; color: var(--text-faint); }
.footer-right { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-right a { font-size: 14px; color: var(--text-muted); transition: color 0.15s; }
.footer-right a:hover { color: var(--text); }

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo { font-size: 13px; }
  .nav-logo img { height: 32px; }
  nav { height: 52px; padding: 0 16px; }
  .page-hero { padding: 48px 20px 36px; }
  .page-body { padding: 40px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-right { gap: 14px; }
}
