/* =========================================================
   Craft & Create — styles (v2: warm, handmade, paper & tape)
   Palette from the brand sheet. Type: Baloo 2 (headings),
   Nunito (body), Caveat (handwritten notes).
   ========================================================= */

:root {
  --cream: #FBF6EE;
  --paper: #FFFDF9;
  --purple: #9E7DA9;
  --deep: #6B4E76;
  --ink: #4A3852;
  --lilac: #D4C3DA;
  --lilac-soft: #F1EAF3;
  --pink: #E6879C;
  --orange: #F0A860;
  --yellow: #F5D168;
  --blue: #7B9FD1;
  --green: #8FBF6E;
  --mint: #E7F1DD;        /* the pale green Tarissa picked (same as the project-card tint) */
  --mint-deep: #C9DFB8;   /* one step deeper, for thin strokes that would vanish on cream */

  --pink-soft: #FBE4E9;
  --orange-soft: #FDEBD6;
  --yellow-soft: #FDF3D2;
  --blue-soft: #E3EAF6;
  --green-soft: #E7F1DD;

  --display: "Baloo 2", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --body: "Nunito", "Helvetica Neue", Arial, sans-serif;
  --hand: "Caveat", "Bradley Hand", "Comic Sans MS", cursive;

  --container: 1120px;
  --gutter: clamp(16px, 5vw, 48px);
  --radius: 24px;
  --shadow: 0 12px 30px -14px rgba(107, 78, 118, 0.3);
  --shadow-sm: 0 5px 16px -8px rgba(107, 78, 118, 0.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
/* faint paper grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.31 0 0 0 0 0.46 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--deep); line-height: 1.1; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--deep); text-decoration-thickness: 2px; text-underline-offset: 3px; text-decoration-color: var(--lilac); }
a:hover { text-decoration-color: var(--purple); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px;
}
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--deep); color: var(--cream); padding: 10px 16px; border-radius: 999px; font-weight: 700; }
.skip:focus { top: 16px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; position: relative; }
.center { text-align: center; margin-top: 36px; }
.small { font-size: 0.95rem; color: var(--deep); opacity: 0.85; margin-top: 28px; }

/* ---------- type ---------- */
.note {
  font-family: var(--hand); font-size: 1.55rem; font-weight: 600; color: var(--purple); line-height: 1.1; margin-bottom: 10px;
  transform: rotate(-1.5deg); display: inline-block;
}
.note--badge {
  background: var(--mint); color: var(--deep); padding: 8px 18px 6px; border-radius: 999px; box-shadow: var(--shadow-sm);
  transform: rotate(-3deg); margin-bottom: 20px;
}
.hand { font-family: var(--hand); font-size: 1.7rem; font-weight: 600; color: var(--deep); line-height: 1.1; }
.section__title { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800; max-width: 22ch; margin-inline: auto; }
.section__title--left { margin-inline: 0; }
.section__lead { font-size: clamp(1.05rem, 1.4vw, 1.18rem); max-width: 58ch; margin: 16px auto 0; }
.section__lead--left { margin-inline: 0; }
.section__head { text-align: center; margin-bottom: clamp(34px, 5vw, 56px); }
.section__head .note { display: block; }
.section { padding-block: clamp(64px, 9vw, 112px); position: relative; z-index: 1; }

/* pinking-shears section edge: coloured like the section above */
.zig {
  position: absolute; left: 0; right: 0; top: -1px; height: 14px; pointer-events: none;
  background: var(--zig, var(--cream));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='14'%3E%3Cpath d='M0 0h28L14 14z'/%3E%3C/svg%3E") repeat-x;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='14'%3E%3Cpath d='M0 0h28L14 14z'/%3E%3C/svg%3E") repeat-x;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--display); font-weight: 800; font-size: 1.05rem; line-height: 1;
  padding: 15px 26px; border-radius: 999px; text-decoration: none; cursor: pointer; border: 0; white-space: nowrap;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.2s;
}
.btn--lg { font-size: 1.15rem; padding: 18px 30px; }
.btn--primary { background: var(--purple); color: #fff; box-shadow: 0 8px 18px -8px rgba(107, 78, 118, 0.6); }
.btn--primary:hover { background: var(--deep); transform: translateY(-2px) rotate(-1deg); }
.btn--ghost { background: var(--paper); color: var(--deep); box-shadow: inset 0 0 0 2.5px var(--lilac); }
.btn--ghost:hover { background: var(--lilac-soft); transform: translateY(-2px); }
.btn--cream { background: var(--cream); color: var(--deep); box-shadow: 0 10px 22px -10px rgba(0, 0, 0, 0.35); }
.btn--cream:hover { background: #fff; transform: translateY(-2px) rotate(1deg); }

/* ---------- washi tape ---------- */
.tape {
  position: absolute; top: -13px; left: 50%; width: 112px; height: 26px; z-index: 2;
  transform: translateX(-50%) rotate(-2.5deg);
  background-color: rgba(212, 195, 218, 0.72);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.4) 0 6px, transparent 6px 12px);
  box-shadow: 0 1px 2px rgba(107, 78, 118, 0.18); mix-blend-mode: multiply;
  clip-path: polygon(2% 0, 98% 4%, 100% 100%, 0 96%);
}
.tape--pink { background-color: rgba(230, 135, 156, 0.55); }
.tape--yellow { background-color: rgba(245, 209, 104, 0.45); }
.tape--blue { background-color: rgba(123, 159, 209, 0.55); }
.tape--green { background-color: rgba(143, 191, 110, 0.55); }
.tape--orange { background-color: rgba(240, 168, 96, 0.55); }
.tape--lilac { background-color: rgba(158, 125, 169, 0.45); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(251, 246, 238, 0.86); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); transition: box-shadow 0.3s; }
.nav.is-scrolled { box-shadow: 0 6px 24px -14px rgba(107, 78, 118, 0.45); }
.nav__inner { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; display: flex; align-items: center; gap: 24px; height: 76px; }
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.nav__mark { width: 52px; height: auto; }
.nav__word { width: 148px; height: auto; }
.nav__links { display: flex; gap: 22px; }
.nav__links a, .nav__mobile a:not(.btn) { font-weight: 700; text-decoration: none; color: var(--deep); font-size: 0.98rem; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: -8px; height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='6' viewBox='0 0 24 6'%3E%3Cpath d='M0 4 Q6 0 12 4 T24 4' fill='none' stroke='%23E7F1DD' stroke-width='3.2' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x;
  opacity: 0; transform: scaleX(0.6); transform-origin: left; transition: opacity 0.2s, transform 0.25s var(--ease-out);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.nav__cta { padding: 12px 22px; font-size: 1rem; }
.nav__toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 12px; }
.nav__toggle span { width: 22px; height: 3px; border-radius: 3px; background: var(--deep); transition: transform 0.3s, opacity 0.2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav__mobile { display: flex; flex-direction: column; gap: 16px; padding: 10px var(--gutter) 28px; border-top: 1px solid var(--lilac-soft); }
.nav__mobile a[aria-current="page"] { color: var(--purple); }
.nav__mobile .btn { align-self: flex-start; margin-top: 6px; }
@media (max-width: 1040px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__word { width: 130px; }
}

/* ---------- home hero ---------- */
.hero { position: relative; z-index: 1; overflow: hidden; padding-block: clamp(36px, 6vw, 80px) clamp(24px, 4vw, 48px); }
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(24px, 5vw, 64px); align-items: center; }
.hero__badge { display: inline-block; }
.hero__title { font-size: clamp(2.3rem, 4.4vw, 3.9rem); font-weight: 800; line-height: 1.06; }
.u { position: relative; white-space: normal; }
.u::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -0.05em; height: 0.28em; z-index: -1; border-radius: 4px;
  background: var(--mint); opacity: 1; transform: rotate(-0.6deg);
}
.hero__lead { font-size: clamp(1.08rem, 1.5vw, 1.22rem); max-width: 52ch; margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__art { position: relative; aspect-ratio: 1 / 1; }
.hero__logo { position: absolute; left: 50%; top: 50%; width: 66%; transform: translate(-50%, -50%); filter: drop-shadow(0 18px 24px rgba(107, 78, 118, 0.18)); }
.orb { position: absolute; width: 14%; will-change: transform; }
.orb .sticker { width: 100%; filter: drop-shadow(0 6px 8px rgba(107, 78, 118, 0.2)); }
.orb--scissors { left: 4%; top: 2%; width: 13%; }   .orb--scissors .sticker { rotate: -12deg; }
.orb--glue { right: 4%; top: 6%; width: 15%; }      .orb--glue .sticker { rotate: 10deg; }
.orb--pencil { left: 0; bottom: 20%; width: 11%; }  .orb--pencil .sticker { rotate: 18deg; }
.orb--bracelet { right: 2%; bottom: 14%; width: 17%; } .orb--bracelet .sticker { rotate: -6deg; }
.orb--apron { left: 14%; bottom: -2%; width: 15%; } .orb--apron .sticker { rotate: -8deg; }
.orb--easel { right: 20%; bottom: -4%; width: 11%; } .orb--easel .sticker { rotate: 6deg; }
.hero__art.is-orbit .orb { left: 50%; top: 50%; right: auto; bottom: auto; }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 400px; margin-inline: auto; width: 100%; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero__logo { width: 60%; }
}

