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

:root {
  --ink: #191713;
  --umber: #403b33;
  --oxblood: #8c3b2e;
  --oxblood-deep: #6e2c22;
  --stone: #d8d2c4;
  --stone-light: #e9e4d8;
  --paper: #f7f4ee;
  --paper-bright: #fdfcf9;
  --muted: #6e675c;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page-pad: clamp(24px, 4.45vw, 64px);
  --content-width: 1152px;
  --ease-out: 240ms ease-out;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font: 400 15px/1.6 var(--sans);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  border-radius: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 4px;
}

::selection {
  background: var(--stone);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform var(--ease-out);
}

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

.container {
  width: auto;
  max-width: var(--content-width);
  margin-right: var(--page-pad);
  margin-left: var(--page-pad);
}

.site-header {
  display: flex;
  min-height: 81px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px var(--page-pad);
  border-bottom: 1px solid var(--ink);
}

.wordmark {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  font-size: 14px;
  font-weight: 500;
}

.site-nav > a:not(.button),
.nav-link {
  padding: 7px 0 4px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.2;
  transition:
    border-color var(--ease-out),
    color var(--ease-out);
}

.site-nav > a:not(.button):hover,
.nav-link:hover {
  border-color: var(--oxblood);
  color: var(--oxblood);
}

.site-nav form {
  display: contents;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1;
  padding: 15px 26px;
  transition:
    background-color var(--ease-out),
    border-color var(--ease-out),
    color var(--ease-out);
}

.button:hover {
  border-color: var(--umber);
  background: var(--umber);
}

.button:active {
  border-color: #28251f;
  background: #28251f;
}

.button-small {
  min-height: 40px;
  padding: 11px 19px;
  font-size: 13px;
}

.eyebrow {
  margin: 0;
  color: var(--oxblood);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.hero {
  padding: clamp(64px, 8vw, 112px) 0 clamp(88px, 10vw, 132px);
}

.hero h1 {
  max-width: 18ch;
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.1vw, 74px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-lower {
  display: grid;
  max-width: 960px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  margin-top: 36px;
}

.hero-copy {
  max-width: 56ch;
  margin: 0;
  color: var(--umber);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  padding: 5px 0 2px;
  border-bottom: 1px solid currentcolor;
  color: var(--oxblood);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--ease-out);
}

.text-link:hover {
  color: var(--ink);
}

.section {
  padding: 0 0 clamp(96px, 9vw, 128px);
  scroll-margin-top: 32px;
}

.section-rule {
  padding-top: clamp(56px, 5vw, 72px);
  border-top: 1px solid var(--stone);
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  gap: 64px;
}

.section-intro h2,
.approach-heading h2,
.perspectives-heading h2 {
  max-width: 17ch;
  margin: -8px 0 0;
  font-family: var(--serif);
  font-size: clamp(36px, 3.45vw, 50px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.08;
  text-wrap: balance;
}

.section-intro-wide h2 {
  max-width: 23ch;
}

.three-up,
.audiences {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4.45vw, 64px);
  margin-top: 40px;
}

.step-number {
  margin: 0;
  color: var(--oxblood);
  font-family: var(--serif);
  font-size: 14px;
}

.principle h3,
.audience h3,
.steps h3 {
  margin: 24px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.006em;
  line-height: 1.2;
}

.principle h3,
.audience h3 {
  margin-top: 0;
}

.principle > p:last-child,
.audience > p,
.steps div > p {
  margin: 13px 0 0;
  color: var(--umber);
  line-height: 1.72;
}

.audience h3 {
  margin-top: 0;
}

.audience ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.audience li {
  padding: 11px 0;
  border-top: 1px solid var(--stone);
  font-size: 14px;
  line-height: 1.45;
}

.audience li:last-child {
  border-bottom: 1px solid var(--stone);
}

.approach-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(64px, 7vw, 100px);
}

.approach-heading h2 {
  margin-top: 20px;
}

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

.steps li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--stone);
}

.steps li:first-child {
  border-color: var(--ink);
}

.steps li:last-child {
  border-bottom: 1px solid var(--stone);
}

.steps h3 {
  margin: 0;
}

.steps div > p {
  max-width: 54ch;
  margin-top: 10px;
}

.quote-section {
  padding: 0 0 clamp(96px, 9vw, 128px);
}

.quote-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(64px, 7vw, 100px);
}

blockquote {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
  padding-left: 32px;
  border-left: 1px solid var(--ink);
}

blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 2.35vw, 34px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.008em;
  line-height: 1.37;
}

