/* ============ tokens ============ */
:root {
  --ink: #283543;        /* headings — dark blue-slate */
  --body: #404649;       /* copy */
  --wine: #7d1932;       /* signature accent */
  --wine-dark: #5f1226;
  --paper: #ffffff;
  --stone: #f1f0ef;      /* warm gray blocks */
  --stone-soft: #f7f7f7;
  --hairline: #e6e5e4;
  --taupe: #9d9188;      /* muted meta */
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Verdana, Arial, sans-serif;
  --header-h: 72px;
}

/* ============ base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: .03em;
  color: var(--body);
  background: var(--paper);
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: 0;
}
p { max-width: 62ch; }
a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--wine-dark); text-decoration: underline; text-underline-offset: 3px; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; }
::selection { background: var(--wine); color: #fff; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--wine); color: #fff; padding: 10px 18px; font-size: 13px;
}
.skip:focus { left: 0; color: #fff; }

/* kicker — small lowercase label above headings */
.kicker {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--wine);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}
.section-head { margin-bottom: 48px; }

/* quiet arrow link, schoenherr "read more" style */
.more {
  font-size: 13px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
}
.more:hover { text-decoration: none; border-color: var(--wine); }

/* ============ header ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 2px 12px rgba(40, 53, 67, .08); }
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark:hover { color: var(--ink); text-decoration: none; }
.wordmark .dot { color: var(--wine); }
.site-nav ul { display: flex; gap: 28px; }
.site-nav a {
  font-size: 13px;
  color: var(--body);
  padding: 6px 0;
}
.site-nav a:hover { color: var(--wine); text-decoration: none; }
.burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
}
.burger span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 24px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

/* ============ hero ============ */
.hero { background: var(--stone); padding: 96px 0 88px; }
.hero .kicker { color: var(--taupe); }
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  max-width: 18ch;
}
.hero h1 .dot { color: var(--wine); }
.hero .lede {
  margin-top: 24px;
  font-size: 15px;
  max-width: 52ch;
}

/* the "straight to the point" search */
.seeker { margin-top: 44px; max-width: 640px; position: relative; }
.seeker-label {
  display: block;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--taupe);
  margin-bottom: 10px;
}
.seeker-bar { display: flex; }
.seeker input {
  flex: 1;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .03em;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-right: 0;
  padding: 15px 18px;
  border-radius: 0;
  appearance: none;
}
.seeker input::placeholder { color: var(--taupe); }
.seeker input:focus { outline: 2px solid var(--wine); outline-offset: -1px; }
.seeker button {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .05em;
  color: #fff;
  background: var(--wine);
  border: 1px solid var(--wine);
  padding: 0 28px;
  cursor: pointer;
  border-radius: 0;
}
.seeker button:hover { background: var(--wine-dark); border-color: var(--wine-dark); }
.seeker-results {
  position: absolute; left: 0; right: 0; top: 100%; z-index: 50;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-top: 0;
  display: none;
}
.seeker-results.open { display: block; }
.seeker-results a {
  display: flex; align-items: baseline; gap: 14px;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--ink);
  border-top: 1px solid var(--stone-soft);
}
.seeker-results a:first-child { border-top: 0; }
.seeker-results a .k {
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--taupe);
  min-width: 92px;
}
.seeker-results a:hover,
.seeker-results a.active { background: var(--stone-soft); text-decoration: none; }
.seeker-results .empty {
  padding: 12px 18px; font-size: 13px; color: var(--taupe);
}
.quicklinks { margin-top: 18px; font-size: 13px; color: var(--taupe); }
.quicklinks a { margin-right: 18px; }

/* ============ sections ============ */
.section { padding: 96px 0; }
.section.stone { background: var(--stone); }
.section.hairline-top { border-top: 1px solid var(--hairline); }
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* about */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 72px;
  align-items: start;
}
.about-copy p + p { margin-top: 18px; }
.portrait {
  border: 1px solid var(--hairline);
  padding: 10px;
  background: var(--paper);
}
.portrait img {
  filter: grayscale(1);
  transition: filter .4s ease;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.portrait:hover img { filter: grayscale(0); }
.portrait figcaption {
  font-size: 12px; color: var(--taupe); padding-top: 10px;
}

/* fact strip */
.facts {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
}
.fact { padding: 28px 24px 0 0; }
.fact + .fact { padding-left: 24px; border-left: 1px solid var(--hairline); }
.fact .num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1.1;
}
.fact .lbl { font-size: 12px; color: var(--taupe); letter-spacing: .06em; margin-top: 6px; }

/* experience listing */
.station {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 48px;
  padding: 44px 0;
  border-top: 1px solid var(--hairline);
}
.station:last-child { border-bottom: 1px solid var(--hairline); }
.station .when { font-size: 13px; color: var(--ink); }
.station .where { font-size: 13px; color: var(--taupe); margin-top: 4px; }
.station .now {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--wine);
  border: 1px solid var(--wine);
  padding: 3px 10px;
  margin-top: 14px;
}
.station h3 { font-size: 1.4rem; }
.station ul { margin-top: 14px; }
.station li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  margin-top: 8px;
}
.station li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--wine);
}

