/* ================= TOKENS ================= */
:root {
  --cream: #fff6ea;
  --paper: #fdefdc;
  --ink: #33241a;
  --ink-soft: #6b5747;
  --orange: #f4671f;
  --orange-deep: #d94f0e;
  --yellow: #ffc83d;
  --pink: #f7a8c4;
  --blue: #5aa9e6;
  --green: #5cab7d;
  --green-soft: #cde8d2;
  --radius: 22px;
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Be Vietnam Pro", system-ui, sans-serif;
  --font-script: "Shantell Sans", cursive;
  --shadow-pop: 5px 6px 0 var(--ink);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: var(--ink); }

/* paper grain */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 999; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.06'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; }

/* cut-paper collage icon images (replace emoji) */
.ico { display: inline-block; object-fit: contain; vertical-align: middle; }
.ico--inline {
  width: 1.35em; height: 1.35em;
  vertical-align: -0.3em;
  margin-inline: .05em;
}
/* slight glow so dark-on-dark icons stay legible on the ink background */
.ico--on-dark { filter: drop-shadow(0 1px 1px rgba(0,0,0,.25)); }

/* hand-drawn scribble underline for headings */
.scribble { display: block; width: clamp(130px, 24vw, 220px); height: auto; margin-top: .35em; }
.scribble--center { margin-inline: auto; }

/* torn-paper section divider */
.tear { display: block; line-height: 0; background: var(--cream); }
.tear svg { display: block; width: 100%; height: clamp(22px, 3.5vw, 44px); }
.tear--flip svg { transform: rotate(180deg); }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem;
  background: var(--orange); color: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: .65em 1.5em;
  text-decoration: none; cursor: pointer;
  box-shadow: var(--shadow-pop);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translate(2px, 3px); box-shadow: 2px 2px 0 var(--ink); background: var(--orange-deep); }
.btn:active { transform: translate(5px, 6px); box-shadow: 0 0 0 var(--ink); }
.btn--big { font-size: 1.2rem; padding: .8em 1.8em; }
.btn--small { font-size: .92rem; padding: .45em 1.1em; box-shadow: 3px 4px 0 var(--ink); }

/* ================= NAV ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem clamp(1rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 2.5px solid var(--ink);
}
.nav__logo { display: flex; align-items: center; text-decoration: none; color: var(--ink); }
.nav__wordmark {
  width: clamp(128px, 15vw, 182px);
  height: auto;
  display: block;
  object-fit: contain;
}
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: .95rem;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 3px; width: 0;
  background: var(--orange); border-radius: 2px; transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 7rem clamp(1rem, 5vw, 3rem) 4rem;
  overflow: hidden;
}
.hero__kicker {
  font-family: var(--font-script); font-weight: 500; font-size: 1.05rem;
  background: var(--cream);
  border: 2px solid var(--ink); border-radius: 999px;
  padding: .35em 1.1em; margin-bottom: 1.4rem;
  box-shadow: 3px 3px 0 var(--ink);
}
.hero__title {
  font-size: clamp(2.1rem, 5.8vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.18;
  max-width: 16em;
}
.hero__line { display: block; overflow: hidden; padding-block: .06em; }
.hero__word { display: inline-block; }
.hero__hl {
  font-family: var(--font-script); font-style: italic; font-weight: 700;
  color: var(--ink);
  background: linear-gradient(100deg, transparent 1%, var(--yellow) 4%, var(--yellow) 96%, transparent 99%);
  padding: 0 .18em;
  margin: 0 .04em;
}
.hero__sub {
  max-width: 34rem; margin-top: 1.6rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem); color: var(--ink-soft);
}
.hero__sub strong { color: var(--ink); }
.hero__cta { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.2rem; flex-wrap: wrap; justify-content: center; }
.hero__more { color: var(--ink-soft); font-weight: 500; text-decoration: none; font-size: .95rem; }
.hero__more:hover { color: var(--orange); }

/* doodles & sticker collage */
.hero__doodles { position: absolute; inset: 0; pointer-events: none; }
.doodle { position: absolute; object-fit: contain; }
.doodle--arrow { width: clamp(70px, 8vw, 120px); top: 26%; right: 27%; }
.doodle--star { width: clamp(44px, 5vw, 80px); top: 66%; left: 27%; rotate: 12deg; }
.doodle--proud { width: clamp(120px, 14vw, 260px); top: 9%; left: 3%; rotate: -4deg; }
.doodle--easel { width: clamp(140px, 17vw, 320px); bottom: 5%; right: 3%; rotate: 4deg; }

