:root {
  --orange: #ff4a00;
  --orange-hot: #ff3b00;
  --cream: #ffd89a;
  --cream-2: #ffc56e;
  --cream-3: #ffb15a;
  --white: #ffffff;
  --ink: #3a1608;
  --ink-soft: #7a3d22;
  --ease: cubic-bezier(0.625, 0.05, 0, 1);
  --energy: cubic-bezier(0.32, 0.72, 0, 1);
  --font-display: "Archivo Black", "Arial Black", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-hand: "Caveat", cursive;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; }
html { background: var(--white); }
html.lenis, html.lenis body { height: auto; }

body {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.5;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.04em; line-height: 0.92; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select { font: inherit; }

.hand {
  font-family: var(--font-hand);
  font-weight: 600;
  color: var(--orange);
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
  line-height: 1.1;
  transform: rotate(-6deg);
  display: inline-block;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--orange);
  pointer-events: none;
}

body.is-ready .loader {
  pointer-events: none;
}

.hero h1 .split-word {
  opacity: 0;
  transform: translateY(1.1rem) rotate(4deg);
}

body.is-ready .hero h1 .split-word {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--energy), transform 0.7s var(--energy);
}

body.is-ready .hero h1 .split-word:nth-child(1) { transition-delay: 0.02s; }
body.is-ready .hero h1 .split-word:nth-child(2) { transition-delay: 0.08s; }
body.is-ready .hero h1 .split-word:nth-child(3) { transition-delay: 0.14s; }
body.is-ready .hero h1 .split-word:nth-child(4) { transition-delay: 0.2s; }
body.is-ready .hero h1 .split-word:nth-child(5) { transition-delay: 0.26s; }

.loader-mark {
  width: min(26vw, 8.4rem);
  color: var(--white);
  will-change: transform, opacity, filter;
}

.loader-mark svg { width: 100%; height: auto; display: block; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  pointer-events: none;
  background: transparent;
  transition: background 0.35s var(--energy), box-shadow 0.35s var(--energy), transform 0.45s var(--energy);
}

.site-header.is-scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(58, 22, 8, 0.08);
}

.site-header > * { pointer-events: auto; }

.header-nav {
  display: none;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.header-nav a {
  color: var(--ink);
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.header-nav a:hover { opacity: 1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn.btn-header {
  display: none;
  border-radius: 999px;
  flex: none;
}

.btn-header .btn-label {
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  white-space: nowrap;
}

.btn-header .btn-arrow { width: 2.5rem; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  flex: none;
}

.logo-mark {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  padding: 0.32rem 0.34rem 0.3rem;
  flex: none;
  transition: transform 0.4s var(--energy), background 0.25s ease;
}

.logo-mark svg,
.giru-mark {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.menu-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.5rem 0.7rem 0.5rem 0.9rem;
  cursor: pointer;
  font-weight: 700;
  flex: none;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.burger {
  width: 1.15rem;
  display: grid;
  gap: 5px;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
}

/* Overlay menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--orange);
  color: var(--white);
  display: grid;
  align-content: center;
  padding: 4rem 1.5rem;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  transition: clip-path 0.7s var(--energy);
}

.menu.is-open {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}

.menu-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  border: 0;
  background: var(--white);
  color: var(--orange);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.35s var(--energy), background 0.25s ease;
}

.menu-nav {
  display: grid;
  gap: 0.35rem;
}

.menu-nav a {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.menu-note {
  margin-top: 2rem;
  opacity: 0.8;
}

/* Sticky join */
.join-cta {
  position: fixed;
  right: 0.7rem;
  bottom: 1.2rem;
  z-index: 70;
  display: none;
}

.join-cta span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  padding: 0.7rem 0.75rem 0.7rem 1.05rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(255, 74, 0, 0.28);
  transition: background 0.28s ease;
}

.join-cta b {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--energy), background 0.25s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: stretch;
  border: 0;
  padding: 0;
  background: var(--orange);
  color: var(--white);
  border-radius: 1.15rem;
  overflow: hidden;
  cursor: pointer;
  font-weight: 800;
  transition: background 0.28s ease, color 0.28s ease;
}

.btn-label {
  display: grid;
  place-items: center;
  padding: 0.95rem 1.25rem;
  min-height: 3.25rem;
}

.btn-arrow {
  display: grid;
  place-items: center;
  width: 3.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 1.2rem;
  transition: transform 0.32s var(--energy), background 0.28s ease;
}

.btn-label {
  display: grid;
  place-items: center;
  padding: 0.95rem 1.25rem;
  min-height: 3.25rem;
}

.btn-arrow {
  display: grid;
  place-items: center;
  width: 3.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 1.2rem;
}

.btn-mini .btn-label { padding: 0.7rem 0.95rem; min-height: 2.7rem; }
.btn-mini .btn-arrow { width: 2.7rem; }

.btn-ghost {
  background: var(--white);
  color: var(--orange);
}

.btn-ghost .btn-arrow { border-left-color: rgba(255, 74, 0, 0.2); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.split-word, .split-char { display: inline-block; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--cream);
  padding: 6.2rem clamp(1.1rem, 4vw, 3.5rem) 8rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  z-index: -1;
}

.hero-bg svg, .gift-bg svg {
  width: 100%;
  height: 100%;
}

.hero h1 {
  font-size: clamp(2.7rem, 9.2vw, 7.4rem);
  max-width: 14ch;
  margin: 0.4rem 0 1.1rem;
}

.hero-lead {
  max-width: 34rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  margin-bottom: 1.6rem;
}

.hero-visual {
  position: relative;
  width: min(88vw, 28rem);
  margin: 3.5rem 0 0 auto;
  transform: rotate(-18deg);
  overflow: hidden;
  border-radius: 0.4rem;
}

.hero-visual img,
.gift-visual img,
.book-card img,
.tutor img,
.results-visual img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--energy), filter 0.4s ease;
}

