:root {
  --bg: #f7f5f1;
  --bg-2: #f2f0ec;
  --card: #ffffff;
  --ink: #1d3a4a;
  --muted: #5e7684;
  --rule: rgba(29, 58, 74, 0.12);
  --shadow: 0 18px 40px rgba(20, 43, 55, 0.10);
  --radius: 18px;
  --navy: #1d3a4a;
  --navy-2: #163444;
  --pill-bg: rgba(29, 58, 74, 0.08);
  --pill-text: #2a5166;
  --btn-shadow: 0 14px 30px rgba(20, 43, 55, 0.18);
  --serif: "Cormorant Garamond", ui-serif, Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.wrap {
  width: min(1060px, 92vw);
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 38px 0 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(247,245,241,0.92) 0%, rgba(247,245,241,0.30) 38%, rgba(247,245,241,0.96) 100%),
    url("b95c773a-a0ae-4d46-99f5-8a81d042dbd8.png") center/cover no-repeat;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(60% 40% at 50% 20%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.00) 70%);
  pointer-events:none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 8px 0 18px;
}

.brand img {
  width: 84px;
  height: auto;
}

.brand .wordmark {
  font-family: var(--serif);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 28px;
}

.brand .submark {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -4px;
}

.brand .est {
  margin-top: 2px;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--pill-text);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

h1 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  margin: 18px auto 14px;
  max-width: 18.5ch;
}

.lede {
  color: var(--muted);
  font-size: 18px;
  margin: 0 auto 22px;
  max-width: 62ch;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(29,58,74,0.18);
  background: #ffffff;
  color: var(--navy);
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active { transform: translateY(1px); }

.btn.primary {
  background: linear-gradient(135deg, #27495c 0%, #183645 100%);
  color: #ffffff;
  border-color: rgba(255,255,255,0.0);
  box-shadow: var(--btn-shadow);
}

.btn.ghost:hover { background: rgba(29,58,74,0.04); }
.btn.primary:hover { box-shadow: 0 18px 44px rgba(20,43,55,0.24); }

.facts {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

.facts .dot { opacity: 0.5; }

.section {
  padding: 58px 0;
}

.section.alt { background: var(--bg-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.kicker {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

h2 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(26px, 2.6vw, 38px);
  margin: 0 0 10px;
  line-height: 1.12;
}

.section-lede {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 22px;
  max-width: 68ch;
}

.center {
  text-align: center;
}
.center .section-lede { margin-left: auto; margin-right: auto; }

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px 18px 18px;
  box-shadow: 0 1px 0 rgba(20,43,55,0.02);
  text-align: left;
}

.card .icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(29,58,74,0.05);
  border: 1px solid rgba(29,58,74,0.10);
  margin-bottom: 12px;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.rubric {
  display: grid;
  gap: 14px;
}

.rubric-item {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 16px 16px;
}

.rubric-item h3{
  margin: 0 0 6px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

.rubric-item p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.avoid {
  background: rgba(29,58,74,0.04);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px 18px 14px;
}

.avoid h3{
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
}

.avoid ul{
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.legacy-split{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.prose {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.cta-band {
  background: linear-gradient(135deg, #153142 0%, #0e2a3a 100%);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.cta-band h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  margin: 0 0 8px;
  line-height: 1.12;
}

.cta-band p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.6;
}

.cta-side {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap: 10px;
}

.cta-band .btn {
  background: #ffffff;
  color: var(--navy);
  border-color: rgba(255,255,255,0.0);
  box-shadow: none;
}

.cta-band small {
  color: rgba(255,255,255,0.78);
  font-size: 12.5px;
}

.footer {
  padding: 36px 0 50px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.footer-grid {
  display:grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.footer strong { color: var(--navy); }

.footer a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px){
  .cards-4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split{ grid-template-columns: 1fr; }
  .legacy-split{ grid-template-columns: 1fr; }
  .cta-band{ grid-template-columns: 1fr; }
  .cta-side{ align-items: flex-start; }
}

@media (max-width: 520px){
  .cards-4{ grid-template-columns: 1fr; }
  .brand img{ width: 76px; }
  .brand .wordmark{ font-size: 24px; }
}
