
:root {
  --ink: #10233f;
  --ink-2: #1a3355;
  --paper: #fffdf8;
  --soft: #f4efe7;
  --soft-2: #ebe1d2;
  --line: #ddd0c1;
  --red: #b13b48;
  --red-dark: #8f2e3a;
  --gold: #b58a42;
  --green: #315f58;
  --text: #28354a;
  --muted: #687385;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 35, 63, .12);
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.container.narrow { width: min(860px, calc(100% - 40px)); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 2000;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, .95);
  border-bottom: 1px solid rgba(221, 208, 193, .7);
  backdrop-filter: blur(16px);
}
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.88);
  font-size: 13px;
}
.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 650; }
.masthead {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: .02em;
}
.brand strong { display: block; font-size: 15px; line-height: 1; }
.brand em { display: block; font-style: normal; font-size: 12px; color: var(--red); letter-spacing: .2em; margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink-2);
  padding: 10px 12px;
  border-radius: 999px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  background: rgba(177, 59, 72, .09);
  color: var(--red-dark);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.nav-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--ink); display: block; border-radius: 10px; }

.section-pad { padding: 86px 0; }
.section-soft { background: var(--soft); }
.section-ink { background: var(--ink); color: rgba(255,255,255,.86); }
.section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink .eyebrow { color: #f0c96b; }
.section-ink a { color: #fff; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--ink); line-height: 1.1; margin-top: 0; }
h1 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(42px, 6vw, 76px); letter-spacing: -.04em; margin-bottom: 22px; }
h2 { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 48px); letter-spacing: -.03em; margin-bottom: 18px; }
h3 { font-size: 21px; margin-bottom: 10px; }
p { margin: 0 0 16px; }
.lead { font-size: clamp(19px, 2.5vw, 24px); color: #4b586b; max-width: 740px; }
.lead-small { font-size: 18px; color: #4d5a6b; }
.muted { color: var(--muted); }
.prose { font-size: 17px; }
.prose p:last-child { margin-bottom: 0; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(177,59,72,.15), transparent 34%),
    linear-gradient(135deg, #fffdf8 0%, #f4efe7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16,35,63,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,35,63,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 420px;
  gap: 56px;
  align-items: center;
}
.hero-copy { padding: 28px 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 14px 34px rgba(177, 59, 72, .25); }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-outline { border-color: rgba(16,35,63,.22); color: var(--ink); background: rgba(255,255,255,.45); }
.btn-outline:hover { background: #fff; color: var(--ink); box-shadow: 0 12px 30px rgba(16,35,63,.08); }
.text-link { font-weight: 800; text-decoration: none; border-bottom: 2px solid currentColor; padding-bottom: 3px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin: 0;
}
.trust-row div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  border-radius: var(--radius-sm);
  padding: 14px;
}
dt { font-size: 12px; color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
dd { margin: 4px 0 0; color: var(--ink); font-weight: 700; word-break: break-word; }
.hero-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(221,208,193,.9);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.hero-card h2 { font-size: 30px; margin-bottom: 18px; }
.hero-mark {
  width: 168px;
  height: 168px;
  margin: 0 auto 26px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background: radial-gradient(circle, rgba(177,59,72,.15) 0 16%, transparent 17%), var(--soft);
  border: 1px solid var(--line);
}
.hero-mark span {
  position: absolute;
  border: 1px solid rgba(16,35,63,.28);
  border-radius: 50%;
}
.hero-mark span:nth-child(1) { inset: 22px; }
.hero-mark span:nth-child(2) { inset: 48px; }
.hero-mark span:nth-child(3) { inset: 74px; background: var(--red); border: none; }
.card-note { font-size: 14px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }
.clean-list { list-style: none; margin: 0; padding: 0; }
.clean-list li { margin: 0 0 10px; }

.page-hero {
  padding: 88px 0 72px;
  background: linear-gradient(135deg, var(--ink), #223e61);
  color: rgba(255,255,255,.84);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -140px;
  top: -180px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 48px rgba(255,255,255,.03), inset 0 0 0 118px rgba(255,255,255,.03);
}
.page-hero.small { padding: 70px 0; }
.page-hero h1, .page-hero h2 { color: #fff; }
.page-hero p { font-size: 19px; max-width: 760px; }
.page-hero .eyebrow { color: #f0c96b; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: start;
}
.split.reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
.section-heading { max-width: 770px; margin-bottom: 34px; }
.section-heading.compact { max-width: 700px; }
.section-heading p { color: var(--muted); font-size: 17px; }
.card-grid { display: grid; gap: 20px; }
.card-grid.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.feature-card, .news-card, .person-card, .data-card, .contact-panel, .contact-details, .panel-light, .callout, .activity-item, .access-card {
  background: #fff;
  border: 1px solid rgba(221,208,193,.92);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(16,35,63,.07);
}
.feature-card { padding: 24px; min-height: 210px; }
.feature-card p { color: #556173; }
.icon-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 22px;
  background: radial-gradient(circle at center, var(--red) 0 25%, transparent 27%), var(--soft);
  border: 1px solid var(--line);
}
.panel-light { padding: 28px; color: var(--text); }
.panel-light h3 { color: var(--ink); }
.info-list { margin: 0; }
.info-list div { padding: 15px 0; border-bottom: 1px solid rgba(221,208,193,.86); }
.info-list div:last-child { border-bottom: none; }
.timeline-block {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: 54px;
  align-items: start;
}
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 16px;
}
.steps li span { grid-row: span 2; color: var(--red); font-weight: 900; letter-spacing: .08em; }
.steps li strong { color: var(--ink); font-size: 18px; }
.steps li p { margin: 5px 0 0; color: var(--muted); }
.steps.vertical li { grid-template-columns: 52px 1fr; }
.quote-box { padding: 30px; border-left: 5px solid var(--red); }
.quote-box p:first-child { font-family: var(--font-serif); font-size: 27px; line-height: 1.25; color: var(--ink); }
.data-card { padding: 28px; }
.data-card.wide h2 { margin-bottom: 22px; }
.data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.data-grid.three-col { grid-template-columns: repeat(3, minmax(0,1fr)); }
.data-grid.legal { grid-template-columns: repeat(2, minmax(0,1fr)); }
.data-grid div { background: #fff; padding: 18px; min-height: 98px; }
.people-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.person-card { padding: 24px; display: flex; align-items: center; gap: 20px; }
.person-card p { margin: 0; color: var(--muted); }
.profile-grid { align-items: stretch; }
.profile-card { align-items: flex-start; }
.profile-card h3 { margin-bottom: 10px; }
.profile-card p + p { margin-top: 12px; }
.person-role { color: var(--red-dark) !important; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; margin-bottom: 6px !important; }
.mini-profile { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px; margin: 14px 0 18px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.mini-profile div { background: #fff; padding: 12px; }
.mini-profile dt { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 900; }
.mini-profile dd { margin: 3px 0 0; font-weight: 800; color: var(--ink); word-break: break-word; }
.profile-note { color: var(--ink) !important; font-weight: 700; }
.person-initials {
  flex: 0 0 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  letter-spacing: .08em;
}
.activity-list { display: grid; gap: 18px; }
.activity-item { display: grid; grid-template-columns: 92px 1fr; gap: 26px; padding: 28px; align-items: start; }
.activity-number { color: var(--red); font-weight: 900; letter-spacing: .12em; border-top: 2px solid var(--red); padding-top: 8px; }
.activity-item p { font-size: 17px; color: #536073; }
.commitment-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.commitment-grid article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.commitment-grid span { color: var(--red); font-weight: 900; letter-spacing: .08em; }
.commitment-grid p { color: var(--muted); }
.callout { padding: 34px; background: linear-gradient(135deg, #fff, var(--soft)); }
.callout p { max-width: 840px; font-size: 18px; }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.news-card { padding: 26px; min-height: 330px; display: flex; flex-direction: column; }
.news-card h2 { font-size: 29px; }
.news-card p { color: #556173; }
.news-card a { margin-top: auto; font-weight: 800; color: var(--red-dark); text-decoration: none; }
.news-meta { font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--gold) !important; }
.join-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 52px; align-items: start; }
.contact-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr); gap: 28px; align-items: start; }
.contact-panel, .contact-details { padding: 30px; }
.contact-form { display: grid; gap: 16px; margin-top: 24px; }
.form-row { display: grid; gap: 7px; }
label { font-weight: 800; color: var(--ink); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(177,59,72,.18); border-color: var(--red); }
.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; color: var(--text); }
.checkbox-row input { width: auto; margin-top: 5px; }
.form-status { color: var(--green); font-weight: 750; margin: 0; min-height: 1.4em; }
.access-card { margin-top: 24px; padding: 22px; background: var(--soft); box-shadow: none; }
.legal-content { max-width: 950px; }
.legal-content section { padding: 28px 0; border-bottom: 1px solid var(--line); }
.legal-content section:first-child { padding-top: 0; }
.legal-content h2 { font-size: 34px; }

.site-footer { background: #0b1b31; color: rgba(255,255,255,.78); padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .95fr .7fr .8fr; gap: 36px; }
.footer-brand { color: #fff; margin-bottom: 18px; font-weight: 900; letter-spacing: .03em; }
.footer-about p { max-width: 440px; }
.footer-small { color: rgba(255,255,255,.58); font-size: 14px; }
.site-footer h2 { font-family: var(--font-sans); font-size: 14px; color: #fff; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer address { font-style: normal; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; font-size: 13px; color: rgba(255,255,255,.55); }
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .2s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 1040px) {
  .main-nav { gap: 0; }
  .main-nav a { padding: 9px 9px; font-size: 13px; }
  .hero-grid, .split, .timeline-block, .join-grid, .contact-grid { grid-template-columns: 1fr; }
  .card-grid.four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .news-grid, .commitment-grid, .card-grid.three, .data-grid.three-col { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .topbar__inner { align-items: flex-start; flex-direction: column; padding: 8px 0; gap: 2px; }
  .masthead { min-height: 70px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(16,35,63,.1);
    padding: 12px 20px 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { border-radius: 12px; padding: 12px; }
  .section-pad { padding: 62px 0; }
  .hero-grid { gap: 28px; }
  .trust-row, .card-grid.four, .card-grid.three, .news-grid, .commitment-grid, .data-grid, .data-grid.legal, .data-grid.three-col, .people-grid, .footer-grid { grid-template-columns: 1fr; }
  .activity-item, .steps li { grid-template-columns: 1fr; }
  .activity-number { width: 70px; }
  .footer-bottom { flex-direction: column; }
  h1 { font-size: clamp(38px, 12vw, 56px); }
}
@media (max-width: 520px) {
  .container, .container.narrow { width: min(100% - 28px, var(--container)); }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 13px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-card, .contact-panel, .contact-details, .data-card { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media print {
  .site-header, .site-footer, .back-to-top, .btn { display: none !important; }
  body { background: #fff; color: #000; }
  .section-pad, .page-hero { padding: 22px 0; }
  .page-hero { background: #fff; color: #000; }
  h1, h2, h3, .page-hero h1 { color: #000; }
}