/* ---------- sticky notes ---------- */
.notes-row { position: relative; z-index: 1; padding-block: 8px clamp(48px, 7vw, 80px); }
.notes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.notes--3 { max-width: 980px; margin-inline: auto; }
@media (max-width: 800px) { .notes { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
.stickynote {
  position: relative; padding: 26px 24px 24px 24px; border-radius: 6px 6px 18px 6px; box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 36px 1fr; column-gap: 14px; align-items: start;
  transition: transform 0.3s var(--ease-out);
}
.stickynote:nth-child(1) { transform: rotate(-1.2deg); }
.stickynote:nth-child(2) { transform: rotate(0.8deg); }
.stickynote:nth-child(3) { transform: rotate(-0.6deg); }
.stickynote:hover { transform: rotate(0) translateY(-3px); }
.stickynote::before { content: ""; position: absolute; top: -8px; left: 50%; width: 70px; height: 20px; transform: translateX(-50%) rotate(-2deg); background: rgba(255,255,255,0.55); mix-blend-mode: screen; clip-path: polygon(2% 0, 98% 5%, 100% 100%, 0 95%); }
.stickynote--yellow { background: var(--yellow-soft); }
.stickynote--pink { background: var(--pink-soft); }
.stickynote--blue { background: var(--blue-soft); }
.stickynote__icon { grid-row: span 2; width: 36px; height: 36px; color: var(--deep); }
.stickynote__icon svg { width: 36px; height: 36px; }
.stickynote strong { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--deep); line-height: 1.15; }
.stickynote > span:last-child { font-size: 0.95rem; margin-top: 4px; }

/* ---------- steps ---------- */
.how { background: var(--lilac-soft); }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; position: relative; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.step { background: var(--paper); border-radius: var(--radius); padding: 34px 28px 30px; box-shadow: var(--shadow); position: relative; }
.step__num {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%;
  font-family: var(--hand); font-size: 2rem; font-weight: 600; color: var(--deep); margin-bottom: 16px;
  background: var(--mint); box-shadow: inset 0 0 0 3px var(--paper), 0 0 0 2.5px var(--mint); transform: rotate(-6deg);
}
.step:nth-child(2) .step__num { background: var(--pink-soft); box-shadow: inset 0 0 0 3px var(--paper), 0 0 0 2.5px var(--pink); }
.step:nth-child(3) .step__num { background: var(--blue-soft); box-shadow: inset 0 0 0 3px var(--paper), 0 0 0 2.5px var(--blue); }
.step__title { font-size: 1.45rem; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 1rem; }

/* ---------- polaroids ---------- */
.peek { background: var(--cream); }
.polaroids { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; max-width: 980px; margin-inline: auto; }
@media (max-width: 900px) { .polaroids { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .polaroids { grid-template-columns: 1fr; max-width: 300px; } }
.polaroid { background: var(--paper); padding: 12px 12px 16px; border-radius: 6px; box-shadow: var(--shadow); transition: transform 0.3s var(--ease-out); }
.polaroid:nth-child(odd) { transform: rotate(-2deg); }
.polaroid:nth-child(even) { transform: rotate(1.6deg); }
.polaroid:hover { transform: rotate(0) scale(1.03); }
.polaroid__pic { aspect-ratio: 1; border-radius: 4px; display: grid; place-items: center; color: var(--deep); }
.polaroid__pic svg { width: 62%; height: 62%; }
.polaroid--blue .polaroid__pic { background: var(--blue-soft); }
.polaroid--yellow .polaroid__pic { background: var(--yellow-soft); }
.polaroid--pink .polaroid__pic { background: var(--pink-soft); }
.polaroid--green .polaroid__pic { background: var(--green-soft); }
.polaroid__cap { font-family: var(--hand); font-size: 1.6rem; font-weight: 600; color: var(--deep); text-align: center; margin-top: 12px; line-height: 1; }
.polaroid__when { text-align: center; font-size: 0.85rem; color: var(--purple); font-weight: 700; margin-top: 4px; }

/* ---------- why ---------- */
.why { background: var(--lilac-soft); }
.why__inner { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
@media (max-width: 860px) { .why__inner { grid-template-columns: 1fr; } }
.why__copy .btn { margin-top: 28px; }
.ticks { display: grid; gap: 14px; margin-top: 24px; }
.ticks li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; font-size: 1.02rem; }
.ticks svg { width: 28px; height: 28px; color: var(--deep); margin-top: 1px; background: var(--mint); border-radius: 50%; padding: 4px; }
.ticks strong { color: var(--deep); }
.why__art { display: grid; gap: 28px; padding: 20px 10px; }
.papercard { position: relative; background: var(--paper); border-radius: 18px; padding: 30px 26px 24px; box-shadow: var(--shadow); }
.papercard--tilt-l { transform: rotate(-2.5deg); }
.papercard--tilt-r { transform: rotate(2deg); }
.papercard__doodle { width: 70px; height: 70px; margin-top: 10px; }
.papercard__doodle svg { width: 100%; height: 100%; }
.papercard__doodle--pink { color: var(--pink); }
.papercard__doodle--blue { color: var(--blue); }
.papercard .small { margin-top: 8px; }

/* ---------- CTA band ---------- */
.band { position: relative; z-index: 1; background: var(--purple); color: var(--cream); padding-block: clamp(56px, 7vw, 88px); }
.band__inner { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
@media (max-width: 760px) { .band__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.band__sticker { width: 96px; transform: rotate(-10deg); filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.2)); }
.band__title { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; }
.band__text { margin-top: 6px; color: #F5EEF7; max-width: 52ch; }

/* ---------- inner-page hero ---------- */
.phero { position: relative; z-index: 1; padding-block: clamp(40px, 6vw, 72px) clamp(40px, 6vw, 64px); }
.phero__inner { text-align: center; }
.phero .note { display: inline-block; }
.phero__title { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; max-width: 20ch; margin-inline: auto; }
.phero__lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); max-width: 62ch; margin: 18px auto 0; }
.phero .btn { margin-top: 28px; }

/* ---------- programme: session schedule ---------- */
.sched { max-width: 720px; margin-inline: auto; position: relative; display: grid; gap: 10px; }
.sched::before { content: ""; position: absolute; left: 92px; top: 16px; bottom: 16px; border-left: 3px dashed var(--lilac); }
.sched__row { display: grid; grid-template-columns: 72px 24px 1fr; gap: 16px; align-items: start; background: var(--paper); border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow-sm); position: relative; }
.sched__time { font-family: var(--display); font-weight: 800; font-size: 1.25rem; color: var(--deep); }
.sched__dot { width: 18px; height: 18px; border-radius: 50%; margin-top: 7px; box-shadow: 0 0 0 3px var(--paper); }
.sched__dot--lilac { background: var(--lilac); } .sched__dot--blue { background: var(--blue); } .sched__dot--yellow { background: var(--yellow); } .sched__dot--green { background: var(--mint); } .sched__dot--pink { background: var(--pink); }
.sched__row strong { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--deep); }
.sched__row p { font-size: 0.98rem; }
@media (max-width: 560px) {
  .sched::before { left: 30px; }
  .sched__row { grid-template-columns: 24px 1fr; }
  .sched__time { grid-column: 2; order: -1; font-size: 1rem; color: var(--purple); }
  .sched__row > div { grid-column: 2; }
  .sched__dot { grid-row: 1 / span 2; }
}