.hero-visual img { aspect-ratio: 4 / 3; border-radius: 0.4rem; }

.hero-sticker {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 6.6rem;
  height: 6.6rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  padding: 1.15rem 1.2rem 1rem;
  transform: rotate(12deg);
  z-index: 2;
  cursor: pointer;
  transition: transform 0.35s var(--energy), background 0.25s ease, box-shadow 0.25s ease;
}
.hero-sticker:hover,
.hero-sticker:focus-visible {
  transform: rotate(12deg) scale(1.1);
  background: var(--orange-hot);
  box-shadow: 0 0.6rem 1.4rem rgba(255, 74, 0, 0.35);
}
.hero-sticker:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}
.hero-sticker:active {
  transform: rotate(12deg) scale(0.96);
}

.hero-sticker svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Sections */
.books, .how, .why, .faq, .formats, .platform, .reviews, .mid-form, .teach, .fit, .parents, .week {
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.1rem, 4vw, 3.5rem);
  background: var(--white);
}

.section-intro { max-width: 42rem; margin-bottom: 2.2rem; position: relative; }
.section-intro h2, .faq h2, .gift h2, .teach h2, .mid-form h2, .formats h2, .platform h2, .reviews h2, .fit h2, .parents h2, .week h2 {
  font-size: clamp(2.3rem, 6.5vw, 5.2rem);
  margin-bottom: 0.7rem;
}
.section-intro p { color: var(--ink-soft); max-width: 32rem; }
.hand-aside { display: block; margin-top: 1rem; }

/* Books slider */
.books-slider { overflow: hidden; }
.books-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1.2rem 0 1.6rem;
  scrollbar-width: none;
}
.books-track::-webkit-scrollbar { display: none; }

.book-card {
  flex: 0 0 min(78vw, 22rem);
  scroll-snap-align: start;
  background: var(--white);
}
.book-card > img { border-radius: 0.4rem; }

