:root {
  --blue: #1e3f6f;
  --blue-2: #23669d;
  --cyan: #12b7d6;
  --gold: #f4c430;
  --gold-soft: #fff1af;
  --green: #2e7d32;
  --violet: #6b3fa0;
  --cream: #fffaf0;
  --ink: #172437;
  --muted: #5d6d7f;
  --line: #dbe5ed;
  --shadow: 0 20px 50px rgba(30, 63, 111, .13);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.72;
}
a { color: var(--blue-2); text-underline-offset: 3px; }
a:hover { color: var(--violet); }
img { display: block; max-width: 100%; height: auto; }
:focus-visible { outline: 4px solid var(--gold); outline-offset: 4px; }
.skip-link {
  position: absolute; left: 1rem; top: -5rem; z-index: 20;
  padding: .7rem 1rem; border-radius: 10px; background: var(--gold); color: var(--blue);
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  color: white; background: rgba(30, 63, 111, .97);
  box-shadow: 0 6px 26px rgba(12, 32, 62, .14);
}
.header-inner {
  width: min(1180px, calc(100% - 2rem)); margin: auto;
  min-height: 86px; display: flex; align-items: center; gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; color: white; text-decoration: none; min-width: 220px; }
.brand img { width: 56px; height: 56px; object-fit: cover; border-radius: 50%; border: 3px solid var(--gold); background: white; }
.brand-text { font-size: 1.04rem; font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
.brand-text small { display: block; margin-top: .28rem; color: var(--gold-soft); font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.menu-toggle { display: none; margin-left: auto; color: white; border: 1px solid rgba(255,255,255,.4); background: transparent; border-radius: 10px; padding: .45rem .7rem; font-size: 1.25rem; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: .25rem; flex: 1; }
.main-nav a { display: inline-block; color: white; text-decoration: none; border-radius: 999px; padding: .55rem .7rem; font-size: .88rem; font-weight: 700; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--blue); background: var(--gold); }

.hero {
  overflow: hidden; position: relative; color: white;
  background: linear-gradient(135deg, var(--blue) 0%, #185b8d 58%, #117b9e 100%);
}
.hero::after { content: ""; position: absolute; inset: auto -8% -70px auto; width: 320px; height: 190px; border-radius: 50%; background: rgba(244,196,48,.2); transform: rotate(-12deg); }
.hero-inner { width: min(1180px, calc(100% - 2rem)); margin: auto; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); align-items: center; gap: 4rem; padding: clamp(4rem, 8vw, 7rem) 0; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 .8rem; color: var(--gold); font-size: .79rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; color: var(--blue); font-family: Georgia, "Times New Roman", serif; line-height: 1.16; }
.hero h1 { max-width: 700px; color: white; font-size: clamp(2.6rem, 6vw, 5.2rem); letter-spacing: -.045em; }
.hero .lead { max-width: 660px; margin: 1.4rem 0 0; color: #eef8ff; font-size: clamp(1.1rem, 1.7vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero-mark { justify-self: center; position: relative; }
.hero-mark img { width: min(430px, 100%); border-radius: 50%; border: 12px solid var(--gold); box-shadow: 0 22px 60px rgba(5,26,51,.3); }
.banner-frame { padding: .45rem; background: var(--gold); }
.banner-frame img { width: 100%; max-height: 390px; object-fit: cover; object-position: center; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-height: 48px; padding: .7rem 1.15rem; border: 2px solid transparent; border-radius: 999px; font-weight: 850; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 9px 18px rgba(8, 36, 71, .16); }
.btn-primary { color: var(--blue); background: var(--gold); }
.btn-secondary { color: white; border-color: rgba(255,255,255,.7); background: transparent; }
.btn-outline { color: var(--blue); border-color: var(--blue); background: transparent; }
.btn-green { color: white; background: var(--green); }

.page-hero { background: linear-gradient(120deg, #edf6fc, #fffaf0 72%); border-bottom: 1px solid var(--line); }
.page-hero-inner { width: min(1180px, calc(100% - 2rem)); margin: auto; padding: clamp(3rem, 7vw, 5rem) 0 3.2rem; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); letter-spacing: -.04em; }
.page-hero .lead { max-width: 780px; margin: 1.2rem 0 0; color: var(--muted); font-size: 1.2rem; }
.crumb { margin: 0 0 1.2rem; color: var(--green); font-size: .8rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.section { width: min(1180px, calc(100% - 2rem)); margin: auto; padding: clamp(3.2rem, 7vw, 6rem) 0; }
.section + .section { padding-top: 0; }
.section-heading { max-width: 720px; margin-bottom: 2rem; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.3rem); letter-spacing: -.03em; }
.section-heading p { margin: 1rem 0 0; color: var(--muted); }
.prose { max-width: 820px; }
.prose p { margin: 0 0 1.25rem; }
.prose h2, .prose h3 { margin: 2rem 0 .8rem; }
.prose h2 { font-size: 2rem; }
.prose h3 { font-size: 1.35rem; }
.prose ul { padding-left: 1.3rem; }
.prose li + li { margin-top: .55rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.3rem; }
.card { padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.card h3 { margin-bottom: .6rem; font-size: 1.35rem; }
.card p { margin: 0; color: var(--muted); }
.card-link { display: flex; flex-direction: column; gap: .75rem; height: 100%; color: inherit; text-decoration: none; }
.card-link .arrow { margin-top: auto; color: var(--blue-2); font-weight: 900; }
.number-card { position: relative; overflow: hidden; }
.number-card::before { content: ""; position: absolute; right: -22px; top: -34px; width: 110px; height: 110px; border-radius: 50%; background: var(--gold-soft); }
.number { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin-bottom: 1.1rem; border-radius: 14px; color: var(--blue); background: var(--gold); font-weight: 950; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr); gap: clamp(2rem, 8vw, 6rem); align-items: center; }
.soft-panel { padding: clamp(1.5rem, 4vw, 3rem); border-radius: var(--radius); background: #edf6fc; }
.quote { margin: 0; padding: 1.4rem 1.6rem; border-left: 5px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; background: white; color: var(--blue); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.3rem, 3vw, 2rem); line-height: 1.35; box-shadow: var(--shadow); }
.notice { padding: 1.2rem 1.3rem; border-left: 5px solid var(--violet); border-radius: 0 14px 14px 0; background: #f4effb; }
.notice strong { color: var(--violet); }
.cta-band { color: white; background: linear-gradient(135deg, var(--blue), #125b8c); }
.cta-band h2 { color: white; }
.cta-band p { color: #e9f5ff; }
.cta-band .section-heading { margin-bottom: 1rem; }
.status { display: inline-flex; align-items: center; gap: .55rem; padding: .35rem .7rem; border-radius: 99px; color: var(--green); background: #e6f4e8; font-size: .8rem; font-weight: 850; }
.status::before { content: ""; width: .55rem; height: .55rem; border-radius: 50%; background: var(--green); }

.site-footer { color: #e6f2ff; background: #122b4d; }
.footer-main { width: min(1180px, calc(100% - 2rem)); margin: auto; display: grid; grid-template-columns: 1.25fr repeat(2, 1fr); gap: 2rem; padding: 3rem 0 2rem; }
.footer-main h2, .footer-main h3 { margin-bottom: .75rem; color: var(--gold); font-family: inherit; font-size: 1rem; }
.footer-main p { max-width: 360px; margin: 0; color: #c9d8e8; font-size: .92rem; }
.footer-main ul { margin: 0; padding: 0; list-style: none; }
.footer-main li + li { margin-top: .4rem; }
.footer-main a { color: #e6f2ff; font-size: .92rem; }
.footer-bottom { width: min(1180px, calc(100% - 2rem)); margin: auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; padding: 1rem 0 1.3rem; border-top: 1px solid rgba(255,255,255,.18); color: #b8cbe0; font-size: .8rem; }

.contact-card { padding: 2rem; border-radius: var(--radius); background: var(--blue); color: white; }
.contact-card h2 { color: white; }
.contact-card p { color: #e7f4ff; }
.form-placeholder { display: grid; gap: 1rem; }
.form-placeholder label { display: grid; gap: .35rem; color: var(--blue); font-weight: 800; }
.form-placeholder input, .form-placeholder textarea { width: 100%; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; background: white; }
.form-placeholder textarea { min-height: 130px; resize: vertical; }
.form-placeholder .btn { justify-self: start; cursor: pointer; }

@media (max-width: 980px) {
  .header-inner { gap: 1rem; }
  .brand { min-width: auto; }
  .main-nav a { padding: .5rem; font-size: .78rem; }
}
@media (max-width: 760px) {
  .site-header { position: relative; }
  .header-inner { min-height: 72px; }
  .brand img { width: 46px; height: 46px; }
  .menu-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: .75rem 1rem 1rem; flex-direction: column; align-items: stretch; background: var(--blue); box-shadow: 0 12px 20px rgba(0,0,0,.15); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .7rem 1rem; }
  .hero-inner, .split { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero-mark { order: -1; justify-self: start; }
  .hero-mark img { width: min(270px, 72vw); border-width: 8px; }
  .grid-3, .grid-2, .footer-main { grid-template-columns: 1fr; }
  .footer-main { gap: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }
