/* Small shared layout helpers; no CSS framework is required. */
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}

:root {
  font-family: "DM Sans", sans-serif;
  color: #14234b;
  background: #f8f9f5;
  font-synthesis: none;
  --ink: #14234b;
  --blue: #293d8a;
  --sky: #57add0;
  --muted: #586579;
  --line: #d7dedf;
  --serif: "Bricolage Grotesque Variable", sans-serif;
  --gutter: clamp(24px, 5.5vw, 88px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 105px;
}
body {
  margin: 0;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button:disabled {
  cursor: default;
}
:focus-visible {
  outline: 3px solid #357faa;
  outline-offset: 5px;
}
.fa-diagonal-up {
  transform: rotate(-45deg);
}
.fa-diagonal-down {
  transform: rotate(45deg);
}

@media (max-width: 1000px) {
  .fa-diagonal-up,
  .fa-diagonal-down {
    font-size: 14px;
    line-height: 1;
    transform-origin: center;
  }

  .menu-dialog nav a > .fa-diagonal-up {
    margin-left: auto;
    font-size: 18px;
  }
}
::selection {
  background: #c6e8f4;
  color: #14234b;
}
.shell {
  width: 100%;
  max-width: 1600px;
  padding-inline: var(--gutter);
  margin-inline: auto;
}
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-transform: uppercase;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #357e9b;
  margin-right: 8px;
  vertical-align: 2px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 52px;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  transition:
    background 0.2s,
    color 0.2s;
}
.button span {
  font-size: 21px;
  line-height: 1;
  transition: transform 0.25s;
}
.button:hover span {
  transform: translate(2px, -2px);
}
.button-blue {
  color: #fff;
  background: var(--blue);
}
.button-blue:hover {
  background: #192b70;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  min-height: 48px;
  border-bottom: 1px solid #8391a3;
}
.text-link span {
  font-size: 20px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px;
  background: #fff;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  height: 106px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 5px 20px #14234b04;
}
.header-inner {
  height: 100%;
  gap: 24px;
}
.logo-link {
  flex-shrink: 0;
}
.logo-link img {
  width: 78px;
  height: auto;
}
.desktop-nav {
  gap: clamp(24px, 3.2vw, 48px);
  margin-left: auto;
  margin-right: clamp(30px, 5vw, 75px);
}
.desktop-nav a {
  font-size: 14px;
  padding-block: 15px;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
}
.menu-toggle {
  display: none;
  background: transparent;
  padding: 12px;
  width: 48px;
  height: 48px;
}
.menu-toggle span {
  height: 1px;
  width: 24px;
  background: var(--ink);
  display: block;
  margin: 7px 0;
}
.header-actions {
  gap: 12px;
}
.hero {
  overflow-x: clip;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  column-gap: 36px;
  padding-top: 72px;
  position: relative;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(76px, 7.5vw, 116px);
  line-height: 0.97;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin-top: 27px;
}
.hero h1 em {
  color: var(--blue);
  font-weight: 400;
}
.hero-description {
  max-width: 410px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 30px;
}
.hero-actions {
  gap: 30px;
  margin-top: 28px;
}
.hero-art {
  height: 600px;
  position: relative;
  margin-top: 8px;
  min-width: 0;
}
.page-back {
  position: absolute;
  background: #daebef;
  inset: 80px -15px 40px 22px;
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 91%);
  transform: rotate(4deg);
  transform-origin: 0 100%;
}
.hero-photo {
  position: absolute;
  inset: 64px 12px 60px 0;
  background: #d2e1e5;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 94%, 0 100%);
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-position: 55% center;
}
.hero-photo figcaption {
  position: absolute;
  bottom: 48px;
  left: 25px;
  color: #fff;
  font-size: 13px;
  z-index: 1;
  text-shadow: 0 1px 8px #0008;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(transparent, #14234b60);
  pointer-events: none;
}
.hero-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.hero-connectors path {
  stroke: #5886a1;
  stroke-width: 1;
  stroke-dasharray: 4 5;
}
.hero-connectors circle {
  fill: #293d8a;
  stroke: #f8f9f5;
  stroke-width: 3;
}
.thought-prompt {
  position: absolute;
  font: italic 30px var(--serif);
  z-index: 2;
  background: #f8f9f5;
  padding: 5px 12px;
}
.prompt-why {
  top: 15px;
  left: 24px;
  transform: rotate(-9deg);
}
.prompt-what {
  top: 175px;
  right: -28px;
  transform: rotate(7deg);
}
.prompt-how {
  bottom: 50px;
  left: -55px;
  font-size: 25px;
  transform: rotate(-6deg);
}
.image-index {
  position: absolute;
  right: 24px;
  bottom: 25px;
  font-size: 10px;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.hero-bottom {
  grid-column: 1/-1;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding: 22px 0 28px;
  gap: 24px;
}
.scroll-cue {
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}
.scroll-cue > span {
  display: grid;
  place-items: center;
  border: 1px solid #d0d9de;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  font-size: 16px;
  color: var(--ink);
}
.brand-signature {
  font: italic 23px var(--serif);
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 88px;
  }
}
@media (max-width: 1100px) {
  .hero {
    column-gap: 20px;
    padding-top: 52px;
  }
  .hero h1 {
    font-size: clamp(70px, 8vw, 88px);
  }
  .hero-art {
    height: 560px;
  }
  .desktop-nav {
    margin-right: 12px;
    gap: 24px;
  }
  .prompt-what {
    right: -10px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-photo {
    inset: 64px 8px 60px 0;
  }
}
@media (max-width: 800px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .site-header {
    height: 90px;
  }
  .logo-link img {
    width: 66px;
  }
  .header-visit {
    min-height: 44px;
    padding: 12px 17px;
    gap: 18px;
  }
  .hero {
    padding-top: 44px;
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: clamp(60px, 8.5vw, 76px);
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-art {
    height: 490px;
    margin-top: 30px;
  }
  .hero-photo {
    inset: 70px 0 55px;
  }
  .prompt-how {
    left: -25px;
    font-size: 22px;
  }
  .prompt-what {
    font-size: 25px;
  }
  .page-back {
    right: -10px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .text-link {
    font-size: 13px;
    gap: 12px;
  }
  .hero-bottom {
    margin-top: 28px;
  }
}
@media (max-width: 600px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 36px;
  }
  .hero h1 {
    font-size: clamp(72px, 17vw, 100px);
    margin-top: 22px;
    line-height: 0.96;
  }
  .hero h1 br:first-child {
    display: none;
  }
  .hero h1 br:first-child:after {
    content: " ";
  }
  .hero-description {
    max-width: 420px;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.75;
  }
  .hero-actions {
    margin-top: 24px;
    gap: 22px;
  }
  .hero-art {
    height: 450px;
    margin: 34px 10px 0 14px;
  }
  .hero-photo {
    inset: 40px 0 56px;
  }
  .page-back {
    inset: 64px -10px 37px 8px;
  }
  .prompt-why {
    top: -3px;
    left: 15px;
    font-size: 27px;
  }
  .prompt-what {
    top: 116px;
    right: -23px;
  }
  .prompt-how {
    left: -28px;
    bottom: 43px;
    font-size: 24px;
  }
  .hero-bottom {
    margin-top: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-block: 20px;
  }
  .brand-signature {
    align-self: flex-end;
  }
  .image-index {
    font-size: 9px;
    right: 0;
    bottom: 16px;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

.section-space {
  padding-block: 110px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 58px;
}
h2 {
  font: 400 clamp(46px, 4.7vw, 72px) / 1.02 var(--serif);
  letter-spacing: -0.025em;
}
h2 em {
  font-weight: 400;
  color: var(--blue);
}
.section-heading .eyebrow {
  margin-bottom: 24px;
}
.section-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 355px;
  padding-bottom: 5px;
}
.body-copy {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.small-index {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #67748a;
}
.caption-note {
  display: block;
  font-size: 12px;
  margin-top: 18px;
  color: #627087;
}
.approach {
  background: #17294f;
  color: #f8f9f5;
  position: relative;
}
.story-shell {
  padding-block: 70px 32px;
}
.story-heading {
  margin-bottom: 30px;
}
.story-heading h2 {
  font-size: clamp(46px, 4vw, 62px);
}
.story-heading h2 em {
  color: #a9d4e4;
}
.story-heading .section-intro {
  color: #c0ccdc;
}
.light-label {
  color: #b8d4e1;
}
.story-animated {
  display: none;
  height: 365px;
  position: relative;
  max-width: 1050px;
  margin: auto;
}
.story-question {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 570px;
  transform: translateX(-50%);
  text-align: center;
  padding: 25px 20px;
}
.story-question > .eyebrow {
  font-size: 10px;
  color: #bed9e5;
}
.story-question > p {
  font: 400 58px/1.06 var(--serif);
  margin-top: 24px;
}
.story-question em {
  color: #acd9e9;
}
.question-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: #89bbce;
  border-style: solid;
}
.c1 {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}
.c2 {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}
.c3 {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}
.c4 {
  bottom: 0;
  right: 0;
  border-width: 0 1px 1px 0;
}
.evidence-board {
  position: absolute;
  inset: 92px 0 0;
}
.evidence-card {
  width: 220px;
  height: 158px;
  background: #eef4f1;
  color: var(--ink);
  padding: 20px 24px;
  position: absolute;
  top: 16px;
  left: 50%;
  border: 1px solid #d9e7e7;
  transform: translateX(-50%);
}
.evidence-observe {
  left: 18%;
  transform: translateX(-50%) rotate(-5deg);
}
.evidence-compare {
  top: 68px;
}
.evidence-ask {
  left: 82%;
  transform: translateX(-50%) rotate(5deg);
}
.evidence-number {
  font-size: 10px;
  color: #67748a;
  position: absolute;
  left: 20px;
  top: 18px;
}
.evidence-icon {
  font: 38px var(--serif);
  display: block;
  text-align: right;
  line-height: 1;
}
.evidence-card h3 {
  font: 32px var(--serif);
  margin-top: 8px;
}
.evidence-card p {
  font-size: 11px;
  margin-top: 4px;
  color: #586579;
}
.evidence-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: #9cd2e5;
  stroke-width: 1.5;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}
.connection-note {
  position: absolute;
  font: italic 21px var(--serif);
  color: #b9deec;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}
.note-one {
  top: 210px;
  left: 18%;
}
.note-two {
  top: 245px;
}
.note-three {
  top: 210px;
  left: 82%;
}
.story-reason {
  position: absolute;
  inset: -3px 0 0;
  text-align: center;
}
.reason-book {
  width: 240px;
  height: 108px;
  margin: 0 auto 13px;
  stroke: #a0d3e7;
  stroke-width: 1;
}
.book-left {
  fill: #94cde313;
}
.book-right {
  fill: #94cde32e;
}
.story-reason > p {
  font: 56px/1.04 var(--serif);
}
.story-reason em {
  color: #afd5e6;
}
.story-reason > span {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  color: #c0ccdc;
}
.story-track {
  display: none;
  position: relative;
  border-top: 1px solid #ffffff30;
  padding-top: 20px;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}
.story-track > span {
  font-size: 11px;
  color: #b1bed0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.story-track b {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
}
.story-track > span.active {
  color: #fff;
}
.story-progress {
  height: 2px;
  width: 100%;
  position: absolute;
  top: -1px;
  left: 0;
  background: #a8d8e8;
  transform-origin: left;
}
.story-caption {
  font-size: 10px;
  color: #aebcd0;
  letter-spacing: 0.14em;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.story-caption > span {
  letter-spacing: 0;
}
.story-static {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 54px;
  list-style: none;
  padding: 10px 0 20px;
}
.story-static li {
  padding-top: 25px;
  border-top: 1px solid #ffffff30;
}
.story-static .eyebrow {
  color: #b7dbe9;
  font-size: 11px;
}
.story-static h3 {
  font: 34px/1.12 var(--serif);
  margin-block: 16px;
}
.story-static li > p:last-child {
  font-size: 14px;
  line-height: 1.8;
  color: #c0ccdc;
}
.story-motion .story-animated {
  display: block;
}
.story-motion .story-track {
  display: flex;
}
.story-motion .story-static {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.pillars-layout {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 70px;
}
.pillar-top {
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.pillar-top h3 {
  font: 36px/1.1 var(--serif);
  letter-spacing: -0.02em;
}
.pillar-arrow {
  margin-left: auto;
  font-size: 28px;
}
.pillar-feature,
.pillar-small {
  border-top: 1px solid #bfcbd0;
  padding-top: 26px;
}
.pillar-feature > p,
.pillar-small > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 17px 0 0 33px;
  max-width: 420px;
}
.focus-photo {
  height: 320px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}
.focus-photo img {
  height: 100%;
  width: 100%;
  object-position: 50% 53%;
  transition: transform 0.7s;
}
.focus-frame {
  position: absolute;
  left: 28%;
  top: 22%;
  width: 44%;
  height: 52%;
  border: 1px solid #fff9;
  transition: transform 0.6s;
  box-shadow: 0 0 0 100vmax #14234b12;
}
.focus-frame:before,
.focus-frame:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
}
.focus-frame:before {
  top: -2px;
  left: -2px;
  border-bottom: 0;
  border-right: 0;
}
.focus-frame:after {
  bottom: -2px;
  right: -2px;
  border-top: 0;
  border-left: 0;
}
.focus-frame span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-shadow: 0 1px 4px #14234b;
}
.pillar-feature:hover .focus-photo img,
.pillar-feature:focus .focus-photo img {
  transform: scale(1.04);
}
.pillar-feature:hover .focus-frame,
.pillar-feature:focus .focus-frame {
  transform: scale(0.93);
}
.pillars-aside {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.pillar-small {
  flex: 1;
}
.pillar-small > p {
  max-width: 390px;
}
.pillar-graphic {
  width: 100%;
  height: 78px;
  margin-top: 20px;
  stroke: #609db8;
  stroke-width: 1.3;
}
.pillar-graphic circle {
  fill: #f8f9f5;
  stroke: #293d8a;
}
.direction path {
  stroke-dasharray: 850;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.7s;
}
.pillar-small:hover .direction path,
.pillar-small:focus .direction path {
  stroke-dashoffset: 80;
}
.diagram-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
}
.learning {
  background: #eaf1f4;
}
.learning-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 126px);
  align-items: center;
}
.learning-photo {
  position: relative;
  aspect-ratio: 4/5.35;
  max-height: 740px;
  overflow: hidden;
}
.learning-photo > img {
  width: 100%;
  height: 100%;
  object-position: 52% center;
}
.learning-photo figcaption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #f8f9f5;
  padding: 25px 28px;
}
.learning-photo figcaption > .eyebrow {
  font-size: 9px;
  display: block;
  margin-bottom: 16px;
}
.learning-photo figcaption > span:last-child {
  font: 38px/1.05 var(--serif);
}
.learning-photo figcaption em {
  color: var(--blue);
}
.learning-copy > .eyebrow {
  margin-bottom: 24px;
}
.learning-copy > .body-copy {
  margin-top: 25px;
  max-width: 400px;
  font-size: 15px;
}
.accordion {
  margin-top: 30px;
}
.accordion-item {
  border-top: 1px solid #becbd2;
}
.accordion-item:last-child {
  border-bottom: 1px solid #becbd2;
}
.accordion-item h3 > button {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 16px;
  background: transparent;
  color: var(--ink);
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
  min-height: 68px;
}
.accordion-item button > span {
  font-size: 10px;
  color: #64758b;
  font-weight: 400;
}
.accordion-item i {
  position: relative;
  margin-left: auto;
  width: 16px;
  flex-shrink: 0;
  height: 16px;
}
.accordion-item i:before,
.accordion-item i:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--blue);
}
.accordion-item i:after {
  transform: rotate(90deg);
  transition: transform 0.25s;
}
.accordion-item button[aria-expanded="true"] i:after {
  transform: rotate(0);
}
.accordion-panel p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  padding: 0 0 24px 30px;
  max-width: 420px;
}
.life-gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}
.life-image {
  overflow: hidden;
}
.life-image > img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
}
.life-gallery figure:hover img {
  transform: scale(1.035);
}
.life-collaboration .life-image {
  aspect-ratio: 1.06;
}
.life-concentration {
  padding-top: 92px;
}
.life-concentration .life-image {
  aspect-ratio: 0.72;
}
.life-discovery {
  padding-top: 36px;
}
.life-discovery .life-image {
  aspect-ratio: 0.95;
}
.life-gallery figcaption {
  margin-top: 20px;
}
.life-gallery figcaption > span {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #5c6d81;
}
.life-gallery figcaption > p {
  font: 25px/1.15 var(--serif);
  margin-top: 10px;
}
.thinking-section {
  background: #edf3ef;
  border-top: 1px solid #dce3de;
  border-bottom: 1px solid #dce3de;
}
.thinking-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}
.thinking-layout h2 {
  margin-top: 25px;
}
.thinking-layout .body-copy {
  margin-top: 28px;
  font-size: 15px;
}
.thinking-doodle {
  display: flex;
  align-items: center;
  margin-top: 48px;
  gap: 6px;
  font: italic 27px var(--serif);
  color: #456b80;
}
.thinking-doodle svg {
  width: 110px;
  height: 45px;
  stroke: #668da0;
  stroke-width: 1;
}
.quiz {
  background: #f8f9f5;
  border: 1px solid #d6e1db;
  padding: 35px 38px;
}
.quiz-kicker {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #526b63;
}
.quiz-question {
  font: 29px/1.25 var(--serif);
  margin-top: 22px;
}
.quiz-choices {
  display: grid;
  gap: 10px;
  margin-top: 27px;
}
.quiz-choices button {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: transparent;
  min-height: 63px;
  width: 100%;
  border: 1px solid #cedbd4;
  padding: 14px 16px;
  color: var(--ink);
  font-size: 13px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.quiz-choices button:hover {
  background: #eaf0ec;
  border-color: #91aaa2;
}
.quiz-choices button[aria-pressed="true"] {
  border-color: #293d8a;
  background: #e7edf5;
}
.option-letter {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid #bdcdc6;
  border-radius: 50%;
  font-size: 10px;
}
.choice-mark {
  margin-left: auto;
  font-size: 19px;
}
.quiz-feedback:empty {
  display: none;
}
.quiz-feedback {
  margin-top: 23px;
  padding-top: 22px;
  border-top: 1px solid #b4c8bd;
  font-size: 14px;
  line-height: 1.8;
  color: #334d45;
}
.quiz-reset {
  background: transparent;
  margin-top: 12px;
  font-size: 12px;
  gap: 18px;
}
.sample-label {
  font-size: 12px;
  color: var(--muted);
  padding-bottom: 7px;
}
.sample-label span {
  font-size: 24px;
  margin-left: 30px;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.insight-button {
  display: block;
  width: 100%;
  background: transparent;
  text-align: left;
  color: var(--ink);
}
.insight-art {
  height: 240px;
  position: relative;
  display: block;
  overflow: hidden;
}
.art-questions {
  background: #e0ecf0;
}
.question-large {
  position: absolute;
  font: 230px/0.9 var(--serif);
  left: 38%;
  top: 16px;
  color: #344e85;
  transform: rotate(12deg);
  transition: transform 0.6s;
}
.question-small {
  position: absolute;
  top: 55px;
  left: 18%;
  font: italic 33px var(--serif);
  color: #507c90;
  transform: rotate(-12deg);
}
.art-index {
  position: absolute;
  bottom: 18px;
  left: 21px;
  font-size: 9px;
  letter-spacing: 0.1em;
}
.art-independent {
  background: #e8ebe3;
}
.art-independent svg {
  height: 100%;
  width: 100%;
  stroke: #657d6c;
  stroke-width: 1;
  transform: translateY(15px);
  transition: transform 0.6s;
}
.art-perspective {
  background: #e5e9f3;
}
.art-perspective svg {
  height: 100%;
  width: 100%;
  stroke: #627ba4;
  stroke-width: 1;
  transition: transform 0.6s;
}
.insight-button:hover .question-large,
.insight-button:focus-visible .question-large {
  transform: rotate(0) scale(1.05);
}
.insight-button:hover svg,
.insight-button:focus-visible svg {
  transform: translateY(6px) scale(1.06);
}
.insight-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #5c6c7e;
}
.insight-meta > span {
  letter-spacing: 0;
  white-space: nowrap;
}
.insight h3 {
  font: 34px/1.12 var(--serif);
  margin-top: 18px;
  letter-spacing: -0.015em;
}
.insight-link {
  border-top: 1px solid #cbd4d8;
  margin-top: 24px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #536275;
}
.insight-link > span {
  font-size: 24px;
  color: var(--blue);
}
.visit-section {
  background: #dcecf2;
  overflow: hidden;
}
.visit-layout {
  padding-block: 86px;
  display: grid;
  grid-template-columns: 1fr 320px;
  position: relative;
  gap: 40px;
}
.visit-layout h2 {
  margin-top: 27px;
  font-size: clamp(48px, 5.6vw, 82px);
}
.visit-layout > div > p:not(.eyebrow) {
  max-width: 455px;
  color: #4f6477;
  font-size: 15px;
  line-height: 1.8;
  margin-top: 28px;
}
.visit-actions {
  margin-top: 30px;
  gap: 28px;
}
.visit-actions .text-link {
  background: transparent;
}
.visit-book {
  width: 100%;
  height: 100%;
  stroke: #87b5c9;
  stroke-width: 1;
  align-self: center;
  max-height: 370px;
  margin-top: 18px;
}
.site-footer {
  background: white;
  padding-top: 56px;
}
.footer-top {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.6fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-link img {
  width: 88px;
}
.footer-brand .brand-signature {
  font-size: 22px;
  margin-top: 15px;
}
.footer-description {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  padding-top: 13px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 12px;
  padding-top: 13px;
}
.footer-nav a {
  min-height: 24px;
}
.footer-nav a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-contact {
  padding-top: 13px;
}
.footer-contact .eyebrow {
  font-size: 9px;
}
.footer-contact > a {
  display: inline-flex;
  gap: 15px;
  font-size: 12px;
  margin-top: 18px;
  min-height: 28px;
}
.footer-contact > p:last-child {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 13px;
}
.footer-bottom {
  border-top: 1px solid #dce1e4;
  padding-block: 23px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  color: #647187;
  font-size: 9px;
  line-height: 1.7;
}
.footer-bottom a {
  white-space: nowrap;
  font-size: 10px;
  min-height: 30px;
  display: flex;
  align-items: center;
}
dialog {
  border: 0;
  padding: 0;
  color: var(--ink);
  background: #f8f9f5;
  position: fixed;
  margin: auto;
  max-height: 90dvh;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #0b193aab;
  backdrop-filter: blur(4px);
}
.content-dialog {
  width: min(720px, calc(100% - 32px));
  padding: 32px 38px;
  border: 1px solid #e2e8e5;
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 26px;
}
.dialog-top .eyebrow {
  font-size: 10px;
}
.close-dialog {
  background: transparent;
}
.dialog-top > .close-dialog {
  font-size: 30px;
  line-height: 1;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--ink);
  border: 1px solid #c6d1d6;
  border-radius: 50%;
}
.content-dialog h2 {
  font-size: 52px;
  line-height: 1.05;
  outline-offset: 8px;
}
.article-body {
  margin-top: 28px;
}
.article-body p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-block: 16px;
}
.article-body h3 {
  font: 30px var(--serif);
  margin: 29px 0 10px;
}
.article-body .article-takeaway {
  padding: 20px 24px;
  background: #e3edf0;
  border-left: 2px solid #638ca8;
  color: var(--ink);
}
.dialog-footnote {
  border-top: 1px solid #d4dfe0;
  padding-top: 20px;
  margin-top: 32px;
  font-size: 11px;
  line-height: 1.8;
  color: #617187;
}
.preview-notice {
  margin: 20px 0 26px;
  padding: 12px 15px;
  background: #e7eef1;
  font-size: 12px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  margin-bottom: 21px;
  min-width: 0;
}
.field label {
  display: block;
  font-size: 12px;
  margin-bottom: 9px;
  font-weight: 500;
}
.field label > span {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: #fff;
  border: 1px solid #bccbd1;
  border-radius: 1px;
  min-height: 46px;
  padding: 12px;
  color: var(--ink);
  font-size: 14px;
}
.field textarea {
  resize: vertical;
  min-height: 92px;
}
.field input:user-invalid {
  border-color: #a33939;
}
.form-help {
  font-size: 11px;
  color: var(--muted);
  margin: -6px 0 24px;
  line-height: 1.7;
}
.form-confirmation {
  padding: 15px 0 10px;
}
.confirmation-symbol {
  font-size: 27px;
  width: 54px;
  height: 54px;
  border: 1px solid #a1b7ab;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #315c45;
}
.form-confirmation h3 {
  font: 40px var(--serif);
  margin: 22px 0 14px;
}
.form-confirmation p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 26px;
}
.form-confirmation .button {
  background: var(--blue);
}
.menu-dialog {
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 24px var(--gutter);
  max-width: none;
}
.menu-dialog nav {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.menu-dialog nav a {
  font: 40px var(--serif);
  padding: 20px 0;
  border-bottom: 1px solid #cbd5d8;
  display: flex;
  gap: 24px;
  align-items: center;
}
.menu-dialog nav a > span {
  font:
    11px "DM Sans",
    sans-serif;
  color: #6a7f8a;
}
.menu-dialog > .button {
  margin-top: 35px;
}
.menu-dialog > .brand-signature {
  margin-top: 45px;
}
.menu-dialog .dialog-top {
  margin-bottom: 0;
}
.is-dialog-open {
  overflow: hidden;
}
.is-dialog-open body {
  overflow: hidden;
}
button[hidden],
div[hidden] {
  display: none !important;
}
@media (max-width: 1100px) {
  .section-space {
    padding-block: 85px;
  }
  .pillars-layout {
    gap: 45px;
  }
  .pillar-top h3 {
    font-size: 31px;
  }
  .learning-layout {
    gap: 48px;
  }
  .learning-photo {
    aspect-ratio: 4/6.4;
  }
  .learning-photo figcaption {
    padding: 20px;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .learning-photo figcaption > span:last-child {
    font-size: 31px;
  }
  .thinking-layout {
    gap: 45px;
  }
  .quiz {
    padding: 30px;
  }
  .life-gallery {
    gap: 22px;
  }
  .insights-grid {
    gap: 24px;
  }
  .insight h3 {
    font-size: 29px;
  }
  .insight-meta {
    font-size: 8px;
  }
  .visit-layout {
    grid-template-columns: 1fr 220px;
  }
  .footer-top {
    gap: 30px;
    grid-template-columns: 0.7fr 1fr 0.6fr 1.2fr;
  }
  .footer-contact > a {
    font-size: 10px;
    gap: 6px;
  }
  .story-question > p {
    font-size: 50px;
  }
  .evidence-card {
    width: 190px;
  }
  .story-shell {
    padding-top: 50px;
  }
  .story-heading {
    margin-bottom: 22px;
  }
}
@media (max-width: 800px) {
  .section-space {
    padding-block: 70px;
  }
  .section-heading {
    gap: 35px;
    margin-bottom: 42px;
  }
  .section-intro {
    font-size: 14px;
    max-width: 255px;
  }
  h2 {
    font-size: 48px;
  }
  .section-heading .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .story-heading {
    align-items: flex-start;
  }
  .story-heading h2 {
    font-size: 46px;
  }
  .story-heading .section-intro {
    padding-top: 38px;
  }
  .pillars-layout {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .pillar-top {
    gap: 12px;
  }
  .pillar-top h3 {
    font-size: 29px;
  }
  .pillar-arrow {
    display: none;
  }
  .pillar-feature > p,
  .pillar-small > p {
    font-size: 13px;
    margin-left: 0;
  }
  .focus-photo {
    height: 340px;
  }
  .pillar-graphic {
    height: 65px;
  }
  .diagram-labels {
    font-size: 9px;
  }
  .learning-layout {
    gap: 32px;
  }
  .learning-photo {
    aspect-ratio: 1/2;
  }
  .learning-photo figcaption {
    padding: 18px;
  }
  .learning-photo figcaption > .eyebrow {
    font-size: 8px;
  }
  .learning-photo figcaption > span:last-child {
    font-size: 29px;
  }
  .learning-copy > .body-copy {
    font-size: 14px;
  }
  .accordion-item h3 > button {
    font-size: 13px;
    gap: 10px;
  }
  .accordion-panel p {
    font-size: 13px;
    padding-left: 22px;
  }
  .life-gallery {
    gap: 20px;
    grid-template-columns: 1.2fr 0.9fr 1fr;
  }
  .life-gallery figcaption > p {
    font-size: 23px;
  }
  .life-gallery figcaption > span {
    font-size: 8px;
    line-height: 1.7;
    display: block;
  }
  .life-concentration {
    padding-top: 65px;
  }
  .thinking-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
  }
  .quiz {
    padding: 25px;
  }
  .quiz-question {
    font-size: 26px;
  }
  .quiz-choices button {
    font-size: 12px;
    padding: 12px;
    gap: 10px;
  }
  .option-letter {
    width: 21px;
    height: 21px;
  }
  .choice-mark {
    display: none;
  }
  .insights-grid {
    gap: 22px;
  }
  .insight-art {
    height: 180px;
  }
  .question-large {
    font-size: 185px;
    left: 35%;
    top: 0;
  }
  .question-small {
    font-size: 26px;
    left: 12%;
    top: 40px;
  }
  .art-index {
    font-size: 8px;
    left: 13px;
    bottom: 14px;
  }
  .insight-meta {
    flex-wrap: wrap;
    gap: 8px;
  }
  .insight h3 {
    font-size: 27px;
  }
  .insight-link {
    font-size: 10px;
    gap: 15px;
  }
  .visit-layout {
    grid-template-columns: 1fr 140px;
    padding-block: 65px;
    gap: 25px;
  }
  .visit-layout h2 {
    font-size: 56px;
  }
  .visit-layout .eyebrow {
    font-size: 10px;
  }
  .visit-book {
    max-height: 260px;
  }
  .visit-actions {
    gap: 18px;
  }
  .visit-actions .text-link {
    font-size: 12px;
    gap: 10px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-contact > a {
    font-size: 12px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .footer-bottom > p:nth-child(2) {
    order: 3;
    width: 100%;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .story-caption {
    font-size: 8px;
  }
}
@media (max-width: 600px) {
  .section-space {
    padding-block: 64px;
  }
  .section-heading {
    display: block;
    margin-bottom: 34px;
  }
  .section-intro {
    max-width: 100%;
    margin-top: 23px;
    font-size: 14px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 47px;
  }
  .story-shell {
    padding-block: 52px 27px;
  }
  .story-heading h2 {
    font-size: 46px;
  }
  .story-heading .section-intro {
    padding-top: 0;
  }
  .story-static {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  .story-static h3 {
    font-size: 32px;
    max-width: 300px;
  }
  .story-static li > p:last-child {
    font-size: 13px;
  }
  .story-caption {
    font-size: 8px;
    line-height: 1.6;
    align-items: center;
  }
  .story-caption > span {
    white-space: nowrap;
  }
  .pillars-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pillar-top h3 {
    font-size: 34px;
  }
  .pillar-top {
    gap: 16px;
  }
  .pillar-feature > p,
  .pillar-small > p {
    font-size: 14px;
    margin-left: 31px;
  }
  .focus-photo {
    height: 290px;
    margin-top: 26px;
  }
  .pillars-aside {
    gap: 28px;
  }
  .pillar-graphic {
    margin-top: 24px;
  }
  .diagram-labels {
    font-size: 9px;
  }
  .learning-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: 35px;
  }
  .learning-copy h2 {
    font-size: 57px;
  }
  .learning-copy > .eyebrow {
    font-size: 10px;
  }
  .learning-copy > .body-copy {
    font-size: 14px;
  }
  .accordion-item h3 > button {
    font-size: 14px;
    min-height: 72px;
  }
  .accordion-panel p {
    font-size: 13px;
    padding-left: 24px;
  }
  .learning-photo {
    aspect-ratio: 4/5;
    width: 100%;
    max-height: 560px;
  }
  .learning-photo figcaption > span:last-child {
    font-size: 33px;
  }
  .learning-photo figcaption > .eyebrow {
    font-size: 9px;
  }
  .life-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 32px 18px;
  }
  .life-collaboration {
    grid-column: 1/-1;
  }
  .life-collaboration .life-image {
    aspect-ratio: 1.15;
  }
  .life-concentration {
    padding-top: 0;
  }
  .life-discovery {
    padding-top: 38px;
  }
  .life-concentration .life-image {
    aspect-ratio: 0.7;
  }
  .life-discovery .life-image {
    aspect-ratio: 0.78;
  }
  .life-gallery figcaption {
    margin-top: 14px;
  }
  .life-gallery figcaption > p {
    font-size: 23px;
  }
  .life-gallery figcaption > span {
    font-size: 8px;
  }
  .caption-note {
    margin-top: 12px;
    font-size: 11px;
  }
  .thinking-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .thinking-layout h2 {
    font-size: 55px;
    margin-top: 22px;
  }
  .thinking-layout .eyebrow {
    font-size: 10px;
  }
  .thinking-layout .body-copy {
    font-size: 14px;
    margin-top: 20px;
  }
  .thinking-doodle {
    display: none;
  }
  .quiz {
    padding: 25px 20px;
  }
  .quiz-question {
    font-size: 27px;
  }
  .quiz-choices button {
    font-size: 12px;
    min-height: 66px;
  }
  .quiz-feedback {
    font-size: 13px;
  }
  .sample-label {
    margin-top: 22px;
  }
  .sample-label span {
    margin-left: 15px;
  }
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .insight-art {
    height: 245px;
  }
  .question-large {
    font-size: 240px;
    top: 8px;
    left: 40%;
  }
  .question-small {
    font-size: 35px;
    left: 22%;
    top: 58px;
  }
  .art-index {
    font-size: 9px;
    left: 20px;
    bottom: 18px;
  }
  .insight-meta {
    font-size: 9px;
    margin-top: 18px;
  }
  .insight h3 {
    font-size: 34px;
    margin-top: 13px;
  }
  .insight h3 br {
    display: none;
  }
  .insight-link {
    font-size: 12px;
    margin-top: 18px;
    padding-top: 10px;
  }
  .visit-layout {
    display: block;
    padding-block: 57px;
  }
  .visit-layout h2 {
    font-size: 51px;
  }
  .visit-layout > div > p:not(.eyebrow) {
    font-size: 14px;
    max-width: 310px;
  }
  .visit-layout .eyebrow {
    font-size: 9px;
    max-width: 250px;
    line-height: 1.8;
  }
  .visit-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .visit-actions .button {
    font-size: 13px;
    gap: 24px;
  }
  .visit-actions .text-link {
    font-size: 13px;
  }
  .visit-book {
    display: none;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-top {
    gap: 28px 25px;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 30px;
  }
  .footer-brand .logo-link img {
    width: 78px;
  }
  .footer-brand .brand-signature {
    font-size: 21px;
  }
  .footer-description {
    font-size: 11px;
    line-height: 1.9;
  }
  .footer-contact .eyebrow {
    font-size: 8px;
  }
  .footer-contact > a {
    font-size: 10px;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: block;
    line-height: 1.8;
  }
  .footer-contact > a span {
    display: none;
  }
  .footer-contact > p:last-child {
    font-size: 11px;
  }
  .footer-nav {
    font-size: 12px;
    gap: 10px;
  }
  .footer-bottom {
    font-size: 9px;
  }
  .content-dialog {
    padding: 20px 22px;
    max-height: 92dvh;
  }
  .content-dialog h2 {
    font-size: 41px;
  }
  .dialog-top {
    gap: 15px;
    margin-bottom: 24px;
  }
  .dialog-top .eyebrow {
    font-size: 8px;
  }
  .dialog-top > .close-dialog {
    height: 40px;
    width: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field {
    margin-bottom: 17px;
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 16px;
  }
  .field label {
    font-size: 12px;
  }
  .visit-dialog .preview-notice {
    font-size: 11px;
    padding: 10px 12px;
  }
  .article-body p {
    font-size: 14px;
  }
  .article-body h3 {
    font-size: 28px;
  }
  .menu-dialog nav {
    margin-top: 28px;
  }
  .menu-dialog nav a {
    font-size: 35px;
    padding-block: 18px;
  }
  .menu-dialog > .brand-signature {
    margin-top: 32px;
  }
}
.hero h1 br:first-child {
  display: initial;
}
.small-index,
.accordion-item button > span {
  color: #52647b;
}
@media (min-width: 1024px) and (max-height: 899px) {
  .story-motion .story-shell {
    padding-block: 28px 20px;
  }
  .story-motion .story-heading {
    margin-bottom: 12px;
  }
  .story-motion .story-heading .eyebrow {
    margin-bottom: 12px;
  }
  .story-motion .story-heading h2 {
    font-size: 42px;
  }
  .story-motion .story-animated {
    transform: scale(0.82);
    transform-origin: center top;
    margin-bottom: -66px;
  }
  .story-motion .story-track {
    margin-top: 12px;
    padding-top: 14px;
  }
  .story-motion .story-caption {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .button {
    gap: 24px;
    padding-inline: 20px;
  }
  .hero-actions .text-link {
    gap: 12px;
  }
  .hero h1 {
    font-size: 72px;
  }
}

