:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d7dde7;
  --paper: #fbfcfe;
  --white: #ffffff;
  --blue: #0b2b5f;
  --blue-2: #16477f;
  --red: #b91f2c;
  --gold: #c99a2e;
  --green: #177245;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(215, 221, 231, 0.95);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: grid;
  gap: 0;
  text-decoration: none;
  min-width: 220px;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.15;
  color: var(--blue);
}

.brand span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.93rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: #edf3fb;
  outline: none;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: var(--white);
  color: var(--blue);
  border-color: var(--line);
}

.hero {
  background:
    linear-gradient(90deg, rgba(11, 43, 95, 0.93), rgba(11, 43, 95, 0.8) 46%, rgba(185, 31, 44, 0.15)),
    url("/assets/images/portrait-office.jpg") right center / min(54vw, 680px) auto no-repeat,
    var(--blue);
  color: var(--white);
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  min-height: clamp(520px, calc(100vh - 110px), 660px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 48px 0 60px;
}

.hero-copy {
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: #f6d36a;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.7rem, 6.3vw, 5.2rem);
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  color: #e7edf8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  color: #f5f7fb;
  font-weight: 700;
}

.hero-meta span {
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #eef3f8;
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card h3 {
  color: var(--blue);
  font-size: 1.12rem;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card-link {
  color: inherit;
  text-decoration: none;
}

.card-link:hover,
.card-link:focus-visible {
  border-color: var(--blue-2);
  outline: none;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  color: var(--blue);
}

.check-list li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: inset 0 0 0 5px var(--red), inset 0 0 0 7px var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 34px;
  align-items: start;
}

.portrait-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.flyer {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-link {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.article-link time {
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-link h3 {
  margin-top: 8px;
  color: var(--blue);
}

.article-link p {
  margin: 10px 0 0;
  color: var(--muted);
}

.article {
  max-width: 780px;
}

.article-header {
  padding: 64px 0 34px;
  border-bottom: 1px solid var(--line);
}

.article-header time {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-body {
  padding: 34px 0 74px;
  font-size: 1.08rem;
}

.article-body h2,
.article-body h3 {
  margin-top: 32px;
  color: var(--blue);
}

.article-body p,
.article-body ul,
.article-body ol {
  margin: 18px 0 0;
}

.article-body blockquote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  background: #f6f8fb;
  color: #263241;
}

.article-body blockquote p {
  margin: 0;
}

.article-body blockquote p + p {
  margin-top: 12px;
}

.cta-band {
  background: var(--red);
  color: var(--white);
}

.cta-band .wrap {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band p {
  margin: 8px 0 0;
  color: #ffe7ea;
}

.site-footer {
  padding: 34px 0;
  background: #071c3f;
  color: #dbe7f7;
}

.footer-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 800;
}

@media (max-width: 880px) {
  .nav {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(11, 43, 95, 0.96), rgba(11, 43, 95, 0.86)),
      url("/assets/images/portrait-office.jpg") center bottom / min(86vw, 520px) auto no-repeat,
      var(--blue);
  }

  .hero-inner {
    min-height: clamp(560px, calc(100vh - 230px), 660px);
    align-items: start;
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .grid,
  .check-list,
  .split {
    grid-template-columns: 1fr;
  }

  .cta-band .wrap,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .nav,
  .wrap,
  .hero-inner,
  .footer-grid {
    width: min(100% - 24px, 1160px);
  }

  .nav-links a {
    padding-left: 8px;
    padding-right: 8px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .section {
    padding: 54px 0;
  }
}
