/* Generated from tokens.json — do not edit by hand. */
:root {
  --paper: #F4EFE4;
  --surface: #FBF8F1;
  --ink: #211F1C;
  --body: #423D37;
  --muted: #857E72;
  --red: #C0473A;
  --red-deep: #A63B30;
  --line: #DAD2C4;
  --serif: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --text-display: 56px;
  --text-h1: 40px;
  --text-h2: 30px;
  --text-h3: 21px;
  --text-body: 16px;
  --text-small: 13px;
  --text-eyebrow: 12px;
  --tracking-wordmark: 0.24em;
  --tracking-label: 0.14em;
  --tracking-eyebrow: 0.22em;
  --leading-body: 1.75;
  --leading-tight: 1.15;
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 96px;
  --radius-ui: 3px;
  --motion-fast: 200ms;
  --maxw: 920px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color var(--motion-fast), border-color var(--motion-fast), background-color var(--motion-fast);
}

a:hover {
  color: var(--red);
  border-color: var(--red);
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--red);
  outline-offset: 4px;
}

p,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  line-height: var(--leading-tight);
  font-weight: 500;
}

h2 {
  font-size: clamp(26px, 4vw, 34px);
  letter-spacing: 0.01em;
}

h3 {
  font-size: var(--text-h3);
}

.wrap {
  width: min(calc(100% - (var(--s4) * 2)), var(--maxw));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: var(--s2);
  left: var(--s2);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-ui);
  transform: translateY(-160%);
  z-index: 20;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  min-height: 72px;
}

.brand-link,
.brand-link:hover {
  border-bottom: 0;
  color: var(--ink);
}

.brand-link__wordmark,
.wordmark,
.wm {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: var(--tracking-wordmark);
  text-indent: var(--tracking-wordmark);
}

.brand-link__wordmark {
  font-size: 16px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}

.site-nav a {
  border-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--red);
}

.hero {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(var(--s6), 12vw, 140px) 0;
}

.hero__mark {
  margin-bottom: var(--s3);
}

.eyebrow {
  margin: 0 0 var(--s2);
  color: var(--muted);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
}

.wordmark {
  font-size: clamp(34px, 8vw, 64px);
}

.hero__tagline,
.ft-tag {
  margin-top: var(--s3);
  color: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.hero__positioning {
  max-width: 32rem;
  margin-top: var(--s4);
  font-size: 18px;
}

.sep,
.dot-divider {
  color: var(--red);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s2);
  margin-top: var(--s5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  color: var(--paper);
  border-color: var(--body);
  background: var(--body);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.section {
  padding: var(--s7) 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: var(--s5);
}

.section-head--tight {
  margin-bottom: 0;
}

.reading-column {
  max-width: 64ch;
}

.reading-column p + p,
.stack,
.timeline,
.experience-groups,
.contact__grid {
  margin-top: var(--s3);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s3);
}

.card,
.work-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-ui);
}

.card {
  padding: var(--s4);
}

.card p {
  margin-top: var(--s1);
}

.stack {
  display: grid;
  gap: var(--s2);
}

.work-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s3);
  align-items: end;
  padding: var(--s4);
}

.work-item p {
  margin-top: var(--s1);
}

.timeline {
  list-style: none;
  padding: 0;
  margin-top: var(--s2);
  border-top: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s2);
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.timeline__role {
  color: var(--ink);
}

.timeline__years {
  color: var(--muted);
  white-space: nowrap;
}

.timeline__dot {
  color: var(--red);
}

.experience-groups {
  display: grid;
  gap: var(--s4);
}

.experience-group__header {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.experience-group__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 44px;
}

.experience-group__title {
  font-size: 24px;
}

.certifications p {
  font-size: 18px;
}

.section--contact {
  border-bottom: 0;
}

.contact {
  padding-bottom: var(--s2);
}

.contact__head {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s4);
}

.divider-dot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: var(--s5);
  color: var(--line);
}

.divider-dot::before,
.divider-dot::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.divider-dot b {
  color: var(--red);
  font-size: 18px;
  font-weight: 400;
}

.site-footer {
  padding: var(--s6) 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.wm {
  font-size: 18px;
}

.ft-meta {
  margin-top: var(--s4);
  color: var(--muted);
  font-size: 11.5px;
  letter-spacing: 0.06em;
}

.ft-meta a {
  color: var(--muted);
}

.ft-meta a:hover {
  color: var(--red);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: hero-rise 520ms ease forwards;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 820px) {
  .focus-grid,
  .contact__grid,
  .work-item,
  .timeline li {
    grid-template-columns: 1fr;
  }

  .timeline li {
    gap: var(--s1);
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(calc(100% - (var(--s3) * 2)), var(--maxw));
  }

  .site-header {
    position: static;
  }

  .site-header__inner,
  .contact__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience-group__header {
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    align-items: flex-start;
    text-align: left;
  }

  .hero__actions {
    justify-content: flex-start;
  }
}
