@import url("https://fonts.googleapis.com/css2?family=Literata:opsz,wght@7..72,500;7..72,600;7..72,700&family=Public+Sans:wght@400;500;600;700&display=swap");

:root {
  --paper: #fff7df;
  --paper-light: #fffcf2;
  --ink: #251f3d;
  --cobalt: #3157d5;
  --cobalt-dark: #2442a6;
  --marigold: #ffc83d;
  --coral: #ff6e61;
  --mint: #64d8c4;
  --white: #fff;
  --line: rgba(37, 31, 61, 0.2);
  --serif: "Literata", Georgia, serif;
  --sans: "Public Sans", Arial, sans-serif;
  --page: min(1180px, calc(100vw - 48px));
  --measure: 690px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--mint);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

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

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

.nav {
  display: flex;
  width: var(--page);
  min-height: 88px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  display: block;
  margin-top: 7px;
  color: var(--cobalt-dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a,
.mobile-menu a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.nav-links a:not(.nav-cta):hover,
.mobile-menu a:hover {
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: 42px;
  right: 0;
  width: min(280px, calc(100vw - 32px));
  padding: 18px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--coral);
}

.mobile-menu nav a {
  display: block;
  padding: 10px 4px;
}

.button,
.nav-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--coral);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.button:hover,
.nav-cta:hover {
  box-shadow: 3px 3px 0 var(--coral);
  transform: translate(2px, 2px);
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-yellow {
  border-color: var(--marigold);
  background: var(--marigold);
  color: var(--ink);
}

.text-link {
  display: inline-block;
  border-bottom: 3px solid currentColor;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
}

.text-link:hover {
  border-bottom-color: var(--coral);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.page-hero-inner {
  display: grid;
  width: var(--page);
  min-height: 610px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 72px;
  padding: 70px 0;
}

.page-kicker {
  margin: 0 0 18px;
  font-weight: 700;
}

.page-kicker::before {
  display: inline-block;
  width: 34px;
  height: 7px;
  margin-right: 12px;
  background: var(--coral);
  content: "";
  vertical-align: 2px;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(50px, 6.2vw, 82px);
  font-weight: 600;
  line-height: 0.98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 600;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1.12;
}

p {
  margin-top: 0;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 30px;
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-art {
  position: relative;
}

.hero-art img {
  width: 100%;
  height: 510px;
  border: 2px solid var(--ink);
  object-fit: cover;
}

.hero-art::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  width: 78%;
  height: 82%;
  background: var(--coral);
  content: "";
}

.hero-art.cover img {
  height: 520px;
  padding: 34px;
  background: var(--white);
  object-fit: contain;
}

.hero-art.cover::after {
  background: var(--cobalt);
}

.hero-shape {
  display: grid;
  min-height: 430px;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--cobalt);
}

.hero-symbol {
  width: min(320px, 72%);
  height: auto;
  overflow: visible;
  filter: drop-shadow(14px 14px 0 rgba(37, 31, 61, 0.22));
}

.hero-symbol .symbol-outline {
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10;
}

.hero-symbol .symbol-detail {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10;
}

.hero-symbol .symbol-dot {
  fill: var(--cobalt);
}

.hero-symbol .symbol-page-line {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 8;
}

.hero-cobalt {
  background: var(--cobalt);
  color: var(--white);
}

.hero-cobalt .page-kicker,
.hero-cobalt .hero-lede {
  color: var(--white);
}

.hero-cobalt .hero-shape {
  background: var(--mint);
}

.hero-mint {
  background: var(--mint);
}

.hero-marigold {
  background: var(--marigold);
}

.section {
  padding: 100px 0;
}

.section-compact {
  padding: 68px 0;
}

.section-inner {
  width: var(--page);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  gap: 68px;
  margin-bottom: 52px;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 19px;
}

.section-heading-stacked {
  max-width: 860px;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
}

.section-heading-stacked h2 {
  max-width: 760px;
}

.paper-light {
  background: var(--paper-light);
}

.cobalt-band {
  background: var(--cobalt);
  color: var(--white);
}

.mint-band {
  background: var(--mint);
}

.marigold-band {
  background: var(--marigold);
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.prose {
  max-width: var(--measure);
}

.prose h2,
.prose h3 {
  margin-top: 1.5em;
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  max-width: 72ch;
}

.prose a {
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.experience-list {
  border-top: 2px solid var(--ink);
}

.experience {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  padding: 34px 0 38px;
  border-bottom: 2px solid var(--ink);
}

.experience-label {
  font-weight: 700;
}

.experience h3 {
  margin-bottom: 8px;
}

.experience p:last-child {
  margin-bottom: 0;
}

.outcome-grid,
.audience-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.outcome,
.audience,
.resource-card {
  min-height: 250px;
  padding: 30px;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
}

.outcome:nth-child(2),
.audience:nth-child(2) {
  background: var(--marigold);
}

.outcome:nth-child(3),
.audience:nth-child(3) {
  background: var(--mint);
}

.outcome p:last-child,
.audience p:last-child,
.resource-card p:last-child {
  margin-bottom: 0;
}

.steps {
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-top: 2px solid currentColor;
  counter-increment: step;
}

.steps li::before {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  content: counter(step, decimal-leading-zero);
}

.steps h3 {
  margin-bottom: 8px;
}

.steps p:last-child {
  margin-bottom: 0;
}

.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  background: var(--white);
}

.marigold-band .outcome:nth-child(2) {
  background: var(--coral);
}

.resource-card .meta,
.source-note,
.reviewed {
  color: rgba(37, 31, 61, 0.72);
  font-size: 14px;
}

.resource-card .text-link {
  margin-top: auto;
  align-self: flex-start;
}

.resource-group + .resource-group {
  margin-top: 72px;
}

.source-note {
  max-width: 760px;
  padding: 18px 20px;
  border-left: 6px solid var(--coral);
  background: var(--white);
}

.notice {
  padding: 24px 28px;
  border: 2px solid var(--ink);
  background: var(--marigold);
}

.notice strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: 24px;
}

.notice p:last-child {
  margin-bottom: 0;
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 76px;
  align-items: center;
}

.bio-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--ink);
  object-fit: cover;
  object-position: 50% 24%;
  box-shadow: 14px 14px 0 var(--mint);
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 42px;
  border-top: 2px solid currentColor;
}

