:root {
  --ink: #111827;
  --subtle: #5c6672;
  --line: #d9dee5;
  --surface: #f4f6f8;
  --white: #ffffff;
  --red: #c94c3f;
  --red-dark: #96372f;
  --navy: #18283a;
  --blue: #315f7d;
  --gold: #bb8a2f;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.topline {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

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

.topline-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-logo {
  width: 270px;
  max-width: min(270px, 58vw);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 9px 12px;
  border-bottom: 2px solid transparent;
  color: #2e3c4c;
  font-weight: 700;
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red-dark);
  border-bottom-color: var(--red);
}

.hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 52px;
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(42px, 5.5vw, 76px);
  max-width: 830px;
}

h2 {
  font-size: clamp(30px, 3vw, 44px);
}

h3 {
  font-size: 21px;
}

.lede {
  max-width: 760px;
  margin: 22px 0 30px;
  color: var(--subtle);
  font-size: 20px;
}

.hero-panel {
  border: 1px solid var(--line);
  background: #fbfcfd;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.credential-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.credential {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.credential:last-child {
  border-right: 0;
}

.credential strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.credential span {
  color: var(--subtle);
  font-size: 13px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 4px;
  border: 1px solid var(--red);
  font-weight: 800;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  color: var(--red-dark);
  background: var(--white);
}

.text-link {
  color: var(--red-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding: 76px 0;
}

.section.white {
  background: var(--white);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p,
.page-intro p {
  color: var(--subtle);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
}

.card.highlight {
  border-top: 5px solid var(--red);
}

.card.blue {
  border-top: 5px solid var(--blue);
}

.card.gold {
  border-top: 5px solid var(--gold);
}

.card p {
  color: var(--subtle);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.record-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

.record-table th,
.record-table td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.record-table th {
  width: 34%;
  color: var(--navy);
  background: #f8fafc;
}

.page-hero {
  padding: 76px 0 54px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.timeline-date {
  color: var(--red-dark);
  font-weight: 900;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.news-date {
  color: var(--red-dark);
  font-weight: 900;
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  color: var(--subtle);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact-list strong {
  display: block;
}

.contact-list span {
  color: var(--subtle);
}

.form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cbd3dc;
  border-radius: 4px;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  padding: 34px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

  .hero-grid,
  .grid.three,
  .grid.two,
  .split,
  .timeline-item,
  .news-item,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0;
  }

  .credential-strip {
    grid-template-columns: 1fr;
  }

  .credential {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