.book-card img { aspect-ratio: 3 / 4; }
.book-body { padding: 0.95rem 0.1rem 0; }
.book-body h3 { font-size: 1.55rem; margin-bottom: 0.4rem; }
.book-body p { color: var(--ink-soft); font-size: 0.95rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.tags span {
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.slider-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.slider-controls button {
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.15rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.35s var(--energy);
}

.slider-controls button.is-disabled { opacity: 0.35; pointer-events: none; }

/* How */
.how-list { display: grid; gap: 2rem; position: relative; }
.how-list span {
  font-family: var(--font-display);
  color: var(--orange);
  font-size: 2.1rem;
  display: block;
  margin-bottom: 0.45rem;
}
.how-list h3 { font-size: 1.55rem; margin-bottom: 0.45rem; }
.how-list p { color: var(--ink-soft); max-width: 24rem; }
.how-note {
  position: relative;
  margin-top: 2.2rem;
  color: var(--ink-soft);
  max-width: 32rem;
}

.section-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.section-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-photo-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 216, 154, 0.88), rgba(255, 255, 255, 0.92));
}
.section-photo.mid-form .section-photo-bg::after,
.section-photo.teach .section-photo-bg::after,
.section-photo.parents .section-photo-bg::after {
  background: linear-gradient(105deg, rgba(255, 216, 154, 0.9), rgba(255, 197, 110, 0.86));
}
.section-photo > *:not(.section-photo-bg) { position: relative; z-index: 1; }

/* Benefits / tutors */
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0 2.5rem;
}

.benefits li {
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-weight: 800;
}

.tutors-rail {
  display: grid;
  gap: 1.1rem;
}

.tutor { margin: 0; }
.tutor img { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; border-radius: 0.35rem; }
.tutor figcaption { padding-top: 0.7rem; display: grid; gap: 0.15rem; }
.tutor strong { font-family: var(--font-display); font-size: 1.15rem; }
.tutor span { color: var(--ink-soft); font-size: 0.9rem; }

/* FAQ */
.acc {
  border-top: 1.5px solid rgba(58, 22, 8, 0.16);
  overflow: clip;
}

.acc:last-child { border-bottom: 1.5px solid rgba(58, 22, 8, 0.16); }

.acc summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
}

.acc summary::-webkit-details-marker { display: none; }
.acc h3 { font-size: clamp(1.15rem, 2.4vw, 1.7rem); line-height: 1.1; }
.acc i {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  transition: transform 0.35s var(--energy);
}
.acc.is-open i, .acc[open] i { transform: rotate(45deg); }
.acc [data-accordion-content] { padding: 0 0 1.25rem; max-width: 38rem; color: var(--ink-soft); }

/* Gift */
.gift {
  position: relative;
  background: var(--cream);
  padding: clamp(4rem, 9vw, 7rem) clamp(1.1rem, 4vw, 3.5rem) 6rem;
  overflow: hidden;
  isolation: isolate;
}

.gift-bg { position: absolute; inset: -12%; z-index: -1; pointer-events: none; }
.gift h2 { max-width: none; }
.gift > p { max-width: 32rem; margin: 0.9rem 0 1.6rem; }

.lead-form {
  display: grid;
  gap: 0.85rem;
  max-width: 26rem;
}

.lead-form label { display: grid; gap: 0.35rem; position: relative; }
.lead-form > label > span { font-size: 0.8rem; font-weight: 700; }
.lead-form input,
.lead-form select {
  min-height: 3.1rem;
  border: 1.5px solid rgba(58, 22, 8, 0.18);
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  outline: none;
}

.lead-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='16' fill='none' stroke='%233a1608' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M2 6 6 2 10 6'/><path d='M2 10 6 14 10 10'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 0.7rem 0.95rem;
}

.lead-form input:focus,
.lead-form select:focus,
.touch-form input:focus { border-color: var(--orange); }

.cselect { position: relative; }
.cselect-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  clip: rect(0 0 0 0);
}

