*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #FAF7F0; --cream2: #F2EDE2; --cream3: #E8DFD0;
  --navy: #1A2E4A; --navy2: #243F64;
  --gold: #B07D2E; --gold-light: #D4A24E; --gold-pale: #F5ECD8;
  --text: #2C2416; --muted: #7A6B58; --muted2: #A89880; --white: #FFFDF8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'DM Mono', monospace;
  --t: 0.3s ease;
}
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--text); font-family: var(--sans); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; position: relative; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; background: rgba(250,247,240,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(176,125,46,0.12); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-mark { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .l-top { font-family: var(--serif); font-size: 12px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.logo-text .l-bottom { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color var(--t); }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 500; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.nav-cta { background: var(--navy) !important; color: var(--white) !important; padding: 9px 20px; border-radius: 4px; font-weight: 500 !important; border-bottom: none !important; }
.nav-cta:hover { background: var(--navy2) !important; }
.nav-cta.active { border-bottom: none !important; }

/* PAGE HEADER */
.page-header { padding: 140px 0 64px; border-bottom: 1px solid var(--cream3); }
.page-header .s-label { margin-bottom: 14px; }
.page-header h1 { font-family: var(--serif); font-size: clamp(36px, 5vw, 64px); font-weight: 500; color: var(--navy); line-height: 1.08; }
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p { font-size: 18px; font-weight: 300; color: var(--muted); max-width: 560px; margin-top: 16px; line-height: 1.65; }

/* SECTIONS */
section { padding: 80px 0; position: relative; }
.s-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.s-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.s-title { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 500; line-height: 1.15; color: var(--navy); margin-bottom: 16px; }
.s-title em { font-style: italic; color: var(--gold); }
.s-body { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 560px; }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white); padding: 14px 28px; border-radius: 4px; font-size: 15px; font-weight: 500; text-decoration: none; transition: background var(--t), transform var(--t); }
.btn-primary:hover { background: var(--navy2); transform: translateY(-1px); }
.btn-secondary { font-size: 15px; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color var(--t); }
.btn-secondary:hover { color: var(--gold); }

/* FOOTER */
footer { background: var(--navy); padding: 48px 0 36px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 15px; color: rgba(255,255,255,0.4); max-width: 320px; }
footer .l-top { color: rgba(255,255,255,0.4) !important; }
footer .l-bottom { color: var(--white) !important; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-verse { font-family: var(--serif); font-style: italic; color: rgba(255,255,255,0.35); font-size: 13px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 680px) {
  .wrap { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 56px 0; }
  .page-header { padding: 110px 0 48px; }
}
