:root {
  --navy: #11294d;
  --green: #0a7a49;
  --red: #b7242e;
  --gold: #b38a43;
  --muted: #71767e;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--navy);
  background:
    radial-gradient(circle at 50% 32%, #ffffff 0 42%, rgba(255,255,255,.98) 58%, rgba(246,243,236,.95) 100%);
  font-family: Georgia, "Times New Roman", serif;
}

.tricolore {
  width: 100%;
  height: 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.tricolore span:nth-child(1) { background: var(--green); }
.tricolore span:nth-child(2) { background: #fff; }
.tricolore span:nth-child(3) { background: var(--red); }

main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 28px 20px 18px;
}

.hero {
  width: min(1000px, 100%);
  text-align: center;
}

.logo-stage {
  width: min(720px, 92vw);
  margin: 0 auto;
  background: #fff;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.divider {
  width: min(280px, 60%);
  margin: 14px auto 26px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}
.divider span {
  height: 1px;
  background: rgba(179,138,67,.55);
}
.divider i {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(29px, 3.3vw, 48px);
  line-height: 1.28;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -.015em;
}

.institutional-rule {
  width: min(760px, 82%);
  margin: 52px auto 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.institutional-rule span {
  height: 1px;
  background: rgba(179,138,67,.38);
}
.emblem {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(179,138,67,.65);
  display: grid;
  place-items: center;
  font-size: 17px;
  color: var(--gold);
  transform: rotate(45deg);
}
.emblem::first-letter {
  transform: rotate(-45deg);
}

.status {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: .23em;
  text-transform: uppercase;
  color: var(--muted);
}

footer {
  padding: 18px 20px 22px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  color: #8a8e94;
}

@media (max-width: 640px) {
  main { padding-top: 20px; }
  .logo-stage { width: 98vw; }
  .divider { margin-top: 8px; }
  .institutional-rule { margin-top: 40px; width: 90%; }
  .status { line-height: 1.7; padding: 0 12px; }
}