/* mini UI sticker cards (Umi-style collage) */
.sticker {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: 4px 5px 0 var(--ink);
  padding: .75rem .95rem;
  font-size: clamp(.8rem, .85vw, 1rem);
  line-height: 1.35;
  text-align: left;
  display: flex; flex-direction: column; gap: .15rem;
  max-width: clamp(230px, 18vw, 300px);
}
.sticker__tag {
  font-family: var(--font-script); font-weight: 700; font-size: .6rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange-deep);
}
.sticker__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(.95rem, 1vw, 1.15rem); display: block; }
.sticker__sub { display: block; color: var(--ink-soft); font-size: clamp(.74rem, .8vw, .9rem); }
.sticker__icon { position: absolute; top: -16px; right: -14px; width: 40px; height: 40px; object-fit: contain; }
.sticker__icon--left { position: static; flex-shrink: 0; }
.sticker__badge {
  align-self: flex-start;
  font-size: .66rem; font-weight: 600;
  background: var(--green-soft); border: 1.5px solid var(--ink); border-radius: 999px;
  padding: .1em .7em; margin-top: .3rem;
}
.sticker__check {
  display: inline-grid; place-items: center;
  width: 1.4em; height: 1.4em; border-radius: 50%;
  background: var(--ink); color: var(--yellow); font-size: .85em;
}
.sticker--pill {
  flex-direction: row; align-items: center; gap: .5rem;
  background: var(--yellow);
  border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  padding: .5rem 1.1rem;
  top: 12%; left: 17%; rotate: -4deg;
}
.sticker--goal { top: 35%; left: 4%; rotate: -3deg; }
.sticker--chat { top: 54%; left: 3%; rotate: 2deg; flex-direction: row; align-items: center; gap: .6rem; max-width: 250px; z-index: 2; }
.sticker__avatar { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; }
.sticker__chat-text { font-size: .78rem; color: var(--ink-soft); }
.sticker__chat-text strong { color: var(--ink); }
.sticker--class { top: 15%; right: 4%; rotate: 3deg; flex-direction: row; flex-wrap: wrap; gap: .55rem; align-items: center; max-width: 215px; }
.sticker--class .sticker__badge { margin-top: 0; }

/* polaroid artwork cards */
.sticker--art { padding: .55rem .55rem .65rem; gap: .1rem; }
.sticker__photo {
  width: clamp(150px, 17vw, 290px); height: auto; aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--ink); border-radius: 9px;
  margin-bottom: .3rem;
}
.sticker--art .sticker__title { font-size: clamp(.82rem, .9vw, 1rem); }
.sticker--art .sticker__sub { font-size: clamp(.68rem, .75vw, .82rem); }
.sticker--art1 { bottom: 7%; left: 10%; rotate: -3deg; }
.sticker--art2 { top: 36%; right: 4%; rotate: 2.5deg; }

