@font-face {
  font-family: Book;
  src: url("/fonts/PretendardVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --green: #164d3e;
  --cream: #fcf8ed;
  --mint: #d8ead4;
  --orange: #eb703e;
  --ink: #233b32;
  --muted: #6c786e;
  --line: #d9dfcf;
  --pad: clamp(22px, 5vw, 90px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Book, "Malgun Gothic", sans-serif;
  word-break: keep-all;
  overflow-wrap: break-word;
}
body.modal-open {
  overflow: hidden;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
  border: 0;
  color: inherit;
  background: none;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1280px, calc(100% - var(--pad) * 2));
  margin-inline: auto;
}
.section {
  padding-block: 110px;
}
.skip {
  position: fixed;
  top: 0;
  left: 20px;
  transform: translateY(-150%);
  z-index: 100;
  background: white;
  padding: 14px;
}
.skip:focus {
  transform: none;
}
.demo-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8px var(--pad);
  font-size: 8px;
  min-height: 30px;
  background: #eaf0e4;
  color: #5b6a5b;
}
.demo-note > span:nth-child(2) {
  margin-right: auto;
}
.header {
  height: 88px;
  background: var(--cream);
  display: flex;
  align-items: center;
  padding-inline: var(--pad);
  gap: 27px;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #164d3e12;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand strong {
  font-size: 34px;
  letter-spacing: -0.06em;
  font-weight: 850;
  color: var(--green);
}
.brand > span {
  font-size: 10px;
  line-height: 1.4;
  margin-left: 5px;
  max-width: 44px;
  letter-spacing: -0.02em;
}
.header nav {
  margin-left: auto;
  display: flex;
  gap: 27px;
  font-size: 13px;
  font-weight: 600;
}
.header nav a {
  padding-block: 15px;
}
.header nav a:hover {
  color: var(--orange);
}
.header-cta {
  background: var(--green);
  color: var(--cream);
  border-radius: 30px;
  font-size: 12px;
  white-space: nowrap;
  padding: 14px 19px;
}
.motion-toggle {
  font-size: 9px;
  white-space: nowrap;
  border: 1px solid #b8c5b6;
  border-radius: 20px;
  padding: 10px 11px;
}
.motion-toggle span {
  margin-left: 5px;
}
.menu-toggle {
  display: none;
}
.page-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
}
.hero {
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  min-height: 640px;
  padding-block: 75px 65px;
  gap: 30px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 650;
  color: var(--green);
  line-height: 1.7;
}
.hero .eyebrow {
  font-size: 13px;
  letter-spacing: -0.025em;
}
.hero h1 {
  font-size: clamp(42px, 4.6vw, 67px);
  letter-spacing: -0.06em;
  font-weight: 800;
  line-height: 1.24;
  margin: 26px 0 26px;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 4px;
}
.hero h1 .line > span {
  display: block;
  animation: title-in 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero h1 .line:nth-child(2) > span {
  animation-delay: 0.15s;
}
em {
  font-style: normal;
  color: var(--orange);
}
.hero h1 em {
  position: relative;
  display: inline-block;
}
.hero h1 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: -5px;
  bottom: 0;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  transform: rotate(-3deg);
}
.hero-description {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  animation: rise 1s 0.3s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 29px;
  animation: rise 1s 0.4s both;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  min-height: 54px;
  padding: 16px 23px;
  border-radius: 32px;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 0.25s,
    background 0.25s;
}
.button:hover {
  transform: translateY(-3px);
}
.button span {
  font-size: 21px;
  font-weight: 400;
}
.dark {
  background: var(--green);
  color: var(--cream);
}
.dark:hover {
  background: #28755c;
}
.cream {
  background: #f6efc9;
  color: var(--green);
}
.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 11px 0;
  font-size: 12px;
  border-bottom: 1px solid currentColor;
}
.hero-small {
  font-size: 10px;
  color: #899181;
  margin-top: 27px;
}
.hero-visual {
  position: relative;
  perspective: 1200px;
  transform: translateY(var(--hero-shift, 0px));
}
.illustration {
  border-radius: 48% 48% 20px 20px;
  overflow: hidden;
  transform: rotate(-3deg);
  animation: book-open 1.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  background: #f8f2e0;
}
.illustration img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-sticker {
  position: absolute;
  z-index: 2;
  box-shadow: 0 4px 20px #173e3020;
}
.sticker-one {
  left: -30px;
  top: 10%;
  background: var(--green);
  color: var(--cream);
  width: 113px;
  height: 113px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  transform: rotate(-14deg);
  animation: float-one 5s ease-in-out infinite;
}
.sticker-one b {
  font-size: 22px;
}
.sticker-two {
  bottom: -17px;
  right: 10px;
  transform: rotate(8deg);
  background: #f4a376;
  padding: 16px 23px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.4;
  letter-spacing: 0.06em;
  border: 1px solid #c67956;
  animation: float-two 6s ease-in-out infinite;
}
.spark {
  position: absolute;
  right: 0;
  top: -40px;
  color: var(--orange);
  font-size: 70px;
  animation: flower-turn 14s linear infinite;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.05em;
  border-top: 1px solid var(--line);
  padding: 25px 0 27px;
  color: var(--muted);
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-bottom a span {
  font-size: 19px;
}
.manifesto {
  background: var(--mint);
  text-align: center;
  position: relative;
  border-radius: 50% 50% 0 0/35px 35px 0 0;
  padding-top: 100px;
}
.reading-line {
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.45;
  letter-spacing: -0.045em;
  font-weight: 700;
  margin: 28px 0;
}
.reading-line span {
  color: var(--green);
  transition: opacity 0.25s;
}
.motion-ready:not(.motion-off) .reading-line span {
  opacity: 0.25;
}
.motion-ready:not(.motion-off) .reading-line span.lit {
  opacity: 1;
}
.reading-line .accent-word {
  color: #b44822;
}
.section-copy {
  font-size: 15px;
  color: #58705c;
  line-height: 1.9;
}
.thoughts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 65px;
  text-align: left;
}
.thoughts article {
  background: #fcf8edf2;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 7px 0 #a5bd9e20;
}
.thought-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 31px;
  color: var(--green);
  background: #e1ebd5;
}
.thoughts article:nth-child(2) .thought-icon {
  background: #f7d9be;
  color: #a84d2a;
}
.thoughts article:nth-child(3) .thought-icon {
  background: #e1e6f3;
  color: #556c97;
}
.thoughts h3 {
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.5;
  margin: 25px 0 15px;
}
.thoughts p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.example-note {
  font-size: 10px;
  color: #75816f;
  line-height: 1.8;
  margin-top: 26px;
}
.class-section {
  background: #164d3e;
  color: var(--cream);
  padding-block: 110px 100px;
}
.class-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 95px;
  align-items: start;
}
.class-intro {
  position: sticky;
  top: 145px;
}
.class-intro .eyebrow {
  color: #b5d6bc;
}
.class-intro h2 {
  font-size: clamp(40px, 4.5vw, 65px);
  line-height: 1.22;
  margin: 30px 0 24px;
}
.class-intro em {
  color: #f6c690;
}
.class-intro > p:not(.eyebrow) {
  color: #b7cebd;
  font-size: 15px;
  line-height: 1.9;
}
.chapter-dots {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.chapter-dots a {
  font-size: 11px;
  padding: 10px 0;
  color: #9ab9a5;
  border-bottom: 2px solid transparent;
}
.chapter-dots a[aria-current="step"] {
  color: #f6efc9;
  border-color: #eeb082;
}
.big-flower {
  font-size: 160px;
  color: #d8ead4;
  display: inline-block;
  margin-top: 30px;
  line-height: 1;
  transform: rotate(var(--flower-angle, 0deg));
}
.class-cards {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.lesson-card {
  border-radius: 25px;
  background: #f5ebcc;
  color: var(--green);
  padding: 30px 34px 35px;
  transform: translateY(var(--card-shift, 0px)) rotate(var(--card-turn, 0deg));
  transition: box-shadow 0.25s;
  scroll-margin-top: 120px;
}
.lesson-card:hover {
  box-shadow: 0 18px 50px #00291755;
}
.talk-card {
  background: #dce9fa;
}
.make-card {
  background: #f5cfb9;
}
.lesson-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  letter-spacing: 0.04em;
}
.lesson-art {
  height: 250px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 26px;
  perspective: 800px;
}
.lesson-card h3 {
  font-size: 29px;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 14px;
}
.lesson-card p {
  font-size: 13px;
  line-height: 1.9;
  color: #526c58;
}
.paper-book {
  width: 300px;
  max-width: 90%;
  height: 200px;
  display: flex;
  transform: rotate(-5deg);
  filter: drop-shadow(0 12px 10px #2f4d2220);
}
.paper-book > div {
  width: 50%;
  background: #fdf9ed;
  border: 1px solid #d6d4bd;
  border-radius: 7px 14px 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}
.paper-book > div:first-child {
  transform-origin: right center;
  transform: rotateY(-17deg);
}
.paper-book > div:last-child {
  border-radius: 14px 7px 5px 5px;
  transform-origin: left center;
  transform: rotateY(17deg);
}
.paper-book i {
  font-style: normal;
  font-size: 65px;
  color: #ed8755;
}
.paper-book b {
  font-size: 58px;
  font-weight: 400;
  color: #d3a944;
  margin-bottom: 15px;
}
.paper-book > div:last-child > span {
  font-size: 10px;
  font-weight: 400;
}
.lesson-card:hover .paper-book > div {
  transform: rotateY(0);
}
.paper-book > div {
  transition: transform 0.6s;
}
.bubbles > span {
  position: absolute;
  border-radius: 22px 22px 22px 3px;
  background: #fff;
  padding: 21px 26px;
  font-size: 19px;
  font-weight: 600;
  z-index: 2;
  transform: rotate(-7deg);
  left: 3%;
  top: 25px;
}
.bubbles > span:nth-child(2) {
  left: auto;
  right: 0;
  top: 135px;
  background: var(--green);
  color: #fff;
  transform: rotate(6deg);
  border-radius: 22px 22px 3px 22px;
}
.bubbles > b {
  position: absolute;
  font-size: 180px;
  color: #a4badb;
  line-height: 1;
  left: 40%;
  top: 66px;
}
.note-paper {
  width: 230px;
  max-width: 78%;
  height: 210px;
  background: #fff9ea;
  box-shadow: 0 7px 20px #4c2d2220;
  transform: rotate(-7deg);
  padding: 25px;
}
.note-paper > span {
  font-size: 11px;
}
.note-paper i {
  height: 1px;
  background: #b5c3af;
  display: block;
  margin-top: 25px;
}
.note-paper b {
  display: block;
  margin-top: 22px;
  font-size: 22px;
  color: #d36c3f;
  transform: rotate(-4deg);
}
.pencil {
  position: absolute;
  right: 12%;
  top: 40px;
  width: 18px;
  height: 170px;
  border-radius: 5px;
  background: linear-gradient(90deg, #285a43 50%, #639675 50%);
  transform: rotate(25deg);
}
.pencil:after {
  content: "";
  position: absolute;
  bottom: -22px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 23px solid #d9aa72;
}
.little-star {
  position: absolute;
  left: 8%;
  top: 10px;
  font-size: 70px;
  color: #ab643d;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 43px;
}
h2 {
  font-size: clamp(32px, 3.6vw, 49px);
  line-height: 1.35;
  letter-spacing: -0.05em;
  font-weight: 750;
}
.section-heading h2 {
  margin-top: 23px;
}
.section-heading > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
}
.program-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}
.program-tabs button {
  font-size: 18px;
  font-weight: 650;
  border: 1px solid #cbd6c7;
  border-radius: 16px 16px 0 0;
  padding: 23px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.program-tabs button > span {
  font-size: 10px;
  font-weight: 400;
}
.program-tabs button[aria-selected="true"] {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.program-panel {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  background: #fffdf7;
  border: 1px solid #cbd6c7;
  border-radius: 0 0 22px 22px;
  overflow: hidden;
  min-height: 445px;
}
.program-art {
  background: #e7edda;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.plant-stem {
  height: 175px;
  width: 8px;
  position: absolute;
  bottom: 110px;
  left: calc(50% - 4px);
  background: var(--green);
  border-radius: 5px;
}
.leaf {
  position: absolute;
  width: 105px;
  height: 63px;
  background: #7d9f61;
  border-radius: 90% 0 90% 0;
  left: calc(50% - 101px);
  bottom: 220px;
  transform: rotate(30deg);
  transform-origin: bottom right;
  transition:
    transform 0.7s,
    background 0.5s;
}
.leaf-two {
  left: 50%;
  bottom: 175px;
  transform: rotate(-15deg);
  border-radius: 0 90% 0 90%;
  background: #4b7851;
  transform-origin: bottom left;
}
.leaf-three {
  left: 50%;
  bottom: 265px;
  width: 75px;
  height: 45px;
  transform: rotate(-35deg);
  background: #afc486;
}
.plant-pot {
  position: absolute;
  bottom: 61px;
  left: calc(50% - 63px);
  width: 126px;
  height: 108px;
  background: #d9895a;
  clip-path: polygon(0 0, 100% 0, 83% 100%, 17% 100%);
}
.plant-pot:after {
  content: "책틈";
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 28px;
  color: #fff1ce;
  font-size: 20px;
  font-weight: 700;
}
.plant-sun {
  position: absolute;
  right: 35px;
  top: 35px;
  font-size: 63px;
  color: #d99a53;
}
.program-art small {
  position: absolute;
  bottom: 23px;
  left: 0;
  right: 0;
  font-size: 8px;
  text-align: center;
  letter-spacing: 0.1em;
}
.program-art[data-kind="branch"] {
  background: #dfeaf1;
}
.program-art[data-kind="branch"] .leaf {
  transform: rotate(4deg) scale(1.15);
}
.program-art[data-kind="branch"] .leaf-two {
  transform: rotate(-30deg) scale(1.18);
}
.program-art[data-kind="forest"] {
  background: #eddccb;
}
.program-art[data-kind="forest"] .leaf {
  transform: rotate(-15deg) scale(1.3);
  background: #477e50;
}
.program-art[data-kind="forest"] .leaf-two {
  transform: rotate(-25deg) scale(1.4);
}
.program-art[data-kind="forest"] .leaf-three {
  transform: rotate(-40deg) scale(1.5);
}
.program-copy {
  padding: 48px 50px;
}
.pill {
  display: inline-block;
  background: #eef1e3;
  border-radius: 20px;
  font-size: 11px;
  padding: 9px 13px;
  color: #5e744f;
}
.program-copy h3 {
  font-size: 31px;
  line-height: 1.4;
  letter-spacing: -0.045em;
  margin: 23px 0 17px;
}
.program-copy > p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}
.program-copy ul {
  list-style: none;
  padding: 0;
  margin: 23px 0;
}
.program-copy li {
  font-size: 12px;
  line-height: 1.9;
  padding: 5px 0;
}
.program-copy li:before {
  content: "↗";
  margin-right: 13px;
  color: var(--orange);
}
.story-section {
  background: #f0dccb;
}
.story-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  align-items: center;
  gap: 55px;
}
.story-intro h2 {
  margin-top: 25px;
}
.story-intro > p:not(.eyebrow):not(.example-note) {
  font-size: 14px;
  line-height: 1.9;
  color: #7b6b5e;
  margin-top: 24px;
}
.story-intro .button {
  margin-top: 28px;
}
.storybook {
  display: grid;
  grid-template-columns: 1fr 1fr;
  perspective: 1400px;
  filter: drop-shadow(0 18px 15px #67422e1c);
  min-width: 0;
}
.story-cover {
  background: #214f42;
  color: #f5eacc;
  min-height: 430px;
  border-radius: 8px 18px 18px 8px;
  padding: 27px 26px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  border: 1px solid #163d31;
}
.story-cover > span {
  font-size: 8px;
  letter-spacing: 0.03em;
}
.story-cover h3 {
  font-size: 31px;
  line-height: 1.3;
  letter-spacing: -0.05em;
  margin: 24px 0 20px;
}
.story-cover small {
  font-size: 9px;
  color: #c6d8b6;
}
.snail {
  height: 135px;
  width: 170px;
  position: relative;
  margin-top: 28px;
}
.snail i {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #e6a768;
  left: 34px;
  top: 8px;
  border: 15px double #805138;
}
.snail b {
  position: absolute;
  left: 20px;
  bottom: 19px;
  width: 130px;
  height: 34px;
  border-radius: 40px;
  background: #e7d9ac;
}
.snail em {
  position: absolute;
  right: 25px;
  top: 50px;
  width: 14px;
  height: 45px;
  transform: rotate(16deg);
  border-radius: 15px;
  background: #e7d9ac;
}
.snail em:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #214f42;
}
.story-page {
  position: relative;
  background: #fff9e9;
  border-radius: 16px 8px 8px 16px;
  border: 1px solid #dfd0b6;
  padding: 31px 26px;
  display: flex;
  flex-direction: column;
  transform-origin: left center;
}
.story-page-label {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #93856d;
}
.story-page > p {
  font-size: 18px;
  line-height: 1.95;
  font-weight: 550;
  letter-spacing: -0.02em;
  margin-top: 35px;
}
.story-page > span:not(.story-page-label) {
  font-size: 12px;
  color: #c16b40;
  line-height: 1.8;
  margin-top: 26px;
}
.story-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 25px;
  font-size: 10px;
}
.story-controls button {
  width: 39px;
  height: 39px;
  border: 1px solid #d3c8ac;
  border-radius: 50%;
  font-size: 21px;
}
.story-controls button:disabled {
  opacity: 0.3;
  cursor: default;
}
.week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}
.week button {
  border: 1px solid #cbd6c7;
  border-radius: 60px 60px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 10px 22px;
  background: #f4f2e5;
  min-width: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}