.cselect-btn {
  width: 100%;
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1.5px solid rgba(58, 22, 8, 0.18);
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 0.95rem 0.7rem 0.9rem;
  border-radius: 0.9rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.cselect-btn:hover,
.cselect.is-open .cselect-btn {
  border-color: var(--orange);
}

.cselect.is-open .cselect-btn {
  box-shadow: 0 0 0 3px rgba(255, 74, 0, 0.14);
}

.cselect-value {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  line-height: 1.3;
}
.cselect-value.is-placeholder { color: #b08972; font-weight: 500; }

.cselect-chevron {
  flex: none;
  width: 0.85rem;
  height: 1.05rem;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: transform 0.28s var(--energy), color 0.2s ease;
}
.cselect-chevron svg { width: 100%; height: 100%; display: block; }
.cselect.is-open .cselect-chevron { color: var(--orange); transform: rotate(180deg); }

.cselect-list {
  position: fixed;
  z-index: 90;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: var(--white);
  border: 1.5px solid rgba(58, 22, 8, 0.1);
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(58, 22, 8, 0.16);
  max-height: min(18rem, 60vh);
  overflow-y: auto;
  scrollbar-width: thin;
}

.cselect-list[hidden] { display: none; }

.cselect-list li {
  padding: 0.72rem 0.85rem;
  border-radius: 0.7rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}

.cselect-list li:hover,
.cselect-list li.is-active {
  background: rgba(255, 74, 0, 0.1);
  color: var(--orange);
}

.cselect-list li[aria-selected="true"] {
  background: var(--orange);
  color: var(--white);
}

.form-note { font-size: 0.88rem; color: var(--ink-soft); }
.form-note.is-success { color: var(--orange); font-weight: 700; }
.form-note.is-error { color: #b42318; font-weight: 700; }

.gift-visual {
  position: relative;
  width: min(90vw, 26rem);
  margin: 2.8rem 0 0 auto;
  transform: rotate(14deg);
}

.gift-visual img { aspect-ratio: 4 / 3; }

.gift.dual {
  display: grid;
  gap: 2.5rem;
  min-width: 0;
}

.dual-col { min-width: 0; }
.dual-col h2 {
  max-width: 100%;
  font-size: clamp(1.5rem, 2.4vw + 0.35rem, 2.35rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  overflow-wrap: break-word;
}
.dual-col > p {
  max-width: none;
  margin: 0.85rem 0 1.5rem;
  color: var(--ink-soft);
}
.dual-col .lead-form { max-width: none; }

/* Stats */
.stats {
  background: var(--orange);
  color: var(--white);
  padding: 2.2rem clamp(1.1rem, 4vw, 3.5rem);
}

.stats ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stats span { opacity: 0.88; font-size: 0.92rem; }

/* Mid form / teach / parents */
.mid-form, .teach, .parents {
  display: grid;
  gap: 2.4rem;
  background: var(--cream);
}

.mid-form-copy p:not(.hand), .teach-copy > p:not(.hand), .parents-copy > p:not(.hand) {
  color: var(--ink-soft);
  max-width: 32rem;
  margin-top: 0.75rem;
}

.teach-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.teach-points li {
  padding-left: 1.1rem;
  position: relative;
  font-weight: 700;
}

.teach-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--orange);
}

.touch-form {
  display: grid;
  gap: 0.5rem;
}

.touch-form label { display: grid; min-width: 0; }
.touch-form input {
  min-height: 2.45rem;
  border: 1.5px solid rgba(58, 22, 8, 0.18);
  background: var(--white);
  color: var(--ink);
  padding: 0.45rem 0.7rem;
  border-radius: 0.7rem;
  outline: none;
  font-size: 0.9rem;
}
.touch-form input:focus { border-color: var(--orange); }
.touch-form .form-note:empty { display: none; }
.touch-form .form-note { font-size: 0.78rem; margin: 0; }
.touch-form .btn-mini { align-self: stretch; }
.touch-form .btn-mini .btn-label { min-height: 2.45rem; padding: 0.35rem 0.8rem; }
.touch-form .btn-mini .btn-arrow { width: 2.45rem; }

.touch-band {
  background: var(--cream);
  padding: 1.15rem clamp(1.1rem, 4vw, 3.5rem);
  display: grid;
  gap: 0.85rem 1.5rem;
  align-items: center;
}

.touch-copy h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.touch-copy p {
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 28rem;
}

.fit-grid {
  display: grid;
  gap: 1.25rem;
}

.fit-grid article {
  background: var(--cream);
  border-radius: 1.25rem;
  padding: 1.7rem 1.5rem 1.8rem;
}

.fit-grid h3 { font-size: 1.55rem; margin-bottom: 0.55rem; }
.fit-grid p { color: var(--ink-soft); }

.week-layout {
  display: grid;
  gap: 1.4rem;
}

.week-list {
  display: grid;
  gap: 0.85rem;
}
.week-list li {
  background: var(--cream);
  border-radius: 1.25rem;
  padding: 1.25rem 1.3rem 1.35rem;
}
.week-list span {
  font-family: var(--font-display);
  color: var(--orange);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.35rem;
}
.week-list h3 { font-size: 1.25rem; margin-bottom: 0.4rem; line-height: 1.05; }
.week-list p { color: var(--ink-soft); }

.week-touch {
  background: var(--cream);
  border-radius: 1.1rem;
  padding: 1.1rem 1.15rem 1.2rem;
}

.week-touch h3 {
  font-size: 1.15rem;
  margin: 0 0 0.7rem;
  line-height: 1.1;
}

.parents .touch-form,
.week-touch .touch-form { max-width: 22rem; }

/* Formats */
.format-grid {
  display: grid;
  gap: 1.15rem;
}

.price-card {
  margin: 0;
  background: var(--cream);
  border-radius: 1.4rem;
  padding: 1.55rem 1.45rem 1.4rem;
  display: flex;
  flex-direction: column;
  min-height: 17rem;
}

.price-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
}

.price {
  font-family: var(--font-display);
  color: var(--orange);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.price-meta {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.price-card > p:last-of-type {
  color: var(--ink-soft);
  flex: 1;
}

.price-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.price-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  font-weight: 800;
  color: var(--orange);
}

.price-card-link span {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  transition: transform 0.35s var(--energy), background 0.25s ease;
}

.price-card.is-featured {
  background: var(--orange);
  color: var(--white);
}

.price-card.is-featured .price,
.price-card.is-featured .price-card-link,
.price-card.is-featured > p:last-of-type {
  color: var(--white);
}

.price-card.is-featured .price-badge {
  background: var(--white);
  color: var(--orange);
}

.price-card.is-featured .price-card-link span {
  background: var(--white);
  color: var(--orange);
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 2rem;
}

.service-pills li {
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 0.38rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--cream);
}

.price-group {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin: 0 0 1rem;
}

.format-grid + .price-group {
  margin-top: 2.4rem;
}

.format-grid-exams .price-card {
  min-height: 16.5rem;
}

/* Reviews carousel */
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.4rem;
  max-width: none;
}
.reviews-head > div:first-child { max-width: 42rem; }
.reviews-slider { overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.2rem 0 1.4rem;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 min(84vw, 22.5rem);
  scroll-snap-align: start;
  margin: 0;
  background: var(--cream);
  border-radius: 1.25rem;
  padding: 1.35rem 1.3rem 1.4rem;
}

