:root {
  --ink: #17202a;
  --muted: #5e6b78;
  --line: #dde5ec;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --navy: #19324a;
  --teal: #167c80;
  --amber: #c7832f;
  --green: #2e7754;
  --shadow: 0 22px 55px rgba(25, 50, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--teal);
}

.section-band {
  background:
    linear-gradient(120deg, rgba(22, 124, 128, 0.08), rgba(199, 131, 47, 0.1)),
    linear-gradient(180deg, #fff, #f8fafb);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  min-height: calc(100vh - 76px);
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 900px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.45rem, 7vw, 5.9rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #354556;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  background: #fff;
}

.identity-panel {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-row:last-child {
  border-bottom: 0;
}

.panel-row span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.panel-row strong {
  color: var(--navy);
  font-size: 0.96rem;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.section.muted {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

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

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--muted);
}

p + p {
  margin-top: 16px;
}

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

.content-grid.two-columns {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.info-card,
.note-box,
.plain-block,
.contact-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-card {
  min-height: 220px;
  padding: 24px;
}

.info-card:nth-child(1) {
  border-top: 4px solid var(--teal);
}

.info-card:nth-child(2) {
  border-top: 4px solid var(--amber);
}

.info-card:nth-child(3) {
  border-top: 4px solid var(--green);
}

.note-box,
.plain-block {
  padding: 24px;
}

.status-list {
  display: grid;
  gap: 10px;
}

.status-list span {
  display: block;
  padding: 13px 15px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 800;
}

.policy-text {
  max-width: 970px;
}

.contact-section {
  background: #fff;
}

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

.contact-item {
  padding: 24px;
}

.contact-item span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item a {
  color: var(--navy);
  font-size: 1.02rem;
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--teal);
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--navy);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .hero,
  .content-grid,
  .content-grid.two-columns,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .brand {
    align-items: flex-start;
    white-space: normal;
  }

  .nav {
    font-size: 0.84rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .panel-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px;
  }
}