.week button:hover {
  transform: translateY(-5px);
}
.week button > span {
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #7c8972;
}
.week button > b {
  font-size: 29px;
  font-weight: 600;
  margin: 21px 0;
}
.week button > i {
  font-style: normal;
  font-size: 25px;
  color: #96a587;
  width: 46px;
  height: 46px;
  border: 1px dashed #b8c7a9;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.week button[aria-pressed="true"] {
  background: #d8ead4;
  border-color: #8fae88;
}
.week button[aria-pressed="true"] i {
  background: var(--green);
  color: #f7e8b8;
  border-style: solid;
  border-color: var(--green);
  animation: stamp 0.35s ease-out;
}
.week-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  font-size: 12px;
  color: var(--green);
}
.week-bottom button {
  font-size: 11px;
  padding: 10px 0;
  border-bottom: 1px solid #a8b89a;
}
.routine .example-note {
  margin-top: 15px;
}
.faq-section {
  background: #eaf0e4;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 85px;
}
.faq-layout h2 {
  margin-top: 24px;
}
.faq-flower {
  display: inline-block;
  font-size: 95px;
  color: #a4b898;
  margin-top: 24px;
  line-height: 1;
}
.faq {
  border-top: 1px solid #68806a;
}
.faq details {
  border-bottom: 1px solid #cbd7c6;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  list-style: none;
  cursor: pointer;
  padding: 25px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary > span {
  font-size: 26px;
  font-weight: 300;
  flex-shrink: 0;
}
.faq details[open] summary > span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 13px;
  line-height: 1.9;
  color: #64785f;
  padding: 0 25px 27px 0;
}
.closing {
  background: var(--green);
  color: var(--cream);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.closing .wrap {
  position: relative;
}
.closing .eyebrow {
  color: #c3d4b1;
}
.closing h2 {
  font-size: clamp(35px, 4.2vw, 59px);
  margin: 29px 0 33px;
}
.closing em {
  color: #f3bf92;
}
.closing .wrap > p:last-child {
  font-size: 11px;
  color: #b2cbb6;
  margin-top: 24px;
}
.closing-sun {
  position: absolute;
  right: 30px;
  top: 35px;
  font-size: 230px;
  color: #e9bd85;
  line-height: 1;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
  padding-block: 42px 125px;
}
.footer .brand strong {
  font-size: 29px;
}
.footer p {
  font-size: 10px;
  line-height: 1.9;
  color: var(--muted);
}
.footer > div > a {
  font-size: 11px;
  display: inline-block;
  margin-top: 16px;
  border-bottom: 1px solid #a8b69c;
  padding-bottom: 7px;
}
.footer small {
  width: 100%;
  font-size: 8px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  color: #7e8974;
}
.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff9eaf5;
  box-shadow: 0 8px 35px #183c3026;
  border: 1px solid #b9c6ad;
  backdrop-filter: blur(10px);
  padding: 9px 10px 9px 23px;
  border-radius: 40px;
  z-index: 25;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.past-hero .floating-cta {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}
.floating-cta > span {
  font-size: 11px;
  margin-right: 16px;
  white-space: nowrap;
}
.floating-cta button {
  border: 1px solid #9ab095;
  border-radius: 30px;
  padding: 12px 21px;
  font-size: 12px;
  white-space: nowrap;
}
.floating-cta button:last-child {
  background: var(--green);
  color: var(--cream);
}
dialog {
  width: 590px;
  max-width: calc(100% - 32px);
  max-height: calc(100svh - 36px);
  border: 0;
  border-radius: 24px;
  background: var(--cream);
  color: var(--ink);
  padding: 0;
  box-shadow: 0 20px 80px #082a2840;
}
dialog::backdrop {
  background: #0c3024b5;
  backdrop-filter: blur(5px);
}
.dialog-shell {
  padding: 42px;
  position: relative;
}
.close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 42px;
  height: 42px;
  font-size: 28px;
  font-weight: 300;
}
.dialog-shell h2 {
  font-size: 30px;
  margin: 22px 0 17px;
}
.dialog-note {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}
.dialog-story {
  font-size: 15px;
  line-height: 1.95;
  padding: 22px;
  background: #e9eddb;
  border-radius: 15px;
  margin: 22px 0;
}
.dialog-story b {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--green);
}
.story-choices {
  border: 0;
  padding: 0;
  margin: 25px 0;
}
.story-choices legend {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
  margin-bottom: 15px;
}
.story-choices label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.7;
  padding: 13px 12px;
  border: 1px solid #c9d3be;
  border-radius: 10px;
  margin-top: 8px;
  cursor: pointer;
}
.story-choices input {
  accent-color: var(--green);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.story-choices label:has(input:checked) {
  background: #e4edd9;
  border-color: #9bb18d;
}
#thought-response {
  font-size: 13px;
  line-height: 1.85;
  color: #a45b35;
  background: #f5e8d4;
  padding: 17px;
  border-radius: 12px;
  margin-bottom: 20px;
}
#story-to-consult {
  width: 100%;
  margin-top: 23px;
}
form {
  margin-top: 26px;
}
form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}
form label > span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
}
select,
textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  padding: 13px 14px;
  background: #fffdf6;
  border: 1px solid #cbd5bf;
  border-radius: 10px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.7;
}
textarea {
  resize: vertical;
}
form .button {
  width: 100%;
  margin-top: 4px;
}
.preview-label {
  color: #426843;
  background: #e5edda;
  font-size: 11px;
  padding: 12px;
  margin: 26px 0;
  border-radius: 10px;
}
#consult-preview h3 {
  font-size: 24px;
  letter-spacing: -0.04em;
}
#preview-content {
  margin-block: 22px;
}
#preview-content > div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 15px;
  font-size: 13px;
  line-height: 1.8;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