.stars {
  display: flex;
  gap: 0.12rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.star {
  font-size: 1.15rem;
  color: rgba(58, 22, 8, 0.18);
  letter-spacing: 0;
}
.star.is-on { color: var(--orange); }

.review-card p {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
  min-height: 5.6em;
}
.review-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 800;
  font-size: 0.92rem;
}

/* Platform / results */
.platform-list { display: grid; gap: 1.15rem; margin: 0; }
.platform-list li {
  background: var(--cream);
  border-radius: 1.25rem;
  padding: 1.45rem 1.35rem 1.5rem;
}
.platform-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}
.platform-list span { color: var(--ink-soft); }

.results {
  padding: clamp(2.8rem, 6vw, 5rem) clamp(1.1rem, 4vw, 3.5rem);
  background: var(--white);
}
.results-layout {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}
.results-copy h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  line-height: 0.95;
  max-width: 12ch;
  margin-bottom: 0.55rem;
}
.results-copy > p {
  color: var(--ink-soft);
  max-width: 32rem;
  margin-bottom: 1.25rem;
}
.result-list { display: grid; gap: 0.85rem; }
.result-list li { color: var(--ink-soft); }
.result-list strong {
  display: block;
  font-family: var(--font-display);
  color: var(--orange);
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  margin-bottom: 0.15rem;
}
.results-visual {
  margin: 0;
  transform: rotate(-7deg);
  overflow: hidden;
  border-radius: 0.4rem;
}
.results-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.4rem;
}

/* Marquee */
.marquee {
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
  padding: 1.1rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  animation: marquee 28s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  font-weight: 700;
}