/* ================= MARQUEE ================= */
.marquee {
  background: var(--ink); color: var(--cream);
  border-block: 2.5px solid var(--ink);
  overflow: hidden; white-space: nowrap;
  padding: .7rem 0;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee__track { display: inline-flex; }
.marquee__track span {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: .04em;
}
.marquee__track em { font-style: normal; color: var(--orange); }

/* ================= SECTIONS COMMON ================= */
/* masking-tape section labels */
.section-tag {
  display: inline-block;
  font-family: var(--font-script); font-weight: 700; font-size: 1rem;
  color: var(--orange-deep);
  background: rgba(255, 200, 61, .45);
  padding: .3em 1.2em;
  rotate: -1.5deg;
  clip-path: polygon(2% 8%, 98% 0%, 100% 90%, 1% 100%);
  margin-bottom: 1rem;
}
.section-tag--center { display: table; margin-inline: auto; }
.section-tag--light { color: var(--yellow); background: rgba(255, 200, 61, .18); }

/* ================= ABOUT ================= */
.about { padding: clamp(4rem, 10vw, 7.5rem) clamp(1.2rem, 6vw, 4rem); }
.about__inner { max-width: 46rem; margin-inline: auto; }
.about__heading { font-size: clamp(2rem, 5.5vw, 3.4rem); margin-bottom: 1.2rem; }
.about__heading em { font-style: normal; color: var(--orange); font-family: var(--font-script); }
.about__text { color: var(--ink-soft); font-size: 1.05rem; max-width: 40rem; }
.about__stats { display: flex; gap: clamp(1.5rem, 5vw, 3rem); margin-top: 3rem; flex-wrap: wrap; }
.stat {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  padding: 1.3rem 1.8rem 1rem;
  border: 2.5px solid var(--ink);
  border-radius: 4px 16px 6px 18px;
  box-shadow: 4px 5px 0 var(--ink);
}
.stat:nth-child(1) { background: #fff3c9; rotate: -2deg; }
.stat:nth-child(2) { background: #fde2ec; rotate: 1.5deg; }
.stat:nth-child(3) { background: #d9ecfb; rotate: -1deg; }
.stat::before {
  content: ""; position: absolute; top: -13px; left: 50%; translate: -50% 0; rotate: -4deg;
  width: 64px; height: 22px;
  background: rgba(255, 200, 61, .65);
  border: 1px solid rgba(51, 36, 26, .15);
}
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4rem); color: var(--orange-deep); line-height: 1; }
.stat__label { font-weight: 500; color: var(--ink-soft); }

/* ================= COURSES ================= */
.courses { padding: 0 clamp(1.2rem, 6vw, 4rem) clamp(4rem, 9vw, 6rem); }
.courses__heading {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
}
.courses__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 76rem;
  margin-inline: auto;
  align-items: start;
}
.course {
  position: relative;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-pop);
}
.course--open {
  background: #ffe3cf;
  padding: clamp(1.5rem, 4vw, 2rem);
  rotate: -.7deg;
}
.course--open::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 18%;
  width: 96px;
  height: 26px;
  background: rgba(255, 200, 61, .65);
  border: 1px solid rgba(51, 36, 26, .18);
  rotate: -4deg;
}
.course__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.course__code {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  font-family: var(--font-script);
  font-weight: 700;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
}
.course__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: #efe7da;
  border: 1.5px solid rgba(51, 36, 26, .35);
  border-radius: 999px;
  padding: .25rem .65rem;
}
.course__status--open {
  color: var(--ink);
  background: var(--green-soft);
  border-color: var(--ink);
}
.course h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: .55rem;
}
.course p { color: var(--ink-soft); font-size: .95rem; }
.course__open-grid {
  display: grid;
  grid-template-columns: minmax(240px, .82fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}
.course__summary {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
}
.course__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.25rem 0 1.5rem;
}
.course__meta li {
  background: rgba(255, 246, 234, .82);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: .18rem .7rem;
  font-size: .78rem;
  font-weight: 600;
}
.course__cta {
  align-self: flex-start;
  font-size: 1rem;
}
.course__insights {
  background: rgba(255, 246, 234, .55);
  border: 2px dashed rgba(51, 36, 26, .45);
  border-radius: calc(var(--radius) * .8);
  padding: clamp(1rem, 3vw, 1.4rem);
}
.course__insight-label {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--orange-deep);
  margin-bottom: .85rem;
}
.course__insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}
.course__insight {
  background: #fff;
  border: 2px solid rgba(51, 36, 26, .72);
  border-radius: 16px;
  padding: .85rem .95rem;
  box-shadow: 2px 3px 0 rgba(51, 36, 26, .55);
}
.course__insight span {
  display: inline-block;
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--orange-deep);
  margin-bottom: .25rem;
}
.course__insight strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.18;
}
.course__insight p {
  margin-top: .3rem;
  font-size: .82rem;
  line-height: 1.5;
}
.course-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.course--soon {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: 3px 4px 0 rgba(51, 36, 26, .7);
  background: rgba(255, 255, 255, .68);
}
.course--soon:nth-child(odd) { rotate: .4deg; }
.course--soon:nth-child(even) { rotate: -.35deg; }
.course--soon h3 {
  font-size: 1.15rem;
  margin: 0 0 .15rem;
}
.course--soon p { font-size: .86rem; }