.credential {
  padding: 24px 0;
  border-bottom: 2px solid currentColor;
}

.credential strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 22px;
}

.credential p {
  margin-bottom: 0;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

label {
  font-size: 15px;
  font-weight: 700;
}

.field-help {
  display: block;
  color: rgba(37, 31, 61, 0.76);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 13px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 14px;
}

.success-panel {
  padding: 44px;
  border: 2px solid var(--ink);
  background: var(--mint);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.cta-inner {
  width: var(--page);
  margin: 0 auto;
  padding: 95px 0 104px;
}

.cta-inner h2 {
  max-width: 850px;
}

.cta-inner p {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
}

.footer {
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: flex;
  width: var(--page);
  margin: 0 auto;
  padding: 38px 0 44px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.footer p,
.footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-credit {
  display: flex;
  width: var(--page);
  margin: 0 auto;
  padding: 0 0 30px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  font-size: 12px;
}

.footer-credit img {
  display: block;
  width: 112px;
  height: auto;
}

@media (max-width: 960px) {
  :root {
    --page: min(100% - 36px, 760px);
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .page-hero-inner,
  .section-heading,
  .two-column,
  .bio-grid,
  .inquiry-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-inner,
  .section-heading,
  .two-column,
  .bio-grid,
  .inquiry-layout {
    gap: 42px;
  }

  .page-hero-inner {
    padding: 64px 0 78px;
  }

  .hero-art {
    max-width: 620px;
  }

  .outcome-grid,
  .audience-grid,
  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 88px;
  }

  body {
    font-size: 17px;
  }

  .nav {
    min-height: 76px;
  }

  .brand {
    font-size: 19px;
  }

  .brand span {
    display: none;
  }

  .page-hero-inner {
    min-height: auto;
    padding: 52px 0 68px;
  }

  h1 {
    font-size: clamp(45px, 13vw, 64px);
  }

  h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-art img,
  .hero-art.cover img {
    height: 440px;
  }

  .hero-shape {
    min-height: 320px;
  }

  .section {
    padding: 74px 0;
  }

  .section-compact {
    padding: 54px 0;
  }

  .outcome-grid,
  .audience-grid,
  .resource-grid,
  .credentials,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .experience {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .steps li {
    grid-template-columns: 52px 1fr;
    gap: 18px;
  }

  .steps li::before {
    font-size: 36px;
  }

  .field-wide,
  .form-note {
    grid-column: auto;
  }

  .cta-inner {
    padding: 78px 0 86px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