.footer-nav a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--orange);
  color: var(--white);
  padding: 3rem clamp(1.1rem, 4vw, 3.5rem) 2rem;
}

.footer-brand p { margin-top: 0.7rem; max-width: 22rem; opacity: 0.9; }
.footer-brand .logo-mark {
  background: var(--white);
  color: var(--orange);
}
.footer-copy { opacity: 0.8; font-size: 0.85rem; }

@media (min-width: 860px) {
  .header-nav { display: flex; gap: 1rem; font-size: 0.84rem; }
  .site-header { padding: 0.7rem clamp(1rem, 3vw, 2rem); gap: 1rem; }
  .logo-text { font-size: 1.12rem; }
  .btn.btn-header { display: inline-flex; }
  .menu-btn { display: none; }
  .join-cta { display: block; }
  .hero { display: grid; align-content: center; padding-right: 38vw; }
  .hero-visual {
    position: absolute;
    right: 4vw;
    bottom: 6vh;
    width: min(36vw, 32rem);
  }
  .how-list { grid-template-columns: 1fr 1fr; gap: 2.4rem 3.5rem; }
  .platform-list { grid-template-columns: 1fr 1fr; gap: 1.25rem 1.4rem; }
  .tutors-rail { grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
  .stats ul { grid-template-columns: repeat(4, 1fr); }
  .format-grid { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
  .review-card { flex-basis: calc((100% - 2.2rem) / 3); }
  .mid-form, .teach, .parents { grid-template-columns: 1fr 0.9fr; align-items: start; }
  .touch-band {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1rem 2rem;
    align-items: center;
  }
  .touch-band .touch-form {
    grid-template-columns: 1fr 1fr auto;
    align-items: stretch;
  }
  .touch-band .touch-form .form-note { grid-column: 1 / -1; }
  .touch-band .touch-form .btn-mini { height: 2.45rem; }
  .fit-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.6rem; }
  .week-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
    gap: 1.4rem 1.6rem;
    align-items: start;
  }
  .week-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }
  .week-touch { position: sticky; top: 5.5rem; }
  .results-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem 3.2rem;
    align-items: center;
  }
  .gift { display: grid; grid-template-columns: 1fr 0.85fr; gap: 2rem; align-items: center; }
  .gift.dual {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    column-gap: clamp(1.25rem, 3vw, 3rem);
    row-gap: 0;
    align-items: stretch;
  }
  .dual-col {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / span 3;
    min-width: 0;
  }
  .gift-visual { margin: 0; width: 100%; }
  .footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr auto;
    gap: 2rem;
    align-items: end;
  }
}

@media (min-width: 1100px) {
  .header-nav { gap: 1.35rem; font-size: 0.92rem; }
  .books-track { gap: 1.5rem; }
  .book-card { flex-basis: 19rem; }
  .platform-list { grid-template-columns: 1fr 1fr 1fr; }
}

@media (hover: hover) and (pointer: fine) {
  .logo:hover .logo-mark { transform: rotate(-18deg); background: var(--orange-hot); }
  .header-nav a:hover { opacity: 1; color: var(--orange); }
  .menu-btn:hover { background: var(--cream); }
  .menu-close:hover { transform: rotate(90deg); background: var(--cream); }
  .btn:hover { background: var(--orange-hot); }
  .btn:hover .btn-arrow { transform: translateX(0.28rem); }
  .btn-ghost:hover { background: var(--cream); color: var(--orange-hot); }
  .join-cta:hover span { background: var(--orange-hot); }
  .join-cta:hover b { transform: rotate(40deg); background: rgba(255, 255, 255, 0.32); }
  .slider-controls button:hover {
    background: var(--orange);
    color: var(--white);
    transform: rotate(18deg);
  }
  .hero-visual:hover img,
  .book-card:hover > img,
  .tutor:hover img,
  .results-visual:hover img {
    transform: scale(1.07);
    filter: saturate(1.18) contrast(1.06);
  }
  .price-card-link:hover span { transform: rotate(40deg); }
  .price-card.is-featured .price-card-link:hover span { background: var(--cream); color: var(--orange); }
  .acc summary:hover h3 { color: var(--orange); }
  .cselect-btn:hover { border-color: var(--orange); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
