:root {
  --ink: #111318;
  --muted: #5a606b;
  --line: #d9dee6;
  --paper: #f6f7f9;
  --white: #ffffff;
  --gold: #d8a11b;
  --deep-gold: #8d6511;
  --green: #236454;
  --blue: #1d4e89;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 19, 24, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.95rem;
}

.brand-name {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a {
  padding: 8px 0;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 128px);
  padding: 42px 24px 52px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 19, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 24, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f3f5f8 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--green), var(--blue));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(920px, 100%);
  justify-items: center;
  text-align: center;
}

.hero-medal {
  width: 356px;
  margin-bottom: 22px;
}

.hero-medal img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(17, 19, 24, 0.2));
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--deep-gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.1rem;
  line-height: 1;
  font-weight: 700;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #343942;
  font-size: 1.3rem;
  line-height: 1.7;
}

.section {
  padding: 88px 24px;
  background: var(--white);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: 64px;
  align-items: start;
}

h2 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.1;
}

.intro-copy {
  display: grid;
  gap: 22px;
  color: #303640;
  font-size: 1.12rem;
  line-height: 1.85;
}

.intro-copy p,
.record-layout p,
.principle-card p,
.record-panel p {
  margin: 0;
}

.honor-band {
  padding: 34px 24px;
  color: var(--white);
  background: #111318;
}

.band-inner {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.honor-item {
  display: grid;
  gap: 6px;
  padding: 28px;
  background: #111318;
}

.honor-value {
  color: #f0bf41;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1;
}

.honor-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.principle-card {
  min-height: 268px;
  padding: 24px;
  background: #f8f9fb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-index {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.principle-card:nth-child(2) .card-index,
.principle-card:nth-child(4) .card-index {
  background: var(--blue);
}

.principle-card h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
}

.principle-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.record-section {
  padding: 88px 24px;
  background: #eef1f5;
}

.record-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 420px);
  gap: 48px;
  align-items: center;
}

.record-layout > div:first-child p {
  max-width: 680px;
  margin-top: 22px;
  color: #303640;
  font-size: 1.1rem;
  line-height: 1.8;
}

.record-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(17, 19, 24, 0.08);
}

.record-status {
  display: block;
  margin-bottom: 20px;
  color: var(--deep-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.record-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 48px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 24px;
  }

  .site-nav {
    gap: 16px;
  }

  .hero-medal {
    width: 286px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .intro-layout,
  .record-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .brand-name {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-nav {
    gap: 10px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: calc(100svh - 116px);
    padding: 28px 18px 38px;
    background-size: 32px 32px, 32px 32px, 100% 100%;
  }

  .hero-medal {
    width: 176px;
    margin-bottom: 14px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .section,
  .record-section {
    padding: 64px 18px;
  }

  h2 {
    font-size: 2rem;
  }

  .intro-copy,
  .record-layout > div:first-child p {
    font-size: 1rem;
  }

  .band-inner,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 18px;
  }
}
