/* A curious mind, piece by piece. Shared by desktop and mobile. */
:root {
  --header-height: 90px;
  --paper: #faf9f6;
  background: var(--paper);
}
html {
  scroll-padding-top: calc(var(--header-height) + 12px);
}
body {
  background: var(--paper);
}
.puzzle-definitions {
  position: absolute;
  pointer-events: none;
}
.site-header {
  height: var(--header-height);
  background: var(--paper);
  border-bottom: 1px solid #e3e5df;
}
.logo-link img {
  width: 69px;
  border-radius: 7px;
}
.button {
  border-radius: 11px;
  min-height: 50px;
}
.text-link {
  border-bottom: 0;
}
h1,
h2,
h3 {
  font-optical-sizing: auto;
}
h2 {
  font-size: clamp(38px, 4.15vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.06em;
}
h2 em,
h1 em {
  font-style: normal;
  font-weight: inherit;
}
.section-heading {
  align-items: center;
}
.brand-signature {
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.draw-underline {
  position: relative;
  isolation: isolate;
}
.draw-underline:after {
  content: "";
  position: absolute;
  left: 1%;
  right: -2%;
  bottom: -6px;
  height: 9px;
  border-top: 4px solid var(--sky);
  border-bottom: 2px solid var(--sky);
  border-radius: 50%;
  transform: rotate(-3deg);
  z-index: -1;
}
.puzzle-hero {
  grid-template-columns: 1.06fr 1fr;
  gap: 24px;
  padding-top: 48px;
}
.puzzle-hero h1 {
  font-family: var(--serif);
  font-size: clamp(57px, 6.1vw, 94px);
  line-height: 1.015;
  font-weight: 500;
  letter-spacing: -0.065em;
  margin-top: 25px;
}
.puzzle-hero h1 em {
  color: var(--ink);
}
.puzzle-hero .hero-description {
  font-size: 15px;
  margin-top: 30px;
  max-width: 430px;
  line-height: 1.8;
}
.puzzle-hero .hero-actions {
  margin-top: 22px;
  gap: 26px;
}
.hero-note-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 34px;
  max-width: 480px;
}
.hero-note {
  position: relative;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #e9edf0;
  padding: 15px 18px;
  min-height: 135px;
  transition: background 0.2s;
}
.hero-note:hover {
  background: #dce8ee;
}
.note-photo {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
}
.note-photo img {
  width: 84px;
  height: 105px;
  object-fit: cover;
  object-position: 48% center;
  border-radius: 13px;
}
.note-photo > span:not(.note-arrow) {
  font-size: 12px;
  line-height: 1.65;
}
.note-photo strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.note-arrow {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: 18px;
}
.note-minds {
  background: #dbeaf0;
  padding: 20px;
}
.note-minds > .eyebrow {
  display: block;
  font-size: 8px;
  letter-spacing: 0.08em;
}
.note-minds > strong {
  display: block;
  font: 500 28px/1.06 var(--serif);
  letter-spacing: -0.05em;
  margin-top: 15px;
}
.note-minds svg {
  position: absolute;
  right: -51px;
  bottom: -55px;
  width: 142px;
  height: 130px;
  fill: none;
  stroke: #75a6bd;
  stroke-width: 2;
  transform: rotate(15deg);
}
.puzzle-hero .hero-art {
  height: 660px;
  margin-top: 0;
}
.hero-puzzle {
  position: absolute;
  width: 100%;
  height: auto;
  top: 153px;
  left: 0;
  overflow: visible;
}
.hero-piece {
  transform-origin: center;
}
.hero-piece use {
  stroke: var(--paper);
  stroke-width: 7;
  stroke-linejoin: round;
}
.hero-piece-one,
.hero-piece-four {
  fill: #293d8a;
}
.hero-piece-two {
  fill: #b9dbe9;
}
.hero-piece-three {
  fill: #527aaf;
}
.hero-scribbles {
  stroke: #d8eef5;
  stroke-width: 1.2;
}
.hero-cutout {
  position: absolute;
  inset: 0 -10px 42px 0;
  pointer-events: none;
}
.hero-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}
.curiosity-burst {
  position: absolute;
  left: 3%;
  top: 40px;
  width: 96px;
  height: 96px;
  stroke: var(--sky);
  stroke-width: 7;
  stroke-linecap: round;
}
.puzzle-hero .thought-prompt {
  font: 500 22px var(--serif);
  background: transparent;
  padding: 0;
}
.puzzle-hero .prompt-why {
  top: 175px;
  left: 0;
  transform: rotate(-14deg);
}
.puzzle-hero .prompt-what {
  top: 76px;
  right: -5px;
  transform: rotate(8deg);
}
.hero-sticker {
  position: absolute;
  right: -6px;
  bottom: 27px;
  background: #e3f0f4;
  border: 1px solid #b2d4e2;
  border-radius: 18px;
  padding: 20px 26px 30px;
  transform: rotate(5deg);
}
.hero-sticker > span {
  display: block;
  font-size: 13px;
}
.hero-sticker > strong {
  display: block;
  font: 500 23px var(--serif);
  letter-spacing: -0.045em;
  margin-top: 2px;
}
.hero-sticker svg {
  position: absolute;
  width: 60px;
  height: 25px;
  right: 20px;
  bottom: 5px;
  stroke: #527ca0;
  stroke-width: 1.5;
}
.puzzle-hero .image-index {
  left: 15px;
  bottom: 6px;
  right: auto;
  font-size: 8px;
  letter-spacing: 0.1em;
}
.puzzle-hero .hero-bottom {
  margin-top: 12px;
  padding-block: 24px;
  grid-column: 1/-1;
}
.hero-bottom > p {
  font-size: 12px;
  color: var(--muted);
}
.hero-bottom > p strong {
  font-weight: 500;
  color: var(--ink);
}
/* The same pinned puzzle canvas adapts its geometry to every viewport. */
.puzzle-story {
  background: #17294f;
  border-radius: 30px;
  margin: 18px 20px 0;
  overflow: clip;
}
.puzzle-story .story-shell {
  padding-top: 65px;
  padding-bottom: 34px;
}
.puzzle-story .story-heading {
  margin-bottom: 22px;
}
.puzzle-story .story-heading h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.07;
}
.puzzle-story .story-heading .eyebrow {
  margin-bottom: 20px;
}
.puzzle-story .story-heading h2 em {
  color: #a8d7e9;
}
.story-stage-shell {
  background: #17294f;
  position: relative;
  padding-top: 4px;
  padding-bottom: 14px;
}
.puzzle-scene {
  --scene-height: min(440px, calc(100svh - var(--header-height) - 120px));
  height: var(--scene-height);
  position: relative;
  display: none;
}
.story-motion .puzzle-scene {
  display: block;
}
.puzzle-story .story-question {
  position: absolute;
  top: 25%;
  left: 50%;
  width: min(690px, 100%);
  transform: translateX(-50%);
  padding: 20px 15px;
}
.puzzle-story .story-question > .eyebrow {
  font-size: 10px;
  letter-spacing: 0.13em;
}
.puzzle-story .story-question > p {
  font-size: clamp(30px, 3.7vw, 55px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.1;
  margin-top: 21px;
}
.puzzle-story .story-question em {
  font-style: normal;
  color: #a8d7e9;
}
.question-orbit {
  position: absolute;
  width: 80px;
  height: 80px;
  right: 1%;
  top: -25px;
  fill: none;
  stroke: #9ecddc;
  stroke-width: 2;
  transform: rotate(19deg);
}
.puzzle-board {
  position: absolute;
  left: 50%;
  top: -16px;
  width: min(610px, calc(var(--scene-height) * 1.4));
  height: calc(var(--scene-height) - 4px);
  transform: translateX(-50%);
  overflow: visible;
}
.thinking-piece {
  transform-box: fill-box;
  transform-origin: center;
}
.thinking-piece > use {
  stroke: #17294f;
  stroke-width: 5;
  stroke-linejoin: round;
}
.piece-question {
  fill: #d9e9ee;
}
.piece-observe {
  fill: #a4d4e5;
}
.piece-compare {
  fill: #86b6d4;
}
.piece-ask {
  fill: #bddae9;
}
.piece-label {
  fill: #14234b;
}
.piece-number {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 1.1px;
}
.piece-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -1.2px;
}
.piece-detail {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
}
.puzzle-united {
  stroke: #14234b;
  stroke-width: 1.8;
}
.puzzle-united text {
  fill: #14234b;
  stroke: none;
  font: 500 28px var(--serif);
  letter-spacing: -1.2px;
}
.connection-captions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 35px;
  font-size: 12px;
  color: #c5e0eb;
}
.connection-captions span:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #9ed4e4;
  border-radius: 50%;
  display: inline-block;
  margin-right: 9px;
  vertical-align: 2px;
}
.puzzle-story .story-reason {
  position: absolute;
  inset: auto 0 8px;
  text-align: center;
}
.puzzle-story .story-reason > p {
  font-family: var(--serif);
  font-size: clamp(30px, 3.1vw, 45px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.08;
}
.puzzle-story .story-reason em {
  font-style: normal;
  color: #a8d7e9;
}
.puzzle-story .story-reason > span {
  margin-top: 12px;
  font-size: 12px;
}
.puzzle-story .story-track {
  margin-top: 22px;
  padding-top: 17px;
}
.puzzle-story .story-track b {
  font-size: 12px;
  letter-spacing: 0.05em;
}
.puzzle-story .story-caption {
  margin-top: 20px;
  font-size: 9px;
  letter-spacing: 0.08em;
}
.puzzle-story .story-static h3 {
  font-size: 30px;
  letter-spacing: -0.045em;
}
.puzzle-story .story-static {
  padding-bottom: 25px;
}
/* Modular photography, generous curves and quietly playful annotations. */
.pillars-layout {
  gap: 24px;
  grid-template-columns: 1.1fr 1fr;
}
.pillar-feature {
  background: #e7eff1;
  padding: 30px 30px 0;
  border: 0;
  border-radius: 26px;
  overflow: hidden;
}
.pillar-top h3 {
  font-size: 31px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
.pillar-feature > p,
.pillar-small > p {
  margin-left: 0;
}
.pillar-feature .focus-photo {
  height: 280px;
  margin-inline: -30px;
  border-radius: 0 35px 0 0;
}
.pillar-feature .focus-frame {
  border-radius: 4px;
}
.pillars-aside {
  gap: 20px;
}
.pillar-small {
  background: #eeefeb;
  padding: 28px 30px 20px;
  border: 0;
  border-radius: 24px;
}
.pillar-small:nth-child(2) {
  background: #e6eef4;
}
.pillar-small .pillar-top {
  gap: 14px;
}
.pillar-graphic {
  height: 55px;
  margin-top: 14px;
}
.learning {
  background: var(--paper);
  padding-top: 45px;
}
.learning-layout {
  gap: clamp(40px, 7vw, 105px);
}
.learning-photo {
  border-radius: 30px;
  background: #d9eaf2;
  mask: radial-gradient(circle at 0 47%, transparent 0 27px, #000 28px);
}
.learning-photo figcaption {
  border-radius: 20px;
  left: 22px;
  right: 22px;
  bottom: 22px;
}
.learning-photo figcaption > span:last-child {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.045em;
}
.learning-photo figcaption em {
  font-style: normal;
}
.learning-copy h2 {
  font-size: clamp(42px, 4.6vw, 68px);
}
.accordion-item {
  background: #edf0ed;
  border: 0;
  margin-bottom: 10px;
  border-radius: 14px;
  padding-inline: 19px;
}
.accordion-item:last-child {
  border: 0;
}
.accordion-item h3 > button {
  font-size: 14px;
  padding-block: 20px;
}
.accordion-panel p {
  padding-left: 27px;
  padding-right: 6px;
}
.life {
  padding-top: 50px;
}
.life-gallery {
  gap: 20px;
}
.life-image {
  border-radius: 25px;
}
.life-collaboration .life-image {
  mask: radial-gradient(circle at 100% 50%, transparent 0 26px, #000 27px);
}
.life-concentration .life-image {
  border-radius: 22px 22px 55px 22px;
}
.life-gallery figcaption > p {
  font-size: 22px;
  letter-spacing: -0.04em;
}
.thinking-section {
  margin-inline: 20px;
  border: 0;
  border-radius: 30px;
  background: #e8f0f3;
}
.quiz {
  border: 0;
  border-radius: 24px;
  background: var(--paper);
}
.quiz-question {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.35;
}
.quiz-choices button {
  border-radius: 12px;
  font-size: 13px;
}
.thinking-doodle {
  font-family: var(--serif);
  font-style: normal;
  font-size: 24px;
  letter-spacing: -0.04em;
}
.insight-art {
  border-radius: 23px;
}
.insight h3 {
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.055em;
}
.insight-art .question-large {
  font-size: 210px;
  line-height: 1;
}
.insight-art .question-small {
  font-size: 28px;
  font-style: normal;
  letter-spacing: -0.06em;
}
.visit-section {
  background: #dcecf2;
  border-radius: 30px;
  margin: 0 20px;
}
.visit-layout h2 {
  font-size: clamp(42px, 4.5vw, 67px);
  font-weight: 500;
  line-height: 1.09;
}
.visit-book {
  transform: rotate(-7deg);
}
.site-footer {
  background: var(--paper);
}
.content-dialog,
.preview-notice {
  border-radius: 20px;
}
.content-dialog h2 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.055em;
}
.article-body h3 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.045em;
}
.form-confirmation h3 {
  font-size: 32px;
  letter-spacing: -0.05em;
}
.menu-dialog nav a {
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -0.05em;
}
@media (max-width: 1100px) {
  .puzzle-hero {
    padding-top: 38px;
  }
  .puzzle-hero h1 {
    font-size: clamp(50px, 6.5vw, 74px);
  }
  .puzzle-hero .hero-art {
    height: 610px;
    margin-top: 25px;
  }
  .hero-puzzle {
    top: 190px;
  }
  .hero-cutout {
    inset: 35px -12px 40px;
  }
  .curiosity-burst {
    top: 75px;
    width: 75px;
  }
  .puzzle-hero .prompt-why {
    top: 206px;
  }
  .hero-sticker {
    bottom: 40px;
    padding: 15px 20px 27px;
  }
  .hero-sticker > strong {
    font-size: 21px;
  }
  .hero-note-grid {
    gap: 10px;
  }
  .note-photo {
    grid-template-columns: 60px 1fr;
    gap: 10px;
    padding: 12px;
  }
  .note-photo img {
    width: 60px;
    height: 100px;
  }
  .note-photo > span:not(.note-arrow) {
    font-size: 11px;
  }
  .note-photo strong {
    font-size: 12px;
  }
  .note-minds {
    padding: 17px;
  }
  .note-minds > strong {
    font-size: 26px;
  }
  .pillar-top h3 {
    font-size: 27px;
  }
  .pillar-feature,
  .pillar-small {
    padding-inline: 23px;
  }
  .pillar-feature .focus-photo {
    margin-inline: -23px;
  }
  .puzzle-story .story-shell {
    padding-top: 45px;
  }
}
@media (max-width: 800px) {
  :root {
    --header-height: 78px;
  }
  .logo-link img {
    width: 61px;
  }
  .puzzle-hero {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .puzzle-hero h1 {
    font-size: 54px;
  }
  .puzzle-hero .hero-description {
    font-size: 14px;
  }
  .puzzle-hero .hero-actions {
    gap: 10px;
  }
  .puzzle-hero .hero-art {
    height: 600px;
    margin-top: 30px;
  }
  .hero-note-grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
    max-width: 290px;
  }
  .hero-note {
    min-height: 90px;
  }
  .note-photo {
    grid-template-columns: 70px 1fr;
  }
  .note-photo img {
    height: 68px;
    width: 70px;
  }
  .note-minds {
    min-height: 100px;
    padding: 16px;
  }
  .note-minds > strong {
    font-size: 25px;
    margin-top: 9px;
  }
  .note-minds > strong br {
    display: none;
  }
  .note-minds svg {
    width: 130px;
    right: -36px;
    bottom: -53px;
  }
  .hero-puzzle {
    top: 245px;
    width: 108%;
    left: -4%;
  }
  .hero-cutout {
    inset: 20px -14px 30px;
  }
  .puzzle-hero .prompt-what {
    top: 156px;
    right: 0;
  }
  .puzzle-hero .prompt-why {
    top: 270px;
    left: -15px;
  }
  .curiosity-burst {
    top: 175px;
    left: 0;
    width: 65px;
  }
  .hero-sticker {
    bottom: 13px;
    right: -8px;
  }
  .hero-sticker > strong {
    font-size: 20px;
  }
  .puzzle-hero .image-index {
    bottom: -15px;
    font-size: 7px;
    left: -4px;
  }
  .puzzle-story,
  .thinking-section,
  .visit-section {
    margin-inline: 12px;
    border-radius: 25px;
  }
  .puzzle-story .story-heading {
    display: block;
  }
  .puzzle-story .story-heading h2 {
    font-size: 44px;
  }
  .puzzle-story .story-heading .section-intro {
    padding: 0;
    margin-top: 22px;
    max-width: none;
  }
  .puzzle-story .story-question > p {
    font-size: 39px;
  }
  .puzzle-story .story-shell {
    padding-top: 44px;
  }
  .connection-captions {
    gap: 20px;
    font-size: 10px;
  }
  .puzzle-story .story-reason > p {
    font-size: 35px;
  }
  .pillar-feature,
  .pillar-small {
    padding: 22px;
  }
  .pillar-feature {
    padding-bottom: 0;
  }
  .pillar-top h3 {
    font-size: 25px;
  }
  .pillar-feature .focus-photo {
    margin-inline: -22px;
  }
  .learning-photo figcaption {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 19px;
  }
  .learning-photo figcaption > span:last-child {
    font-size: 24px;
  }
  .learning-copy h2 {
    font-size: 45px;
  }
  .accordion-item {
    padding-inline: 14px;
  }
  .accordion-item h3 > button {
    font-size: 13px;
  }
  .life-gallery figcaption > p {
    font-size: 20px;
  }
  .thinking-layout {
    gap: 30px;
  }
  .quiz {
    padding: 24px;
  }
  .quiz-question {
    font-size: 23px;
  }
  .insight h3 {
    font-size: 24px;
  }
  .insight-art .question-large {
    font-size: 170px;
  }
  .visit-layout h2 {
    font-size: 49px;
  }
}
@media (max-width: 600px) {
  :root {
    --gutter: 24px;
    --header-height: 76px;
  }
  .header-visit {
    min-height: 42px;
    padding: 11px 15px;
    font-size: 12px;
    border-radius: 10px;
  }
  .menu-toggle {
    padding-right: 0;
    width: 38px;
  }
  .header-inner {
    gap: 14px;
  }
  .header-actions {
    gap: 10px;
  }
  .puzzle-hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 32px;
  }
  .puzzle-hero h1 {
    font-size: clamp(49px, 13.9vw, 68px);
    line-height: 1.04;
    margin-top: 21px;
    letter-spacing: -0.065em;
  }
  .puzzle-hero .hero-description {
    font-size: 14px;
    line-height: 1.75;
    max-width: 370px;
    margin-top: 25px;
  }
  .puzzle-hero .hero-actions {
    gap: 19px;
    margin-top: 22px;
  }
  .puzzle-hero .hero-actions .button {
    padding-inline: 18px;
    gap: 21px;
    font-size: 13px;
  }
  .puzzle-hero .hero-actions .text-link {
    font-size: 12px;
    gap: 9px;
  }
  .hero-note-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: none;
    margin-top: 28px;
  }
  .hero-note {
    border-radius: 16px;
  }
  .note-photo {
    grid-template-columns: 1fr;
    padding: 10px 12px 17px;
    gap: 10px;
  }
  .note-photo img {
    height: 57px;
    width: 100%;
    object-position: 50% 40%;
    border-radius: 9px;
  }
  .note-photo > span:not(.note-arrow) {
    font-size: 11px;
    line-height: 1.55;
  }
  .note-photo strong {
    font-size: 12px;
  }
  .note-arrow {
    right: 12px;
    bottom: 12px;
  }
  .note-minds {
    padding: 16px 14px;
  }
  .note-minds > .eyebrow {
    font-size: 7px;
    max-width: 100px;
    line-height: 1.6;
  }
  .note-minds > strong {
    font-size: 24px;
    margin-top: 19px;
  }
  .note-minds > strong br {
    display: initial;
  }
  .note-minds svg {
    right: -34px;
    bottom: -41px;
    width: 105px;
  }
  .puzzle-hero .hero-art {
    margin: 22px 0 0;
    height: 460px;
  }
  .hero-puzzle {
    top: 136px;
    left: -4%;
    width: 108%;
  }
  .hero-cutout {
    inset: 0 -8px 27px;
  }
  .curiosity-burst {
    top: 29px;
    left: 0;
    width: 66px;
  }
  .puzzle-hero .prompt-why {
    top: 111px;
    left: 0;
    font-size: 18px;
  }
  .puzzle-hero .prompt-what {
    top: 46px;
    right: 0;
    font-size: 18px;
  }
  .hero-sticker {
    right: -5px;
    bottom: 18px;
    padding: 13px 17px 25px;
    border-radius: 15px;
  }
  .hero-sticker > span {
    font-size: 11px;
  }
  .hero-sticker > strong {
    font-size: 19px;
  }
  .puzzle-hero .image-index {
    bottom: 0;
    left: 0;
    font-size: 7px;
  }
  .puzzle-hero .hero-bottom {
    margin-top: 18px;
    padding: 18px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .puzzle-hero .scroll-cue {
    font-size: 10px;
    max-width: 180px;
    line-height: 1.7;
    gap: 9px;
  }
  .hero-bottom > p {
    font-size: 9px;
    max-width: 114px;
    text-align: right;
    line-height: 1.8;
  }
  .hero-bottom > p strong {
    display: block;
  }
  .section-space {
    padding-block: 60px;
  }
  h2 {
    font-size: 38px;
    line-height: 1.1;
  }
  .puzzle-story {
    margin: 10px 10px 0;
    border-radius: 22px;
  }
  .puzzle-story .story-shell {
    padding: 37px 18px 20px;
  }
  .puzzle-story .story-heading {
    margin-bottom: 18px;
  }
  .puzzle-story .story-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .puzzle-story .story-heading h2 {
    font-size: 35px;
    line-height: 1.1;
  }
  .puzzle-story .story-heading .section-intro {
    font-size: 13px;
    margin-top: 20px;
    line-height: 1.8;
  }
  .story-stage-shell {
    padding: 5px 0 12px;
  }
  .puzzle-scene {
    --scene-height: min(370px, calc(100svh - var(--header-height) - 110px));
  }
  .puzzle-board {
    width: calc(100% + 10px);
    height: auto;
    top: 27px;
    max-height: calc(var(--scene-height) - 50px);
  }
  .puzzle-story .story-question {
    top: 21%;
    width: 100%;
    padding: 20px 0;
  }
  .puzzle-story .story-question > .eyebrow {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
  .puzzle-story .story-question > p {
    font-size: 30px;
    line-height: 1.15;
    margin-top: 20px;
  }
  .question-orbit {
    top: -12px;
    right: -8px;
    width: 45px;
    height: 45px;
  }
  .piece-name {
    font-size: 28px;
  }
  .piece-detail {
    font-size: 13px;
  }
  .piece-number {
    font-size: 10px;
    letter-spacing: 0.6px;
  }
  .connection-captions {
    gap: 7px;
    font-size: 10px;
    bottom: 30px;
    flex-wrap: wrap;
    padding-inline: 10px;
    justify-content: center;
  }
  .connection-captions > span {
    padding: 5px 9px;
    border: 1px solid #7197b660;
    border-radius: 20px;
  }
  .connection-captions span:before {
    display: none;
  }
  .puzzle-story .story-reason {
    bottom: 18px;
  }
  .puzzle-story .story-reason > p {
    font-size: 29px;
    line-height: 1.15;
  }
  .puzzle-story .story-reason > span {
    font-size: 10px;
    max-width: 235px;
    margin: 12px auto 0;
    line-height: 1.7;
  }
  .puzzle-story .story-track {
    margin-top: 8px;
    padding-top: 14px;
    gap: 10px;
  }
  .puzzle-story .story-track > span {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    font-size: 9px;
  }
  .puzzle-story .story-track b {
    font-size: 9px;
    letter-spacing: 0.01em;
  }
  .puzzle-story .story-caption {
    font-size: 7px;
    letter-spacing: 0.04em;
    margin-top: 19px;
    gap: 8px;
  }
  .puzzle-story .story-caption > span {
    white-space: nowrap;
  }
  .puzzle-story .story-static {
    margin-top: 25px;
  }
  .puzzle-story .story-static h3 {
    font-size: 26px;
  }
  .pillars-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pillar-feature {
    padding: 24px 23px 0;
  }
  .pillar-top h3 {
    font-size: 27px;
  }
  .pillar-feature .focus-photo {
    margin-inline: -23px;
    height: 235px;
    margin-top: 24px;
  }
  .pillar-feature > p,
  .pillar-small > p {
    font-size: 14px;
  }
  .pillar-small {
    padding: 24px 23px 20px;
  }
  .pillars-aside {
    gap: 18px;
  }
  .learning {
    padding-top: 10px;
  }
  .learning-copy h2 {
    font-size: 46px;
  }
  .learning-copy > .body-copy {
    font-size: 14px;
  }
  .accordion-item h3 > button {
    font-size: 13px;
  }
  .learning-photo {
    border-radius: 23px;
    mask: radial-gradient(circle at 0 47%, transparent 0 20px, #000 21px);
  }
  .learning-photo figcaption > span:last-child {
    font-size: 27px;
  }
  .life {
    padding-top: 0;
  }
  .life-image {
    border-radius: 18px;
  }
  .life-gallery figcaption > p {
    font-size: 18px;
    line-height: 1.25;
  }
  .thinking-section {
    margin-inline: 10px;
    padding-inline: 0;
  }
  .thinking-section .shell {
    padding-inline: 18px;
  }
  .thinking-layout h2 {
    font-size: 45px;
  }
  .quiz {
    padding: 25px 19px;
    border-radius: 20px;
  }
  .quiz-question {
    font-size: 22px;
  }
  .quiz-choices button {
    font-size: 12px;
    padding: 13px 12px;
  }
  .insight h3 {
    font-size: 28px;
  }
  .insight-art .question-large {
    font-size: 225px;
  }
  .visit-section {
    margin-inline: 10px;
  }
  .visit-layout {
    padding-inline: 20px;
  }
  .visit-layout h2 {
    font-size: 39px;
  }
  .visit-layout h2 br {
    display: none;
  }
  .footer-brand .brand-signature {
    font-size: 16px;
  }
  .content-dialog {
    border-radius: 18px;
  }
  .content-dialog h2 {
    font-size: 35px;
  }
  .article-body h3 {
    font-size: 25px;
  }
}
@media (max-height: 600px) and (prefers-reduced-motion: no-preference) {
  .puzzle-scene {
    --scene-height: calc(100svh - var(--header-height) - 96px);
  }
  .puzzle-board {
    height: var(--scene-height);
    width: calc(var(--scene-height) * 1.3);
    top: 0;
  }
  .puzzle-story .story-question {
    top: 8%;
    padding: 0;
  }
  .puzzle-story .story-question > p {
    font-size: 25px;
    margin-top: 12px;
  }
  .puzzle-story .story-question > .eyebrow {
    font-size: 8px;
  }
  .connection-captions {
    bottom: 0;
    font-size: 9px;
  }
  .puzzle-story .story-reason > p {
    font-size: 24px;
  }
  .puzzle-story .story-reason > span {
    display: none;
  }
  .puzzle-story .story-reason {
    bottom: 0;
  }
  .puzzle-story .story-track {
    margin-top: 7px;
    padding-top: 9px;
  }
  .puzzle-story .story-track > span {
    flex-direction: row;
  }
  .puzzle-story .story-caption {
    margin-top: 10px;
  }
}
.puzzle-hero {
  grid-template-areas: "copy portrait" "notes portrait" "bottom bottom";
  row-gap: 26px;
}
.puzzle-hero .hero-copy {
  grid-area: copy;
}
.puzzle-hero .hero-art {
  grid-area: portrait;
}
.puzzle-hero .hero-note-grid {
  grid-area: notes;
  margin-top: 0;
  align-self: end;
}
.puzzle-hero .hero-bottom {
  grid-area: bottom;
}
@media (max-width: 600px) {
  .puzzle-hero {
    grid-template-areas: "copy" "portrait" "notes" "bottom";
    row-gap: 22px;
  }
  .puzzle-hero .hero-art {
    margin-top: 0;
  }
  .puzzle-hero .hero-note-grid {
    margin-top: 0;
  }
  .puzzle-hero .hero-bottom {
    margin-top: 0;
  }
  .piece-name {
    font-size: 34px;
  }
  .piece-detail {
    font-size: 15px;
  }
  .piece-number {
    font-size: 11px;
  }
  .connection-captions {
    font-size: 11px;
  }
  .puzzle-story .story-track b {
    font-size: 10px;
  }
  .puzzle-story .story-reason > span {
    font-size: 11px;
  }
}
.piece-compare .piece-name {
  font-size: 30px;
}

/* Pin the section from its opening frame and give the story the whole viewport.
   The heading yields to the puzzle; the chapter label and track stay in place. */
.puzzle-story.story-motion {
  height: calc(100svh - var(--header-height));
  margin-inline: 0;
  border-radius: 0;
}
.puzzle-story.story-motion .story-shell {
  position: relative;
  height: 100%;
  max-width: none;
  padding: clamp(22px, 3.5vh, 48px) clamp(24px, 5vw, 100px) 24px;
}
.puzzle-story.story-motion .story-heading {
  position: absolute;
  inset: clamp(22px, 3.5vh, 48px) clamp(24px, 5vw, 100px) auto;
  margin: 0;
  z-index: 1;
  pointer-events: none;
}
.puzzle-story.story-motion .story-heading .eyebrow {
  margin-bottom: 22px;
}
.puzzle-story.story-motion .story-heading h2 {
  font-size: clamp(36px, 3.8vw, 68px);
}
.puzzle-story.story-motion .story-stage-shell {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  height: 100%;
  min-height: 0;
  padding: 46px 0 0;
}
.puzzle-story.story-motion .puzzle-scene {
  height: 100%;
  min-height: 0;
  container-type: size;
}
.puzzle-story.story-motion .story-question {
  top: 55%;
  width: 100%;
  padding: 0;
  transform: translate(-50%, -35%);
}
.puzzle-story.story-motion .story-question > p {
  font-size: clamp(36px, min(6vw, 12cqh), 108px);
  line-height: 1.05;
}
.puzzle-story.story-motion .story-question > .eyebrow {
  font-size: clamp(9px, 0.8vw, 13px);
}
.puzzle-story.story-motion .question-orbit {
  right: 12%;
  top: -64px;
  width: 100px;
  height: 100px;
}
.puzzle-story.story-motion .puzzle-board {
  inset: 0;
  width: 100%;
  height: calc(100% - 54px);
  max-height: none;
  transform: none;
  overflow: visible;
}
.puzzle-story.story-motion .piece-name {
  font-size: 34px;
}
.puzzle-story.story-motion .thinking-piece {
  transform-box: view-box;
  transform-origin: 0 0;
}
.puzzle-story.story-motion .piece-compare .piece-name {
  font-size: 30px;
}
.puzzle-story.story-motion .piece-detail {
  font-size: 14px;
}
.puzzle-story.story-motion .piece-number {
  font-size: 10px;
  letter-spacing: 0.6px;
}
.puzzle-story.story-motion .connection-captions {
  bottom: 16px;
  gap: clamp(12px, 4vw, 64px);
  font-size: clamp(12px, 1.2vw, 18px);
}
.puzzle-story.story-motion .story-reason {
  inset: auto 0 8%;
}
.puzzle-story.story-motion .story-reason > p {
  font-size: clamp(34px, min(6vw, 10cqh), 96px);
  line-height: 1.06;
}
.puzzle-story.story-motion .story-reason > span {
  display: block;
  max-width: none;
  font-size: clamp(12px, 1.15vw, 19px);
  margin: 20px 0 0;
}
.puzzle-story.story-motion .story-track {
  margin-top: 8px;
  padding-top: 16px;
}
.puzzle-story.story-motion .story-caption {
  margin-top: 17px;
  font-size: 10px;
}
@media (min-aspect-ratio: 6/5) {
  .puzzle-story.story-motion .story-reason {
    inset: 0 0 54px 51%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }
  .puzzle-story.story-motion .story-reason > p {
    font-size: clamp(30px, min(5.4vw, 14cqh), 96px);
  }
}
/* Let the title span narrow tablets before the portrait joins the note cards. */
@media (min-width: 601px) and (max-width: 700px) {
  .thinking-layout,
  .learning-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .learning-copy {
    order: 0;
  }
  .learning-photo {
    order: 1;
    height: 440px;
  }
}
@media (min-width: 601px) and (max-width: 800px) {
  .puzzle-hero {
    grid-template-areas: "copy copy" "notes portrait" "bottom bottom";
    grid-template-columns: 0.8fr 1.2fr;
  }
  .puzzle-hero h1 {
    font-size: clamp(54px, 9vw, 72px);
    max-width: 680px;
  }
  .puzzle-hero .hero-description {
    max-width: 510px;
  }
  .puzzle-hero .hero-art {
    height: 420px;
  }
  .puzzle-hero .hero-note-grid {
    align-self: center;
  }
  .hero-puzzle {
    top: 130px;
  }
  .hero-cutout {
    inset: 0 -10px 25px;
  }
  .puzzle-hero .prompt-what {
    top: 30px;
  }
  .puzzle-hero .prompt-why {
    top: 100px;
    left: 0;
  }
  .curiosity-burst {
    top: 28px;
  }
}
@media (max-width: 600px) {
  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .footer-brand .brand-signature {
    margin: 0;
    font-size: 19px;
  }
  .footer-description {
    grid-column: 1 / -1;
    padding-top: 0;
    font-size: 13px;
  }
  .footer-description br {
    display: none;
  }
  .footer-nav,
  .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    font-size: 14px;
  }
  .footer-nav a {
    display: flex;
    align-items: center;
    min-height: 40px;
  }
  .footer-contact .eyebrow {
    font-size: 10px;
  }
  .footer-contact > a {
    font-size: 14px;
  }
  .footer-contact > p:last-child {
    font-size: 13px;
  }
}
@media (max-width: 800px) {
  .puzzle-story.story-motion .story-shell {
    padding: 24px 24px 20px;
  }
  .puzzle-story.story-motion .story-heading {
    inset: 24px 24px auto;
  }
  .puzzle-story.story-motion .story-heading .section-intro {
    margin-top: 16px;
    line-height: 1.6;
  }
}
@media (max-width: 600px) {
  .puzzle-story.story-motion .story-shell {
    padding: 22px 18px 18px;
  }
  .puzzle-story.story-motion .story-heading {
    inset: 22px 18px auto;
  }
  .puzzle-story.story-motion .story-heading h2 {
    font-size: clamp(28px, 8vw, 44px);
  }
  .puzzle-story.story-motion .story-heading .eyebrow {
    margin-bottom: 16px;
  }
  .puzzle-story.story-motion .story-question {
    top: 59%;
  }
  .puzzle-story.story-motion .story-question > p {
    font-size: clamp(30px, 9.2vw, 52px);
  }
  .puzzle-story.story-motion .question-orbit {
    right: 2%;
    top: -55px;
    width: 60px;
    height: 60px;
  }
  .puzzle-story.story-motion .puzzle-board {
    height: calc(100% - 74px);
  }
  .puzzle-story.story-motion .connection-captions {
    gap: 6px;
    padding: 0;
    bottom: 12px;
    font-size: 11px;
  }
  .puzzle-story.story-motion .story-reason > p {
    font-size: clamp(32px, 10vw, 54px);
  }
  .puzzle-story.story-motion .story-reason > span {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.6;
  }
  .puzzle-story.story-motion .story-track {
    padding-top: 12px;
  }
  .puzzle-story.story-motion .story-caption {
    font-size: 7px;
    margin-top: 14px;
  }
}
@media (max-height: 600px) and (min-aspect-ratio: 6/5) {
  .puzzle-story.story-motion .story-shell {
    padding: 12px 24px;
  }
  .puzzle-story.story-motion .story-heading {
    inset: 12px 24px auto;
  }
  .puzzle-story.story-motion .story-heading .eyebrow {
    margin-bottom: 12px;
    font-size: 8px;
  }
  .puzzle-story.story-motion .story-heading h2 {
    font-size: clamp(22px, 3.4vw, 30px);
  }
  .puzzle-story.story-motion .story-heading .section-intro {
    display: none;
  }
  .puzzle-story.story-motion .story-stage-shell {
    padding-top: 26px;
  }
  .puzzle-story.story-motion .story-question {
    top: 45%;
    left: 73%;
    width: 54%;
  }
  .puzzle-story.story-motion .story-question > p {
    font-size: clamp(23px, 4vw, 34px);
    margin-top: 12px;
  }
  .puzzle-story.story-motion .question-orbit {
    display: none;
  }
  .puzzle-story.story-motion .puzzle-board {
    height: calc(100% - 24px);
  }
  .puzzle-story.story-motion .connection-captions {
    bottom: 0;
    font-size: 10px;
  }
  .puzzle-story.story-motion .story-reason {
    bottom: 24px;
  }
  .puzzle-story.story-motion .story-reason > p {
    font-size: clamp(24px, 4vw, 42px);
  }
  .puzzle-story.story-motion .story-reason > span {
    font-size: 11px;
    margin-top: 10px;
  }
  .puzzle-story.story-motion .story-track {
    margin-top: 8px;
    padding-top: 8px;
  }
  .puzzle-story.story-motion .story-caption {
    margin-top: 8px;
    font-size: 8px;
  }
}
.puzzle-hero .prompt-why {
  background: var(--paper);
  border-radius: 8px;
  padding: 3px 8px;
}
