:root {
  --navy: #0E2240;
  --navy-deep: #091830;
  --navy-soft: #16304F;
  --gold: #C9A34E;
  --gold-light: #E3C88A;
  --cream: #F7F4EC;
  --white: #FFFFFF;
  --ink: #1C2733;
  --muted: #5C6B7E;
  --mist: #9FB0C7;
  --line: #E5E0D3;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3, .serif { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.2; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,163,78,0.25);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--cream); text-decoration: none;
  font-size: 20px; font-weight: 600; letter-spacing: 0.5px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--mist); text-decoration: none; font-size: 14.5px;
  letter-spacing: 0.2px; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 9px 18px; border-radius: 6px; font-weight: 600;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--cream); font-size: 26px; line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 110px 24px 120px;
  text-align: center;
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.eyebrow {
  color: var(--gold); font-size: 13px; letter-spacing: 3.5px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 24px; }
.hero p { color: var(--mist); font-size: 19px; max-width: 680px; margin: 0 auto 36px; }
.page-hero { padding: 76px 24px 70px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 44px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  padding: 14px 30px; border-radius: 6px; font-size: 16px;
  transition: transform 0.15s, background 0.2s;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: rgba(201,163,78,0.12); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-1px); }

/* ---------- Sections ---------- */
.section { max-width: 1120px; margin: 0 auto; padding: 84px 24px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 36px); color: var(--navy); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17.5px; }
.section-dark { background: var(--navy); }
.section-dark h2 { color: var(--cream); }
.section-dark .section-head p { color: var(--mist); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 30px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(14,34,64,0.08); }
.card h3 { color: var(--navy); font-size: 20px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card-link {
  display: inline-block; margin-top: 16px; color: var(--gold);
  filter: brightness(0.85);
  font-size: 14px; font-weight: 600; text-decoration: none;
}
.card-link:hover { text-decoration: underline; }
.badge {
  display: inline-block; background: rgba(201,163,78,0.16); color: #8A6A22;
  font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.tag {
  display: inline-block; font-size: 12.5px; color: var(--muted);
  border-top: 1px solid var(--line); margin-top: 18px; padding-top: 12px; width: 100%;
}
.tag strong { color: var(--navy); font-weight: 600; }

/* ---------- Pull quote ---------- */
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 28px; margin: 40px auto; max-width: 760px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(19px, 2.4vw, 24px); font-style: italic;
  color: var(--navy); line-height: 1.55;
}

/* ---------- WIP notice ---------- */
.wip {
  background: rgba(201,163,78,0.12); border: 1px dashed var(--gold);
  border-radius: 10px; padding: 16px 22px; max-width: 760px;
  margin: 0 auto 44px; text-align: center;
  color: #7A5D1E; font-size: 14.5px; font-weight: 500;
}

/* ---------- Video placeholder ---------- */
.video-ph {
  background: var(--navy); border-radius: 10px; height: 170px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; margin-bottom: 20px;
}
.video-ph .play {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 18px;
}
.video-ph span { color: var(--mist); font-size: 13px; }

/* ---------- Home preview strips ---------- */
.preview {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 30px 32px; margin-bottom: 18px;
}
.preview h3 { color: var(--navy); font-size: 21px; margin-bottom: 8px; }
.preview p { color: var(--muted); font-size: 15.5px; max-width: 640px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); text-align: center; padding: 84px 24px; }
.cta-band h2 { color: var(--cream); font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; }
.cta-band p { color: var(--mist); max-width: 620px; margin: 0 auto 32px; }

/* ---------- Article ---------- */
.article { max-width: 720px; margin: 0 auto; padding: 70px 24px 90px; }
.article h1 { color: var(--navy); font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px; }
.article .meta { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.article p { margin-bottom: 20px; color: var(--ink); }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-deep); color: var(--mist);
  padding: 48px 24px; text-align: center; font-size: 14.5px;
}
footer .foot-logo {
  font-family: 'Fraunces', Georgia, serif; color: var(--cream);
  font-size: 18px; margin-bottom: 6px;
}
footer .foot-logo span { color: var(--gold); }
footer a { color: var(--gold-light); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .foot-tag { margin-bottom: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; gap: 0;
    padding: 12px 0 20px; border-bottom: 1px solid rgba(201,163,78,0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 12px 0; }
  .nav-cta { margin: 10px auto 0; display: inline-block; width: auto; }
  .preview { grid-template-columns: 1fr; }
}
