:root {
  --navy: #002058;
  --navy-deep: #00163d;
  --red: #d80010;
  --red-dark: #b4000d;
  --gray: #5c616b;
  --gray-line: #d9dce3;
  --gray-soft: #f4f6f8;
  --white: #ffffff;
  --ink: #151922;
  --max: 70rem;
  --header-h: 4.5rem;
  --shadow: 0 1px 2px rgba(0, 32, 88, 0.06), 0 8px 24px rgba(0, 32, 88, 0.05);
  --radius: 10px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--navy);
}

a:hover {
  color: var(--red);
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 0.85rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
  box-shadow: 0 1px 0 var(--navy), 0 3px 0 var(--red);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  width: 11.5rem;
  height: auto;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-toggle-label {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--gray-line);
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
}

.nav-toggle-label span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  background: var(--red);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: 1px solid var(--red);
  line-height: 1.2;
}

.btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-light {
  background: var(--white);
  color: var(--navy) !important;
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--gray-soft);
}

.hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 4.5rem 0 4.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;
  max-width: 16ch;
}

.hero p {
  margin: 0 0 1.75rem;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.section {
  padding: 4.25rem 0;
}

.section-alt {
  background: var(--gray-soft);
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.lead {
  margin: 0;
  max-width: 46rem;
  color: var(--gray);
  font-size: 1.08rem;
}

.lead-follow {
  margin-top: 1rem;
}

.presence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

.presence-card {
  background: var(--gray-soft);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem;
}

.presence-label {
  margin: 0 0 0.25rem;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.presence-value {
  margin: 0 0 0.35rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.presence-note {
  margin: 0;
  color: var(--gray);
  font-size: 0.9rem;
}

.fields-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.field-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}

.field-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.7rem;
  border: 1px solid var(--gray-line);
  border-radius: 6px;
  color: var(--navy);
  background: var(--gray-soft);
}

.field-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  max-width: 1.2rem;
  max-height: 1.2rem;
  display: block;
  flex-shrink: 0;
}

.field-card strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin: 0.15rem 0 0.4rem;
  line-height: 1.35;
}

.field-card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

.num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
}

.note {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  max-width: 46rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.why-card {
  background: var(--white);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 1.25rem 1.1rem;
  box-shadow: var(--shadow);
}

.why-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 700;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-list {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--gray-line);
}

.contact-list dt {
  margin: 0;
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 650;
}

.contact-list a {
  text-decoration: none;
  font-weight: 650;
}

.contact-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.contact-cta p {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.86);
}

.contact-cta h2 {
  color: var(--white);
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 2rem 0 1.6rem;
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffd4d6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}

@media (min-width: 761px) {
  .nav-toggle,
  .nav-toggle-label {
    display: none;
  }
}

@media (max-width: 960px) {
  .fields-grid,
  .why-grid,
  .presence {
    grid-template-columns: 1fr 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle-label {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--header-h) + 4px);
    background: var(--white);
    border-bottom: 1px solid var(--gray-line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.65rem 0.35rem;
  }

  .site-nav .btn {
    margin-top: 0.35rem;
    width: 100%;
  }

  .nav-toggle:focus-visible + .nav-toggle-label {
    outline: 3px solid var(--red);
    outline-offset: 3px;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .hero {
    padding: 3rem 0 3.25rem;
  }

  .section {
    padding: 3.1rem 0;
  }

  .logo img {
    width: 9.6rem;
  }
}

@media (max-width: 560px) {
  .fields-grid,
  .why-grid,
  .presence {
    grid-template-columns: 1fr;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}
