.site {
  --ink: #16141f;
  --muted: #5c6170;
  --accent: #1c6468;
  --accent-dark: #13494c;
  --gold: #e2b15a;
  --line: #e7e7ee;
  --paper: #f7f7fb;
  --dark: #0c1014;
  background: #fff;
  color: var(--ink);
  font-family: Poppins, "Segoe UI", system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: clip;
}

.site * { box-sizing: border-box; }
.site img { max-width: 100%; display: block; }
.site a { color: inherit; text-decoration: none; }
.site h1, .site h2, .site h3 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.site p { margin: 0; }
.site [id] { scroll-margin-top: 5.75rem; }

.site-wrap { width: min(1140px, calc(100% - 3rem)); margin-inline: auto; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  color: #fff;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck {
  background: #fff; color: var(--ink);
  box-shadow: 0 8px 24px rgba(12, 16, 20, .06);
}
.site-header .site-wrap {
  display: flex; align-items: center; gap: 1.25rem; min-height: 5.4rem;
}
.site-brand {
  display: flex; align-items: center; background: #fff;
  border-radius: 8px; padding: .28rem .45rem;
}
.site-brand img { width: 118px; height: 40px; object-fit: contain; }
.site-nav { display: flex; gap: 1.35rem; margin-left: auto; align-items: center; }
.site-nav a { font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.92); }
.site-header.is-stuck .site-nav a { color: var(--ink); }
.site-nav a:hover { opacity: .72; }
.site-nav .site-cta,
.site-header.is-stuck .site-nav .site-cta {
  color: #fff; background: var(--accent); opacity: 1;
  padding: .55rem .95rem; border-radius: 6px; font-size: .875rem; font-weight: 500;
}
.site-nav .site-cta:hover { background: var(--accent-dark); }
.site-menu {
  display: none; margin-left: auto; width: 2.6rem; height: 2.6rem; padding: 0;
  border: 0; background: transparent; color: inherit; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.site-menu span {
  display: block; width: 1.25rem; height: 2px; border-radius: 1px; background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.site-menu.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-menu.is-open span:nth-child(2) { opacity: 0; }
.site-menu.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.eyebrow {
  margin: 0 0 .85rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
}
.eyebrow.light { color: var(--gold); }

.hero {
  position: relative; min-height: 100vh; display: grid; place-items: center;
  color: #fff; text-align: center; background: var(--dark); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 16, .58) 0%, rgba(8, 12, 16, .4) 46%, rgba(8, 12, 16, .64) 100%);
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: center 42%; opacity: 0.92;
  filter: blur(4px);
  transform: scale(1.04);
}
.hero h1, .hero .lede, .hero .reach { text-shadow: 0 1px 16px rgba(8, 12, 16, .45); }
.hero-copy { position: relative; z-index: 1; width: min(920px, calc(100% - 2.5rem)); padding: 8rem 0 4.5rem; }
.hero h1 { font-size: clamp(2.7rem, 5.2vw, 3.75rem); font-weight: 600; line-height: 1.18; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lede { margin: 1.35rem auto 0; max-width: 40rem; font-size: 1.12rem; line-height: 1.7; color: rgba(255,255,255,.86); }
.hero .reach { margin: 1.1rem auto 0; font-size: .95rem; color: rgba(255,255,255,.75); }

.hero-actions { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.hero-actions.left { justify-content: flex-start; }

.site a.btn, .contact-form > button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.15rem; padding: .75rem 1.25rem; border-radius: 8px;
  font-weight: 500; font-size: 1.02rem; border: 0; cursor: pointer;
}
.site a.btn-light { background: #fff; color: var(--dark); }
.site a.btn-light:hover { background: #f3f3f6; color: var(--dark); }
.site a.btn-fill, .contact-form > button { background: var(--accent); color: #fff; }
.site a.btn-fill:hover, .contact-form > button:hover { background: var(--accent-dark); color: #fff; }
.site a.btn-line {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.site a.btn-line:hover { background: var(--ink); color: #fff; }

.strip { border-bottom: 1px solid var(--line); }
.strip ul {
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
  margin: 0; padding: 1.15rem 0; flex-wrap: wrap;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}

.block { padding: 6.25rem 0; }
.block.tight { padding-top: 0; }
.block.alt { background: var(--paper); }
.block-intro { max-width: 46rem; margin-bottom: 2.75rem; }
.block h2, .page-hero h1 { font-size: clamp(2rem, 4vw, 2.85rem); }
.block-intro h2 { margin-bottom: 0; }

.cols { display: grid; gap: 2rem 1.75rem; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols h3 { font-size: 1.15rem; margin-bottom: .55rem; }
.cols p, .split p, .band p, .contact-grid p { color: var(--muted); line-height: 1.65; }
.cols ul, .plain {
  list-style: none; margin: 1.1rem 0 0; padding: 0;
}
.cols li, .plain li {
  padding: .55rem 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .95rem;
}
.after-cols { margin-top: 2rem; max-width: 44rem; color: var(--muted); line-height: 1.65; font-size: 1.05rem; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.split.flip { grid-template-columns: .95fr 1.05fr; }
.split.flip img { order: 2; }
.split img { width: 100%; height: 26rem; object-fit: cover; border-radius: 12px; }
.split h2 { margin-bottom: .4rem; }
.split p { margin-top: 1rem; font-size: 1.05rem; }

.band { background: var(--accent); color: #fff; text-align: center; }
.band .site-wrap { width: min(820px, calc(100% - 3rem)); padding: 5.5rem 0; }
.band h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1rem; }
.band p { color: rgba(255,255,255,.88); font-size: 1.08rem; }
.band .btn { margin-top: 1.75rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-grid h2 { margin-bottom: .3rem; }
.contact-grid > div > p { margin-top: 1rem; font-size: 1.05rem; }
.contact-grid h3 { margin: 1.75rem 0 0; font-size: 1.15rem; }
.contact-form { display: grid; gap: .9rem; }
.contact-form label { display: grid; gap: .4rem; font-weight: 500; font-size: .9rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; border: 1px solid #e3e3ea; background: #fff; color: var(--ink);
  border-radius: 8px; padding: .85rem 1rem; font: inherit;
}
.form-error { color: #9b2c2c; font-size: .9rem; }
.name-pair { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.slot-cal { display: grid; gap: .85rem; margin: 1rem 0 1.2rem; }
.slot-cal-nav { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.slot-cal .slot-cal-nav button { width: 2.2rem; height: 2.2rem; min-height: 0; padding: 0; border: 1px solid #e3e3ea; border-radius: 8px; background: #fff; color: inherit; cursor: pointer; font-size: 1.2rem; }
.slot-cal .slot-cal-nav button:disabled { opacity: .4; cursor: default; background: #fff; }
.slot-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .35rem; }
.slot-cal-dow { text-align: center; font-size: .72rem; color: #64748b; padding-bottom: .2rem; }
.slot-cal button.slot-cal-day { border: 1px solid transparent; background: transparent; border-radius: 8px; min-height: 3rem; width: 100%; padding: .15rem; display: grid; place-items: center; align-content: center; gap: .05rem; color: #94a3b8; font-weight: 500; font-size: .95rem; box-shadow: none; }
.slot-cal button.slot-cal-day:disabled { opacity: 1; cursor: default; background: transparent; color: #cbd5e1; }
.slot-cal button.slot-cal-day.has { border-color: #e3e3ea; background: #fff; color: var(--ink); cursor: pointer; }
.slot-cal button.slot-cal-day.has:hover { border-color: #1c6468; background: #f4fbfb; color: var(--ink); }
.slot-cal button.slot-cal-day small { font-size: .68rem; color: #1c6468; }
.slot-cal button.slot-cal-day.is-on, .slot-cal button.slot-cal-day.is-on:hover { background: #1e3a5f; border-color: #1e3a5f; color: #fff; }
.slot-cal button.slot-cal-day.is-on small { color: #fff; }
.slot-cal-day-title { margin: .2rem 0 0; font-size: 1rem; }
.slot-cal-hint { margin: 0; color: #64748b; }
.slot-cal-times { display: grid; gap: .5rem; }
.slot-cal button.slot-cal-time { display: flex; justify-content: space-between; gap: .75rem; text-align: left; width: 100%; min-height: 0; border: 1px solid #e3e3ea; background: #fff; color: var(--ink); border-radius: 8px; padding: .75rem .9rem; font-weight: 500; cursor: pointer; }
.slot-cal button.slot-cal-time:hover { background: #f8fafc; color: var(--ink); }
.slot-cal button.slot-cal-time span { color: #64748b; font-weight: 400; }
.slot-cal button.slot-cal-time.is-on, .slot-cal button.slot-cal-time.is-on:hover { border-color: #1e3a5f; box-shadow: inset 0 0 0 1px #1e3a5f; background: #eef6ff; color: var(--ink); }
.slot-list { display: grid; gap: .7rem; margin: 1.2rem 0 1.4rem; }
.slot-choice {
  display: flex; justify-content: space-between; gap: 1rem; text-align: left;
  width: 100%; border: 1px solid #e3e3ea; background: #fff; color: var(--ink);
  border-radius: 8px; padding: .9rem 1rem; font: inherit; cursor: pointer;
}
.slot-choice.active { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.slot-choice span { color: var(--muted); }
.contact-form textarea { min-height: 8rem; resize: vertical; }
.contact-form > button { justify-self: start; margin-top: .3rem; gap: .55rem; }
.contact-form > button:disabled { opacity: .72; cursor: progress; }
.busy-spin {
  width: 1rem; height: 1rem; border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff; border-radius: 50%; animation: busy-spin .7s linear infinite;
}
@keyframes busy-spin { to { transform: rotate(360deg); } }
.site-dialog-back {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(12, 16, 20, .55);
  display: grid; place-items: center; padding: 1rem;
}
.site-dialog {
  width: min(28rem, 100%); background: #fff; color: var(--ink);
  border-radius: 16px; padding: 1.4rem 1.5rem;
  box-shadow: 0 24px 60px rgba(12, 16, 20, .2);
  display: grid; gap: .75rem;
}
.site-dialog h2 { font-size: 1.35rem; }
.site-dialog p { line-height: 1.55; }
.site-dialog a { color: var(--accent); text-decoration: underline; }
.site-dialog button {
  justify-self: start; margin-top: .3rem;
  min-height: 2.8rem; padding: .6rem 1.1rem; border: 0; border-radius: 8px;
  background: var(--accent); color: #fff; font: inherit; cursor: pointer;
}
.form-note { color: var(--muted); font-size: .9rem; }
.form-ok { color: var(--accent); font-size: .95rem; }
.book-wrap { width: min(760px, calc(100% - 3rem)); }
.class-list { display: grid; gap: .75rem; margin: 1.25rem 0; }
.pay-methods { display: flex; gap: .5rem; flex-wrap: wrap; }
.pay-methods button {
  border: 1px solid #e3e3ea; background: #fff; color: var(--ink);
  border-radius: 8px; padding: .55rem .9rem; font: inherit; font-weight: 500; cursor: pointer;
}
.pay-methods button.is-on { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.pay-qr { width: 180px; height: 180px; object-fit: contain; background: #fff; border: 1px solid #e3e3ea; border-radius: 8px; }
#card-element { border: 1px solid #e3e3ea; border-radius: 8px; padding: .85rem 1rem; background: #fff; }
.book-wrap .btn-line {
  justify-self: start; background: transparent; color: var(--ink);
  border: 1px solid var(--ink); border-radius: 6px; padding: .55rem .95rem; font: inherit; cursor: pointer;
}

.story-kicker { margin-bottom: 1.25rem; }
.story-carousel { display: grid; gap: 1.25rem; }
.story-viewport { overflow: hidden; }
.story-track {
  display: flex; gap: 1rem; width: 100%;
  transform: translateX(calc(-1 * (100% + 1rem) / 3));
}
.story-track.is-next {
  transform: translateX(calc(-2 * (100% + 1rem) / 3));
  transition: transform .5s ease;
}
.story-track.is-prev { transform: translateX(0); transition: transform .5s ease; }
.story-track.is-reset { transition: none; }
.story-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  background: var(--paper); border-radius: 16px; padding: 1.4rem 1.25rem;
  border: 1px solid var(--line); min-height: 16rem;
  display: flex; flex-direction: column;
}
.story-card.is-side { opacity: .78; }
.story-card.is-center { background: #fff; opacity: 1; box-shadow: 0 18px 40px rgba(12, 16, 20, .08); }
.story-card.story-solo { flex: none; width: min(40rem, 100%); margin-inline: auto; }
.story-card blockquote, blockquote.story-card {
  margin: .7rem 0 1rem; font-size: 1rem; line-height: 1.5; font-weight: 500; flex: 1;
}
.story-card.is-center blockquote { font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.story-stars { color: var(--gold); letter-spacing: .12em; font-size: 1.05rem; }
.story-by { color: var(--muted); }
.story-by strong { color: var(--ink); font-weight: 600; }
.story-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.story-nav > button {
  width: 2.6rem; height: 2.6rem; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; color: var(--ink); font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.story-dots { display: flex; gap: .4rem; }
.story-dots button {
  width: .7rem; height: .7rem; padding: 0; border: 0; border-radius: 99px; background: #d5d5de; cursor: pointer;
}
.story-dots button.is-on { background: var(--accent); }
.story-label { display: block; font-weight: 500; font-size: .9rem; margin-bottom: .4rem; }
.star-row { display: flex; gap: .35rem; }
.star-row button {
  width: 2.4rem; height: 2.4rem; border: 1px solid #e3e3ea; border-radius: 8px;
  background: #fff; color: #b9b3a4; font-size: 1.15rem; cursor: pointer;
}
.star-row button.is-on { color: var(--gold); border-color: var(--gold); }

.page-hero {
  background: var(--dark); color: #fff; text-align: center;
  padding: 10rem 0 4.5rem;
}
.page-hero p { margin: 1.1rem auto 0; max-width: 38rem; color: rgba(255,255,255,.86); font-size: 1.08rem; line-height: 1.65; }
.crumbs { margin: 0 0 1.15rem; font-size: .85rem; color: rgba(255,255,255,.68); }
.crumbs a { display: inline; color: #fff; }
.crumbs span { margin: 0 .4rem; }
.faq { display: grid; gap: 1.35rem; max-width: 44rem; }
.faq h3 { font-size: 1.15rem; }
.faq p { margin-top: .35rem; color: var(--muted); line-height: 1.65; }

.site-footer { background: var(--dark); color: rgba(255,255,255,.78); padding: 4.5rem 0 1.5rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2rem; }
.foot-name { color: #fff; font-size: 1.35rem; font-weight: 600; margin-bottom: .45rem; }
.foot-reach { margin: 0 0 .9rem; max-width: 16rem; line-height: 1.5; }
.foot-lead { color: #fff; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.35); }
.site-footer h2 { color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .85rem; }
.site-footer a { display: block; padding: .28rem 0; color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.foot-bottom { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 991px) {
  .cols-4, .split, .split.flip, .contact-grid, .foot-grid { grid-template-columns: 1fr 1fr; }
  .split.flip img { order: 0; }
  .split img { height: 18rem; }
  .site-menu { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--dark); padding: .4rem 1.25rem 1.1rem;
    flex-direction: column; align-items: flex-start; gap: .15rem;
  }
  .site-nav a { display: block; padding: .7rem 0; color: #fff; }
  .site-header.is-stuck .site-nav { background: #fff; }
  .site-header.is-stuck .site-nav a { color: var(--ink); }
  .site-header.is-stuck .site-nav .site-cta { color: #fff; }
  .site-nav.is-open { display: flex; }
}

.quiz { min-height: 100vh; background: #f6f5f8; color: var(--ink); }
.quiz-top { width: min(640px, calc(100% - 2rem)); margin: 0 auto; padding: 1.25rem 0 0; }
.quiz-top img { height: 42px; width: auto; }
.quiz-card { width: min(640px, calc(100% - 2rem)); margin: 1rem auto 2rem; background: #fff; border: 1px solid #e3e3ea; border-radius: 12px; padding: 1.5rem; }
.quiz-card h1 { margin: 0 0 1rem; font-size: 1.35rem; line-height: 1.35; }
.quiz-kicker, .quiz-progress { margin: 0 0 .35rem; color: #5c5a66; }
.quiz-figure { width: min(360px, 100%); height: auto; margin-bottom: 1rem; border: 1px solid #e3e3ea; border-radius: 8px; }
.quiz-choices { display: grid; gap: .5rem; }
.quiz-choice { display: flex; gap: .7rem; align-items: center; width: 100%; text-align: left; padding: .7rem .85rem; border: 1px solid #d5d5de; border-radius: 8px; background: #fff; color: var(--ink); font: inherit; cursor: pointer; }
.quiz-choice span { font-weight: 600; }
.quiz-choice.is-on { border-color: #1e3a5f; background: #eef6ff; }
.quiz-actions { display: flex; justify-content: flex-end; gap: .5rem; margin-top: 1rem; }
.quiz-skip, .quiz-next { padding: .55rem 1rem; border-radius: 8px; font: inherit; cursor: pointer; }
.quiz-skip { background: #fff; border: 1px solid #d5d5de; color: var(--ink); }
.quiz-next { background: #1e3a5f; border: 1px solid #1e3a5f; color: #fff; }
.quiz-skip:disabled, .quiz-next:disabled { opacity: .55; cursor: default; }
.quiz-score { margin: .25rem 0; font-size: 1.15rem; }
.quiz-message { color: #9a3412; }

@media (max-width: 767px) {
  .site-wrap { width: min(1140px, calc(100% - 1.5rem)); }
  .cols-3, .cols-4, .split, .contact-grid, .foot-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.35rem; }
  .block { padding: 4rem 0; }
  .strip ul { justify-content: flex-start; gap: .85rem 1.25rem; }
}
