@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --navy: #17283f;
  --navy-2: #243a55;
  --sage: #7d8b62;
  --sage-light: #dfe4d6;
  --gold: #b58a44;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --ink: #263344;
  --muted: #66707c;
  --line: rgba(23, 40, 63, 0.14);
  --shadow: 0 24px 70px rgba(23, 40, 63, 0.10);
  --radius: 22px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  background: white;
  padding: .75rem 1rem;
  border-radius: 8px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 40, 63, 0.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand-wordmark {
  display: block;
  width: min(390px, 34vw);
  height: auto;
  object-fit: contain;
}
nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}
nav a {
  text-decoration: none;
  font-size: .9rem;
  color: var(--navy-2);
}
nav a:hover { color: var(--gold); }
.nav-cta {
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: .65rem 1rem;
}

.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 86% 22%, rgba(181,138,68,.13), transparent 26%),
    radial-gradient(circle at 70% 80%, rgba(125,139,98,.13), transparent 30%),
    linear-gradient(135deg, var(--paper), var(--cream));
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 4rem;
  padding-block: 7rem 5.5rem;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 600;
}
h1, h2, h3 {
  font-family: var(--serif);
  color: var(--navy);
  margin-top: 0;
}
h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  max-width: 850px;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
h3 {
  font-size: 1.28rem;
  line-height: 1.35;
}
.hero-lede {
  max-width: 700px;
  font-size: 1.18rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(23,40,63,.12);
}
.button.primary {
  background: var(--navy);
  color: white;
}
.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  color: var(--navy);
}

.hero-art {
  position: relative;
  min-height: 420px;
}
.orbit, .focus-ring, .hidden-path {
  position: absolute;
  border-radius: 50%;
}
.orbit {
  border: 1px solid rgba(23,40,63,.16);
}
.orbit-one {
  width: 370px; height: 370px;
  right: 0; top: 8px;
}
.orbit-two {
  width: 255px; height: 255px;
  right: 58px; top: 66px;
  border-color: rgba(125,139,98,.35);
}
.focus-ring {
  width: 108px; height: 108px;
  right: 131px; top: 139px;
  border: 14px solid rgba(23,40,63,.92);
}
.focus-dot {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  right: 8px; top: 30px;
}
.hidden-path {
  width: 210px;
  height: 80px;
  right: 14px;
  top: 245px;
  border-radius: 0;
  border-top: 5px solid var(--sage);
  transform: rotate(-22deg);
}
.hidden-path::after {
  content: "";
  position: absolute;
  right: -2px; top: -11px;
  border-left: 18px solid var(--sage);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.section { padding-block: 7rem; }
.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7rem;
  align-items: start;
}
.prose {
  font-size: 1.08rem;
  color: var(--muted);
}
.prose p:first-child { margin-top: 0; }

.focus { background: var(--cream); }
.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.card {
  padding: 2rem;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(23,40,63,.09);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(23,40,63,.04);
}
.card-number {
  display: inline-block;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .13em;
  margin-bottom: 2rem;
}
.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.experience-panel {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 30px;
  background: var(--navy);
  color: rgba(255,255,255,.78);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 4rem;
  box-shadow: var(--shadow);
}
.experience-panel h2 { color: white; }
.stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stats div {
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
}
.stats dt {
  font-family: var(--serif);
  color: #fff;
  font-size: 2rem;
}
.stats dd {
  margin: .25rem 0 0;
  font-size: .88rem;
  color: rgba(255,255,255,.64);
}

.quote-section {
  background:
    linear-gradient(90deg, transparent, rgba(181,138,68,.09), transparent);
}
blockquote {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}
blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1.25;
  color: var(--navy);
  margin: 0;
}
blockquote footer {
  margin-top: 1.4rem;
  color: var(--sage);
  font-weight: 600;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 4rem;
  align-items: end;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
}
.contact-panel p { color: var(--muted); }
.contact-actions {
  flex-direction: column;
  align-items: flex-start;
}
.text-link {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: .82rem;
}

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-grid, .two-col, .experience-panel, .contact-panel {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 300px;
    order: -1;
    transform: scale(.82);
    transform-origin: center;
  }
  .hero-grid { gap: 1rem; padding-top: 4rem; }
  .two-col { gap: 2rem; }
  .experience-panel, .contact-panel { gap: 2.5rem; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand-wordmark { width: min(285px, 54vw); }
  .nav-cta { font-size: .8rem; padding: .6rem .8rem; }
  .hero { min-height: auto; }
  .hero-grid { padding-block: 3rem 4rem; }
  .hero-art { display: none; }
  .cards, .stats { grid-template-columns: 1fr; }
  .section { padding-block: 4.5rem; }
  .footer-wrap { flex-direction: column; }
}
