:root {
  --navy: #102a43;
  --navy-deep: #081d2d;
  --blue: #246b8f;
  --accent: #d79a2b;
  --ink: #1c2b36;
  --muted: #526575;
  --line: #d8e1e8;
  --surface: #f4f7f9;
  --white: #ffffff;
  --max: 72rem;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 100%;
  line-height: 1.6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); }
a { color: #145e85; text-underline-offset: .18em; }
a:hover { color: var(--navy-deep); }
a:focus-visible, .button:focus-visible { outline: .2rem solid var(--accent); outline-offset: .2rem; border-radius: .15rem; }
img, svg { max-width: 100%; }
.skip-link { position: absolute; left: .75rem; top: -5rem; z-index: 20; padding: .7rem 1rem; background: var(--white); color: var(--navy); font-weight: 700; }
.skip-link:focus { top: .75rem; }
.wrap { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }

.site-header { background: var(--navy-deep); color: var(--white); border-bottom: .25rem solid var(--accent); }
.header-inner { min-height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--white); font-weight: 750; font-size: 1.05rem; text-decoration: none; letter-spacing: .01em; }
.brand img { width: 2.25rem; height: 2.25rem; }
.site-nav ul { display: flex; flex-wrap: wrap; gap: .35rem 1.15rem; margin: 0; padding: 0; list-style: none; }
.site-nav a { color: #eef6fa; font-size: .94rem; font-weight: 650; text-decoration: none; }
.site-nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: .16rem; }

.hero { overflow: hidden; background: linear-gradient(135deg, var(--navy-deep), var(--navy) 62%, #174d68); color: var(--white); }
.hero-grid { min-height: 30rem; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(15rem, .6fr); align-items: center; gap: 4rem; padding-block: 5rem; }
.eyebrow { margin: 0 0 .8rem; color: #865800; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.hero .eyebrow { color: #f1bf58; }
h1, h2, h3 { color: var(--navy-deep); line-height: 1.16; letter-spacing: -.025em; }
.hero h1 { max-width: 15ch; margin: 0; color: var(--white); font-size: clamp(2.45rem, 6vw, 4.7rem); }
.hero .lede { max-width: 43rem; color: #dcecf4; font-size: clamp(1.08rem, 2vw, 1.3rem); }
.button { display: inline-block; padding: .8rem 1.1rem; border: .12rem solid var(--accent); background: var(--accent); color: #17222b; font-weight: 750; text-decoration: none; border-radius: .25rem; }
.button:hover { background: #efb348; color: #101820; }
.hero-mark { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.hero-mark::before, .hero-mark::after { content: ""; position: absolute; inset: 12%; border: 1px solid rgba(255,255,255,.3); transform: rotate(45deg); }
.hero-mark::after { inset: 27%; border-color: var(--accent); }
.hero-mark span { position: relative; z-index: 1; font-size: clamp(2.5rem, 7vw, 5.5rem); font-weight: 800; letter-spacing: -.08em; }

main section { padding-block: 4.5rem; }
.intro { max-width: 48rem; }
.intro h1, .section-heading { margin-top: 0; font-size: clamp(2rem, 4vw, 3.25rem); }
.lede { color: var(--muted); font-size: 1.18rem; }
.soft { background: var(--surface); border-block: 1px solid var(--line); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card { padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-top: .25rem solid var(--blue); box-shadow: 0 .45rem 1.5rem rgba(12,42,61,.06); }
.card h3 { margin-top: .25rem; font-size: 1.25rem; }
.number { color: #865800; font-weight: 800; font-size: .85rem; letter-spacing: .09em; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.notice { padding: 1.25rem 1.4rem; border-left: .3rem solid var(--accent); background: #fff8e9; }
.legal { max-width: 49rem; }
.legal h2 { margin-top: 2.5rem; font-size: 1.5rem; }
.meta { color: var(--muted); font-size: .92rem; }
.contact-block { padding: 2rem; background: var(--surface); border: 1px solid var(--line); }
.email { font-size: clamp(1.05rem, 3vw, 1.45rem); font-weight: 750; overflow-wrap: anywhere; }

.site-footer { padding-block: 2.5rem; background: var(--navy-deep); color: #cfdee6; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; list-style: none; margin: 0; padding: 0; }
.site-footer a { color: #edf7fb; }
.fine { max-width: 48rem; margin-bottom: 0; color: #aebfca; font-size: .86rem; }

@media (max-width: 48rem) {
  .header-inner { align-items: flex-start; flex-direction: column; padding-block: 1rem; gap: .8rem; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding-block: 3.5rem; gap: 1rem; }
  .hero-mark { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  main section { padding-block: 3.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
