/* =========================================================
   Blake Werner — personal site
   Design language: refined, editorial, lots of whitespace,
   serif display type + clean sans, evergreen & warm neutrals.
   ========================================================= */

:root {
  --ink: #181613;
  --ink-soft: #3a352e;
  --muted: #6f675c;
  --paper: #f7f4ee;
  --paper-2: #efe9df;
  --cream: #f3efe6;
  --line: rgba(24, 22, 19, 0.12);
  --line-light: rgba(243, 239, 230, 0.22);

  --evergreen: #1f3a2e;
  --evergreen-2: #2e5443;
  --brass: #a8763a;
  --brass-2: #c79a5b;
  --dark: #14110d;
  --dark-2: #1a201b;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-script: "Allura", "Brush Script MT", cursive;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85em; background: var(--paper-2); padding: 2px 6px; border-radius: 5px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- Typography helpers ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brass);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--brass-2); }
.muted-light { color: rgba(243, 239, 230, 0.72); }

.section__title {
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  color: var(--ink);
  max-width: 18ch;
}
.section__title--light { color: var(--cream); }

.text-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--evergreen);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.25s var(--ease);
}
.text-link:hover { opacity: 0.62; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--evergreen); color: var(--cream); }
.btn--primary:hover { background: var(--evergreen-2); }
.btn--ghost-light { border-color: var(--line-light); color: var(--cream); }
.btn--ghost-light:hover { background: rgba(243, 239, 230, 0.1); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 16px 0;
  background: rgba(243, 239, 230, 0.86);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 600; }
.brand__mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--evergreen);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.brand__name { font-family: var(--font-script); font-size: 2.22rem; font-weight: 400; line-height: 1; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0; transition: color 0.2s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active { color: var(--ink); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--brass);
}
.nav__link--cta {
  border: 1.5px solid var(--line); border-radius: 100px; padding: 8px 18px;
}
.nav__link--cta:hover { background: var(--evergreen); color: var(--cream); border-color: var(--evergreen); }

/* Transparent header over the home hero until scrolled */
body[data-page="home"] .site-header:not(.is-scrolled) {
  background: transparent; border-color: transparent; backdrop-filter: none;
}
body[data-page="home"] .site-header:not(.is-scrolled) .brand__name,
body[data-page="home"] .site-header:not(.is-scrolled) .nav__link { color: var(--cream); }
body[data-page="home"] .site-header:not(.is-scrolled) .nav__link--cta { border-color: var(--line-light); }
body[data-page="home"] .site-header:not(.is-scrolled) .nav-toggle span { background: var(--cream); }

/* mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px var(--gutter) 22px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a { padding: 14px 0; font-size: 1.05rem; font-family: var(--font-display); border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero__media {
  position: absolute; inset: 0;
  background-image:
    var(--hero-img, none),
    radial-gradient(90% 60% at 72% 6%, rgba(199, 154, 91, 0.26), transparent 60%),
    radial-gradient(120% 90% at 50% 120%, var(--evergreen-2) 0%, #1b2a22 42%, var(--dark) 100%);
  background-size: cover; background-position: center;
}
/* Drop a real photo at /public/images/hero.jpg and it layers on top automatically */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 14, 11, 0.72) 0%, rgba(16, 14, 11, 0.4) 40%, rgba(16, 14, 11, 0.12) 68%, rgba(16, 14, 11, 0.3) 100%),
    linear-gradient(180deg, rgba(16, 14, 11, 0.45) 0%, rgba(16, 14, 11, 0.2) 35%, rgba(16, 14, 11, 0.72) 100%);
}
.hero__content { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; max-width: 920px; }
.hero__content--split { display: grid; grid-template-columns: 1.4fr 0.6fr; align-items: center; gap: clamp(28px, 5vw, 72px); max-width: 1160px; }
.hero__portrait { margin: 0; justify-self: end; }
.hero__portrait img { display: block; width: 100%; max-width: 340px; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; border-radius: 20px; border: 1px solid rgba(243, 239, 230, 0.4); box-shadow: 0 34px 70px -30px rgba(0, 0, 0, 0.75); }
@media (max-width: 860px) {
  .hero__content--split { grid-template-columns: 1fr; }
  .hero__portrait { justify-self: start; order: -1; margin-bottom: 6px; }
  .hero__portrait img { max-width: 168px; aspect-ratio: 1 / 1; border-radius: 16px; }
}
.hero__title { font-size: clamp(2.7rem, 6.6vw, 5.4rem); font-weight: 500; letter-spacing: -0.02em; }
.hero__intro { margin-top: 26px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 60ch; color: rgba(243, 239, 230, 0.86); }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(243, 239, 230, 0.7); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll span { width: 1px; height: 40px; background: linear-gradient(var(--brass-2), transparent); animation: scrollPulse 2.2s var(--ease) infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 90px) 0 clamp(64px, 9vw, 120px); }
.section--paper { background: var(--paper-2); }
.section--dark { background: var(--dark-2); color: var(--cream); }
.section__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: 100%; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); }
.grid-2--center { align-items: center; }
.about__intro { display: flex; flex-direction: column; }
.about__photo { flex: 1 1 auto; min-height: 340px; width: 100%; margin-top: 30px; object-fit: cover; object-position: 28% 35%; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 34px 60px -40px rgba(24, 22, 19, 0.5); }
.about__body p { margin-bottom: 18px; color: var(--ink-soft); }
.about__subhead { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--evergreen); margin: 34px 0 8px; }
.about__body .text-link { margin-top: 8px; }