/* ---------- groups ---------- */
.groups-section { background: var(--lilac-soft); }
.groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 900px; margin-inline: auto; }
@media (max-width: 720px) { .groups { grid-template-columns: 1fr; } }
.group { position: relative; background: var(--paper); border-radius: var(--radius); padding: 38px 30px 30px; box-shadow: var(--shadow); }
.group__grades { font-family: var(--hand); font-size: 1.5rem; font-weight: 600; color: var(--purple); line-height: 1; }
.group__day { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.7rem); color: var(--deep); line-height: 1; margin-top: 8px; }
.group__time { font-family: var(--display); font-weight: 700; font-size: 1.3rem; color: var(--deep); margin-top: 4px; }
.group__list { margin-top: 18px; padding-top: 16px; border-top: 2px dashed var(--lilac); display: grid; gap: 8px; font-size: 0.98rem; }
.group__list li { padding-left: 22px; position: relative; }
.group__list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 11px; height: 11px; border-radius: 50%; background: var(--mint); }
.group:nth-child(2) .group__list li::before { background: var(--blue); }

/* ---------- two-column text blocks ---------- */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.twocol--wide { max-width: 1000px; margin-inline: auto; }
@media (max-width: 820px) { .twocol { grid-template-columns: 1fr; } }
.twocol .note { display: inline-block; }
.twocol .section__lead + .section__lead { margin-top: 14px; }

