:root {
  --ink: #0b1724;
  --ink-2: #152638;
  --paper: #f6f7f8;
  --white: #ffffff;
  --muted: #5f6b76;
  --line: #dbe0e5;
  --accent: #a88a5a;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,23,36,.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
  letter-spacing: .01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.brand-name { font-size: 17px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 550;
}

.site-nav a { transition: opacity .2s ease; }
.site-nav a:hover { opacity: .62; }

.nav-cta {
  border: 1px solid var(--ink);
  padding: 9px 16px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 6px 0;
}

.hero {
  min-height: 690px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(168,138,90,.18), transparent 30%),
    linear-gradient(135deg, #0b1724 0%, #122235 55%, #0b1724 100%);
  color: var(--white);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent 0%, black 45%, black 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow { color: #d4bd96; }

.hero h1 {
  max-width: 1020px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 6.2vw, 82px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero h1 span { color: #d9dde1; }

.hero-copy {
  max-width: 760px;
  margin: 32px 0 0;
  color: #c6cdd4;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 650;
  transition: all .2s ease;
}

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-primary:hover { background: #e8eaec; }

.button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}

.button-secondary:hover { border-color: var(--white); }

.hero-line {
  margin: 54px 0 0;
  color: #d4bd96;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.section { padding: 110px 0; }

.section-kicker { color: #8b6f46; }
.section-kicker.light { color: #d4bd96; }

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.intro-copy,
.about-copy,
.experience-copy {
  font-size: 17px;
  color: #43515e;
}

.intro-copy p:first-child,
.about-copy p:first-child,
.experience-copy p:first-child { margin-top: 0; }

.expertise-section { background: var(--paper); }

.section-heading-row {
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.section-heading-row > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
}

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

.card {
  min-height: 295px;
  padding: 34px 30px 36px;
  background: rgba(255,255,255,.68);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-number {
  display: block;
  margin-bottom: 30px;
  color: #9b835f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
}

.card h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.experience {
  background: var(--ink);
  color: var(--white);
}

.experience-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 85px;
}

.experience-copy { color: #bec7cf; }

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.about-name .role {
  margin: 15px 0 0;
  color: #8b6f46;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.headshot-frame {
  width: min(100%, 320px);
  aspect-ratio: 4 / 5;
  margin: 0 0 28px;
  overflow: hidden;
  background: #eef0f2;
  border: 1px solid var(--line);
}

.headshot {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.contact {
  background: linear-gradient(135deg, #14283a, #0b1724);
  color: var(--white);
}

.contact-inner {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-inner p:not(.section-kicker) {
  max-width: 670px;
  margin: 24px auto 34px;
  color: #c7cfd7;
  font-size: 17px;
}

.button-light {
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}

.button-light:hover {
  background: var(--white);
  color: var(--ink);
}

.site-footer {
  background: #07111b;
  color: #aeb7bf;
  padding: 35px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}

.footer-inner > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-inner strong {
  color: var(--white);
  font-size: 14px;
}

.footer-inner p { margin: 0; }

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 24px;
    right: 24px;
    top: 70px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 8px; }
  .nav-cta { margin-top: 4px; text-align: center; }
  .nav-toggle { display: block; }

  .split,
  .experience-grid,
  .about-grid,
  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 620px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 32px), var(--max)); }
  .nav-wrap { min-height: 68px; }
  .brand-name { font-size: 15px; }

  .hero-inner { padding: 78px 0; }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-line { line-height: 1.7; }

  .section { padding: 78px 0; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; }

  .headshot-frame {
    width: min(100%, 290px);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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