:root {
  --ink: #151514;
  --ink-soft: #494742;
  --paper: #fbf6ea;
  --paper-bright: #fffdf7;
  --sage: #aebc9a;
  --sage-deep: #657658;
  --clay: #cf7853;
  --gold: #e5bb64;
  --line: rgba(16, 35, 31, 0.14);
  --shadow: 0 20px 52px rgba(16, 35, 31, 0.12);
  --radius: 24px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(231, 187, 95, 0.24), transparent 34rem),
    linear-gradient(180deg, var(--paper) 0%, #f5efe3 46%, var(--paper-bright) 100%);
  line-height: 1.5;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  letter-spacing: -0.025em;
  line-height: 1.04;
}
h1 { font-size: clamp(2.55rem, 6.2vw, 5.35rem); margin-bottom: 1.3rem; font-weight: 760; }
h2 { font-size: clamp(1.85rem, 3.8vw, 3.35rem); margin-bottom: 1rem; font-weight: 730; }
h3 { font-size: 1.3rem; margin-bottom: 0.75rem; font-weight: 720; }
p { color: var(--ink-soft); }
a { color: inherit; }

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 20;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(251, 247, 239, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 247, 239, 0.94);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 720;
  letter-spacing: -0.02em;
}
.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: min(185px, 52vw);
  object-fit: contain;
}
.brand-mark { display: none; }
.brand-text { font-size: 1.05rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.site-nav a {
  text-decoration: none;
  font-weight: 620;
  color: var(--ink-soft);
  padding: .7rem .9rem;
  border-radius: 999px;
}
.site-nav a:hover { color: var(--ink); background: rgba(16, 35, 31, 0.06); }
.nav-cta {
  border: 1px solid var(--line);
  background: var(--paper-bright);
}
.nav-toggle { display: none; }

.hero { padding: clamp(4rem, 8vw, 7.5rem) 0 3rem; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(300px, .7fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.eyebrow {
  color: var(--sage-deep);
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  margin-bottom: 1rem;
}
.hero-lede {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  max-width: 670px;
  margin-bottom: 2rem;
}
.hero-actions, .footer-inner, .support-grid, .proof-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  font-weight: 720;
  text-decoration: none;
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.button.primary { background: var(--clay); color: var(--ink); }
.button.secondary { background: var(--paper-bright); }
.button.full { width: 100%; margin-top: 1.25rem; }

.hero-card {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, .88);
  box-shadow: var(--shadow), 6px 6px 0 var(--ink);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.hero-card-kicker {
  color: var(--sage-deep);
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
}
.hero-card-score {
  font-weight: 780;
  letter-spacing: -.04em;
  font-size: 2rem;
}
.hero-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.06;
  margin-bottom: 1.5rem;
}
.mini-schedule {
  display: grid;
  gap: .75rem;
}
.mini-schedule div {
  display: grid;
  gap: .2rem;
  padding: .95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(169, 186, 148, .18), rgba(231, 187, 95, .16));
}
.mini-schedule span {
  color: var(--sage-deep);
  font-size: .76rem;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.mini-schedule strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.intro-section { padding-top: 2rem; }
.intro-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.large-copy {
  color: var(--ink);
  font-size: clamp(1.5rem, 3.3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 980px;
  margin-bottom: 0;
}
.section-heading { max-width: 840px; margin-bottom: 2rem; }
.card-grid {
  display: grid;
  gap: 1rem;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card, .support-card, .hire-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .82);
  padding: clamp(1.25rem, 3vw, 2rem);
}
.card-kicker {
  display: inline-flex;
  margin-bottom: 3rem;
  color: var(--clay);
  font-weight: 780;
  font-size: .85rem;
}
.card p, .support-card p, .hire-card p { margin-bottom: 0; }

.split-section {
  background: var(--ink);
  color: var(--paper-bright);
}
.split-section p, .split-section .eyebrow { color: rgba(255, 253, 248, .78); }
.split-grid, .hire-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.rich-text p {
  font-size: 1.12rem;
  margin-bottom: 1rem;
}
.rich-text p:last-child { margin-bottom: 0; }

.proof-section { padding: 3rem 0; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proof-item {
  border-left: 1px solid var(--line);
  padding: 1rem 1.2rem;
}
.proof-number {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 780;
  letter-spacing: -0.07em;
  line-height: .9;
}
.proof-label {
  display: block;
  margin-top: .6rem;
  color: var(--ink-soft);
  font-weight: 750;
}

.hire-panel {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(135deg, rgba(231, 187, 95, .32), rgba(169, 186, 148, .34));
  box-shadow: 7px 7px 0 var(--ink);
}
.hire-copy p:not(.eyebrow) { font-size: 1.15rem; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .8rem;
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--ink-soft);
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-deep);
  font-weight: 780;
}
.support-grid { display: grid; grid-template-columns: 1fr 1fr; }
.support-card a {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 780;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.support-card.muted { background: rgba(169, 186, 148, .2); }

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  justify-content: space-between;
  align-items: center;
}
.footer-inner p { margin: 0; }
.footer-inner a { font-weight: 850; }

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid var(--line);
    background: var(--paper-bright);
    border-radius: 999px;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 68px;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper-bright);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: .9rem 1rem; }
  .hero-grid, .split-grid, .hire-panel, .support-grid { grid-template-columns: 1fr; }
  .card-grid.three, .proof-grid { grid-template-columns: 1fr; }
  .hero-card { box-shadow: var(--shadow), 5px 5px 0 var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
