:root {
  --sfc-red: #ce1d2c;
  --sfc-red-dark: #a91522;
  --sfc-blue: #24428e;
  --sfc-blue-dark: #172f6d;
  --ink: #172033;
  --muted: #5f6878;
  --paper: #ffffff;
  --surface: #f5f7fb;
  --surface-blue: #eef2fb;
  --line: #dce2ee;
  --shadow: 0 16px 40px rgba(20, 35, 72, 0.11);
  --radius: 18px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: var(--sfc-blue); text-underline-offset: 0.18em; }
a:hover { color: var(--sfc-red-dark); }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f4b942; outline-offset: 3px; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: var(--sfc-blue-dark);
  border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-top: 5px solid var(--sfc-red);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(25, 42, 84, 0.05);
  backdrop-filter: blur(12px);
}
.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; text-decoration: none; min-width: 265px; }
.brand img { width: 265px; display: block; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--sfc-blue-dark);
  font: inherit;
  font-weight: 700;
  padding: 9px 12px;
  cursor: pointer;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--sfc-blue); background: var(--surface-blue); }
.site-nav .contact-link { color: #fff; background: var(--sfc-blue); }
.site-nav .contact-link:hover,
.site-nav .contact-link[aria-current="page"] { color: #fff; background: var(--sfc-blue-dark); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 124px) 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(206,29,44,0.12), transparent 27%),
    radial-gradient(circle at 8% 86%, rgba(36,66,142,0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fe 58%, #eef2fb 100%);
  border-bottom: 1px solid var(--line);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(36,66,142,0.13);
}
.hero::before { width: 430px; height: 430px; right: -220px; top: -130px; }
.hero::after { width: 290px; height: 290px; left: -170px; bottom: -150px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 72px; align-items: center; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--sfc-red-dark);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0 0 0.55em; line-height: 1.14; color: var(--sfc-blue-dark); }
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(2.55rem, 5vw, 4.8rem); letter-spacing: -0.035em; max-width: 14ch; }
h2 { font-size: clamp(2rem, 3.5vw, 3.1rem); letter-spacing: -0.02em; }
h3 { font-size: 1.28rem; }
.lead { max-width: 700px; margin: 0 0 28px; color: #3d4960; font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-seal {
  position: relative;
  padding: 30px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(36,66,142,0.15);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-seal img { display: block; width: 100%; }
.hero-seal::after {
  content: "Local 7965";
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 12px;
  color: #fff;
  background: var(--sfc-red);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 19px;
  border: 2px solid var(--sfc-blue);
  border-radius: 10px;
  color: #fff;
  background: var(--sfc-blue);
  font-weight: 800;
  text-decoration: none;
}
.button:hover { color: #fff; background: var(--sfc-blue-dark); border-color: var(--sfc-blue-dark); }
.button.secondary { color: var(--sfc-blue); background: transparent; }
.button.secondary:hover { color: #fff; background: var(--sfc-blue); }
.button.red { background: var(--sfc-red); border-color: var(--sfc-red); }
.button.red:hover { background: var(--sfc-red-dark); border-color: var(--sfc-red-dark); }

.page-hero {
  padding: 66px 0 54px;
  background: linear-gradient(135deg, var(--surface-blue), #fff 68%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: none; font-size: clamp(2.5rem, 5vw, 4.2rem); }
.page-hero .lead { margin-bottom: 0; }

.section { padding: clamp(68px, 8vw, 96px) 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(20,35,72,0.06);
}
.card p:last-child { margin-bottom: 0; }
.card-accent { border-top: 5px solid var(--sfc-red); }
.card-number { margin: 0 0 10px; color: var(--sfc-red); font-family: Georgia, serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.icon-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  color: #fff;
  background: var(--sfc-blue);
  border-radius: 12px;
  font-weight: 900;
}

.callout {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  color: #fff;
  background: linear-gradient(135deg, var(--sfc-blue-dark), var(--sfc-blue));
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.callout::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -170px;
  top: -160px;
  border: 44px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.callout h2, .callout h3 { color: #fff; }
.callout p { max-width: 850px; }
.callout .button { border-color: #fff; color: var(--sfc-blue-dark); background: #fff; }
.callout .button:hover { color: #fff; background: transparent; }

.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 0 0 14px; padding-left: 34px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.08em;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--sfc-red);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.identity-box {
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--sfc-red);
  border-radius: 14px;
}
.identity-box dl { display: grid; grid-template-columns: 190px 1fr; gap: 10px 18px; margin: 0; }
.identity-box dt { font-weight: 850; color: var(--sfc-blue-dark); }
.identity-box dd { margin: 0; }

.officer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.officer-card {
  position: relative;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(20,35,72,0.06);
}
.officer-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--sfc-red); border-radius: var(--radius) 0 0 var(--radius); }
.officer-title { margin: 0 0 3px; color: var(--sfc-red-dark); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.officer-name { margin: 0 0 12px; font-family: Georgia, serif; color: var(--sfc-blue-dark); font-size: 1.65rem; line-height: 1.18; }
.officer-card p:last-child { margin-bottom: 0; }

.document-card {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(20,35,72,0.06);
}
.document-card + .document-card { margin-top: 20px; }
.pdf-icon {
  width: 64px;
  height: 76px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--sfc-red);
  border-radius: 8px 8px 12px 8px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.document-card h2 { margin-bottom: 7px; font-size: 1.65rem; }
.document-card p { margin: 0; color: var(--muted); }
.note {
  padding: 18px 20px;
  background: #fff8df;
  border: 1px solid #ead79b;
  border-radius: 12px;
  color: #514421;
}

.contact-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 32px; align-items: start; }
.contact-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-label { display: block; margin-bottom: 4px; color: var(--sfc-red-dark); font-size: 0.79rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.address { font-style: normal; }

.site-footer { color: #e9edf7; background: #101f46; border-top: 7px solid var(--sfc-red); }
.footer-main { display: grid; grid-template-columns: 1.1fr 0.9fr 0.9fr; gap: 52px; padding: 54px 0 40px; }
.footer-logo { width: 285px; max-width: 100%; padding: 15px; background: #fff; border-radius: 12px; }
.site-footer h2 { color: #fff; font-family: inherit; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.09em; }
.site-footer a { color: #fff; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 7px 0; }
.footer-bottom { padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,0.13); color: #c7d0e6; font-size: 0.88rem; }
.footer-bottom p { margin: 5px 0; }

.kicker { color: var(--sfc-red-dark); font-weight: 850; }
.text-muted { color: var(--muted); }
.text-small { font-size: 0.91rem; }
.flow > * + * { margin-top: 1.2em; }
.flow > h2, .flow > h3 { margin-top: 1.6em; }

@media (max-width: 880px) {
  body { font-size: 16px; }
  .header-inner { min-height: 82px; }
  .brand img { width: 220px; }
  .nav-toggle { display: inline-flex; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; padding: 12px 20px 20px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 14px 28px rgba(20,35,72,0.12); }
  .site-nav.open { display: block; }
  .site-nav ul { align-items: stretch; flex-direction: column; }
  .site-nav a { width: 100%; justify-content: flex-start; }
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .hero-seal { max-width: 520px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2, .officer-grid { grid-template-columns: 1fr; }
  .document-card { grid-template-columns: 58px 1fr; }
  .document-card .button { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 520px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max-width)); }
  .brand { min-width: 0; }
  .brand img { width: 183px; }
  .hero { padding: 62px 0; }
  .hero-seal { padding: 18px; }
  .hero-seal::after { right: 10px; bottom: 9px; }
  h1 { font-size: 2.55rem; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .identity-box dl { grid-template-columns: 1fr; gap: 1px; }
  .identity-box dd + dt { margin-top: 12px; }
  .document-card { padding: 22px; }
}

@media print {
  .site-header, .site-footer, .button-row, .button, .nav-toggle { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .hero, .page-hero, .section, .section.alt { padding: 28px 0; background: #fff; border: 0; }
  .card, .officer-card, .document-card, .contact-card, .callout { color: #000; background: #fff; box-shadow: none; break-inside: avoid; }
}