/* ---------- Value cards ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.value-card { padding: 36px 30px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.section--paper .value-card { background: var(--paper); }
.value-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -34px rgba(24, 22, 19, 0.45); }
.value-card__num { font-family: var(--font-display); font-size: 1.1rem; color: var(--brass); }
.value-card__title { font-size: 1.42rem; margin: 16px 0 12px; }
.value-card__body { color: var(--muted); font-size: 0.98rem; }

/* ---------- Venture cards ---------- */
.venture-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 40px); }
.venture-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.venture-card:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -40px rgba(24, 22, 19, 0.5); }
.venture-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: var(--accent);
  background-image:
    radial-gradient(120% 120% at 20% 10%, rgba(255, 255, 255, 0.16), transparent 55%),
    linear-gradient(155deg, var(--accent) 0%, rgba(16, 14, 11, 0.92) 100%);
  background-size: cover; background-position: center;
  display: grid; place-items: center;
}
.venture-card__media.has-img { background-image: var(--card-img); }
.venture-card__media.has-img .venture-card__monogram { display: none; }
.venture-card__media--contain { background-color: #fff; background-size: auto 78%; background-repeat: no-repeat; background-position: center; }
.venture-card__media--contain.has-img { background-image: var(--card-img); }
.venture-card__monogram {
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 500;
  color: rgba(243, 239, 230, 0.16); line-height: 1;
}
.venture-card__badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cream); background: rgba(16, 14, 11, 0.42);
  border: 1px solid rgba(243, 239, 230, 0.28);
  padding: 6px 12px; border-radius: 100px; backdrop-filter: blur(4px);
}
.venture-card__body { padding: 28px 28px 26px; display: flex; flex-direction: column; flex: 1; }
.venture-card__cat { font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.venture-card__title { font-size: 1.7rem; margin: 10px 0 8px; }
.venture-card__tagline { font-size: 1.02rem; color: var(--ink-soft); font-weight: 500; margin-bottom: 12px; }
.venture-card__desc { color: var(--muted); font-size: 0.96rem; }
.venture-card__highlights { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 9px; }
.venture-card__highlights li { position: relative; padding-left: 22px; font-size: 0.92rem; color: var(--ink-soft); }
.venture-card__highlights li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--evergreen-2); }
.venture-card__foot { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.tagrow { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 0.74rem; font-weight: 600; color: var(--evergreen); background: rgba(31, 58, 46, 0.08); border: 1px solid rgba(31, 58, 46, 0.16); padding: 5px 11px; border-radius: 100px; }

/* ---------- Reading teaser (home) ---------- */
.reading-intro .muted-light { margin-top: 20px; }
.reading-intro .btn { margin-top: 30px; }
.reading-teaser { display: flex; gap: 8px; align-items: flex-end; justify-content: center; min-height: 230px; padding: 16px; }
.mini-spine {
  writing-mode: vertical-rl; text-orientation: mixed;
  background: var(--spine); color: var(--ink);
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  padding: 16px 10px; border-radius: 2px 5px 5px 2px;
  height: calc(150px + (var(--i, 0) * 0));
  box-shadow: inset -6px 0 12px -8px rgba(0, 0, 0, 0.5), 0 16px 24px -18px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s var(--ease);
}
.reading-teaser .mini-spine:nth-child(odd) { height: 200px; }
.reading-teaser .mini-spine:nth-child(even) { height: 176px; }
.reading-teaser .mini-spine:hover { transform: translateY(-10px); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 150px 0 10px; background: var(--paper); }
.page-hero--center { text-align: center; padding-bottom: 90px; }
.page-hero--center .btn { margin-top: 26px; }
.page-hero__title { font-size: clamp(2.3rem, 5vw, 3.8rem); margin-top: 6px; }
.page-hero__sub { margin-top: 20px; max-width: 62ch; color: var(--muted); font-size: 1.08rem; }
.page-hero--center .page-hero__sub { margin-inline: auto; }

/* ---------- Leadership ---------- */
.lead-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
.lead-col__title { font-size: 1.5rem; padding-bottom: 16px; border-bottom: 2px solid var(--brass); margin-bottom: 24px; display: inline-block; }
.lead-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.lead-item:last-child { border-bottom: 0; }
.lead-item__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.lead-item__role { font-size: 1.2rem; font-family: var(--font-display); font-weight: 500; }
.lead-item__period { font-size: 0.8rem; color: var(--muted); white-space: nowrap; }
.lead-item__org { color: var(--brass); font-weight: 600; font-size: 0.92rem; margin-top: 4px; }
.lead-item__detail { color: var(--muted); font-size: 0.94rem; margin-top: 8px; }

/* ---------- Bookcase ---------- */
.shelf-legend { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; }
.legend-item { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); }
.legend-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.legend-dot--reading { background: var(--brass-2); }
.legend-dot--finished { background: #56a36b; }
.legend-dot--queued { background: #b9b2a6; }

.bookcase {
  background: linear-gradient(180deg, #3a2c1f, #2c2016);
  padding: 14px clamp(14px, 3vw, 30px) 8px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.18), 0 40px 70px -50px rgba(0, 0, 0, 0.7);
}
.shelf { display: flex; flex-direction: column; }
.shelf__books {
  display: flex; align-items: flex-end; flex-wrap: wrap; gap: 7px;
  padding: 26px 12px 0; min-height: 150px;
}
.shelf__board {
  height: 16px; border-radius: 3px; margin-bottom: 22px;
  background: linear-gradient(180deg, #70512f, #45301c);
  box-shadow: 0 14px 18px -12px rgba(0, 0, 0, 0.65), inset 0 2px 0 rgba(255, 255, 255, 0.12);
}
.shelf:last-child .shelf__board { margin-bottom: 6px; }

.book {
  width: var(--w, 50px);
  height: var(--h, 220px);
  background: var(--spine);
  color: var(--ink);
  border-radius: 2px 5px 5px 2px;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  padding: 12px 6px 10px;
  position: relative;
  cursor: pointer;
  box-shadow: inset -7px 0 14px -8px rgba(0, 0, 0, 0.55), inset 4px 0 6px -4px rgba(255, 255, 255, 0.18), 0 18px 26px -20px rgba(0, 0, 0, 0.7);
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.book:hover, .book:focus-visible {
  transform: translateY(-16px);
  box-shadow: inset -7px 0 14px -8px rgba(0, 0, 0, 0.55), 0 26px 34px -20px rgba(0, 0, 0, 0.7);
  outline: none;
}
.book__status { width: 9px; height: 9px; border-radius: 50%; background: #b9b2a6; flex: none; }
.book--reading .book__status { background: var(--brass-2); box-shadow: 0 0 0 3px rgba(199, 154, 91, 0.25); }
.book--finished .book__status { background: #56a36b; }
.book--queued .book__status { background: #b9b2a6; }
.book__title {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.01em;
  flex: 1; display: flex; align-items: center; justify-content: center;
  margin: 8px 0; max-height: calc(var(--h) - 70px); overflow: hidden;
}
.book__author { writing-mode: vertical-rl; text-orientation: mixed; font-size: 0.6rem; opacity: 0.72; font-weight: 500; max-height: 70px; overflow: hidden; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; }
.contact-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 32px 28px; min-height: 190px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.contact-card:not(.contact-card--static):hover { transform: translateY(-6px); border-color: var(--evergreen); box-shadow: 0 30px 50px -38px rgba(24, 22, 19, 0.5); }
.contact-card__label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brass); font-weight: 600; }
.contact-card__value { font-family: var(--font-display); font-size: 1.5rem; margin-top: auto; }
.contact-card__cta { font-size: 0.9rem; color: var(--muted); }
.contact-aside { max-width: 60ch; color: var(--muted); font-size: 1rem; }
.contact-aside strong { color: var(--ink); }

/* ---------- Ask AI block ---------- */
.ask-ai { background: var(--dark); color: var(--cream); padding: clamp(56px, 8vw, 96px) 0; text-align: center; }
.ask-ai__inner { max-width: 760px; }
.ask-ai__title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--cream); }
.ask-ai__sub { margin: 18px auto 0; color: rgba(243, 239, 230, 0.74); max-width: 54ch; }
.ask-ai__buttons { margin-top: 34px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ai-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 600; color: var(--cream);
  background: rgba(243, 239, 230, 0.04);
  border: 1px solid rgba(243, 239, 230, 0.2);
  padding: 13px 22px; border-radius: 100px; cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.ai-btn:hover { transform: translateY(-3px); background: rgba(243, 239, 230, 0.1); border-color: rgba(243, 239, 230, 0.45); }
.ai-btn__logo { width: 26px; height: 26px; border-radius: 50%; background: #fff; padding: 3px; object-fit: contain; flex: none; box-sizing: border-box; }
@media (max-width: 560px) { .ask-ai__buttons { grid-template-columns: repeat(2, 1fr); } }
.ask-ai__note { margin-top: 18px; font-size: 0.85rem; color: var(--brass-2); min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer { background: #100e0b; color: rgba(243, 239, 230, 0.78); padding: 56px 0 40px; }
.site-footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 28px 40px; align-items: start; }
.site-footer__brand { display: flex; align-items: center; gap: 14px; }
.site-footer__brand .brand__mark { background: var(--evergreen-2); }
.site-footer__name { font-family: var(--font-script); font-size: 2.4rem; font-weight: 400; line-height: 1.1; color: var(--cream); }
.site-footer__role { font-size: 0.85rem; color: rgba(243, 239, 230, 0.55); }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; }
.site-footer__links a { font-size: 0.92rem; transition: color 0.2s var(--ease); }
.site-footer__links a:hover { color: var(--cream); }
.site-footer__copy { grid-column: 1 / -1; padding-top: 26px; margin-top: 8px; border-top: 1px solid rgba(243, 239, 230, 0.12); font-size: 0.82rem; color: rgba(243, 239, 230, 0.5); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 24px);
  background: var(--ink); color: var(--cream);
  padding: 12px 20px; border-radius: 100px; font-size: 0.88rem; font-weight: 500;
  box-shadow: 0 24px 40px -22px rgba(0, 0, 0, 0.6);
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); z-index: 200;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Press band ---------- */
.press-band { background: var(--dark-2); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); padding: 28px 0; color: var(--cream); }
.press-band__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.press-band__eyebrow { margin: 0; white-space: nowrap; color: var(--brass-2); }
.press-list { display: flex; flex-wrap: wrap; gap: 22px; flex: 1; }
.press-item { display: flex; align-items: center; gap: 18px; transition: opacity 0.25s var(--ease); }
.press-item:hover { opacity: 0.78; }
.press-item__outlet { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--cream); white-space: nowrap; padding-right: 18px; border-right: 1px solid var(--line-light); }
.press-item__meta { display: flex; flex-direction: column; gap: 3px; }
.press-item__title { font-size: 0.95rem; color: rgba(243, 239, 230, 0.88); font-weight: 500; font-style: italic; }
.press-item__sub { font-size: 0.82rem; color: rgba(243, 239, 230, 0.6); }
.press-item__link { color: var(--brass-2); font-weight: 600; font-style: normal; }

/* ---------- Education card ---------- */
.edu-band { padding: clamp(34px, 5vw, 60px) 0 0; }
.edu-card {
  display: flex; gap: clamp(20px, 4vw, 48px); align-items: center; flex-wrap: wrap;
  background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--brass);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: clamp(26px, 3vw, 38px) clamp(24px, 3vw, 40px);
}
.edu-card__side { min-width: 150px; }
.edu-card__grad { font-family: var(--font-display); font-size: 1.7rem; color: var(--evergreen); }
.edu-card__body { flex: 1; min-width: 260px; }
.edu-card__school { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.edu-card__program { color: var(--brass); font-weight: 600; margin-top: 4px; }
.edu-card__detail { color: var(--muted); margin-top: 10px; max-width: 62ch; }

/* ---------- Speaking cards ---------- */
.speak-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 40px); }
.speak-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.speak-card:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -40px rgba(24, 22, 19, 0.5); }
.speak-card__media {
  position: relative; aspect-ratio: 3 / 2;
  background-color: var(--evergreen);
  background-image:
    radial-gradient(120% 120% at 20% 10%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(155deg, var(--evergreen) 0%, rgba(16, 14, 11, 0.92) 100%);
  background-size: cover; background-position: center; display: grid; place-items: center;
}
.speak-card__media.has-img { background-image: var(--card-img); }
.speak-card__media.has-img .venture-card__monogram { display: none; }
.speak-card__body { padding: 24px 26px 26px; }
.speak-card__title { font-size: 1.45rem; margin: 8px 0 4px; }
.speak-card__org { color: var(--brass); font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; }
.lead-cols--2 { grid-template-columns: 1fr 1fr; }

/* ---------- Timeline ---------- */
.timeline-section { padding-top: clamp(40px, 5.5vw, 80px); }
.timeline { position: relative; margin-top: 8px; }
.timeline__line { position: absolute; left: 132px; top: 6px; bottom: 28px; width: 2px; background: var(--line); border-radius: 2px; }
.timeline__progress { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: linear-gradient(180deg, var(--brass), var(--evergreen)); border-radius: 2px; transition: height 0.15s linear; }
.t-item { position: relative; display: grid; grid-template-columns: 120px 1fr; column-gap: 36px; padding-bottom: 34px; }
.t-item:last-child { padding-bottom: 0; }
.t-item__date { text-align: right; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--brass); padding-top: 1px; }
.t-item__dot {
  position: absolute; left: 132px; top: 5px; transform: translateX(-50%);
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--paper-2); border: 2px solid var(--line); z-index: 2;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.t-item.is-active .t-item__dot { border-color: var(--brass); background: var(--brass); box-shadow: 0 0 0 5px rgba(168, 118, 58, 0.16); }
.t-item__card { padding-left: 14px; }
.t-item__tag { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--evergreen); background: rgba(31, 58, 46, 0.08); border: 1px solid rgba(31, 58, 46, 0.16); padding: 4px 10px; border-radius: 100px; margin-bottom: 10px; }
.t-item__title { font-size: 1.3rem; line-height: 1.2; }
.t-item__org { color: var(--brass); font-weight: 600; font-size: 0.88rem; margin-top: 4px; }
.t-item__desc { color: var(--muted); font-size: 0.96rem; margin-top: 8px; max-width: 56ch; }
.section__sub { margin-top: 12px; color: var(--muted); font-size: 1.02rem; }
.t-item__card--link { display: block; cursor: pointer; border-radius: var(--radius); padding: 12px 14px; margin: -6px -14px -6px 0; transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.t-item__card--link:hover { background: var(--paper); transform: translateX(3px); box-shadow: 0 20px 34px -28px rgba(24, 22, 19, 0.55); }
.t-item__card--link .t-item__title { transition: color 0.2s var(--ease); }
.t-item__card--link:hover .t-item__title { color: var(--evergreen); }
.t-item__go { display: inline-block; margin-top: 10px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: var(--evergreen); opacity: 0.75; }
.t-item__card--link:hover .t-item__go { opacity: 1; }
.venture-card { scroll-margin-top: 100px; }
#education, #speaking, #roles { scroll-margin-top: 96px; }
.venture-card:target { animation: targetPulse 1.8s var(--ease); }
@keyframes targetPulse {
  0% { box-shadow: 0 0 0 0 rgba(168, 118, 58, 0); }
  18% { box-shadow: 0 0 0 4px rgba(168, 118, 58, 0.55); }
  100% { box-shadow: 0 0 0 0 rgba(168, 118, 58, 0); }
}

@media (max-width: 640px) {
  .timeline__line { left: 7px; }
  .t-item { grid-template-columns: 1fr; column-gap: 0; padding-left: 32px; padding-bottom: 26px; }
  .t-item__date { text-align: left; margin-bottom: 6px; }
  .t-item__dot { left: 7px; top: 6px; }
  .t-item__card { padding-left: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .venture-grid { grid-template-columns: 1fr; }
  .lead-cols { grid-template-columns: 1fr; }
  .lead-cols--2 { grid-template-columns: 1fr; }
  .speak-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .press-item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .press-item__outlet { border-right: 0; padding-right: 0; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .hero__content { padding-top: 130px; }
  .reading-teaser { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
}