/* education */
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
}
.edu {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 36px;
}
.edu .k { font-size: 12px; letter-spacing: .08em; color: var(--taupe); }
.edu h3 { font-size: 1.4rem; margin-top: 12px; }
.edu .school { font-size: 14px; margin-top: 10px; }
.edu .detail { font-size: 13px; color: var(--taupe); margin-top: 4px; }

/* certifications */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.cert { border-top: 1px solid var(--hairline); padding-top: 24px; }
.cert .k { font-size: 12px; letter-spacing: .08em; color: var(--taupe); }
.cert h3 { font-size: 1.25rem; margin-top: 12px; min-height: 3em; }
.cert .more { display: inline-block; margin-top: 18px; }

/* capabilities */
.cap-intro { max-width: 62ch; margin-bottom: 56px; }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 56px;
}
.cap { border-top: 1px solid var(--hairline); padding-top: 22px; }
.cap .k {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--wine);
}
.cap ul { margin-top: 14px; }
.cap li { font-size: 14px; margin-top: 7px; color: var(--body); }

/* video */
.video-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 40px 0;
}
.video-row h3 { font-size: 1.6rem; }
.video-row .channel { font-size: 13px; color: var(--taupe); margin-top: 8px; }
.video-links { display: flex; gap: 28px; flex-wrap: wrap; }

/* contact band */
.contact-band { background: var(--wine); color: #fff; padding: 104px 0; }
.contact-band .kicker { color: rgba(255, 255, 255, .55); }
.contact-band h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
}
.contact-band p {
  margin-top: 20px;
  color: rgba(255, 255, 255, .85);
  max-width: 52ch;
}
.contact-links {
  margin-top: 44px;
  display: flex; gap: 36px; flex-wrap: wrap;
}
.contact-links a {
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding-bottom: 3px;
}
.contact-links a:hover { border-color: #fff; text-decoration: none; }

/* ============ footer ============ */
.site-footer { padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 48px 96px;
  padding-bottom: 56px;
}
.footer-grid .wordmark { font-size: 19px; }
.footer-grid .role { font-size: 13px; color: var(--taupe); margin-top: 10px; }
.footer-col .k {
  font-size: 12px; letter-spacing: .08em; color: var(--taupe);
  margin-bottom: 14px;
}
.footer-col ul li { margin-top: 8px; }
.footer-col a { font-size: 13px; color: var(--body); }
.footer-col a:hover { color: var(--wine); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--taupe);
}

/* ============ responsive ============ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .portrait { max-width: 380px; }
  .station { grid-template-columns: 1fr; gap: 18px; padding: 36px 0; }
  .cert-grid, .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 24px 20px 0 0; }
  .fact + .fact { padding-left: 0; border-left: 0; }
  .fact:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--hairline); }
  .fact:nth-child(n+3) { margin-top: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  :root { --header-h: 60px; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0; }
  .contact-band { padding: 72px 0; }
  .edu-grid, .cert-grid, .cap-grid { grid-template-columns: 1fr; gap: 32px; }
  .edu { padding: 28px; }
  .facts { margin-top: 48px; }
  .burger { display: block; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: var(--header-h);
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 8px 24px 16px; }
  .site-nav a { display: block; padding: 12px 0; font-size: 15px; border-top: 1px solid var(--stone-soft); }
  .seeker-bar { flex-direction: column; }
  .seeker input { border-right: 1px solid var(--hairline); }
  .seeker button { padding: 14px 28px; }
  .seeker-results a .k { display: none; }
}

/* ============ subpages ============ */
.page-hero { background: var(--stone); padding: 80px 0; }
.page-hero .kicker { color: var(--taupe); }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.page-hero.wine { background: var(--wine); }
.page-hero.wine .kicker { color: rgba(255,255,255,.55); }
.page-hero.wine h1 { color: #fff; }
.site-nav a[aria-current="page"] { color: var(--wine); }
.tease-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 56px; }
.tease { border-top: 1px solid var(--hairline); padding-top: 22px; }
.tease .k { font-size: 12px; letter-spacing: .08em; color: var(--taupe); }
.tease h3 { font-size: 1.3rem; margin-top: 10px; }
.tease p { font-size: 14px; margin-top: 10px; }
.tease .more { display: inline-block; margin-top: 16px; }
.video-frame { border: 1px solid var(--hairline); background: var(--paper); padding: 10px; margin-top: 8px; }
.video-frame iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }
.contact-detail { margin-top: 8px; }
.contact-detail .row { display: flex; gap: 24px; padding: 22px 0; border-top: 1px solid var(--hairline); font-size: 14px; flex-wrap: wrap; }
.contact-detail .row:last-child { border-bottom: 1px solid var(--hairline); }
.contact-detail .k { min-width: 140px; font-size: 12px; letter-spacing: .08em; color: var(--taupe); padding-top: 2px; }
@media (max-width: 960px) { .tease-grid { grid-template-columns: 1fr; gap: 32px; } }
