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

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

:root {
  --navy:        #00508C;
  --navy-dark:   #003D6B;
  --navy-light:  #E6EFF7;
  --red:         #DC1428;
  --red-dark:    #B01020;
  --dark:        #3C3C3C;
  --mid:         #5A5A5A;
  --muted:       #888888;
  --border:      #DDEAF4;
  --cream:       #F8FAFB;
  --white:       #FFFFFF;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --radius:      10px;
  --shadow:      0 4px 20px rgba(0,80,140,0.08);
}

body { font-family: var(--sans); color: var(--dark); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar { background: var(--navy-dark); color: #B8D0E8; text-align: center; font-size: 13px; padding: 9px 24px; letter-spacing: 0.02em; }
.topbar a { color: #B8D0E8; }

nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 70px; position: sticky; top: 0; z-index: 100; }
.nav-logo { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.15; }
.nav-logo span { display: block; font-family: var(--sans); font-size: 10px; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-links .featured a { color: var(--navy); font-weight: 500; }
.nav-links .featured a:hover { color: var(--red); }
.btn-nav { background: var(--red); color: var(--white) !important; padding: 10px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 500; transition: background 0.2s; }
.btn-nav:hover { background: var(--red-dark) !important; }

.btn-primary { background: var(--red); color: var(--white); padding: 14px 30px; border-radius: var(--radius); font-size: 15px; font-weight: 500; display: inline-block; transition: background 0.2s; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); padding: 12px 28px; border-radius: var(--radius); font-size: 15px; font-weight: 500; display: inline-block; transition: all 0.2s; }
.btn-outline:hover { background: var(--navy-light); }
.btn-navy { background: var(--navy); color: var(--white); padding: 14px 30px; border-radius: var(--radius); font-size: 15px; font-weight: 500; display: inline-block; transition: background 0.2s; }
.btn-navy:hover { background: var(--navy-dark); }

section { padding: 80px 5%; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.section-title { font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); font-weight: 500; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--mid); line-height: 1.75; max-width: 580px; margin-bottom: 48px; }
hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

footer { background: var(--navy-dark); color: #B8D0E8; padding: 48px 5% 32px; }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 28px; }
.footer-brand h3 { font-family: var(--serif); font-size: 22px; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #8FBADB; max-width: 260px; }
.footer-col h4 { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: #8FBADB; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; font-size: 12px; color: #6A9AB8; flex-wrap: wrap; gap: 8px; }
