:root {
  --navy: #071f42;
  --navy-soft: #113967;
  --blue: #0b4381;
  --gold: #c99a2e;
  --gold-light: #e0bd62;
  --paper: #f8f7f2;
  --white: #ffffff;
  --ink: #13233b;
  --muted: #637084;
  --line: rgba(7, 31, 66, .14);
}

* { 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;
  font-size: 16px;
  line-height: 1.65;
}

a { color: inherit; }

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 11px 2px 11px 2px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.status span {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 154, 46, .13);
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  padding-block: 76px 88px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}

h1,
h2,
h3,
p { text-wrap: pretty; }

h1,
h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.04;
}

h1 { font-size: clamp(3.4rem, 6vw, 6.25rem); }
h2 { font-size: clamp(2.5rem, 4.2vw, 4.3rem); }
h1 em { color: var(--gold); font-weight: inherit; }

.lede {
  max-width: 660px;
  margin: 32px 0 0;
  color: #43526a;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.72;
}

.principle-line {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.principle-line span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .56);
  color: var(--navy-soft);
  font-size: .86rem;
  font-weight: 650;
}

.identity-card {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 42px;
  border-radius: 44px 6px 44px 6px;
  background: var(--navy);
  box-shadow: 0 34px 90px rgba(7, 31, 66, .23);
}

.identity-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -80px -130px auto;
  width: 330px;
  aspect-ratio: 1;
  border: 70px solid rgba(201, 154, 46, .28);
  border-radius: 50%;
}

.grid-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom right, #000, transparent 78%);
}

.identity-card img {
  width: min(100%, 380px);
  height: auto;
  display: block;
  border-radius: 30px 3px 30px 3px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .25);
}

.identity-card p {
  align-self: end;
  margin: 26px 0 -12px;
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.approach {
  border-top: 1px solid var(--line);
  padding-block: 110px;
}

.section-intro {
  max-width: 660px;
  margin-bottom: 64px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px 4px 26px 4px;
  background: var(--line);
}

.approach-grid article {
  min-height: 320px;
  padding: 36px;
  background: var(--white);
}

.index {
  display: block;
  margin-bottom: 62px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

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

.future {
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
  padding: clamp(46px, 8vw, 92px);
  color: var(--white);
  background: var(--navy);
  border-radius: 46px 7px 46px 7px;
}

.future::after {
  content: "ZQ";
  position: absolute;
  right: -20px;
  bottom: -94px;
  color: rgba(255, 255, 255, .035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22rem;
  font-weight: 700;
  line-height: 1;
}

.future .eyebrow { color: var(--gold-light); }
.future h2 { position: relative; z-index: 1; color: var(--white); }

.future > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1.1rem;
}

.future .disclaimer {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: .85rem !important;
}

footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}

.footer-brand { font-size: 1.1rem; }
.footer-brand .brand-mark { width: 32px; }

@media (max-width: 840px) {
  .site-header, main, footer { width: min(100% - 32px, 680px); }
  .site-header { min-height: 78px; }
  .status { font-size: .68rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-block: 58px 72px; }
  .identity-card { min-height: 450px; }
  .approach { padding-block: 80px; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-grid article { min-height: auto; }
  .index { margin-bottom: 34px; }
  footer { grid-template-columns: 1fr; gap: 6px; padding-block: 36px; }
  footer p { margin: 0; }
}

@media (max-width: 520px) {
  .site-header { align-items: flex-start; padding-block: 20px; gap: 18px; }
  .brand { font-size: 1.2rem; }
  .status { max-width: 140px; text-align: right; justify-content: flex-end; line-height: 1.35; }
  h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .hero { gap: 42px; }
  .identity-card { min-height: 370px; padding: 26px; border-radius: 30px 5px; }
  .identity-card p { margin-bottom: -4px; }
  .approach-grid article { padding: 30px; }
  .future { margin-bottom: 70px; border-radius: 32px 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
