:root {
  --ink: #101c2d;
  --ink-soft: #1b2a3f;
  --paper: #f3f0e8;
  --white: #fffdf7;
  --gold: #d6a84b;
  --gold-light: #efd28f;
  --muted: #687284;
  --line: rgba(16, 28, 45, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  height: 92px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.wordmark { font-size: 1.35rem; font-weight: 800; letter-spacing: .16em; }
.wordmark span { color: var(--gold); }
nav { display: flex; align-items: center; gap: 2rem; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
nav a { opacity: .78; transition: opacity .2s ease; }
nav a:hover, nav a:focus-visible { opacity: 1; }
.nav-contact { border: 1px solid rgba(255,255,255,.42); padding: .75rem 1rem; }

.hero {
  min-height: 760px;
  height: 100vh;
  padding: 160px 6vw 64px;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(16,28,45,.98) 15%, rgba(16,28,45,.87) 60%, rgba(31,53,75,.72)),
    radial-gradient(circle at 82% 28%, #31536b 0, #101c2d 52%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(239,210,143,.2);
  border-radius: 50%;
  right: -160px;
  top: 110px;
  box-shadow: 0 0 0 90px rgba(239,210,143,.025), 0 0 0 180px rgba(239,210,143,.018);
}
.hero-glow { position: absolute; width: 5px; height: 5px; background: var(--gold-light); border-radius: 50%; right: 21vw; top: 32%; box-shadow: 0 0 38px 16px rgba(239,210,143,.28); }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; font-weight: 700; }
.eyebrow { display: flex; gap: .8rem; align-items: center; position: relative; z-index: 1; }
.eyebrow span { display: inline-block; width: 34px; height: 1px; background: var(--gold); }
h1, h2, blockquote { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; margin: 0; }
h1 { font-size: clamp(4.5rem, 9vw, 9rem); line-height: .88; letter-spacing: -.06em; max-width: 1100px; position: relative; z-index: 1; }
h1 em, blockquote em { color: var(--gold-light); font-weight: 400; }
.hero-bottom { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.16); padding-top: 2rem; }
.hero-bottom p { max-width: 560px; color: rgba(255,255,255,.68); line-height: 1.75; font-size: 1.03rem; }
.circle-link { width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; transition: .2s ease; }
.circle-link:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); transform: translateY(3px); }

.focus-section { padding: 120px 6vw 130px; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; margin-bottom: 80px; }
.kicker { color: #a47825; margin: .6rem 0; }
.section-heading h2, .approach-copy h2, .contact-section h2 { font-size: clamp(3rem, 5vw, 5.8rem); line-height: .98; letter-spacing: -.045em; }
.pillar-grid { border-top: 1px solid var(--line); }
.pillar { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; padding: 2.4rem 0; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.pillar:hover { padding-left: 1rem; background: rgba(255,255,255,.28); }
.pillar-number { color: #a47825; font-size: .78rem; letter-spacing: .15em; }
.pillar h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 2.1rem; font-weight: 400; margin: 0 0 .7rem; }
.pillar p { color: var(--muted); line-height: 1.7; max-width: 560px; margin: 0; }

.approach-section { min-height: 720px; background: var(--ink); color: var(--white); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.orbit { position: relative; min-height: 620px; display: grid; place-items: center; background: radial-gradient(circle, #263d52 0%, #101c2d 64%); }
.orbit-ring { position: absolute; border: 1px solid rgba(239,210,143,.3); border-radius: 50%; }
.ring-one { width: 45%; aspect-ratio: 1; }
.ring-two { width: 72%; aspect-ratio: 1; }
.orbit-core { width: 96px; height: 96px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font-family: Georgia, serif; font-size: 3rem; }
.orbit-dot { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 20px 6px rgba(239,210,143,.2); }
.dot-one { top: 27%; left: 32%; }
.dot-two { bottom: 18%; right: 28%; }
.dot-three { top: 18%; right: 22%; }
.approach-copy { padding: 110px 7vw; display: flex; flex-direction: column; justify-content: center; }
.kicker.light { color: var(--gold-light); }
.approach-copy h2 { margin: 1.2rem 0 2rem; }
.lead { color: rgba(255,255,255,.67); line-height: 1.8; font-size: 1.04rem; max-width: 570px; }
.principles { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.principles span { border: 1px solid rgba(255,255,255,.18); padding: .7rem .9rem; font-size: .75rem; letter-spacing: .06em; color: rgba(255,255,255,.78); }

.statement { padding: 140px 6vw; text-align: center; }
.statement blockquote { font-size: clamp(3rem, 6vw, 6.5rem); line-height: 1.02; letter-spacing: -.05em; margin: 2rem auto; }
.statement blockquote em { color: #a47825; }
.statement-copy { max-width: 640px; margin: 2rem auto 0; color: var(--muted); line-height: 1.8; }

.contact-section { background: var(--ink-soft); color: var(--white); padding: 110px 6vw 120px; text-align: center; }
.contact-section h2 { margin: 1.5rem 0 3rem; }
.email-link { display: inline-flex; gap: 1rem; align-items: center; border-bottom: 1px solid var(--gold); padding-bottom: .7rem; font-size: 1.15rem; letter-spacing: .05em; }
.email-link span { color: var(--gold-light); }
footer { background: #0b1421; color: rgba(255,255,255,.48); padding: 2.5rem 6vw; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; gap: 2rem; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-mark { color: var(--white); }
footer p:nth-child(2) { text-align: center; }
footer p:last-child { text-align: right; }

@media (max-width: 760px) {
  .site-header { height: 74px; padding: 0 5vw; }
  nav a:not(.nav-contact) { display: none; }
  .hero { min-height: 700px; padding: 132px 5vw 42px; }
  .hero::after { width: 380px; height: 380px; right: -180px; }
  h1 { font-size: clamp(4rem, 19vw, 6.2rem); }
  .hero-bottom { align-items: flex-start; gap: 1rem; }
  .hero-bottom p { font-size: .94rem; }
  .circle-link { flex: 0 0 48px; width: 48px; height: 48px; }
  .focus-section { padding: 85px 5vw; }
  .section-heading, .pillar { grid-template-columns: 1fr; }
  .section-heading { gap: 1rem; margin-bottom: 55px; }
  .pillar { gap: 1rem; }
  .approach-section { grid-template-columns: 1fr; }
  .orbit { min-height: 430px; }
  .approach-copy { padding: 80px 5vw; }
  .statement { padding: 95px 5vw; }
  .contact-section { padding: 85px 5vw 95px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer p:nth-child(2), footer p:last-child { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
