:root {
  --navy: #071a2c;
  --navy-2: #0c2945;
  --gold: #d4a63a;
  --gold-light: #f0d483;
  --red: #9e1f2f;
  --cream: #f7f1e5;
  --white: #ffffff;
  --ink: #1a2430;
  --muted: #687381;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

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

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

.narrow { width: min(860px, 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 26, 44, 0.96);
  border-bottom: 1px solid rgba(212, 166, 58, 0.35);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-tag {
  display: block;
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 22px;
  color: #eef3f7;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(212,166,58,.20), transparent 35%),
    linear-gradient(135deg, #061625 0%, #0b2742 58%, #101a27 100%);
  color: var(--white);
  min-height: 700px;
  display: grid;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
  padding: 90px 0;
}

.eyebrow,
.section-kicker {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: .8rem;
  color: var(--red);
}

.hero .eyebrow { color: var(--gold-light); }

h1, h2 {
  line-height: 1.08;
  margin: 0 0 22px;
  font-weight: 700;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  max-width: 780px;
}

h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); }

.motto {
  color: var(--gold-light);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-style: italic;
  margin: 0 0 24px;
}

.hero-text {
  max-width: 720px;
  color: #dbe4ec;
  font-size: 1.15rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #132031;
  border: 1px solid #f2df9f;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.5);
  color: var(--white);
}

.hero-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(212,166,58,.35);
  border-radius: 34px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.hero-card img {
  width: 100%;
  border-radius: 24px;
}

.section { padding: 100px 0; }

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

.cream { background: var(--cream); }

.navy {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.section p {
  font-size: 1.12rem;
  color: var(--muted);
}

.navy p { color: #d7e0e8; }

.gold-text { color: var(--gold-light); }

.award-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.symbol-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  margin-top: 34px;
}

.symbol-grid div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.symbol-grid strong,
.symbol-grid span {
  display: block;
}

.symbol-grid strong {
  color: var(--gold-light);
  margin-bottom: 5px;
}

.symbol-grid span {
  color: #d4dde6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
}

.medallion-panel {
  text-align: center;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(212,166,58,.3);
  border-radius: 30px;
  padding: 32px;
}

.medallion {
  width: min(410px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto 24px;
  padding: 18px;
  background: radial-gradient(circle at 30% 25%, #f7e8ad, #c78d1f 48%, #6f4a0f 75%);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.18), 0 26px 50px rgba(0,0,0,.3);
}

.medallion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

blockquote {
  margin: 42px 0 0;
  padding: 28px 32px;
  border-left: 5px solid var(--gold);
  background: rgba(212,166,58,.1);
  font-size: 1.35rem;
  font-style: italic;
  color: #39424c;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 44px;
  border: 1px solid #e2e5e8;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(9,28,45,.08);
}

.cta-box > div { max-width: 720px; }

footer {
  background: #04111d;
  color: #d5dee6;
  border-top: 1px solid rgba(212,166,58,.3);
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
}

.footer-grid p {
  margin: 6px 0 0;
  color: #8fa0af;
}

.footer-motto {
  text-align: center;
  color: var(--gold-light);
}

.footer-note { text-align: right; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid,
  .award-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-card {
    max-width: 560px;
  }
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-motto, .footer-note { text-align: left; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 48px; height: 48px; }
  .brand-name { font-size: .9rem; }
  .brand-tag { font-size: .68rem; }
  .hero-grid { padding: 66px 0; gap: 40px; }
  .section { padding: 74px 0; }
  .symbol-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 30px 24px; }
}
