:root {
  --navy: #0f2439;
  --navy-2: #16324f;
  --gold: #c8a24a;
  --gold-soft: #e5cf9a;
  --cream: #f7f4ee;
  --ink: #1c2733;
  --muted: #5c6b7a;
  --line: #e3ddd2;
  --white: #ffffff;
  --maxw: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.15; color: var(--navy); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
.center { text-align: center; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 36, 57, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 162, 74, 0.25);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--gold); color: var(--navy);
  font-family: "Playfair Display", serif; font-weight: 700; font-size: 15px;
}
.brand-mark.small { width: 30px; height: 30px; font-size: 13px; }
.brand-name { color: var(--white); font-weight: 600; font-size: 17px; letter-spacing: 0.2px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--gold-soft); text-decoration: none; font-weight: 500; font-size: 15px; transition: color 0.15s; }
.nav-links a:hover { color: var(--white); }

/* BUTTONS */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  background: var(--gold); color: var(--navy); font-weight: 600;
  padding: 10px 20px; border-radius: 8px; border: 1px solid var(--gold);
  transition: transform 0.12s, background 0.15s;
}
.btn:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-sm { padding: 7px 16px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 17px; }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* HERO */
.hero {
  background:
    linear-gradient(rgba(15,36,57,0.90), rgba(15,36,57,0.94)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 59h60M59 0v60' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
  color: var(--white);
  padding: 96px 0 104px;
}
.hero-inner { max-width: 820px; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 13px; font-weight: 600; color: var(--gold); margin-bottom: 16px; }
.eyebrow.center { text-align: center; }
.hero h1 { font-size: clamp(34px, 5.2vw, 56px); color: var(--white); margin-bottom: 22px; }
.lede { font-size: 20px; color: rgba(255,255,255,0.86); max-width: 640px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* SECTIONS */
.section { padding: 84px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2 { color: var(--white); }
.section h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 20px; }
.section p { font-size: 17px; color: var(--muted); margin-bottom: 16px; }
.section-dark p { color: rgba(255,255,255,0.82); }
.subhead { max-width: 620px; margin: 0 auto 40px; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 32px 28px; transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(15,36,57,0.08); }
.card-icon { font-size: 34px; margin-bottom: 14px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { font-size: 16px; margin: 0; }

/* DISCLAIMER */
.disclaimer-box {
  background: var(--cream); border-left: 4px solid var(--gold);
  border-radius: 10px; padding: 32px 34px;
}
.disclaimer-box h2 { font-size: 24px; margin-bottom: 16px; }
.disclaimer-box p { font-size: 16px; }
.disclaimer-box strong { color: var(--navy); }

/* RESOURCES */
.resource-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.resource {
  display: block; text-decoration: none; background: var(--white);
  border: 1px solid var(--line); border-radius: 12px; padding: 26px 24px;
  transition: transform 0.15s, border-color 0.15s;
}
.resource:hover { transform: translateY(-3px); border-color: var(--gold); }
.resource h3 { font-size: 19px; margin-bottom: 8px; }
.resource p { font-size: 15px; color: var(--muted); margin: 0; }

/* CONTACT */
.contact-email { margin-top: 18px; }
.contact-email a { color: var(--gold-soft); font-size: 22px; font-weight: 600; text-decoration: none; }
.contact-email a:hover { color: var(--white); }

/* FOOTER */
.site-footer { background: #0b1b2b; color: rgba(255,255,255,0.7); padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 18px; }
.footer-inner > div { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 600; }
.fineprint { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); margin: 0; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn) { display: none; }
  .cards, .resource-list { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 70px 0 78px; }
}