/* ================= INFO ================= */
.info { padding: 0 clamp(1.2rem, 6vw, 4rem) clamp(4rem, 10vw, 7rem); }
.info__paper {
  position: relative;
  max-width: 56rem; margin-inline: auto;
  background: var(--paper);
  border: 2.5px solid var(--ink); border-radius: calc(var(--radius) * 1.4);
  box-shadow: var(--shadow-pop);
  padding: clamp(1.8rem, 5vw, 3.2rem);
  rotate: -.5deg;
}
.info__paper::before, .info__paper::after {
  content: ""; position: absolute; top: -14px;
  width: 92px; height: 26px;
  background: rgba(255, 200, 61, .55);
  border: 1px solid rgba(51, 36, 26, .15);
}
.info__paper::before { left: 8%; rotate: -5deg; }
.info__paper::after { right: 8%; rotate: 4deg; }
.info__list {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 1.4rem 2rem; margin-top: .6rem;
}
.info__list li { display: flex; gap: .9rem; align-items: flex-start; }
.info__icon { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.info__list strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.info__list div span { color: var(--ink-soft); font-size: .95rem; }

/* ================= BOOKING ================= */
.booking {
  background: var(--ink); color: var(--cream);
  padding: clamp(3.4rem, 8vw, 6rem) clamp(1.2rem, 6vw, 4rem);
}
.booking__head { text-align: center; max-width: 42rem; margin: 0 auto 2.8rem; }
.booking__heading { font-size: clamp(2rem, 5.5vw, 3.4rem); color: var(--cream); }
.booking__sub { color: #cbb9a8; margin-top: .8rem; }

.booking__widget {
  position: relative;
  max-width: 44rem; margin-inline: auto;
  background: var(--cream); color: var(--ink);
  border: 2.5px solid var(--ink); border-radius: calc(var(--radius) * 1.4);
  box-shadow: 8px 10px 0 rgba(244, 103, 31, .9);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.booking__widget::before {
  content: ""; position: absolute; top: -14px; left: 50%; translate: -50% 0; rotate: -2deg;
  width: 110px; height: 26px;
  background: rgba(255, 200, 61, .6);
  border: 1px solid rgba(51, 36, 26, .2);
}
.booking__step + .booking__step { margin-top: 2rem; }
.booking__step--locked { opacity: .38; pointer-events: none; filter: saturate(.4); transition: opacity .35s ease, filter .35s ease; }
.booking__step { transition: opacity .35s ease, filter .35s ease; }
.booking__step-label {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 1rem;
}
.booking__step-num {
  display: inline-grid; place-items: center;
  width: 1.7em; height: 1.7em;
  background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%;
  font-size: .9em;
}

/* tracks */
.booking__tracks { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 1rem; }
.track {
  font-family: inherit; cursor: pointer; text-align: left;
  background: #fff; border: 2.5px solid var(--ink); border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: 3px 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.track:hover { transform: translateY(-2px); }
.track[aria-checked="true"] { background: var(--yellow); box-shadow: 1px 2px 0 var(--ink); transform: translate(2px, 2px); }
.track__days { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.track__note { color: var(--ink-soft); font-size: .88rem; }

/* slots */
.booking__slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); gap: 1rem; }
.slot {
  position: relative; font-family: inherit; cursor: pointer; text-align: left;
  background: #fff; border: 2.5px solid var(--ink); border-radius: var(--radius);
  padding: .95rem 1.1rem;
  box-shadow: 3px 4px 0 var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.slot:hover:not(:disabled) { transform: translateY(-2px); }
.slot[aria-checked="true"] { background: var(--yellow); box-shadow: 1px 2px 0 var(--ink); transform: translate(2px, 2px); }
.slot:disabled { cursor: not-allowed; opacity: .55; background: #efe7da; }
.slot__name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.slot__time { display: block; color: var(--ink-soft); font-size: .86rem; margin-top: .1rem; }
.slot__left {
  display: inline-flex; align-items: center; gap: .35em;
  margin-top: .55rem; font-size: .8rem; font-weight: 600;
  border-radius: 999px; padding: .15em .7em;
  border: 1.5px solid var(--ink);
}
.slot__left--ok { background: var(--green-soft); }
.slot__left--few { background: var(--yellow); }
.slot__flame { width: 1.2em; height: 1.2em; object-fit: contain; vertical-align: -0.25em; }
.slot__left--full { background: #e8dccb; color: var(--ink-soft); }
.slot__dots { display: flex; gap: 3px; margin-top: .45rem; }
.slot__dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--ink); background: transparent; }
.slot__dot--filled { background: var(--orange); }

/* form */
.booking__form { display: grid; gap: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.field input {
  width: 100%; font-family: inherit; font-size: 1rem;
  padding: .7em 1em;
  border: 2.5px solid var(--ink); border-radius: 14px;
  background: #fff; color: var(--ink);
  transition: box-shadow .15s ease;
}
.field input:focus { outline: none; box-shadow: 3px 3px 0 var(--orange); }
.field input.field--error { border-color: #d33; box-shadow: 3px 3px 0 #d33; }
.booking__summary {
  background: var(--paper); border: 2px dashed var(--ink); border-radius: 14px;
  padding: .8rem 1.1rem; font-size: .95rem;
}
.booking__submit { justify-self: start; }
.booking__hint { font-size: .85rem; color: var(--ink-soft); }

/* success */
.booking__success { text-align: center; padding: 1.5rem 0 .5rem; }
.booking__success-art { width: 120px; height: 120px; object-fit: contain; display: inline-block; }
.booking__success h3 { font-size: 1.7rem; margin: .6rem 0 .4rem; }
.booking__success p { color: var(--ink-soft); }
.booking__success .btn { margin-top: 1.4rem; }

/* ================= FOOTER ================= */
.footer { background: var(--cream); padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 6vw, 4rem); }
.footer__inner { max-width: 72rem; margin-inline: auto; text-align: center; }
.footer__logo { margin-bottom: 1rem; }
.footer__logo img {
  width: clamp(150px, 20vw, 220px);
  height: auto;
  display: block;
  margin-inline: auto;
}
.footer__contact { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2rem; margin-bottom: 1.2rem; }
.footer__contact a { color: var(--ink); }
.footer__note { color: var(--ink-soft); font-size: .85rem; }

/* ================= RESPONSIVE ================= */
@media (max-width: 720px) {
  .nav__links { display: none; }
  .courses__grid { grid-template-columns: 1fr; }
  .course--open { rotate: 0deg; }
  .course__open-grid,
  .course__insight-grid,
  .course-list {
    grid-template-columns: 1fr;
  }
  .course--soon {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }
  .course--soon .course__status {
    grid-column: 2;
    justify-self: start;
    margin-top: .15rem;
  }
  .sticker--chat, .sticker--goal, .sticker--pill, .sticker--art1, .sticker--art2, .doodle--arrow, .doodle--proud { display: none; }
  .sticker { font-size: .72rem; padding: .55rem .75rem; }
  .sticker__title { font-size: .82rem; }
  .sticker--class { top: auto; bottom: 13%; right: 5%; max-width: 180px; }
  .doodle--star { top: 64%; left: 8%; }
  .doodle--easel { width: 130px; bottom: 6%; left: 4%; right: auto; }
  .booking__widget { box-shadow: 5px 6px 0 rgba(244, 103, 31, .9); }
  .info__paper { rotate: 0deg; }
}

/* reveal default state is handled by GSAP; keep content visible if JS fails */
.no-js .reveal { opacity: 1 !important; transform: none !important; }

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