blockquote footer {
  margin-top: 17px;
  color: var(--oxblood);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.perspectives {
  padding-bottom: 112px;
}

.perspectives-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.perspectives-heading h2 {
  margin-top: 20px;
}

.availability {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
}

.perspective-card {
  display: grid;
  max-width: 760px;
  grid-template-columns: minmax(0, 1fr) 180px;
  column-gap: 48px;
  margin-top: 48px;
  padding: 30px;
  border: 1px solid var(--stone);
  background: var(--paper-bright);
  box-shadow: 0 2px 12px rgb(25 23 19 / 8%);
}

.card-meta,
.card-rule {
  grid-column: 1 / -1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.card-meta span:first-child {
  color: var(--oxblood);
}

.card-rule {
  height: 1px;
  margin-top: 15px;
  background: var(--ink);
}

.perspective-card h3 {
  margin: 25px 0 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.14;
}

.perspective-card > p {
  margin: 27px 0 0;
  color: var(--umber);
  font-size: 14px;
  line-height: 1.65;
}

.forthcoming {
  grid-column: 1 / -1;
  width: fit-content;
  margin-top: 32px;
  color: var(--oxblood);
  font-size: 13px;
  font-weight: 500;
}

.contact {
  padding: clamp(64px, 6vw, 84px) 0 74px;
  background: var(--ink);
  color: var(--paper);
  scroll-margin-top: 0;
}

.eyebrow-on-dark {
  color: #c89a8f;
}

.contact h2 {
  max-width: 34ch;
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.25vw, 46px);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.15;
  text-wrap: balance;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

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

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

.contact-email {
  border-bottom: 1px solid rgb(247 244 238 / 35%);
  color: rgb(247 244 238 / 65%);
  font-size: 13px;
  transition:
    border-color var(--ease-out),
    color var(--ease-out);
}

.contact-email:hover {
  border-color: var(--paper);
  color: var(--paper);
}

.site-footer {
  padding: 0 0 44px;
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgb(247 244 238 / 24%);
}

.wordmark-on-dark {
  font-size: 19px;
}

.footer-inner p {
  margin: 0;
  color: rgb(247 244 238 / 48%);
  font-size: 11px;
}

/* Private-preview login */
.login-page {
  min-height: 100vh;
}

.login-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding: 0 var(--page-pad);
}

.login-header {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
}

.login-status {
  color: var(--muted);
  font-size: 12px;
}

.login-grid {
  display: grid;
  width: min(100%, var(--content-width));
  flex: 1;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(72px, 10vw, 160px);
  padding: 80px 0;
}

.login-intro h1 {
  max-width: 11ch;
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.25vw, 72px);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.04;
  text-wrap: balance;
}

.login-intro > p:last-child {
  max-width: 50ch;
  margin: 27px 0 0;
  color: var(--umber);
  font-size: 16px;
  line-height: 1.7;
}

.login-form-wrap {
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.login-form {
  display: flex;
  flex-direction: column;
}

.login-form label {
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 500;
}

.login-form input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--stone);
  background: var(--paper-bright);
  color: var(--ink);
  font-size: 18px;
  padding: 10px 13px;
  transition: border-color var(--ease-out);
}

.login-form input:hover,
.login-form input:focus {
  border-color: var(--ink);
}

.login-form input:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 2px;
}

.login-button {
  width: 100%;
  margin-top: 18px;
}

.form-error {
  margin: 10px 0 -3px;
  color: var(--oxblood-deep);
  font-size: 12px;
  line-height: 1.45;
}

.login-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.login-footer {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--stone);
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    order: 2;
  }

  .site-nav .button {
    display: none;
  }

  .hero-lower,
  .section-intro,
  .approach-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-lower {
    align-items: start;
  }

  .section-intro h2 {
    margin-top: 0;
  }

  .three-up,
  .audiences {
    gap: 28px;
  }

  blockquote {
    grid-column: 1;
  }

  .login-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 64px;
  }
}

@media (max-width: 700px) {
  .site-header {
    gap: 20px;
    padding-top: 18px;
    padding-bottom: 15px;
  }

  .site-nav {
    width: auto;
    max-width: 100%;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
    font-size: 12px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

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

  .hero-lower {
    gap: 30px;
    margin-top: 28px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .three-up,
  .audiences {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 40px;
  }

  .section-intro {
    gap: 22px;
  }

  .section-intro h2,
  .approach-heading h2 {
    max-width: 19ch;
  }

  .approach-grid {
    gap: 50px;
  }

  .steps li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
  }

  blockquote {
    padding-left: 22px;
  }

  .perspectives-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .perspective-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .perspective-card > p {
    margin-top: 18px;
  }

  .contact-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .login-header {
    min-height: 78px;
  }

  .login-grid {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    gap: 56px;
    padding: 68px 0;
  }

  .login-intro h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .login-form-wrap {
    max-width: 480px;
  }
}

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

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