:root {
  --ink: #101820;
  --navy: #111c2d;
  --stone: #f4efe6;
  --champagne: #c8ad7f;
  --gold: #b9975b;
  --muted: #6c716f;
  --white: #ffffff;
  --line: rgba(17, 28, 45, 0.12);
  --shadow: 0 30px 90px rgba(16, 24, 32, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--stone);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--stone); }
a { color: inherit; text-decoration: none; }
.container { width: min(1140px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
}

.brand { display: flex; align-items: center; gap: 16px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(200, 173, 127, 0.55);
  border-radius: 50%;
  color: var(--champagne);
  font-family: Georgia, serif;
  font-size: 28px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.brand-text strong { font-size: 16px; font-weight: 700; }
.brand-text em { margin-top: 4px; font-size: 14px; font-style: normal; color: var(--champagne); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.nav-links a { transition: color 180ms ease; }
.nav-links a:hover { color: var(--champagne); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background:
    radial-gradient(circle at 75% 28%, rgba(200, 173, 127, 0.18), transparent 33%),
    linear-gradient(135deg, #0b111c 0%, #121f31 48%, #0f1826 100%);
  color: var(--white);
}
.hero::after {
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(200, 173, 127, 0.15);
  border-radius: 50%;
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
  padding: 105px 0 135px;
}

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.hero-copy h1 { max-width: 790px; font-size: clamp(54px, 7vw, 92px); }
.hero-subtitle {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}
.hero-line {
  margin: 30px 0 0;
  color: var(--champagne);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--champagne); color: #101820; }
.button.secondary { border: 1px solid rgba(255, 255, 255, 0.22); color: var(--white); }
.button.full { width: 100%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.section-label span { width: 34px; height: 1px; background: currentColor; }

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(200, 173, 127, 0.24);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(140deg, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
}
.panel-topline {
  position: relative;
  color: var(--champagne);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.panel-main { position: relative; margin: 70px 0 90px; }
.panel-icon { color: var(--champagne); font-size: 46px; margin-bottom: 24px; }
.panel-main p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}
.panel-metrics { position: relative; display: grid; gap: 14px; }
.panel-metrics div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.panel-metrics strong { color: var(--white); }
.panel-metrics span { color: rgba(255, 255, 255, 0.58); }

.intro-section, .advisory-section, .about-section, .experience-section, .philosophy-section, .focus-section, .cta-section {
  padding: 105px 0;
}
.intro-grid, .about-grid, .focus-grid, .cta-card, .philosophy-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.intro-grid h2, .section-heading h2, .about-copy h2, .philosophy-card h2, .focus-grid h2, .cta-card h2 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 62px);
}
.intro-copy p, .about-copy p, .philosophy-card p, .cta-card p {
  margin: 0;
  color: #3b464f;
  font-size: 18px;
  line-height: 1.78;
}
.intro-copy p + p, .about-copy p + p, .philosophy-card p + p { margin-top: 22px; }

.advisory-section {
  background: #fffaf0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading { max-width: 820px; margin-bottom: 52px; }
.section-heading.narrow { max-width: 880px; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.advisory-card {
  min-height: 330px;
  padding: 30px 26px;
  border: 1px solid rgba(17, 28, 45, 0.1);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(17, 28, 45, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.advisory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 80px rgba(17, 28, 45, 0.11);
}
.icon-wrap {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: #f3ead9;
  color: var(--gold);
  font-size: 23px;
  font-weight: 800;
}
.advisory-card h3, .timeline-item h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.advisory-card p, .timeline-item p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.about-section { background: var(--navy); color: var(--white); }
.about-copy h2 { color: var(--white); }
.about-copy p { color: rgba(255, 255, 255, 0.74); }
.portrait-card {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: 34px;
  border: 1px solid rgba(200, 173, 127, 0.25);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent),
    rgba(255, 255, 255, 0.04);
}
.portrait-initials {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(200, 173, 127, 0.45);
  border-radius: 50%;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
}
.portrait-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 33px;
  letter-spacing: -0.04em;
}
.portrait-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 900px;
  margin-top: 40px;
}
.timeline::before {
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  content: "";
  background: rgba(17, 28, 45, 0.14);
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 0 0 34px;
}
.timeline-dot {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  border: 5px solid var(--stone);
  border-radius: 50%;
  background: var(--gold);
}
.timeline-item strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.philosophy-section { padding-top: 20px; }
.philosophy-card {
  padding: 58px;
  border-radius: 34px;
  background: #101820;
  color: var(--white);
  box-shadow: var(--shadow);
}
.philosophy-card h2 { color: var(--white); }
.philosophy-card p { color: rgba(255, 255, 255, 0.72); }

.focus-section { background: #fffaf0; }
.focus-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.focus-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 17px 18px;
  border: 1px solid rgba(17, 28, 45, 0.08);
  border-radius: 18px;
  background: var(--white);
  color: #2f3942;
  font-weight: 650;
}

.cta-section { background: var(--navy); }
.cta-card {
  align-items: center;
  padding: 60px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 20%, rgba(200, 173, 127, 0.2), transparent 35%),
    linear-gradient(145deg, #14233a, #0d1624);
  color: var(--white);
}
.cta-card h2 { color: var(--white); }
.cta-card p { color: rgba(255, 255, 255, 0.72); }
.contact-card {
  padding: 30px;
  border: 1px solid rgba(200, 173, 127, 0.24);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}
.contact-note {
  margin: 16px 0 0 !important;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.footer {
  padding: 32px 0;
  background: #0b111c;
  color: rgba(255, 255, 255, 0.68);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer strong { display: block; color: var(--white); }
.footer span {
  display: block;
  margin-top: 4px;
  color: var(--champagne);
  font-size: 13px;
}
.footer p { margin: 0; font-size: 13px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid, .intro-grid, .about-grid, .focus-grid, .cta-card, .philosophy-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-grid { padding-top: 70px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .portrait-card {
    position: relative;
    top: auto;
    min-height: 380px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container, .site-header { width: min(100% - 28px, 1140px); }
  .hero { min-height: auto; }
  .hero-grid { padding: 58px 0 90px; }
  .hero-copy h1 { font-size: 47px; }
  .hero-subtitle { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-panel, .portrait-card, .philosophy-card, .cta-card {
    padding: 28px;
    border-radius: 24px;
  }
  .panel-main { margin: 52px 0 66px; }
  .panel-main p { font-size: 27px; }
  .panel-metrics div { display: block; }
  .panel-metrics span { display: block; margin-top: 5px; }
  .intro-section, .advisory-section, .about-section, .experience-section, .philosophy-section, .focus-section, .cta-section {
    padding: 74px 0;
  }
  .card-grid, .focus-list { grid-template-columns: 1fr; }
  .advisory-card { min-height: auto; }
  .intro-grid h2, .section-heading h2, .about-copy h2, .philosophy-card h2, .focus-grid h2, .cta-card h2 {
    font-size: 40px;
  }
  .portrait-initials {
    width: 116px;
    height: 116px;
    font-size: 38px;
  }
}


.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.experience-card {
  padding: 30px;
  border: 1px solid rgba(17, 28, 45, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(17, 28, 45, 0.055);
}

.experience-card.featured,
.experience-card.impact {
  background: #fffaf0;
  border-color: rgba(185, 151, 91, 0.24);
}

.experience-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.experience-card strong {
  display: block;
  margin-top: 9px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15.8px;
  line-height: 1.72;
}

.experience-meta {
  margin-bottom: 18px;
  color: #8a7450;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.emphasis-line {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px !important;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.boards-section {
  padding: 105px 0;
  background: #fffaf0;
  border-top: 1px solid var(--line);
}

.boards-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.boards-grid h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.boards-content {
  display: grid;
  gap: 18px;
}

.board-card {
  padding: 30px;
  border: 1px solid rgba(17, 28, 45, 0.1);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(17, 28, 45, 0.055);
}

.board-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.board-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.board-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.board-list span {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(185, 151, 91, 0.24);
  border-radius: 999px;
  background: #f7efe0;
  color: #4b4438;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .experience-grid,
  .boards-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 640px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card,
  .board-card {
    padding: 25px;
  }

  .boards-section {
    padding: 74px 0;
  }

  .boards-grid h2 {
    font-size: 40px;
  }
}


/* Updated headshot integration for About Kyle card */
.portrait-card {
  overflow: hidden;
}

.portrait-photo-wrap {
  width: 100%;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 173, 127, 0.18);
}

.portrait-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 980px) {
  .portrait-photo-wrap {
    min-height: 420px;
  }

  .portrait-photo {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .portrait-photo-wrap {
    min-height: 320px;
    border-radius: 18px;
  }

  .portrait-photo {
    min-height: 320px;
  }
}


/* Slightly larger primary logo */
@media (max-width: 640px) {
  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text em {
    font-size: 13px;
  }
}


.experience-card.highlight {
  background: #fffaf0;
  border-color: rgba(185, 151, 91, 0.24);
}
