:root {
  --paper: #f7f2e8;
  --paper-deep: #eee6d7;
  --ink: #17151b;
  --muted: #625e66;
  --indigo: #30246b;
  --indigo-dark: #21184e;
  --violet: #6654cf;
  --coral: #ff735f;
  --yellow: #f4cd58;
  --teal: #49b8a8;
  --white: #fffdf8;
  --line: rgba(23, 21, 27, .17);
  --shell: 1200px;
  --header-height: 82px;
  --shadow: 0 24px 60px rgba(31, 22, 65, .14);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(247, 242, 232, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark,
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: .97rem;
  font-weight: 700;
  line-height: .88;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  display: inline-block;
}

.nav-menu,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-menu {
  gap: 18px;
}

.nav-links {
  gap: clamp(14px, 1.7vw, 27px);
}

.nav-links a {
  position: relative;
  color: #3f3b43;
  font-size: .74rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--coral);
  content: "";
  transition: transform .2s;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform .2s;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.button-join {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--ink);
  cursor: pointer;
}

.button-join:hover {
  border-color: #ff8a78;
  background: #ff8a78;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.team {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 30px;
}

.team-card {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.team-photo {
  display: block;
  width: 100%;
  height: 400px;
  margin-bottom: 26px;
  border-radius: 4px;
  background: #ddd3f1;
  object-fit: cover;
  object-position: center 25%;
}

.team-name {
  margin-bottom: 4px;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.team-role {
  margin-bottom: 14px;
  color: var(--indigo);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.team-bio {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .94rem;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--indigo);
  color: white;
}

.contact-shape {
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 600px;
  height: 600px;
  border: 100px solid rgba(73, 184, 168, .18);
  border-radius: 50%;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr .75fr;
  align-items: start;
  gap: clamp(30px, 5vw, 60px);
  margin-top: clamp(40px, 5vw, 60px);
}

.contact-layout[hidden] {
  display: none !important;
}

/* !important so the hide always beats .contact-layout's display: grid */
.contact-copy {
  position: relative;
}

.contact-copy h2 {
  font-size: clamp(3.8rem, 6.5vw, 6.8rem);
}

.contact-copy>p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 35px;
  color: #d2cce6;
  font-size: 1.1rem;
}

/* Direct Reachout Channels */
.contact-direct-channels {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-direct-label {
  color: #c4bcd8;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-direct-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.direct-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all .2s ease;
}

.direct-link-chip:hover {
  background: rgba(255, 255, 255, .18);
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.direct-icon {
  flex-shrink: 0;
  stroke: currentColor;
}

/* Modal Direct Reachout */
.modal-direct-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -10px 0 24px;
}

.modal-direct-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper-deep);
  border: 1px solid rgba(23, 21, 27, .12);
  color: var(--ink);
  text-decoration: none;
  transition: all .2s ease;
}

.modal-direct-chip:hover {
  background: #ffffff;
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(23, 21, 27, .1);
}

.modal-direct-icon {
  flex-shrink: 0;
  stroke: currentColor;
}

/* Footer Contact Links with Icons */
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d5d1d7;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-contact-link:hover {
  color: var(--coral);
  transform: translateX(2px);
}

.footer-icon {
  flex-shrink: 0;
  stroke: currentColor;
}