/* ---------- projects ---------- */
.term-section--alt { background: var(--lilac-soft); }
.term-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 22px; margin-bottom: 30px; }
.term-head .note { margin-bottom: 0; }
.weeks { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 1000px) { .weeks { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 680px) { .weeks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }
@media (max-width: 420px) { .weeks { grid-template-columns: 1fr; } }
.week { position: relative; border-radius: 18px; padding: 26px 18px 20px; min-height: 200px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease-out); }
.week:nth-child(3n+1) { transform: rotate(-0.8deg); }
.week:nth-child(3n+2) { transform: rotate(0.6deg); }
.week:hover { transform: rotate(0) translateY(-4px); }
.week--yellow { background: var(--yellow-soft); } .week--pink { background: var(--pink-soft); } .week--blue { background: var(--blue-soft); } .week--green { background: var(--green-soft); } .week--orange { background: var(--orange-soft); }
.week .tape { width: 84px; height: 22px; }
.week__num { font-family: var(--hand); font-size: 1.35rem; font-weight: 600; color: var(--purple); line-height: 1; }
.week__date { font-size: 0.86rem; font-weight: 700; color: var(--deep); opacity: 0.8; margin-top: 4px; }
.week__title { font-size: 1.22rem; font-weight: 800; line-height: 1.12; margin-top: 12px; }
.week__text { font-size: 0.92rem; margin-top: 8px; line-height: 1.45; }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 28px; align-items: start; }
@media (max-width: 820px) { .pricing { grid-template-columns: 1fr; } }
.price { position: relative; background: var(--paper); border-radius: var(--radius); padding: 40px 32px 34px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 6px; transform: rotate(-1deg); }
.price__amount { font-family: var(--display); font-weight: 800; font-size: 4rem; line-height: 1; color: var(--deep); }
.price__amount sup { font-size: 1.6rem; vertical-align: top; position: relative; top: 0.4em; margin-right: 2px; }
.price__label { font-family: var(--hand); font-size: 1.5rem; font-weight: 600; color: var(--purple); line-height: 1; }
.price__note { margin-top: 10px; }
.price .btn { align-self: flex-start; margin-top: 18px; }
.terms { display: grid; gap: 18px; }
.term { background: var(--paper); border-radius: 20px; padding: 24px 26px 22px; box-shadow: var(--shadow-sm); }
.term__name { font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: var(--deep); }
.term__dates { font-weight: 700; font-size: 1.05rem; margin-top: 4px; color: var(--deep); }
.term__meta { font-size: 0.92rem; margin-top: 6px; color: var(--deep); opacity: 0.85; }

