:root {
  color-scheme: light;
  --page: #f1efe7;
  --surface: #fffdf7;
  --text: #1a1a18;
  --body: #58554c;
  --muted: #6d685f;
  --line: #cbc6ba;
  --soft-line: #e5e1d7;
  --accent: #db4f32;
  --award: #1d603d;
  --award-bg: #e4f4e9;
  --award-line: #96c3a4;
  --status: #555a55;
  --status-bg: #f0f1ed;
  --status-line: #bec3bc;
  --linkedin: #0a66c2;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--text);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 120ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.monogram {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.location {
  font-size: 12px;
  font-weight: 700;
}

.main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  min-height: 690px;
  padding: 54px 0;
}

.eyebrow,
.proof__label,
.tool__state,
.status,
.proof__heading h2 {
  font-family: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.eyebrow {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  min-width: 0;
}

.hero h1 {
  max-width: 100%;
  margin: 20px 0 27px;
  font-size: clamp(66px, 6.4vw, 92px);
  font-weight: 560;
  line-height: 0.91;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.hero h1 span {
  color: var(--accent);
}

.intro {
  max-width: 560px;
  margin: 0;
  color: var(--body);
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 1.56;
}

.intro strong {
  color: var(--text);
}

.intro a {
  text-decoration-color: #aaa397;
}

.tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.tool {
  min-width: 0;
  padding: 13px 14px 14px;
  background: var(--surface);
  border: 1px solid #c7c1b5;
  border-radius: 3px;
  text-decoration: none;
  transition:
    border-color 120ms ease,
    transform 120ms ease;
}

.tool:hover,
.tool:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.tool__state {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool__state::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: #2f8b58;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #e1eee5;
}

.tool strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.tool small {
  display: block;
  color: var(--body);
  font-size: 11px;
  line-height: 1.4;
}

.consulting {
  max-width: 560px;
  margin: 17px 0 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.5;
}

.consulting strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
}

.consulting span {
  display: block;
}

.primary-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.button {
  padding: 11px 16px;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.button:hover {
  color: var(--page);
  background: var(--text);
}

.button--primary {
  color: var(--page);
  background: var(--text);
}

.button--primary:hover {
  color: var(--surface);
  background: #343431;
}

.proof {
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid #cec8bc;
  border-radius: 4px;
  box-shadow: 16px 16px 0 #dfdbcf;
}

.proof__heading,
.proof__row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 21px;
}

.proof__heading {
  align-items: center;
  color: var(--muted);
  border-bottom: 1px solid #cec8bc;
}

.proof__heading h2 {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.proof__list {
  margin: 0;
}

.proof__row + .proof__row {
  border-top: 1px solid var(--soft-line);
}

.proof__label {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof__copy {
  min-width: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.proof__copy > strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.proof__copy a {
  text-decoration-color: #b8b1a5;
}

.research {
  display: grid;
  gap: 0;
  margin: 13px 0 0;
  padding: 0;
  border-top: 1px solid var(--soft-line);
  list-style: none;
}

.signal {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 9px 0;
  color: var(--body);
  font-size: 11px;
  line-height: 1.4;
}

.signal + .signal {
  border-top: 1px solid #eeeae0;
}

.signal b {
  color: var(--text);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal strong {
  color: var(--text);
  font-weight: 780;
}

.signal a {
  text-decoration-color: #c0baaf;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 4px 7px;
  color: var(--status);
  background: var(--status-bg);
  border: 1px solid var(--status-line);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.status--award {
  color: var(--award);
  background: var(--award-bg);
  border-color: var(--award-line);
}

.site-footer {
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.linkedin-summary {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  text-decoration: none;
}

.linkedin-summary__mark {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--linkedin);
  border-radius: 3px;
  font-weight: 800;
}

.footer-note {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: right;
}

@media (max-width: 1100px) {
  .main {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(62px, 7vw, 78px);
  }
}

@media (max-width: 900px) {
  .main {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(64px, 12vw, 96px);
  }

  .proof {
    box-shadow: 9px 9px 0 #dfdbcf;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 30px), 1180px);
    padding-top: 18px;
  }

  .main {
    gap: 43px;
    padding: 47px 0 56px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 58px);
  }

  .intro {
    font-size: 16px;
  }

  .proof__heading,
  .proof__row {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 11px;
    padding: 15px;
  }

  .signal {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 8px;
  }

  .status {
    grid-column: 2;
    justify-self: start;
    margin-top: -3px;
  }

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

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .tools {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .skip-link,
  .primary-links {
    display: none;
  }

  .shell {
    width: 100%;
    padding: 0;
  }

  .main {
    min-height: auto;
  }

  .proof {
    box-shadow: none;
  }
}

.error-page {
  display: grid;
  min-height: 100svh;
  padding: 24px;
  place-items: center;
}

.error-card {
  width: min(560px, 100%);
  padding: clamp(28px, 7vw, 64px);
  background: var(--surface);
  border: 1px solid #cec8bc;
  border-radius: 4px;
  box-shadow: 16px 16px 0 #dfdbcf;
}

.error-card .eyebrow {
  margin-top: 52px;
}

.error-card h1 {
  margin: 16px 0;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.error-card p:not(.eyebrow) {
  margin: 0 0 28px;
  color: var(--body);
  font-size: 17px;
}