#preview-content dt {
  color: var(--muted);
}
#preview-content dd {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
#consult-preview > .button {
  width: 100%;
  margin-top: 25px;
}
#edit-preview {
  font-size: 12px;
}
.motion-ready [data-reveal] {
  transition:
    opacity 0.8s,
    transform 0.8s;
  transition-delay: var(--delay, 0s);
}
.motion-ready:not(.motion-off) [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(30px);
}
.thoughts article:nth-child(2) {
  --delay: 0.1s;
}
.thoughts article:nth-child(3) {
  --delay: 0.2s;
}
.motion-off *,
.motion-off *:before,
.motion-off *:after {
  animation: none !important;
  transition: none !important;
}
.motion-off .hero-visual,
.motion-off .lesson-card,
.motion-off .big-flower {
  transform: none !important;
}
.motion-off .reading-line span {
  opacity: 1 !important;
}
.motion-off [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}
html:has(.motion-off) {
  scroll-behavior: auto;
}
.motion-off .class-intro {
  position: static;
}
@keyframes title-in {
  from {
    transform: translateY(110%) rotate(4deg);
  }
  to {
    transform: none;
  }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes book-open {
  from {
    opacity: 0;
    transform: rotateY(-25deg) rotate(-8deg) scale(0.92);
  }
  to {
    opacity: 1;
    transform: rotateY(0) rotate(-3deg) scale(1);
  }
}
@keyframes float-one {
  0%,
  100% {
    transform: translateY(0) rotate(-14deg);
  }
  50% {
    transform: translateY(-10px) rotate(-9deg);
  }
}
@keyframes float-two {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }
  50% {
    transform: translateY(8px) rotate(12deg);
  }
}
@keyframes flower-turn {
  to {
    transform: rotate(360deg);
  }
}
@keyframes stamp {
  from {
    transform: scale(1.5) rotate(-20deg);
    opacity: 0.4;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@media (min-width: 1900px) {
  .hero-inner {
    min-height: 760px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .header {
    padding-inline: max(var(--pad), calc((100% - 1540px) / 2));
  }
}
@media (max-width: 1150px) {
  .header {
    gap: 18px;
  }
  .brand > span {
    display: none;
  }
  .header nav {
    gap: 21px;
    font-size: 12px;
  }
  .hero-inner {
    gap: 30px;
    min-height: 600px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-visual {
    margin-left: 10px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .class-layout {
    gap: 55px;
  }
  .lesson-card {
    padding: 28px;
  }
  .program-tabs button {
    font-size: 16px;
    gap: 10px;
    padding-inline: 17px;
  }
  .program-tabs button > span {
    font-size: 9px;
  }
  .program-copy {
    padding: 36px;
  }
  .story-layout {
    gap: 30px;
    grid-template-columns: 0.85fr 1.3fr;
  }
  .story-cover,
  .story-page {
    padding: 26px 20px;
  }
  .story-cover h3 {
    font-size: 28px;
  }
  .story-page > p {
    font-size: 16px;
  }
  .thoughts article {
    padding: 25px;
  }
  .thoughts h3 {
    font-size: 18px;
  }
  .closing-sun {
    font-size: 180px;
    right: 0;
  }
  .faq-layout {
    gap: 50px;
  }
}
@media (max-width: 900px) {
  .header {
    height: 76px;
    gap: 15px;
  }
  .brand strong {
    font-size: 30px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 15px var(--pad) 25px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px #164d3e15;
  }
  .header nav.open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .header nav a {
    font-size: 17px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .motion-toggle {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 33px;
    height: 40px;
    padding: 4px;
  }
  .menu-toggle i {
    display: block;
    width: 23px;
    height: 1px;
    background: var(--green);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] i:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 550px;
    gap: 25px;
    padding-top: 60px;
  }
  .hero h1 {
    font-size: 39px;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-actions {
    margin-top: 25px;
    display: block;
  }
  .hero-actions .text-link {
    margin-top: 15px;
  }
  .hero-small {
    font-size: 9px;
  }
  .sticker-one {
    width: 84px;
    height: 84px;
    font-size: 10px;
    left: -20px;
    top: -15px;
  }
  .sticker-one b {
    font-size: 18px;
  }
  .sticker-two {
    font-size: 8px;
    padding: 12px 15px;
  }
  .spark {
    font-size: 48px;
    top: -35px;
  }
  .section {
    padding-block: 80px;
  }
  .thoughts {
    gap: 15px;
    margin-top: 45px;
  }
  .thoughts article {
    padding: 24px 20px;
  }
  .thoughts h3 {
    font-size: 16px;
  }
  .thoughts p {
    font-size: 12px;
  }
  .class-layout {
    gap: 40px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .class-intro h2 {
    font-size: 45px;
  }
  .class-intro > p:not(.eyebrow) {
    font-size: 13px;
  }
  .class-intro {
    top: 120px;
  }
  .lesson-card {
    padding: 25px 24px;
  }
  .lesson-card h3 {
    font-size: 25px;
  }
  .lesson-card p {
    font-size: 12px;
  }
  .lesson-art {
    height: 225px;
  }
  .bubbles > span {
    font-size: 15px;
    padding: 18px 20px;
  }
  .bubbles > span:nth-child(2) {
    top: 125px;
  }
  .big-flower {
    font-size: 110px;
  }
  .section-heading {
    align-items: start;
  }
  .section-heading > p {
    max-width: 240px;
    font-size: 12px;
  }
  .program-tabs button {
    display: block;
    padding: 20px 16px;
  }
  .program-tabs button > span {
    display: block;
    margin-top: 8px;
  }
  .program-panel {
    grid-template-columns: 1fr 1.2fr;
  }
  .program-copy {
    padding: 29px;
  }
  .program-copy h3 {
    font-size: 26px;
  }
  .program-copy > p {
    font-size: 13px;
  }
  .program-copy li {
    font-size: 11px;
  }
  .story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .storybook {
    max-width: 650px;
    width: 100%;
    margin: auto;
  }
  .story-cover,
  .story-page {
    padding: 32px;
  }
  .story-cover h3 {
    font-size: 34px;
  }
  .story-page > p {
    font-size: 19px;
  }
  .story-intro .example-note {
    margin-top: 15px;
  }
  .week {
    gap: 10px;
  }
  .week button {
    padding: 22px 8px;
  }
  .week button > b {
    font-size: 25px;
  }
  .week button > i {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .faq-layout {
    gap: 40px;
  }
  .faq summary {
    font-size: 14px;
  }
  .closing h2 {
    font-size: 42px;
  }
  .closing-sun {
    font-size: 140px;
    top: 70px;
    right: 0;
  }
  .floating-cta > span {
    font-size: 10px;
    margin-right: 7px;
  }
}
@media (max-width: 600px) {
  :root {
    --pad: 24px;
  }
  html {
    scroll-padding-top: 90px;
  }
  .demo-note {
    font-size: 7px;
    padding-block: 8px;
    min-height: 28px;
  }
  .demo-note > span:nth-child(2) {
    display: none;
  }
  .header {
    height: 69px;
    gap: 10px;
  }
  .brand {
    gap: 7px;
  }
  .brand strong {
    font-size: 28px;
  }
  .brand img {
    width: 33px;
    height: 33px;
  }
  .header-cta {
    font-size: 10px;
    padding: 11px 14px;
  }
  .motion-toggle {
    font-size: 8px;
    padding: 9px;
  }
  .motion-toggle span {
    margin-left: 3px;
  }
  .header nav {
    top: 69px;
  }
  .menu-toggle {
    width: 26px;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 43px 0 48px;
    gap: 37px;
    min-height: 0;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero h1 {
    font-size: clamp(38px, 10.4vw, 57px);
    margin: 20px 0 20px;
    line-height: 1.24;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.9;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
  }
  .hero-actions .text-link {
    margin: 0;
    font-size: 10px;
  }
  .button {
    padding: 15px 19px;
    font-size: 12px;
    gap: 24px;
    min-height: 51px;
  }
  .hero-small {
    display: none;
  }
  .hero-visual {
    width: 94%;
    margin-left: 6%;
    max-width: 460px;
    align-self: center;
  }
  .illustration {
    border-radius: 40% 40% 15px 15px;
  }
  .sticker-one {
    left: -22px;
    top: 18px;
    width: 75px;
    height: 75px;
    font-size: 9px;
  }
  .sticker-one b {
    font-size: 16px;
  }
  .sticker-two {
    bottom: -8px;
    right: 0;
    padding: 12px 17px;
    font-size: 8px;
  }
  .spark {
    top: -19px;
    font-size: 46px;
    right: 5px;
  }
  .hero-bottom {
    font-size: 7px;
    padding: 22px 0;
    gap: 25px;
    align-items: center;
  }
  .hero-bottom > span {
    max-width: 165px;
    line-height: 1.8;
  }
  .hero-bottom a {
    font-size: 9px;
    gap: 13px;
    white-space: nowrap;
  }
  .hero-bottom a span {
    font-size: 17px;
  }
  .section {
    padding-block: 65px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .manifesto {
    border-radius: 50% 50% 0 0/18px 18px 0 0;
  }
  .reading-line {
    font-size: clamp(28px, 7.2vw, 40px);
    margin: 24px 0;
    line-height: 1.5;
  }
  .section-copy {
    font-size: 12px;
  }
  .thoughts {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  .thoughts article {
    padding: 25px 25px 25px 84px;
    position: relative;
    border-radius: 17px;
  }
  .thought-icon {
    position: absolute;
    left: 22px;
    top: 28px;
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
  .thoughts h3 {
    font-size: 18px;
    margin: 0 0 13px;
  }
  .thoughts p {
    font-size: 12px;
    line-height: 1.9;
  }
  .example-note {
    font-size: 9px;
    margin-top: 23px;
  }
  .class-layout {
    display: block;
  }
  .class-intro {
    position: static !important;
  }
  .class-intro h2 {
    font-size: 43px;
    margin: 23px 0 20px;
  }
  .class-intro > p:not(.eyebrow) {
    font-size: 13px;
  }
  .big-flower {
    position: absolute;
    right: 0;
    top: 55px;
    font-size: 93px;
    margin: 0;
    opacity: 0.55;
  }
  .class-intro {
    position: relative !important;
  }
  .chapter-dots {
    margin-top: 24px;
    gap: 25px;
  }
  .class-cards {
    gap: 26px;
    margin-top: 28px;
  }
  .lesson-card {
    padding: 26px 25px;
    border-radius: 20px;
    scroll-margin-top: 95px;
  }
  .lesson-top {
    font-size: 8px;
    gap: 12px;
  }
  .lesson-art {
    height: 220px;
    margin: 18px 0 21px;
  }
  .lesson-card h3 {
    font-size: 26px;
  }
  .lesson-card p {
    font-size: 12px;
  }
  .paper-book {
    height: 180px;
    width: 270px;
  }
  .bubbles > span {
    font-size: 17px;
    left: 0;
    padding: 19px 21px;
    top: 20px;
  }
  .bubbles > span:nth-child(2) {
    top: 124px;
  }
  .bubbles > b {
    font-size: 140px;
    top: 67px;
  }
  .note-paper {
    height: 190px;
    width: 205px;
  }
  .note-paper b {
    font-size: 20px;
  }
  .pencil {
    height: 155px;
    right: 9%;
    top: 31px;
  }
  .little-star {
    font-size: 55px;
    left: 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 32px;
    line-height: 1.38;
  }
  .section-heading h2 {
    margin-top: 20px;
  }
  .section-heading > p {
    max-width: none;
    font-size: 12px;
    margin-top: 21px;
  }
  .program-tabs {
    gap: 6px;
  }
  .program-tabs button {
    font-size: 13px;
    line-height: 1.5;
    padding: 15px 10px;
    border-radius: 12px 12px 0 0;
    letter-spacing: -0.03em;
  }
  .program-tabs button > span {
    font-size: 8px;
    margin-top: 6px;
  }
  .program-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 0 0 18px 18px;
  }
  .program-art {
    height: 290px;
  }
  .plant-stem {
    height: 130px;
    bottom: 100px;
  }
  .plant-pot {
    bottom: 47px;
    height: 82px;
    width: 105px;
    left: calc(50% - 52px);
  }
  .plant-pot:after {
    top: 23px;
    font-size: 17px;
  }
  .leaf {
    width: 90px;
    height: 54px;
    bottom: 173px;
    left: calc(50% - 86px);
  }
  .leaf-two {
    left: 50%;
    bottom: 140px;
  }
  .leaf-three {
    width: 60px;
    height: 40px;
    left: 50%;
    bottom: 214px;
  }
  .plant-sun {
    font-size: 46px;
    right: 30px;
    top: 23px;
  }
  .program-art small {
    bottom: 18px;
    font-size: 7px;
  }
  .program-copy {
    padding: 28px 25px;
  }
  .program-copy h3 {
    font-size: 25px;
    margin: 20px 0 14px;
  }
  .program-copy > p {
    font-size: 13px;
  }
  .program-copy li {
    font-size: 11px;
  }
  .pill {
    font-size: 10px;
  }
  .program-copy .text-link {
    font-size: 11px;
  }
  .story-intro > p:not(.eyebrow):not(.example-note) {
    font-size: 12px;
    margin-top: 20px;
  }
  .story-intro h2 {
    margin-top: 20px;
  }
  .story-layout {
    gap: 35px;
  }
  .storybook {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .story-cover,
  .story-page {
    padding: 20px 14px;
    min-height: 365px;
  }
  .story-cover > span {
    font-size: 6px;
  }
  .story-cover h3 {
    font-size: 22px;
    margin: 22px 0 17px;
  }
  .story-cover small {
    font-size: 8px;
    line-height: 1.8;
  }
  .snail {
    transform: scale(0.72);
    transform-origin: center;
    height: 105px;
    width: 120px;
    margin-top: 23px;
    left: -8px;
  }
  .snail i {
    left: 10px;
  }
  .snail b {
    left: 0;
    width: 110px;
  }
  .snail em {
    right: 10px;
  }
  .story-page-label {
    font-size: 7px;
  }
  .story-page > p {
    font-size: 14px;
    line-height: 1.9;
    margin-top: 23px;
  }
  .story-page > span:not(.story-page-label) {
    font-size: 10px;
    margin-top: 20px;
  }
  .story-controls {
    font-size: 8px;
    gap: 6px;
    padding-top: 20px;
  }
  .story-controls button {
    width: 31px;
    height: 31px;
    font-size: 17px;
  }
  .week {
    gap: 7px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .week button {
    border-radius: 35px 35px 14px 14px;
    padding: 18px 7px 15px;
  }
  .week button > span {
    font-size: 7px;
  }
  .week button > b {
    font-size: 23px;
    margin: 14px 0;
  }
  .week button > i {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .week-bottom {
    font-size: 11px;
    align-items: start;
    gap: 15px;
  }
  .week-bottom p {
    max-width: 230px;
    line-height: 1.8;
  }
  .week-bottom button {
    font-size: 10px;
    white-space: nowrap;
    padding: 0 0 8px;
  }
  .routine .example-note {
    font-size: 9px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-layout > div:first-child {
    position: relative;
  }
  .faq-layout h2 {
    font-size: 32px;
    margin-top: 20px;
  }
  .faq-flower {
    position: absolute;
    right: 8px;
    top: 20px;
    font-size: 83px;
    opacity: 0.6;
  }
  .faq summary {
    font-size: 13px;
    gap: 18px;
    padding: 21px 0;
  }
  .faq details p {
    font-size: 12px;
    padding-right: 10px;
  }
  .closing {
    padding: 65px 0 72px;
  }
  .closing h2 {
    font-size: 32px;
    margin: 24px 0 28px;
    position: relative;
    z-index: 1;
  }
  .closing .eyebrow {
    font-size: 8px;
  }
  .closing-sun {
    font-size: 90px;
    right: -15px;
    top: 100px;
    opacity: 0.17;
  }
  .closing .wrap > p:last-child {
    font-size: 10px;
  }
  .footer {
    display: block;
    padding: 35px 0 115px;
  }
  .footer > .brand {
    display: inline-flex;
  }
  .footer > div {
    margin-top: 25px;
  }
  .footer p {
    font-size: 9px;
  }
  .footer > div > a {
    font-size: 10px;
  }
  .footer small {
    display: block;
    font-size: 7px;
    margin-top: 30px;
  }
  .floating-cta {
    width: calc(100% - 28px);
    bottom: 12px;
    padding: 7px;
    gap: 7px;
    justify-content: center;
  }
  .floating-cta > span {
    display: none;
  }
  .floating-cta button {
    flex: 1;
    padding: 13px 12px;
    font-size: 11px;
  }
  .dialog-shell {
    padding: 35px 24px 28px;
  }
  .dialog-shell h2 {
    font-size: 27px;
    margin-top: 19px;
  }
  .dialog-note {
    font-size: 10px;
  }
  .dialog-story {
    font-size: 13px;
    padding: 18px;
  }
  .story-choices legend {
    font-size: 13px;
  }
  .story-choices label {
    font-size: 11px;
    padding: 13px 10px;
  }
  #thought-response {
    font-size: 12px;
    padding: 15px;
  }
  form label {
    font-size: 11px;
  }
  select,
  textarea {
    font-size: 16px;
    padding: 12px;
  }
  #preview-content > div {
    font-size: 12px;
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }
  #consult-preview h3 {
    font-size: 23px;
  }
}
@media (max-width: 359px) {
  :root {
    --pad: 19px;
  }
  .header {
    gap: 8px;
  }
  .brand strong {
    font-size: 25px;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  .header-cta {
    font-size: 9px;
    padding: 10px 12px;
  }
  .motion-toggle {
    font-size: 7px;
    padding: 8px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .text-link {
    font-size: 9px;
  }
  .button {
    font-size: 11px;
    padding-inline: 16px;
    gap: 17px;
  }
  .thoughts article {
    padding-left: 73px;
    padding-right: 19px;
  }
  .thoughts h3 {
    font-size: 16px;
  }
  .thought-icon {
    left: 19px;
    width: 35px;
    height: 35px;
  }
  .program-tabs button {
    font-size: 12px;
    padding-inline: 8px;
  }
  .story-cover,
  .story-page {
    padding-inline: 11px;
  }
  .story-cover h3 {
    font-size: 20px;
  }
  .story-page > p {
    font-size: 13px;
  }
  .story-controls button {
    width: 27px;
    height: 27px;
  }
  .closing h2 {
    font-size: 29px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-visual,
  .lesson-card,
  .big-flower {
    transform: none !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .reading-line span {
    opacity: 1 !important;
  }
}
.hero-away .hero-sticker,
.hero-away .spark {
  animation-play-state: paused;
}
.motion-toggle:disabled {
  cursor: default;
  color: #7a8772;
}