/* ---------- FAQ ---------- */
.faq__list { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.qa { background: var(--paper); border-radius: 18px; box-shadow: var(--shadow-sm); overflow: hidden; }
.qa summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: var(--deep); position: relative; line-height: 1.25; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: ""; position: absolute; right: 22px; top: 50%; width: 14px; height: 14px; transform: translateY(-50%); background: linear-gradient(var(--purple), var(--purple)) center / 100% 3px no-repeat, linear-gradient(var(--purple), var(--purple)) center / 3px 100% no-repeat; transition: transform 0.3s var(--ease-out); }
.qa[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.qa summary:hover { background: var(--lilac-soft); }
.qa__body { padding: 0 24px 22px; font-size: 1rem; }

/* ---------- register ---------- */
.register__inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 860px) { .register__inner { grid-template-columns: 1fr; } }
.form { position: relative; background: var(--paper); border-radius: var(--radius); padding: 40px 30px 30px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field span { font-weight: 700; font-size: 0.92rem; color: var(--deep); }
.field em { font-style: normal; font-weight: 400; opacity: 0.7; }
.field input, .field select, .field textarea { font: inherit; font-size: 1rem; color: var(--ink); background: var(--cream); border: 2px solid var(--lilac); border-radius: 12px; padding: 12px 14px; width: 100%; transition: border-color 0.2s, box-shadow 0.2s; }
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(158, 125, 169, 0.18); outline: none; }
.field input.is-invalid, .field select.is-invalid { border-color: var(--pink); }
.form__error { color: #B94A63; font-weight: 700; font-size: 0.92rem; }
.form__submit { justify-self: start; margin-top: 4px; }
.form__hint { font-size: 0.88rem; color: var(--deep); opacity: 0.75; }
.register__aside { display: grid; gap: 30px; padding-top: 12px; }
.register__aside .papercard p + p { margin-top: 8px; }
.mini-steps { margin-top: 10px; display: grid; gap: 8px; counter-reset: s; font-size: 0.98rem; }
.mini-steps li { counter-increment: s; padding-left: 34px; position: relative; }
.mini-steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--mint); color: var(--deep); font-family: var(--hand); font-size: 1.15rem; font-weight: 600; display: grid; place-items: center; }
.register__sticker { width: 110px; margin-left: 20px; transform: rotate(-8deg); filter: drop-shadow(0 6px 8px rgba(107, 78, 118, 0.2)); }

/* ---------- footer ---------- */
.footer { position: relative; z-index: 1; background: var(--deep); color: var(--lilac); padding: clamp(56px, 7vw, 88px) 0 28px; }
.footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; align-items: start; }
@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand { display: inline-block; background: var(--cream); border-radius: 20px; padding: 18px 22px 14px; box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.footer__brand img { width: 220px; }
.footer__head { font-family: var(--hand); font-weight: 600; font-size: 1.6rem; color: var(--mint); margin-bottom: 10px; line-height: 1; }
.footer__col a { display: block; color: var(--cream); text-decoration: none; font-weight: 700; margin-bottom: 8px; }
.footer__col a:hover { color: var(--mint); }
.footer__col p { font-size: 0.95rem; }
.footer__legal { text-align: center; font-size: 0.85rem; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(212, 195, 218, 0.25); width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
