:root {
  --navy: #30567C;
  --coral: #F96F49;
  --orange: #EC9354;
  --gold: #BB9F6C;
  --beige: #E2C7AE;
  --bg-light: #F8F5F1;
  --card-white: #FFFFFF;
  --ink: #1F3247;
  --ink-dim: #5B7188;
  --line: rgba(48, 86, 124, 0.12);
  --max: 780px;
  --shadow: 0 8px 24px rgba(48, 86, 124, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-light);
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--coral); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

header.site {
  background: var(--card-white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; gap: 16px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--coral));
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #fff; font-weight: 600;
  flex: none;
}
.brand-name { font-size: 16px; font-weight: 600; color: var(--navy); }
.brand-name .sub { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-dim); font-weight: 500; margin-top: 2px; }

nav.site-nav { display: flex; gap: 24px; font-size: 13px; letter-spacing: 0.03em; text-transform: uppercase; font-weight: 600; }
nav.site-nav a { color: var(--ink-dim); }
nav.site-nav a.current { color: var(--coral); }
nav.site-nav a:hover { color: var(--coral); text-decoration: none; }

main { padding: 56px 0 40px; }

.eyebrow { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); font-weight: 700; margin: 0 0 14px; }

h1 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 8px; color: var(--navy); font-weight: 700; line-height: 1.2; }
h2 { font-size: 19px; color: var(--navy); margin: 36px 0 12px; font-weight: 700; }
p.lede { color: var(--ink-dim); font-size: 17px; margin-top: 0; }
p { color: var(--ink); }
p + p { margin-top: 14px; }

.updated { font-size: 12px; color: var(--ink-dim); letter-spacing: 0.02em; }

.card {
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 18px 0;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; font-size: 14.5px; color: var(--coral); font-weight: 700; letter-spacing: 0.01em; }

ul.plain { padding-left: 20px; margin: 12px 0; }
ul.plain li + li { margin-top: 10px; }

.section-num { font-size: 12px; color: var(--gold); font-weight: 700; letter-spacing: 0.06em; margin-right: 6px; }

.hero { padding: 44px 0 8px; }

.pillars { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); margin: 34px 0; }
@media (max-width: 640px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--card-white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.pillar .glyph {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--beige);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 12px;
}
.pillar h3 { margin: 0 0 6px; font-size: 14px; color: var(--navy); font-weight: 700; }
.pillar p { font-size: 13.5px; color: var(--ink-dim); margin: 0; }

.divider { height: 1px; background: var(--line); margin: 40px 0; border: none; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  display: inline-block;
}
.btn.filled { background: var(--coral); border-color: var(--coral); color: #fff; box-shadow: 0 6px 16px rgba(249, 111, 73, 0.3); }
.btn:hover { background: rgba(48, 86, 124, 0.06); text-decoration: none; }
.btn.filled:hover { background: #e85f3a; }

footer.site {
  border-top: 1px solid var(--line);
  margin-top: 60px;
  padding: 26px 0 40px;
}
footer.site .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--ink-dim); }
footer.site a { color: var(--ink-dim); }
footer.site nav { display: flex; gap: 18px; }

.contact-line { font-size: 13px; color: var(--ink-dim); }
