:root {
  --navy: #1d2a3a;
  --ink: #232a33;
  --muted: #5d6874;
  --line: #e4e0d8;
  --sand: #f6f2ea;
  --paper: #fffdf9;
  --accent: #c8652f;
  --accent-dark: #a94f1f;
  --white: #ffffff;
  --radius: 14px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.15; margin: 0 0 .5em; color: var(--navy); font-weight: 600; }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 640px; }
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
section { padding: 56px 0; }
@media (min-width: 768px) { section { padding: 80px 0; } }

/* Header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,253,249,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; color: var(--navy); }
.brand .mark { font-family: "Fraunces", Georgia, serif; font-weight: 700; font-size: 1.35rem; letter-spacing: -.01em; }
.brand .site { font-size: .85rem; color: var(--muted); }
.nav { display: none; gap: 24px; align-items: center; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: .95rem; }
.nav a.btn { color: var(--white); }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--paper); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 20px; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line); font-weight: 500; }
@media (min-width: 860px) { .nav { display: flex; } .nav-toggle, .mobile-nav { display: none !important; } }

/* Buttons */
.btn { display: inline-block; padding: 14px 22px; border-radius: 999px; background: var(--accent); color: var(--white); text-decoration: none; font-weight: 600; font-size: 1rem; border: 0; cursor: pointer; transition: background .15s; }
.btn:hover { background: var(--accent-dark); }
.btn.secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn.secondary:hover { background: var(--sand); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* Hero */
.hero { padding: 40px 0 0; background: var(--sand); }
.hero .grid { display: grid; gap: 28px; }
.hero .eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 14px; }
.hero figure { margin: 0; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; aspect-ratio: 4/3; }
.hero figure img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 860px) {
  .hero { padding: 72px 0; }
  .hero .grid { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 48px; }
  .hero figure { border-radius: var(--radius); aspect-ratio: 5/4; }
}

/* Audience cards */
.cards { display: grid; gap: 18px; }
@media (min-width: 700px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card .body { padding: 18px 20px 22px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 22px; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: 22px 22px 22px 22px; border-radius: var(--radius); background: var(--sand); }
.step::before { counter-increment: step; content: counter(step); display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy); color: var(--white); font-weight: 700; margin-bottom: 12px; }
.step p { margin: 0; color: var(--muted); font-size: .98rem; }

/* Split feature */
.split { display: grid; gap: 28px; align-items: center; }
.split figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.split figure img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; gap: 56px; } .split.flip figure { order: 2; } }
.checklist { list-style: none; padding: 0; margin: 0 0 18px; }
.checklist li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='black' d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zm3.6 5.3L7 9.9 4.9 7.8 3.6 9.1 7 12.5l5.9-5.9z'/></svg>") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='black' d='M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0zm3.6 5.3L7 9.9 4.9 7.8 3.6 9.1 7 12.5l5.9-5.9z'/></svg>") center/contain no-repeat; }

/* Programs */
.programs { display: grid; gap: 16px; }
@media (min-width: 700px) { .programs { grid-template-columns: repeat(3, 1fr); } }
.program { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--white); }
.program h3 { font-size: 1.05rem; }
.program .tag { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); background: var(--sand); border-radius: 999px; padding: 3px 10px; margin-bottom: 10px; }
.program p { font-size: .95rem; color: var(--muted); margin: 0; }
.note { font-size: .9rem; color: var(--muted); border-left: 3px solid var(--line); padding-left: 14px; margin-top: 22px; }

/* Form */
.form-section { background: var(--navy); color: var(--white); }
.form-section h2, .form-section h3 { color: var(--white); }
.form-section .lede { color: #c9d1db; }
.form-card { background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 24px 20px; }
@media (min-width: 700px) { .form-card { padding: 32px; } .form-section .split { align-items: start; } }
label { display: block; font-weight: 600; font-size: .92rem; margin: 14px 0 6px; }
input[type=text], input[type=email], input[type=tel], select, textarea { width: 100%; padding: 13px 14px; border: 1px solid #cfd4da; border-radius: 10px; font: inherit; font-size: 16px; background: var(--white); color: var(--ink); }
textarea { min-height: 90px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.form-card .btn { width: 100%; margin-top: 20px; }
.fine { font-size: .82rem; color: var(--muted); margin-top: 14px; }
.hidden { display: none; }

/* FAQ */
details { border-bottom: 1px solid var(--line); padding: 14px 0; }
summary { cursor: pointer; font-weight: 600; font-family: "Fraunces", Georgia, serif; font-size: 1.1rem; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); flex-shrink: 0; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 10px 0 0; }

/* Guides */
.guide-list { display: grid; gap: 14px; }
@media (min-width: 700px) { .guide-list { grid-template-columns: repeat(3, 1fr); } }
.guide-link { display: block; text-decoration: none; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--white); }
.guide-link:hover { border-color: var(--accent); }
.guide-link strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; }
.guide-link span { color: var(--muted); font-size: .95rem; }
.article { max-width: 720px; }
.article h2 { font-size: 1.6rem; margin-top: 1.8em; }
.article h3 { margin-top: 1.4em; }
.article ul, .article ol { padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article table { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 16px 0; }
.article th, .article td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); vertical-align: top; }
.article th { color: var(--navy); }
.table-wrap { overflow-x: auto; }
.callout { background: var(--sand); border-radius: var(--radius); padding: 18px 20px; margin: 22px 0; }
.callout p:last-child { margin: 0; }
.page-hero { background: var(--sand); padding: 40px 0; }
.page-hero .lede { margin-bottom: 0; }
.breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.breadcrumb a { color: var(--muted); }

/* CTA band */
.cta-band { background: var(--sand); text-align: center; }
.cta-band .lede { margin: 0 auto 20px; }

/* Footer */
.site-footer { background: #141c26; color: #aeb7c2; font-size: .85rem; padding: 40px 0 28px; }
.site-footer a { color: #d7dde4; }
.site-footer .cols { display: grid; gap: 22px; }
@media (min-width: 700px) { .site-footer .cols { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer strong { color: var(--white); display: block; margin-bottom: 6px; font-weight: 600; }
.site-footer p { margin: 0 0 8px; }
.disclosure { border-top: 1px solid #2a3542; margin-top: 26px; padding-top: 20px; font-size: .8rem; line-height: 1.55; }
.eho { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.eho svg { width: 30px; height: 30px; flex-shrink: 0; }

/* Sticky mobile CTA */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 30; display: flex; gap: 8px; padding: 10px 12px; background: rgba(255,253,249,.96); border-top: 1px solid var(--line); backdrop-filter: blur(8px); }
.sticky-cta a { flex: 1; text-align: center; padding: 12px 10px; font-size: .95rem; }
body.has-sticky { padding-bottom: 72px; }
@media (min-width: 860px) { .sticky-cta { display: none; } body.has-sticky { padding-bottom: 0; } }

/* Form-section photo: desktop only */
.form-img { display: none; border-radius: var(--radius); margin-top: 10px; aspect-ratio: 3/2; object-fit: cover; }
@media (min-width: 860px) { .form-img { display: block; } }
