:root {
  --navy: #0b2a4a;
  --navy-soft: #163f66;
  --gold: #b78945;
  --paper: #f8f8f6;
  --ink: #1a2430;
  --muted: #66717d;
  --line: #e6e4de;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-block;
  padding: 22px 0 18px;
}

.brand img {
  width: min(570px, 84vw);
  height: auto;
}

.intro {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 46%, rgba(248,248,246,.78) 100%),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(11,42,74,.035) 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(11,42,74,.035) 40px);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.025em;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 2px solid var(--gold);
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.drawing {
  position: relative;
  height: 300px;
  opacity: .64;
  transform: perspective(700px) rotateY(-4deg);
}

.frame {
  position: absolute;
  border: 1px solid rgba(11,42,74,.27);
  background:
    linear-gradient(90deg, transparent 48%, rgba(11,42,74,.12) 49%, rgba(11,42,74,.12) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(11,42,74,.12) 49%, rgba(11,42,74,.12) 51%, transparent 52%);
  box-shadow: 15px 15px 0 rgba(183,137,69,.035);
}

.frame-a { inset: 18px 8px 52px 92px; }
.frame-b { inset: 73px 64px 17px 25px; }
.frame-c { inset: 120px 0 0 140px; }

.ground {
  position: absolute;
  left: -12%;
  right: -8%;
  bottom: 12px;
  height: 1px;
  background: rgba(11,42,74,.28);
  transform: rotate(-4deg);
}

.areas {
  padding: 72px 0 78px;
  background: var(--white);
}

.areas h2 {
  margin: 0 0 30px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-grid article {
  min-height: 205px;
  padding: 30px 30px 34px;
}

.area-grid article + article {
  border-left: 1px solid var(--line);
}

.area-grid span {
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.area-grid h3 {
  margin: 16px 0 12px;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 650;
}

.area-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

footer {
  padding: 25px 0;
  color: rgba(255,255,255,.84);
  background: var(--navy);
  font-size: .9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p { margin: 0; }

@media (max-width: 760px) {
  .shell { width: min(100% - 28px, 1120px); }
  .brand { padding: 17px 0 14px; }
  .brand img { width: min(520px, 94vw); }

  .intro { min-height: auto; }
  .intro-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 56px;
  }

  .drawing {
    position: absolute;
    right: -120px;
    top: 115px;
    width: 390px;
    height: 240px;
    opacity: .18;
    pointer-events: none;
  }

  .intro-copy { position: relative; z-index: 1; }
  .lead { max-width: 560px; }

  .areas { padding: 54px 0; }
  .area-grid { grid-template-columns: 1fr; }
  .area-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    flex-direction: column;
    gap: 8px;
  }
}
