/* This file also travels with the standalone, local HTML example. */
.lab-goal .lab-label {
  margin-bottom: 12px;
}
.goal-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.goal-options label {
  position: relative;
  cursor: pointer;
}
.goal-options input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.goal-options label > span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 11px;
  color: var(--text);
}
.goal-options input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.goal-options input:focus-visible + span {
  outline: 3px solid #95613c;
  outline-offset: 3px;
}
#sketch-choice-summary {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.lab-result {
  scroll-margin-top: 100px;
}
.sketch-caption p {
  font-size: 11px;
}
.sketch-dialog {
  background: var(--paper);
}
@media (min-width: 801px) {
  .lab-result,
  .lab-controls {
    position: sticky;
    top: 100px;
  }
  .lab-layout {
    gap: 45px;
    grid-template-columns: 29% 1fr;
  }
  .lab-controls .lab-goal {
    margin-top: 25px;
  }
}
@media (max-width: 800px) {
  .lab-result {
    scroll-margin-top: 96px;
  }
  .goal-options label > span {
    font-size: 12px;
  }
  .lab-controls .lab-goal {
    margin-top: 23px;
  }
}

.site-sketch {
  --sk-bg: #f4f6fa;
  --sk-ink: #172d46;
  --sk-accent: #2b50c7;
  --sk-on-accent: #fff;
  --sk-card: #fff;
  --sk-soft: #dfe7f8;
  --sk-line: #172d4626;
  --sk-extra: #f0c977;
  background: var(--sk-bg);
  color: var(--sk-ink);
  container-type: inline-size;
  overflow: clip;
  min-width: 0;
  text-align: left;
}
.site-sketch[data-palette='deep'] {
  --sk-bg: #14233c;
  --sk-ink: #f3f1ea;
  --sk-accent: #a8c9ff;
  --sk-on-accent: #14233c;
  --sk-card: #20334e;
  --sk-soft: #32486b;
  --sk-line: #e9f1ff33;
  --sk-extra: #e9b981;
}
.site-sketch[data-palette='warm'] {
  --sk-bg: #f6eadc;
  --sk-ink: #553524;
  --sk-accent: #a7452d;
  --sk-on-accent: #fff8ee;
  --sk-card: #fff7ec;
  --sk-soft: #ead1b9;
  --sk-line: #55352430;
  --sk-extra: #dca943;
}
.site-sketch[data-direction='learning'] {
  --sk-bg: #f1edff;
  --sk-ink: #35275a;
  --sk-accent: #6545ac;
  --sk-on-accent: #fff;
  --sk-card: #fffdf8;
  --sk-soft: #e0d7f6;
  --sk-line: #35275a24;
  --sk-extra: #ffd57f;
}
.site-sketch[data-direction='learning'][data-palette='deep'] {
  --sk-bg: #241c3e;
  --sk-ink: #f8f0ff;
  --sk-accent: #dbc6ff;
  --sk-on-accent: #2a1c42;
  --sk-card: #35264f;
  --sk-soft: #503570;
  --sk-line: #f8f0ff30;
  --sk-extra: #f2be85;
}
.site-sketch[data-direction='learning'][data-palette='warm'] {
  --sk-bg: #fff0d9;
  --sk-ink: #592f26;
  --sk-accent: #b14a30;
  --sk-on-accent: #fff7e9;
  --sk-card: #fffbef;
  --sk-soft: #f5d3bc;
  --sk-line: #592f2626;
  --sk-extra: #f6c360;
}
.sk-canvas {
  font:
    400 clamp(9px, 1.55cqw, 17px)/1.55 Arial,
    sans-serif;
}
.sk-canvas * {
  box-sizing: border-box;
}
.sk-canvas h3,
.sk-canvas h4,
.sk-canvas p {
  margin: 0;
  color: inherit;
}
.sk-canvas img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sk-canvas h3 {
  font:
    700 clamp(28px, 6.1cqw, 72px)/1.03 Arial,
    sans-serif;
  letter-spacing: -0.045em;
}
.sk-canvas h4 {
  font:
    600 clamp(13px, 2.5cqw, 29px)/1.18 Arial,
    sans-serif;
  letter-spacing: -0.035em;
}
.sk-canvas p {
  line-height: 1.6;
  opacity: 0.82;
}
.sk-kicker {
  display: block;
  font-size: clamp(7px, 1.15cqw, 13px);
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 600;
  margin-bottom: 2cqw;
  color: var(--sk-accent);
}
.sk-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3cqw;
  padding: 3.2cqw 4.5cqw;
  border-bottom: 1px solid var(--sk-line);
}
.sk-brand {
  font-size: clamp(15px, 2.4cqw, 28px);
  letter-spacing: -0.04em;
  line-height: 1.2;
  max-width: 57%;
  overflow-wrap: anywhere;
}
.sk-nav > div {
  display: flex;
  gap: 2.4cqw;
  font-size: clamp(7px, 1.1cqw, 13px);
  white-space: nowrap;
}
.sk-menu {
  display: none;
  font-size: 15px;
}
.sk-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3cqw;
  background: var(--sk-accent);
  color: var(--sk-on-accent);
  padding: 1.4cqw 2.2cqw;
  font-size: clamp(8px, 1.35cqw, 15px);
  font-weight: 500;
  line-height: 1.5;
  min-height: 29px;
}
.sk-cta > span {
  font-size: 1.35em;
}
.sk-text-link {
  display: inline-block;
  color: var(--sk-accent);
  font-weight: 600;
  margin-top: 2cqw;
}
.sk-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 2.7cqw 4.5cqw;
  border-top: 1px solid var(--sk-line);
  font-size: clamp(10px, 1.8cqw, 21px);
}
.sk-footer > span:last-child {
  font-size: 1.5em;
}
/* A business: strong typography, a brand study, then a useful next step. */
.sk-business-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2cqw;
  align-items: center;
  padding: 5cqw 4.5cqw;
  min-height: 41cqw;
}
.sk-business-hero p {
  max-width: 36ch;
  margin: 2.3cqw 0 3cqw;
}
.sk-orbit {
  height: 29cqw;
  position: relative;
  isolation: isolate;
}
.sk-orbit i {
  position: absolute;
  inset: 9% 12%;
  border: 1px solid var(--sk-accent);
  border-radius: 50%;
  transform: rotate(-35deg);
  opacity: 0.45;
}
.sk-orbit i:nth-child(2) {
  inset: 4% 30%;
  transform: rotate(35deg);
}
.sk-orbit i:nth-child(3) {
  inset: 26% 0;
  transform: rotate(-25deg);
}
.sk-orbit > span {
  position: absolute;
  left: 33%;
  top: 4%;
  font-size: 22cqw;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.1em;
  color: var(--sk-accent);
}
.sk-orbit small {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: clamp(6px, 0.95cqw, 11px);
  letter-spacing: 0.1em;
  color: var(--sk-accent);
}
.sk-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--sk-line);
  background: var(--sk-card);
}
.sk-service-grid article {
  padding: 3cqw;
  border-right: 1px solid var(--sk-line);
}
.sk-service-grid article > span,
.sk-play-cards article > span {
  display: block;
  font-size: clamp(6px, 1cqw, 11px);
  letter-spacing: 0.06em;
  margin-bottom: 1.5cqw;
}
.sk-service-grid h4 {
  font-size: clamp(12px, 2.3cqw, 27px);
}
.sk-service-grid p {
  font-size: clamp(8px, 1.25cqw, 14px);
  margin-top: 1.8cqw;
}
.sk-service-grid .sk-contact-card {
  background: var(--sk-accent);
  color: var(--sk-on-accent);
  border-right: 0;
}
.sk-contact-card .sk-cta {
  padding: 2cqw 0 0;
  font-size: clamp(7px, 1.15cqw, 13px);
  background: none;
  color: inherit;
  gap: 1cqw;
}
.sk-booking {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3cqw;
  align-items: center;
  padding: 3.8cqw 4.5cqw;
  background: var(--sk-card);
  border-top: 1px solid var(--sk-line);
}
.sk-booking p {
  margin-top: 1cqw;
}
.sk-appointments {
  display: grid;
  gap: 1cqw;
}
.sk-appointments > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--sk-soft);
  padding: 1.4cqw 2cqw;
}
.sk-appointments b {
  font-size: 1.1em;
  font-weight: 600;
  background: var(--sk-card);
  padding: 0.4cqw 1.3cqw;
}
.sk-brand-study {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 31cqw;
  padding: 2.5cqw;
  background: var(--sk-accent);
  color: var(--sk-on-accent);
  transform: rotate(3deg);
}
.sk-brand-study > span {
  font-size: clamp(6px, 1cqw, 11px);
  letter-spacing: 0.1em;
}
.sk-brand-study > strong {
  text-align: center;
  font-size: 20cqw;
  line-height: 1;
  letter-spacing: -0.08em;
}
.sk-brand-study > div {
  font-size: clamp(9px, 1.5cqw, 18px);
  overflow-wrap: anywhere;
}
.sk-brand-study > div > span {
  display: block;
  font-size: clamp(6px, 0.8cqw, 10px);
  margin-top: 1cqw;
  letter-spacing: 0.1em;
}
.sk-project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2cqw;
  padding: 0 4.5cqw 3.5cqw;
}
.sk-project-grid h4 {
  display: flex;
  justify-content: space-between;
  font-size: clamp(10px, 1.5cqw, 18px);
  padding-top: 1.5cqw;
}
.sk-project-grid h4 > span {
  opacity: 0.5;
  font-size: 0.8em;
}
.sk-project-art {
  height: 19cqw;
  min-height: 80px;
  position: relative;
  overflow: clip;
}
.sk-project-type {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--sk-soft);
  font:
    italic 12cqw/1 Georgia,
    serif;
}
.sk-project-type > span {
  font:
    400 clamp(8px, 1.3cqw, 15px)/1.4 Arial,
    sans-serif;
}
.sk-project-shape {
  background: var(--sk-ink);
  color: var(--sk-bg);
}
.sk-project-shape i {
  position: absolute;
  width: 45%;
  height: 140%;
  left: 16%;
  top: -20%;
  border: 2.8cqw solid var(--sk-extra);
  transform: rotate(35deg);
}
.sk-project-shape i:nth-child(2) {
  left: 44%;
  border-color: var(--sk-bg);
}
.sk-project-shape > span {
  position: absolute;
  left: 1.5cqw;
  bottom: 1.5cqw;
  font-size: clamp(6px, 0.85cqw, 10px);
  letter-spacing: 0.1em;
  background: var(--sk-ink);
  padding: 0.5cqw;
}
/* Places: an immersive photo, editorial type, and a route into the place. */
.site-sketch[data-direction='story'] .sk-brand {
  font:
    400 clamp(19px, 3.3cqw, 38px)/1 Georgia,
    serif;
}
.site-sketch[data-direction='story'] .sk-canvas h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(27px, 5.8cqw, 68px);
  letter-spacing: -0.04em;
}
.site-sketch[data-direction='story'] .sk-canvas h4 {
  font-family: Georgia, serif;
  font-weight: 400;
}
.sk-place-hero {
  position: relative;
  min-height: 44cqw;
  padding: 6cqw 4.5cqw 7cqw;
  isolation: isolate;
  color: #fff7e9;
}
.sk-place-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  object-position: 50% 55%;
}
.sk-place-hero:after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #102437b8, #10243744), linear-gradient(0deg, #1024378c, transparent 65%);
  z-index: -1;
}
.sk-place-hero > div {
  max-width: 85%;
}
.sk-place-hero .sk-kicker {
  color: #fff1d7;
}
.sk-place-hero p {
  margin: 2cqw 0 3cqw;
  max-width: 41ch;
  opacity: 1;
}
.sk-place-hero .sk-cta {
  background: #fff5e5;
  color: #273b49;
}
.site-sketch[data-palette='warm'] .sk-place-hero .sk-cta {
  background: #efbd7d;
  color: #42291b;
}
.sk-photo-note {
  position: absolute;
  bottom: 2cqw;
  right: 3cqw;
  font-size: clamp(6px, 0.9cqw, 10px);
  letter-spacing: 0.12em;
}
.sk-place-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5cqw;
  padding: 3.5cqw 4.5cqw;
}
.sk-place-cards article > img {
  height: 16cqw;
  min-height: 70px;
}
.sk-place-cards article > div {
  padding-top: 1.5cqw;
}
.sk-place-cards article span {
  display: block;
  font-size: clamp(6px, 1cqw, 11px);
  letter-spacing: 0.1em;
  margin-bottom: 0.7cqw;
  color: var(--sk-accent);
}
.sk-place-cards h4 {
  font-size: clamp(14px, 2.5cqw, 29px);
}
.sk-events {
  padding: 3cqw 4.5cqw;
}
.sk-events > div {
  padding-bottom: 2cqw;
}
.sk-events > div h4 {
  font-size: clamp(17px, 3cqw, 35px);
}
.sk-events article {
  display: flex;
  align-items: center;
  gap: 2.8cqw;
  padding: 1.8cqw 0;
  border-top: 1px solid var(--sk-line);
}
.sk-events article > span {
  display: grid;
  text-align: center;
  min-width: 5cqw;
  font-size: clamp(7px, 1cqw, 11px);
  line-height: 1.3;
  color: var(--sk-accent);
}
.sk-events article strong {
  font:
    400 clamp(20px, 4cqw, 45px)/1 Georgia,
    serif;
}
.sk-events article p {
  font-size: clamp(8px, 1.3cqw, 15px);
  margin-top: 0.5cqw;
}
.sk-events article > b {
  margin-left: auto;
  font-size: 1.5em;
  font-weight: 400;
}
.sk-place-story {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4cqw;
  align-items: center;
  padding: 3.5cqw 4.5cqw;
}
.sk-place-story > img {
  min-height: 20cqw;
  aspect-ratio: 1.15;
}
.sk-place-story h4 {
  font-size: clamp(19px, 3.5cqw, 40px);
}
.sk-place-story p {
  margin-top: 1.5cqw;
}
/* Learning: a character, generous rounded forms, and activities to explore. */
.site-sketch[data-direction='learning'] .sk-canvas h3 {
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: clamp(29px, 6.5cqw, 76px);
}
.site-sketch[data-direction='learning'] .sk-brand {
  font-weight: 800;
}
.site-sketch[data-direction='learning'] .sk-cta {
  border-radius: 100px;
  padding-inline: 2.8cqw;
}
.sk-learning-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1cqw;
  align-items: center;
  padding: 4cqw 4.5cqw 3.5cqw;
  min-height: 41cqw;
}
.sk-learning-hero p {
  margin: 2cqw 0 2.5cqw;
  max-width: 35ch;
}
.sk-mascot {
  position: relative;
  min-width: 0;
  align-self: stretch;
  isolation: isolate;
  min-height: 30cqw;
  display: grid;
  place-items: center;
}
.sk-mascot:before {
  content: '';
  position: absolute;
  inset: 12% 1% 12%;
  background: var(--sk-extra);
  border-radius: 48% 53% 40% 48%;
  transform: rotate(-9deg);
  z-index: -1;
}
.sk-mascot > img {
  height: 34cqw;
  width: 110%;
  object-fit: contain;
  max-width: none;
}
.sk-star {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 6cqw;
  color: var(--sk-accent);
  line-height: 1;
}
.sk-greeting {
  position: absolute;
  bottom: 0;
  left: 15%;
  padding: 1cqw 2cqw;
  background: var(--sk-card);
  color: var(--sk-ink);
  border: 1px solid var(--sk-line);
  border-radius: 100px;
  font-size: clamp(8px, 1.5cqw, 17px);
  transform: rotate(-5deg);
}
.sk-play-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5cqw;
  padding: 1.5cqw 4.5cqw 4cqw;
}
.sk-play-cards article {
  background: var(--sk-card);
  border: 1px solid var(--sk-line);
  padding: 1.5cqw;
  border-radius: 2cqw;
  overflow: clip;
}
.sk-play-cards article > span {
  margin: 1.3cqw 0 0.7cqw;
  font-size: clamp(6px, 0.83cqw, 10px);
}
.sk-play-cards h4 {
  font-size: clamp(12px, 2cqw, 23px);
}
.sk-chess-art,
.sk-farm-art,
.sk-letter-art {
  display: grid;
  place-items: center;
  height: 13cqw;
  min-height: 56px;
  border-radius: 1cqw;
  position: relative;
  overflow: clip;
}
.sk-chess-art {
  background: conic-gradient(#efe6d1 25%, #fff9ed 0 50%, #efe6d1 0 75%, #fff9ed 0) 0 0/4cqw 4cqw;
  color: #423153;
  font-size: 10cqw;
  line-height: 1;
}
.sk-farm-art {
  background: #c6e0d9;
}
.sk-farm-art i {
  position: absolute;
  inset: 52% -20% -80%;
  background: #ac6d47;
  border: 1.2cqw solid #e1ba78;
  transform: rotate(-25deg);
}
.sk-farm-art i:nth-child(2) {
  left: 10%;
  top: 65%;
}
.sk-farm-art i:nth-child(3) {
  left: 38%;
  top: 75%;
}
.sk-farm-art > span {
  position: absolute;
  right: 12%;
  top: 4%;
  font-size: 5cqw;
  color: #f4ad2e;
}
.sk-letter-art {
  background: var(--sk-soft);
  color: var(--sk-accent);
  font-size: 10cqw;
  font-weight: 800;
  line-height: 1;
}
.sk-letter-art > span {
  position: absolute;
  right: 13%;
  bottom: 15%;
  font-size: 4cqw;
  color: var(--sk-ink);
}
.sk-storybook {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3cqw;
  align-items: center;
  margin: 0 4.5cqw 4cqw;
  background: var(--sk-card);
  padding: 2cqw;
  border-radius: 2cqw;
  border: 1px solid var(--sk-line);
}
.sk-storybook > img {
  border-radius: 1cqw;
  aspect-ratio: 1;
  min-height: 24cqw;
}
.sk-storybook h4 {
  font-size: clamp(20px, 3.5cqw, 40px);
}
.sk-storybook p {
  margin: 1.5cqw 0 2cqw;
  font-size: clamp(8px, 1.3cqw, 15px);
}
.sk-reading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2cqw;
  align-items: center;
  margin: 1cqw 4.5cqw 4cqw;
  padding: 3.5cqw;
  background: var(--sk-card);
  border: 1px solid var(--sk-line);
  border-radius: 2cqw;
}
.sk-reading-line {
  font-size: clamp(20px, 4cqw, 47px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.04em;
  margin-block: 2cqw;
}
.sk-reading-line mark {
  background: var(--sk-extra);
  color: #38283b;
  padding: 0.3cqw 0.7cqw;
  border-radius: 0.5cqw;
}
.sk-reading p {
  font-size: clamp(8px, 1.25cqw, 14px);
}
.sk-audio {
  display: grid;
  justify-items: center;
  gap: 1cqw;
  color: var(--sk-accent);
}
.sk-audio > span {
  display: grid;
  place-items: center;
  width: 7cqw;
  height: 7cqw;
  min-width: 28px;
  min-height: 28px;
  border-radius: 50%;
  background: var(--sk-accent);
  color: var(--sk-on-accent);
  font-size: clamp(12px, 2cqw, 23px);
}
.sk-audio > div {
  display: flex;
  align-items: center;
  gap: 0.35cqw;
  height: 3cqw;
}
.sk-audio i {
  height: 40%;
  width: 0.3cqw;
  min-width: 1px;
  background: var(--sk-accent);
}
.sk-audio i:nth-child(2n) {
  height: 90%;
}
.sk-audio i:nth-child(3n) {
  height: 60%;
}
.sk-audio small {
  font-size: clamp(7px, 1.1cqw, 12px);
}
@container (max-width:430px) {
  .sk-nav {
    padding: 15px 18px;
  }
  .sk-nav > div {
    display: none;
  }
  .sk-menu {
    display: block;
  }
  .sk-brand {
    max-width: 82%;
  }
  .sk-business-hero,
  .sk-learning-hero {
    padding: 24px 18px;
    grid-template-columns: 1.5fr 0.75fr;
    min-height: 235px;
    gap: 0;
  }
  .sk-business-hero h3,
  .sk-learning-hero h3 {
    font-size: clamp(26px, 7.7cqw, 33px);
  }
  .sk-business-hero p,
  .sk-learning-hero p {
    margin: 13px 0 17px;
    font-size: 10px;
  }
  .sk-kicker {
    font-size: 6px;
    margin-bottom: 10px;
  }
  .sk-business-hero .sk-kicker,
  .sk-learning-hero .sk-kicker {
    max-width: 150px;
  }
  .sk-orbit {
    height: 40cqw;
  }
  .sk-orbit > span {
    font-size: 28cqw;
    left: 15%;
  }
  .sk-orbit small {
    font-size: 5px;
    right: -3px;
  }
  .sk-orbit i {
    inset: 5% -10%;
  }
  .sk-orbit i:nth-child(2) {
    inset: 3% 13%;
  }
  .sk-orbit i:nth-child(3) {
    inset: 25% -20%;
  }
  .sk-brand-study {
    min-height: 36cqw;
    margin-left: 5px;
  }
  .sk-brand-study > span {
    font-size: 5px;
  }
  .sk-brand-study > strong {
    font-size: 24cqw;
  }
  .sk-brand-study > div {
    font-size: 8px;
  }
  .sk-brand-study > div > span {
    font-size: 5px;
  }
  .sk-service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sk-service-grid article {
    padding: 16px;
  }
  .sk-service-grid .sk-contact-card {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 7px;
  }
  .sk-contact-card > span {
    grid-column: 1/-1;
  }
  .sk-contact-card .sk-cta {
    justify-self: end;
  }
  .sk-service-grid h4 {
    font-size: 14px;
  }
  .sk-service-grid p {
    font-size: 9px;
    margin-top: 9px;
  }
  .sk-cta {
    font-size: 9px;
    padding: 9px 11px;
    gap: 10px;
  }
  .sk-footer {
    padding: 15px 18px;
    font-size: 11px;
  }
  .sk-booking {
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .sk-appointments {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
  .sk-appointments > span {
    display: grid;
    gap: 6px;
    text-align: center;
    padding: 7px 3px;
    font-size: 9px;
  }
  .sk-appointments b {
    padding: 4px;
    font-size: 10px;
  }
  .sk-project-grid {
    padding: 0 18px 18px;
    gap: 10px;
  }
  .sk-project-art {
    height: 26cqw;
  }
  .sk-project-type > span {
    font-size: 6px;
  }
  .sk-project-grid h4 {
    font-size: 9px;
    padding-top: 8px;
  }
  .sk-place-hero {
    min-height: 290px;
    padding: 30px 18px 32px;
  }
  .sk-place-hero > div {
    max-width: 100%;
  }
  .site-sketch[data-direction='story'] .sk-canvas h3 {
    font-size: clamp(28px, 8cqw, 35px);
  }
  .sk-place-hero p {
    font-size: 10px;
    max-width: 29ch;
    margin: 14px 0 18px;
  }
  .sk-photo-note {
    bottom: 10px;
    right: 15px;
    font-size: 5px;
  }
  .sk-place-cards {
    padding: 20px 18px;
    gap: 12px;
  }
  .sk-place-cards article > img {
    height: 24cqw;
  }
  .sk-place-cards article > div {
    padding-top: 9px;
  }
  .sk-place-cards article span {
    font-size: 6px;
    margin-bottom: 5px;
  }
  .sk-place-cards h4 {
    font-size: 16px;
    line-height: 1.15;
  }
  .sk-events {
    padding: 20px 18px;
  }
  .sk-events > div {
    padding-bottom: 12px;
  }
  .sk-events article {
    padding: 12px 0;
    gap: 15px;
  }
  .sk-events article p {
    font-size: 9px;
  }
  .sk-events article > span {
    min-width: 26px;
  }
  .sk-place-story {
    padding: 18px;
    gap: 15px;
  }
  .sk-place-story > img {
    aspect-ratio: 0.7;
  }
  .sk-place-story h4 {
    font-size: 20px;
  }
  .sk-place-story p {
    font-size: 9px;
    margin-top: 10px;
  }
  .sk-learning-hero {
    grid-template-columns: 1.3fr 0.8fr;
    padding-bottom: 20px;
  }
  .sk-mascot {
    min-height: 40cqw;
    align-self: center;
  }
  .sk-mascot > img {
    height: 43cqw;
    width: 140%;
  }
  .sk-mascot:before {
    inset: 7% -8% 15%;
  }
  .sk-greeting {
    font-size: 7px;
    padding: 5px 8px;
    left: 0;
    bottom: 1%;
  }
  .sk-star {
    font-size: 23px;
    right: -6px;
    top: -8px;
  }
  .sk-play-cards {
    padding: 0 14px 20px;
    gap: 7px;
  }
  .sk-play-cards article {
    padding: 7px;
    border-radius: 9px;
  }
  .sk-play-cards h4 {
    font-size: 12px;
  }
  .sk-play-cards article > span {
    font-size: 5px;
    line-height: 1.5;
    margin: 8px 0 6px;
  }
  .sk-chess-art,
  .sk-farm-art,
  .sk-letter-art {
    height: 20cqw;
    min-height: 0;
  }
  .sk-chess-art {
    font-size: 17cqw;
    background-size: 7cqw 7cqw;
  }
  .sk-letter-art {
    font-size: 16cqw;
  }
  .sk-farm-art > span {
    font-size: 8cqw;
  }
  .sk-storybook {
    margin: 0 18px 20px;
    padding: 10px;
    gap: 13px;
  }
  .sk-storybook > img {
    aspect-ratio: 0.6;
  }
  .sk-storybook h4 {
    font-size: 20px;
  }
  .sk-storybook p {
    font-size: 9px;
    margin-block: 10px;
  }
  .sk-storybook .sk-cta {
    padding: 7px 9px;
    font-size: 8px;
  }
  .sk-reading {
    margin: 0 18px 20px;
    padding: 17px;
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .sk-reading-line {
    font-size: 25px;
    margin-block: 13px;
  }
  .sk-audio {
    display: flex;
    gap: 13px;
  }
  .sk-audio > div {
    height: 18px;
    gap: 3px;
  }
  .sk-audio i {
    width: 2px;
  }
  .sk-audio small {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-sketch {
    scroll-behavior: auto;
  }
}