.inquiry-card {
  padding: 38px;
  transform: rotate(1.5deg);
  border-radius: 8px 60px 8px 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.card-kicker {
  color: var(--coral);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.inquiry-card h3 {
  margin-bottom: 26px;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
}

/* Presentation request form */
.presentation-card {
  padding: clamp(28px, 3.5vw, 42px);
  border-radius: 8px 8px 60px 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.presentation-card h3 {
  margin: 6px 0 28px;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.presentation-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
}

.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

.presentation-form label {
  margin-bottom: 8px;
  color: var(--indigo);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.presentation-form .req {
  color: var(--coral);
}

.presentation-form input,
.presentation-form select,
.presentation-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 2px solid #aaa3af;
  border-radius: 7px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.presentation-form textarea {
  min-height: 120px;
  resize: vertical;
}

.presentation-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2330246b' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 42px;
  cursor: pointer;
}

.presentation-form input:hover,
.presentation-form select:hover,
.presentation-form textarea:hover {
  border-color: var(--indigo);
}

.presentation-form input:focus-visible,
.presentation-form select:focus-visible,
.presentation-form textarea:focus-visible {
  border-color: var(--indigo);
  outline: 3px solid rgba(255, 115, 95, .45);
  outline-offset: 2px;
}

.presentation-form input:user-invalid,
.presentation-form select:user-invalid,
.presentation-form textarea:user-invalid {
  border-color: #a73131;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.form-footer .button {
  cursor: pointer;
}

.form-footer .button:disabled {
  transform: none;
  opacity: .65;
  cursor: wait;
  box-shadow: none;
}

.form-required-note {
  margin: 0;
  color: #57525f;
  font-size: .82rem;
  font-weight: 700;
}

.form-required-note span {
  color: var(--coral);
}

.form-status {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0 0;
  padding: 14px 18px;
  border-radius: 8px;
  border: 2px solid;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.45;
}

.form-status[hidden] {
  display: none;
}

.form-status-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 900;
  color: white;
}

.form-status-success {
  border-color: #1f7a54;
  background: #eafaf1;
  color: #14603f;
}

.form-status-success .form-status-icon {
  background: #1f7a54;
}

.form-status-error {
  border-color: #a73131;
  background: #fdecec;
  color: #8a2020;
}

.form-status-error .form-status-icon {
  background: #a73131;
}

/* Grouped form sections */
.form-section {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.form-section+.form-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.section-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 20px;
  padding: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.section-num {
  display: grid;
  place-items: center;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--paper);
  font-family: Inter, sans-serif;
  font-size: .85rem;
  font-weight: 900;
}

.field-hint {
  margin: 7px 0 0;
  color: #57525f;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

/* Checkbox group */
.checkbox-group {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.checkbox-group>legend {
  margin-bottom: 12px;
  padding: 0;
  color: var(--indigo);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.presentation-form .checkbox-option {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 12px 14px;
  border: 2px solid #cfc9d5;
  border-radius: 7px;
  background: white;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
  cursor: pointer;
}

.checkbox-option:hover {
  border-color: var(--indigo);
}

.checkbox-option:focus-within {
  border-color: var(--indigo);
  outline: 3px solid rgba(255, 115, 95, .45);
  outline-offset: 2px;
}

.checkbox-option input {
  flex: none;
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--indigo);
  cursor: pointer;
}

.checkbox-option:has(input:checked) {
  border-color: var(--indigo);
  background: #f2effb;
}

.inquiry-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inquiry-card li {
  display: flex;
  padding: 13px 0;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.inquiry-card li span {
  color: var(--indigo);
  font-size: .65rem;
  font-weight: 900;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font-weight: 800;
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

/* Secondary "ghost" button for the dark CTA section */
.button-ghost-light {
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
  color: white;
  cursor: pointer;
}

.button-ghost-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
}

/* Contact modal */
.signup-dialog.contact-dialog h2 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 5vw, 3.6rem);
}

/* Taller form than the signup modal — let the card scroll internally on any viewport. */
.contact-dialog .signup-dialog-panel {
  min-height: 0;
  max-height: calc(100dvh - 32px);
  overflow: hidden auto;
  overscroll-behavior: contain;
}

.contact-dialog .signup-dialog-panel::after {
  display: none;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field label {
  color: var(--indigo);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-field .req {
  color: var(--coral);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 2px solid #aaa3af;
  border-radius: 7px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.contact-field textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-field select {
  padding-right: 42px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2330246b' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
  border-color: var(--indigo);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--indigo);
  outline: 3px solid rgba(255, 115, 95, .45);
  outline-offset: 2px;
}

.contact-field :user-invalid {
  border-color: #a73131;
}

.contact-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 4px;
}

.contact-form-footer .button {
  cursor: pointer;
}

.contact-form-footer .button:disabled {
  transform: none;
  opacity: .65;
  cursor: wait;
  box-shadow: none;
}

.contact-required-note {
  margin: 0;
  color: var(--muted);
  font-size: .74rem;
}

.site-footer {
  padding: 65px 0 25px;
  background: var(--ink);
  color: #aaa5ad;
}

.footer-grid {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 1.3fr 1fr .7fr;
  gap: 50px;
}

.footer-brand {
  color: white;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-grid p {
  max-width: 280px;
  margin: 9px 0 0;
  font-size: .8rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.footer-links a,
.footer-contact a {
  color: #d5d1d7;
  font-size: .78rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  border-top: 1px solid #3a373c;
  font-size: .68rem;
}

.footer-bottom p {
  margin: 0;
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(4rem, 7.7vw, 7.7rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
}

h3 {
  line-height: 1.15;
}

em {
  font-weight: 400;
  color: var(--violet);
}

.eyebrow {
  margin-bottom: 23px;
  color: var(--indigo);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #c9bfff;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 22px;
  border: 2px solid var(--indigo);
  border-radius: 7px;
  background: var(--indigo);
  color: white;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--indigo-dark);
  box-shadow: 0 10px 24px rgba(48, 36, 107, .2);
}

.button-small {
  min-height: 46px;
  padding: 10px 17px;
  font-size: .76rem;
}

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

.button-coral:hover {
  background: #ff8a78;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  color: var(--indigo);
  font-size: .9rem;
  font-weight: 900;
  text-underline-offset: 5px;
}

.text-link-light {
  color: white;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(247, 242, 232, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: .97rem;
  font-weight: 700;
  line-height: .88;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  transform: rotate(-6deg);
  border-radius: 50% 50% 43% 57%;
  background: var(--indigo);
  color: var(--paper);
  font-size: 1.15rem;
}

.nav-menu,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-menu {
  gap: 18px;
}

.nav-links {
  gap: clamp(14px, 1.7vw, 27px);
}

.nav-links a {
  position: relative;
  color: #3f3b43;
  font-size: .74rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--coral);
  content: "";
  transition: transform .2s;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
  transition: transform .2s;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.button-join {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--ink);
  cursor: pointer;
}

.button-join:hover {
  border-color: #ff8a78;
  background: #ff8a78;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 7vw, 105px) 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.highlight {
  position: relative;
  z-index: 0;
  font-style: italic;
  color: var(--indigo);
  white-space: nowrap;
}

.highlight::after {
  position: absolute;
  z-index: -1;
  right: -.06em;
  bottom: .02em;
  left: -.02em;
  height: .18em;
  transform: rotate(-1deg);
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.hero-art {
  position: relative;
  min-height: 560px;
}

.conversation-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 27px;
  box-shadow: var(--shadow);
}

.conversation-card strong {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 2.7vw, 2.55rem);
  font-weight: 500;
  line-height: 1.05;
}

.conversation-label {
  margin-bottom: 10px;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.card-one {
  top: 24px;
  right: 14px;
  width: 54%;
  aspect-ratio: 1.2;
  transform: rotate(5deg);
  border-radius: 45% 45% 8px 45%;
  background: var(--coral);
}

.card-two {
  top: 190px;
  left: 0;
  width: 63%;
  aspect-ratio: 1.18;
  transform: rotate(-4deg);
  border: 2px solid var(--indigo);
  border-radius: 8px 50% 50%;
  background: var(--white);
  color: var(--indigo);
  text-align: center;
}

.card-two strong {
  font-family: inherit;
  font-size: clamp(1.3rem, 2.4vw, 2.2rem);
  font-weight: 950;
  letter-spacing: .03em;
}

.spark {
  color: var(--coral);
  font-size: 1.5rem;
}

.versus {
  margin: 2px 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-style: italic;
}

.card-three {
  right: 5px;
  bottom: 10px;
  width: 52%;
  aspect-ratio: 1.3;
  transform: rotate(3deg);
  border-radius: 50% 8px 50% 50%;
  background: var(--indigo);
  color: white;
}

.hero-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-line path {
  fill: none;
  stroke: var(--teal);
  stroke-dasharray: 7 10;
  stroke-linecap: round;
  stroke-width: 3;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .55;
}

.hero-orb-one {
  top: 10%;
  left: -120px;
  width: 260px;
  height: 260px;
  background: #eadffd;
}

.hero-orb-two {
  right: -130px;
  bottom: 0;
  width: 310px;
  height: 310px;
  background: #f6dca9;
}

.intro {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.intro-layout {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.4fr) minmax(300px, .75fr);
  align-items: start;
  gap: clamp(28px, 5vw, 75px);
}

.intro-index {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--indigo);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}

.vertical-rule {
  width: 1px;
  flex: 1;
  background: var(--line);
}

.intro-heading h2 {
  font-size: clamp(3.3rem, 5.5vw, 5.7rem);
}

.intro-heading em {
  display: block;
}

.intro-copy {
  position: relative;
  padding-top: 70px;
}

.intro-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-copy p:last-child {
  color: var(--ink);
  font-weight: 700;
}

.quote-mark {
  position: absolute;
  top: -25px;
  left: -18px;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
}

/* Problem: research showing why microaggressions matter */
.problem {
  position: relative;
  overflow: hidden;
  background: var(--indigo);
  color: white;
}

.problem-shape {
  position: absolute;
  bottom: -230px;
  left: -170px;
  width: 520px;
  height: 520px;
  border: 74px solid rgba(244, 205, 88, .1);
  border-radius: 50%;
}

.problem-heading {
  position: relative;
  max-width: 730px;
  margin-bottom: 66px;
}

.problem-heading h2 {
  margin: 0 0 18px;
}

.problem-heading h2 em {
  color: var(--yellow);
}

.problem-heading>p {
  margin: 0;
  max-width: 620px;
  color: #d2cce8;
  font-size: 1.1rem;
}

.problem-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.problem-stat {
  min-width: 0;
  padding: 46px clamp(24px, 3.5vw, 48px) 42px 0;
}

.problem-stat+.problem-stat {
  padding-right: 0;
  padding-left: clamp(24px, 3.5vw, 48px);
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.problem-num {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 22px;
  color: var(--yellow);
  line-height: .8;
}

.problem-num strong {
  font-family: Georgia, serif;
  font-size: clamp(3.4rem, 5.5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.problem-num span {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.problem-stat p {
  margin: 0;
  color: #d8d3e6;
  font-size: 1rem;
  line-height: 1.5;
}

.problem-stat .cite {
  font-size: .62em;
  font-weight: 700;
  line-height: 0;
}

.problem-stat .cite a {
  color: var(--yellow);
  text-decoration: none;
}

.problem-stat .cite a:hover {
  text-decoration: underline;
}

.problem-sources {
  position: relative;
  max-width: 900px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: src;
}

.problem-sources li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 26px;
  color: #9a91bd;
  font-size: .74rem;
  line-height: 1.5;
  counter-increment: src;
}

.problem-sources li::before {
  content: counter(src);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}

.problem-sources a {
  color: #d2cce8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.problem-sources a:hover {
  color: white;
}

.problem-sources em {
  color: #b9b3cf;
  font-style: italic;
}

@media (max-width: 800px) {
  .problem-stats {
    grid-template-columns: 1fr;
  }

  .problem-stat,
  .problem-stat+.problem-stat {
    padding: 34px 0;
    border-left: 0;
  }

  .problem-stat+.problem-stat {
    border-top: 1px solid rgba(255, 255, 255, .2);
  }
}

.teach {
  overflow: hidden;
}

/* Foundation: curriculum partners, method, and peer review */
.foundation {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.foundation-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.foundation-copy h2 {
  margin: 0 0 22px;
}

.foundation-copy h2 em {
  color: var(--coral);
}

.foundation-copy>p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.foundation-partners {
  margin: 22px 0 0;
  color: var(--indigo);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.raven-title {
  margin: 0 0 6px;
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.raven-title span {
  color: var(--coral);
  letter-spacing: .05em;
}

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

.raven-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.raven-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--indigo);
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.raven-steps li:nth-child(1) .raven-letter {
  color: var(--indigo);
}

.raven-steps li:nth-child(2) .raven-letter {
  color: #e5533d;
}

.raven-steps li:nth-child(3) .raven-letter {
  color: #c47200;
}

.raven-steps li:nth-child(4) .raven-letter {
  color: #1b8a7c;
}

.raven-steps li:nth-child(5) .raven-letter {
  color: var(--violet);
}

.raven-steps strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.raven-steps li p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 800px) {
  .foundation-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .raven-steps li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .raven-letter {
    font-size: 2rem;
  }
}

.section-heading {
  max-width: 880px;
  margin-bottom: 65px;
}

.learning-path {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.learning-path::before {
  position: absolute;
  top: 35px;
  right: 16%;
  left: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--indigo) 0 8px, transparent 8px 16px);
  content: "";
}

.learning-stage {
  position: relative;
  z-index: 1;
  padding-right: clamp(20px, 4vw, 60px);
}

.stage-marker {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 38px;
  place-items: center;
  border: 2px solid var(--indigo);
  border-radius: 50%;
  background: var(--paper);
  color: var(--indigo);
  font-weight: 900;
}

.learning-stage:nth-child(2) .stage-marker {
  border-radius: 10px 50% 50%;
  background: var(--yellow);
}

.learning-stage:nth-child(3) .stage-marker {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--ink);
}

.stage-content {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.stage-content h3 {
  margin-bottom: 14px;
  font-family: Georgia, serif;
  font-size: 2.35rem;
  font-weight: 500;
}

.stage-content p {
  max-width: 300px;
  margin-bottom: 0;
  color: var(--muted);
}

.impact-section {
  position: relative;
  overflow: hidden;
  background: var(--indigo-dark);
  color: white;
}

.impact-shape {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 570px;
  height: 570px;
  border: 80px solid rgba(255, 115, 95, .12);
  border-radius: 50%;
}

.impact-intro {
  position: relative;
  display: grid;
  margin-bottom: 75px;
  grid-template-columns: 1.35fr .65fr;
  align-items: end;
  gap: 70px;
}

.impact-intro h2 {
  margin: 0;
}

.impact-intro h2 em {
  color: var(--coral);
}

.impact-intro>p {
  max-width: 440px;
  margin-bottom: 8px;
  color: #d2cce8;
  font-size: 1.05rem;
}

.impact-results {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.result {
  min-width: 0;
  padding: 54px clamp(24px, 4vw, 58px) 50px 0;
}

.result+.result {
  padding-right: 0;
  padding-left: clamp(24px, 4vw, 58px);
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.result-topline {
  display: flex;
  min-height: 142px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.result-number {
  color: #aca3cc;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.major-stat {
  display: grid;
  grid-template-columns: auto auto;
  color: var(--yellow);
  line-height: .75;
}

.major-stat strong {
  font-family: Georgia, serif;
  font-size: clamp(5.3rem, 8vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -.07em;
}

.major-stat>span {
  padding-top: 9px;
  font-size: 1.3rem;
  font-weight: 900;
}

.major-stat small {
  grid-column: 1 / -1;
  margin-top: 16px;
  color: #b9b3cf;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-align: right;
  text-transform: uppercase;
}

.result h3 {
  max-width: 450px;
  margin: 12px 0;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
}

.result-description {
  min-height: 55px;
  color: #c4bddb;
  font-size: .88rem;
}

.bar-group {
  margin: 42px 0 38px;
}

.bar-row {
  display: grid;
  margin: 15px 0;
  grid-template-columns: 54px minmax(0, 1fr) 53px;
  align-items: center;
  gap: 12px;
  font-size: .76rem;
}

.bar-row>strong {
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.bar-label {
  color: #bdb6d2;
  font-weight: 800;
}

.bar-track {
  height: 14px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .11);
}

.bar-fill {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: repeating-linear-gradient(-45deg, #9b91bd 0 5px, #b0a7ca 5px 10px);
}

.bar-fill.after {
  background: var(--coral);
}

.js .impact-section:not(.is-visible) .bar-fill {
  width: 0;
}

.js .impact-section.is-visible .bar-fill {
  width: var(--value);
  transition: width 1.15s cubic-bezier(.2, .8, .2, 1);
}

.result-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.result-foot div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.result-foot span {
  color: #aaa3c2;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.result-foot strong {
  font-size: .84rem;
}

.result-foot .change {
  grid-column: 1 / -1;
  margin-top: 7px;
  padding: 18px 20px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(244, 205, 88, .55);
  border-radius: 6px;
}

.result-foot .change span {
  color: var(--yellow);
}

.result-foot .change strong {
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.methodology {
  max-width: 960px;
  margin: 35px 0 0;
  color: #ada6c3;
  font-size: .74rem;
}

.methodology strong {
  color: white;
}

/* Reach: scale + schools onboarded (lives inside the impact section) */
.reach {
  position: relative;
  margin-top: 62px;
  padding-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.reach-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}

.reach-stat {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reach-num {
  display: flex;
  align-items: flex-start;
  color: var(--yellow);
  line-height: .75;
}

.reach-num strong {
  font-family: Georgia, serif;
  font-size: clamp(3.7rem, 6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -.05em;
}

.reach-plus {
  padding-top: 8px;
  font-size: 1.55rem;
  font-weight: 900;
}

.reach-stat small {
  color: #b9b3cf;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reach-schools .eyebrow {
  margin-bottom: 28px;
}

.school-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.school {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding: 20px 26px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.school strong {
  color: white;
  font-family: Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
}

.school span {
  color: #aca3cc;
  font-size: .8rem;
  font-weight: 700;
}

@media (max-width: 800px) {
  .reach-band {
    gap: 20px;
  }

  .school-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .reach-band {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 54px;
  }

  .school-list {
    grid-template-columns: 1fr;
  }

  .school {
    padding-right: 0;
  }
}

.experience-heading {
  display: grid;
  margin-bottom: 65px;
  grid-template-columns: .45fr 1.55fr;
  gap: 50px;
}

.experience-heading h2 {
  margin: 0;
}

.experience-heading h2 span {
  color: var(--indigo);
  font-style: italic;
}

.experience-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 25px;
}

.experience-feature {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 60px);
  border-radius: 50% 50% 8px 8px;
  background: var(--yellow);
}

.feature-icon {
  align-self: center;
  color: var(--indigo);
  font-size: 6rem;
  line-height: 1;
}

.experience-feature h3,
.experience-wide h3 {
  margin: 8px 0;
  font-family: Georgia, serif;
  font-size: 2.6rem;
  font-weight: 500;
}

.experience-feature p,
.experience-wide p {
  max-width: 490px;
  margin: 0;
}

.item-number {
  color: var(--indigo);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.experience-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.experience-item {
  min-height: 410px;
  padding: 35px 27px;
  border: 2px solid var(--indigo);
  border-radius: 8px;
}

.experience-item h3 {
  margin: 70px 0 15px;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.experience-item p {
  color: var(--muted);
}

.accent-item {
  transform: translateY(42px);
  border: 0;
  border-radius: 8px 8px 50% 50%;
  background: var(--teal);
}

.accent-item p {
  color: var(--ink);
}

.experience-wide {
  display: grid;
  min-height: 260px;
  padding: 45px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  border-radius: 8px;
  background: var(--indigo);
  color: white;
}

.experience-wide .item-number {
  color: var(--yellow);
}

.response-graphic {
  display: flex;
  justify-content: center;
}

.response-graphic span {
  display: grid;
  width: 120px;
  height: 120px;
  margin-left: -15px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.response-graphic span:nth-child(2) {
  background: var(--coral);
  color: var(--ink);
}

.workshops {
  background: var(--paper-deep);
}

.workshop-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 10vw, 140px);
}

.workshop-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.workshop-copy>p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 32px;
  color: var(--muted);
}

.workshop-details {
  margin: 0;
  border-top: 1px solid var(--line);
}

.workshop-details>div {
  display: grid;
  padding: 29px 0;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.workshop-details dt {
  color: var(--indigo);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.workshop-details dd {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.3;
}

.coming-soon {
  display: inline-block;
  padding: 7px 11px;
  border: 1px dashed #928b91;
  border-radius: 4px;
  color: var(--muted);
  font-family: inherit;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: clamp(50px, 9vw, 125px);
}

.photo-placeholder {
  position: relative;
  display: flex;
  min-height: 590px;
  overflow: hidden;
  align-items: flex-end;
  padding: 34px;
  border-radius: 48% 48% 8px 8px;
  background: #ded5f0;
}

.photo-placeholder::before {
  position: absolute;
  top: 14%;
  left: 14%;
  width: 72%;
  aspect-ratio: 1;
  border: 2px solid var(--indigo);
  border-radius: 50%;
  content: "";
}

.photo-placeholder p {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 8px 13px;
  border-radius: 4px;
  background: var(--white);
  color: var(--indigo);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.photo-abstract {
  position: absolute;
  inset: 0;
}

.photo-abstract span {
  position: absolute;
  bottom: 12%;
  width: 32%;
  height: 50%;
  border-radius: 50% 50% 12px 12px;
  background: var(--indigo);
}

.photo-abstract span:nth-child(1) {
  left: 12%;
  transform: rotate(-7deg);
  background: var(--coral);
}

.photo-abstract span:nth-child(2) {
  left: 36%;
  z-index: 1;
  height: 60%;
}

.photo-abstract span:nth-child(3) {
  right: 10%;
  transform: rotate(8deg);
  background: var(--teal);
}

.about-copy h2 em {
  display: block;
}

.about-copy>p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.team {
  border-top: 1px solid var(--line);
  background: var(--white);
}

/* Centered to match the symmetric card grid below it. */
.team-heading {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
}

/* Hairline rules flanking the eyebrow, echoing the section dividers. */
.team-heading .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 16px;
}

.team-heading .eyebrow::before,
.team-heading .eyebrow::after {
  content: "";
  width: clamp(26px, 6vw, 62px);
  height: 1px;
  background: var(--line);
}

.team-heading h2 {
  margin: 0 0 22px;
  font-size: clamp(2.9rem, 4.9vw, 4.8rem);
}

.team-heading h2 em {
  color: var(--indigo);
  font-style: italic;
}

.team-heading>p {
  max-width: 30ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Six columns so each card spans 2: row 1 holds the lead centered, row 2 the
   three vice presidents, row 3 the two directors centered as a pair. */
.team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.team-card--lead {
  grid-row: 1;
  grid-column: 3 / span 2;
}

.team-card--vp {
  grid-row: 2;
}

.team-card--vp:nth-child(2) {
  grid-column: 1 / span 2;
}

.team-card--vp:nth-child(3) {
  grid-column: 3 / span 2;
}

.team-card--vp:nth-child(4) {
  grid-column: 5 / span 2;
}

.team-card--director {
  grid-row: 3;
}

.team-card--director:nth-child(5) {
  grid-column: 2 / span 2;
}

.team-card--director:nth-child(6) {
  grid-column: 4 / span 2;
}

.team-member {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  background: var(--shade);
}

.team-name {
  margin: 0 0 4px 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.team-role {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
  color: var(--muted);
}


.contact {
  position: relative;
  overflow: hidden;
  background: var(--indigo);
  color: white;
}

.contact-shape {
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 600px;
  height: 600px;
  border: 100px solid rgba(73, 184, 168, .18);
  border-radius: 50%;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: clamp(55px, 10vw, 130px);
}

.contact-copy h2 {
  font-size: clamp(3.8rem, 6.5vw, 6.8rem);
}

.contact-copy>p:not(.eyebrow, .placeholder-notice) {
  max-width: 650px;
  margin-bottom: 35px;
  color: #d2cce6;
  font-size: 1.1rem;
}

.placeholder-notice {
  margin: 20px 0 0;
  color: var(--yellow);
  font-size: .85rem;
  font-weight: 700;
}

.inquiry-card {
  padding: 38px;
  transform: rotate(1.5deg);
  border-radius: 8px 60px 8px 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.card-kicker {
  color: var(--coral);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.inquiry-card h3 {
  margin-bottom: 26px;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.inquiry-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.inquiry-card li {
  display: flex;
  padding: 13px 0;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.inquiry-card li span {
  color: var(--indigo);
  font-size: .65rem;
  font-weight: 900;
}

.signup-callout {
  position: relative;
  overflow: hidden;
  padding: clamp(75px, 9vw, 125px) 0;
  background: var(--yellow);
}

.signup-callout-shape {
  position: absolute;
  top: -150px;
  left: -100px;
  width: 390px;
  height: 390px;
  border: 65px solid rgba(48, 36, 107, .1);
  border-radius: 50%;
}

.signup-callout-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: clamp(45px, 9vw, 120px);
}

.signup-callout h2 {
  margin-bottom: 0;
}

.signup-callout h2 em {
  color: var(--indigo);
}

.signup-callout-copy p {
  max-width: 500px;
  margin-bottom: 28px;
  font-size: 1.06rem;
}

.signup-dialog {
  width: min(calc(100% - 32px), 740px);
  max-height: calc(100dvh - 32px);
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 12px 90px 12px 12px;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(17, 12, 42, .35);
}

.signup-dialog::backdrop {
  background: rgba(23, 21, 27, .72);
  backdrop-filter: blur(5px);
}

.signup-dialog-panel {
  position: relative;
  z-index: 2;
  min-height: 100%;
  padding: 54px;
  background: var(--paper);
  border-radius: 10px 88px 10px 10px;
  overflow-y: auto;
}

.signup-dialog,
.signup-dialog-panel {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.signup-dialog::-webkit-scrollbar,
.signup-dialog-panel::-webkit-scrollbar,
.contact-dialog::-webkit-scrollbar,
.contact-dialog .signup-dialog-panel::-webkit-scrollbar {
  display: none !important;
}

.signup-dialog-panel::after {
  position: absolute;
  z-index: 0;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 55px solid rgba(255, 115, 95, .18);
  border-radius: 50%;
  content: "";
}

.signup-dialog-content {
  position: relative;
  z-index: 1;
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 40px;
  right: 46px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
}

.dialog-close:hover {
  background: var(--paper-deep);
}

.dialog-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 40px;
  place-items: center;
  transform: rotate(-6deg);
  border-radius: 50% 50% 43% 57%;
  background: var(--indigo);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
}

.signup-dialog h2 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 7vw, 5.2rem);
}

.signup-dialog-content>p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.02rem;
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--indigo);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signup-field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.signup-field-row input {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 2px solid #aaa3af;
  border-radius: 7px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.signup-field-row input:hover {
  border-color: var(--indigo);
}

.signup-field-row input:focus {
  border-color: var(--indigo);
  outline: 3px solid rgba(255, 115, 95, .45);
  outline-offset: 2px;
}

.signup-field-row input:invalid:not(:placeholder-shown) {
  border-color: #a73131;
}

.signup-field-row .button {
  cursor: pointer;
}

.signup-field-row .button:disabled {
  transform: none;
  opacity: .65;
  cursor: wait;
  box-shadow: none;
}

.signup-privacy {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: .72rem;
}

.signup-error {
  margin: 16px 0 0;
  padding: 11px 13px;
  border-left: 4px solid #a73131;
  background: #f9e8e4;
  color: #741e1e;
  font-size: .82rem;
  font-weight: 700;
}

.signup-success {
  display: flex;
  min-height: 150px;
  padding: 28px;
  align-items: center;
  gap: 18px;
  border: 2px solid var(--teal);
  border-radius: 8px;
  background: #e7f5f1;
}

.signup-success[hidden] {
  display: none;
}

.signup-success span {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  font-weight: 900;
}

.signup-success p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  padding: 65px 0 25px;
  background: var(--ink);
  color: #aaa5ad;
}

.footer-grid {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 1.3fr 1fr .7fr;
  gap: 50px;
}

.footer-brand {
  color: white;
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-grid p {
  max-width: 280px;
  margin: 9px 0 0;
  font-size: .8rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.footer-links a,
.footer-contact a {
  color: #d5d1d7;
  font-size: .78rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  border-top: 1px solid #3a373c;
  font-size: .68rem;
}

.footer-bottom p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

@media (max-width: 1180px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

  .menu-toggle[aria-expanded="true"] .menu-line:first-of-type {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-line:last-of-type {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 30px 24px 40px;
    align-items: stretch;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(30, 20, 60, .1);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, serif;
    font-size: 1.45rem;
    font-weight: 500;
  }

  .nav-menu .button {
    margin-top: 10px;
  }

  .nav-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

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

  .hero-grid {
    gap: 35px;
  }

  .hero-art {
    min-height: 500px;
  }

  .intro-layout {
    grid-template-columns: 50px 1.2fr .8fr;
    gap: 35px;
  }

  .impact-intro {
    gap: 40px;
  }

  .experience-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .experience-pair {
    grid-template-columns: 1fr;
  }

  .experience-item {
    min-height: 260px;
  }

  .experience-item h3 {
    margin-top: 40px;
  }

  .accent-item {
    transform: none;
  }

}

@media (max-width: 800px) {
  .shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .hero-grid,
  .intro-layout,
  .impact-intro,
  .workshop-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-art {
    width: min(100%, 540px);
    min-height: 520px;
    margin: 0 auto;
  }

  .intro-index {
    display: none;
  }

  .intro-copy {
    padding-top: 15px;
  }

  .quote-mark {
    top: -45px;
    left: auto;
    right: 0;
  }

  .learning-path {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .learning-path::before {
    top: 35px;
    bottom: 35px;
    left: 35px;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--indigo) 0 8px, transparent 8px 16px);
  }

  .learning-stage {
    display: grid;
    padding: 0 0 38px;
    grid-template-columns: 72px 1fr;
    gap: 28px;
  }

  .stage-marker {
    margin: 0;
  }

  .stage-content {
    padding: 5px 0 0;
    border: 0;
  }

  .impact-intro {
    align-items: start;
  }

  .impact-intro>p {
    max-width: 600px;
  }

  .impact-results {
    grid-template-columns: 1fr;
  }

  .result,
  .result+.result {
    padding: 45px 0;
    border-left: 0;
  }

  .result+.result {
    border-top: 1px solid rgba(255, 255, 255, .2);
  }

  .experience-layout {
    grid-template-columns: 1fr;
  }

  .experience-feature {
    min-height: 360px;
  }

  .experience-wide {
    grid-template-columns: 1fr;
  }

  .workshop-copy {
    position: static;
  }

  .about-copy {
    grid-row: 1;
  }

  .photo-placeholder {
    min-height: 500px;
  }

  .team-heading {
    margin-bottom: 50px;
  }

  /* Two cards per row: four columns, each card spanning 2. */
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .team-card--lead {
    grid-column: 2 / span 2;
  }

  .team-card--vp:nth-child(2) {
    grid-column: 1 / span 2;
  }

  .team-card--vp:nth-child(3) {
    grid-column: 3 / span 2;
  }

  .team-card--vp:nth-child(4) {
    grid-row: 3;
    grid-column: 2 / span 2;
  }

  .team-card--director {
    grid-row: 4;
  }

  .team-card--director:nth-child(5) {
    grid-column: 1 / span 2;
  }

  .team-card--director:nth-child(6) {
    grid-column: 3 / span 2;
  }

  .signup-callout-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand-logo {
    height: 44px;
  }

  .presentation-form .form-grid {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-footer .button {
    width: 100%;
  }

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5.1rem);
  }

  h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero .button-row,
  .contact .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero .button,
  .contact .button {
    width: 100%;
  }

  .hero .text-link,
  .contact .text-link {
    justify-content: center;
  }

  .hero-art {
    min-height: 430px;
  }

  .conversation-card {
    padding: 20px;
  }

  .card-one {
    right: 2px;
    width: 59%;
  }

  .card-two {
    top: 150px;
    width: 68%;
  }

  .card-three {
    right: 0;
    width: 57%;
  }

  .learning-stage {
    gap: 20px;
  }

  .stage-content h3 {
    font-size: 2rem;
  }

  .result-topline {
    min-height: 122px;
  }

  .major-stat strong {
    font-size: 5rem;
  }

  .bar-row {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 8px;
  }

  .result-foot {
    grid-template-columns: 1fr;
  }

  .result-foot .change {
    grid-column: auto;
  }

  .experience-pair {
    grid-template-columns: 1fr;
  }

  .experience-wide {
    padding: 30px 20px;
  }

  .response-graphic span {
    width: 90px;
    height: 90px;
    margin-left: -12px;
  }

  .workshop-details>div {
    grid-template-columns: 95px 1fr;
    gap: 12px;
  }

  .workshop-details dd {
    font-size: 1.1rem;
  }

  .photo-placeholder {
    min-height: 400px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card--lead,
  .team-card--vp,
  .team-card--vp:nth-child(2),
  .team-card--vp:nth-child(3),
  .team-card--vp:nth-child(4),
  .team-card--director,
  .team-card--director:nth-child(5),
  .team-card--director:nth-child(6) {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .team-photo {
    height: 380px;
  }

  .inquiry-card {
    padding: 30px 22px;
  }

  .signup-dialog {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 10px 48px 10px 10px;
  }

  .signup-dialog-panel {
    min-height: 0;
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    padding: 34px 20px 28px;
  }

  .dialog-close {
    top: 50px;
    right: 50px;
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
  }

  .dialog-mark {
    width: 44px;
    height: 44px;
    margin-bottom: 28px;
    font-size: 1.4rem;
  }

  .signup-dialog h2 {
    padding-right: 20px;
    font-size: 3.1rem;
  }

  .signup-field-row {
    grid-template-columns: 1fr;
  }

  .signup-field-row .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .js .impact-section .bar-fill {
    width: var(--value) !important;
  }
}