:root {
  --ink: #17231d;
  --muted: #66736c;
  --forest: #123c2d;
  --forest-deep: #0a2a1f;
  --forest-bright: #28644b;
  --cream: #f3ecde;
  --paper: #fbfaf6;
  --white: #ffffff;
  --gold: #d7b15c;
  --gold-pale: #f3dfaa;
  --line: #dcd8ce;
  --danger: #a33434;
  --shadow: 0 24px 70px rgb(24 48 36 / 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgb(215 177 92 / 0.55);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  padding: 12px max(24px, 4vw);
  border-bottom: 1px solid transparent;
  background: rgb(251 250 246 / 0.88);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  border-bottom-color: rgb(23 35 29 / 0.1);
  box-shadow: 0 12px 36px rgb(18 60 45 / 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgb(18 60 45 / 0.18);
}

.brand span,
.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0.015em;
}

.brand small {
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.site-nav a {
  position: relative;
  color: #3f4d46;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-login,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.header-login {
  color: var(--forest);
}

.header-cta {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 24px rgb(18 60 45 / 0.16);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 104px));
  margin: 14px max(18px, 2.2vw) 0;
  overflow: hidden;
  border-radius: 42px;
  background: #e7ddca;
  isolation: isolate;
}

.hero-image,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: left center;
}

.hero-wash {
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0%, rgb(243 236 222 / 0.08) 39%, rgb(243 236 222 / 0.88) 61%, #f3ecde 80%),
    linear-gradient(0deg, rgb(12 39 29 / 0.17), transparent 38%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  width: min(49%, 720px);
  margin-left: auto;
  padding: 78px clamp(32px, 5vw, 88px) 98px 30px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgb(215 177 92 / 0.17);
}

.hero h1 {
  margin: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", "Segoe UI", serif;
  font-size: clamp(4.6rem, 7.1vw, 8.2rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.hero h1 em {
  color: var(--forest-bright);
  font-style: normal;
}

.hero-en {
  margin: 25px 0 0;
  color: #947129;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-style: italic;
  letter-spacing: 0.04em;
  text-align: right;
}

.hero-lead {
  max-width: 600px;
  margin: 22px 0 0;
  color: #415047;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 14px 32px rgb(18 60 45 / 0.22);
}

.button-primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 18px 38px rgb(18 60 45 / 0.26);
}

.button-quiet {
  border: 1px solid rgb(18 60 45 / 0.19);
  background: rgb(255 255 255 / 0.45);
  color: var(--forest);
  backdrop-filter: blur(6px);
}

.play-mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-pale);
  font-size: 0.62rem;
}

.hero-facts {
  display: flex;
  margin: 38px 0 0;
}

.hero-facts div {
  min-width: 118px;
  padding: 0 18px;
  border-right: 1px solid rgb(18 60 45 / 0.16);
}

.hero-facts div:first-child {
  padding-right: 0;
  border-right: 0;
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.68rem;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: var(--forest);
  font-size: 0.94rem;
  font-weight: 850;
}

.hero-note {
  position: absolute;
  bottom: 25px;
  left: 28px;
  display: grid;
  margin: 0;
  padding: 13px 17px;
  border: 1px solid rgb(255 255 255 / 0.36);
  border-radius: 16px;
  background: rgb(9 39 28 / 0.66);
  color: #fff;
  box-shadow: 0 16px 40px rgb(4 20 14 / 0.2);
  backdrop-filter: blur(12px);
}

.hero-note strong {
  color: var(--gold-pale);
  font-size: 0.78rem;
}

.hero-note span {
  font-size: 0.7rem;
  opacity: 0.76;
}

.letter-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 35px;
  padding: 35px max(24px, 5vw);
  border-bottom: 1px solid var(--line);
}

.letter-line-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.letter-line div {
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  gap: 20px;
  direction: ltr;
}

.letter-line b {
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
}

.letter-line i {
  color: #a49c8d;
  font-family: Georgia, serif;
  font-size: 0.88rem;
}

.section-index {
  margin: 0;
  color: #9a792f;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-index-light {
  color: var(--gold-pale);
}

.manifesto {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: clamp(35px, 6vw, 100px);
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
  padding: 135px max(24px, 5vw);
}

.manifesto h2,
.section-heading h2,
.programs-heading h2,
.lesson-copy h2,
.platform-copy h2,
.faq-section h2,
.start-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Segoe UI", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.manifesto h2 {
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.manifesto h2 span {
  color: var(--forest-bright);
}

.manifesto > div > p {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.manifesto blockquote {
  position: relative;
  margin: 55px 0 0;
  padding: 30px 26px 25px;
  border-top: 1px solid var(--gold);
  color: #4b5a52;
  font-size: 0.95rem;
}

.manifesto blockquote span {
  position: absolute;
  top: -32px;
  right: 0;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 4.5rem;
}

.path-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(540px, 1.35fr);
  gap: clamp(35px, 7vw, 120px);
  align-items: start;
  margin: 0 max(18px, 2.2vw) 120px;
  padding: clamp(55px, 7vw, 100px);
  border-radius: 40px;
  background:
    radial-gradient(circle at 100% 0, rgb(215 177 92 / 0.18), transparent 30%),
    #e8efe9;
}

.section-heading {
  position: sticky;
  top: 115px;
}

.section-heading h2 {
  margin-top: 18px;
  color: var(--forest-deep);
  font-size: clamp(3rem, 4.6vw, 5.3rem);
}

.section-heading > p:last-child {
  max-width: 430px;
  margin: 24px 0 0;
  color: var(--muted);
}

.path-finder {
  min-height: 520px;
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid rgb(18 60 45 / 0.1);
  border-radius: 30px;
  background: rgb(255 255 255 / 0.88);
  box-shadow: var(--shadow);
}

.finder-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.finder-progress::before {
  grid-column: 1;
  grid-row: 1;
  height: 3px;
  content: "";
  border-radius: 4px;
  background: #dbe1dc;
}

.finder-progress > span {
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  width: 33.333%;
  height: 3px;
  border-radius: 4px;
  background: var(--gold);
  transition: width 260ms ease;
}

.finder-progress small {
  color: var(--muted);
  font-size: 0.72rem;
}

.finder-progress b {
  color: var(--forest);
  font-size: 1rem;
}

.finder-step {
  padding-top: 52px;
}

.finder-step > p,
.result-kicker {
  margin: 0;
  color: #9a792f;
  font-size: 0.72rem;
  font-weight: 850;
}

.finder-step h3,
.finder-result h3 {
  margin: 6px 0 30px;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
}

.finder-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.finder-options button {
  display: grid;
  gap: 5px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid #d9ded9;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: right;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.finder-options button:hover {
  border-color: var(--gold);
  background: #fffdf7;
  transform: translateY(-2px);
}

.finder-options button strong {
  color: var(--forest);
  font-size: 1rem;
}

.finder-options button span {
  color: var(--muted);
  font-size: 0.8rem;
}

.finder-options-age button strong {
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.finder-options-rhythm {
  grid-template-columns: repeat(3, 1fr);
}

.finder-result {
  padding-top: 58px;
}

.finder-result > p:not(.result-kicker) {
  max-width: 650px;
  color: var(--muted);
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0;
}

.result-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: #edf1ed;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 800;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.result-reset {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
}

.programs-section {
  padding: 125px max(24px, 6vw);
  background: var(--forest-deep);
  color: #fff;
}

.programs-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 0.9fr) minmax(260px, 0.38fr);
  gap: 45px;
  align-items: end;
  max-width: 1480px;
  margin: 0 auto 75px;
}

.programs-heading h2 {
  font-size: clamp(3.2rem, 5vw, 5.8rem);
}

.programs-heading > p:last-child {
  margin: 0 0 8px;
  color: rgb(255 255 255 / 0.58);
}

.program-list {
  max-width: 1480px;
  margin: auto;
  border-top: 1px solid rgb(255 255 255 / 0.14);
}

.program-list article {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 130px;
  gap: 35px;
  align-items: center;
  min-height: 190px;
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
}

.program-list article > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.92rem;
}

.program-list small {
  color: rgb(255 255 255 / 0.42);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.program-list h3 {
  margin: 4px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
}

.program-list p {
  max-width: 720px;
  margin: 0;
  color: rgb(255 255 255 / 0.58);
}

.program-list article > b {
  justify-self: end;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 400;
  opacity: 0.28;
  transition: opacity 160ms ease, transform 160ms ease;
}

.program-list article:hover > b {
  opacity: 0.72;
  transform: translateX(8px);
}

.lesson-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(460px, 1.2fr);
  gap: clamp(50px, 10vw, 170px);
  align-items: center;
  max-width: 1480px;
  margin: auto;
  padding: 140px max(24px, 6vw);
}

.lesson-copy h2 {
  margin-top: 18px;
  color: var(--forest-deep);
  font-size: clamp(3.2rem, 5vw, 5.7rem);
}

.lesson-copy > p:not(.section-index) {
  max-width: 540px;
  margin: 25px 0 0;
  color: var(--muted);
}

.lesson-word-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.lesson-word-list button {
  display: grid;
  min-width: 120px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: right;
}

.lesson-word-list button.is-active {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.lesson-word-list b {
  font-size: 1rem;
}

.lesson-word-list span {
  color: inherit;
  font-size: 0.66rem;
  opacity: 0.65;
}

.lesson-card {
  position: relative;
  min-height: 610px;
  padding: clamp(28px, 5vw, 60px);
  overflow: hidden;
  border-radius: 35px;
  background:
    radial-gradient(circle at 5% 5%, rgb(215 177 92 / 0.22), transparent 25%),
    var(--forest);
  color: #fff;
  box-shadow: 0 38px 90px rgb(18 60 45 / 0.26);
}

.lesson-card::after {
  position: absolute;
  bottom: -180px;
  left: -100px;
  width: 400px;
  height: 400px;
  content: "";
  border: 1px solid rgb(255 255 255 / 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgb(255 255 255 / 0.025), 0 0 0 110px rgb(255 255 255 / 0.02);
}

.lesson-card-top {
  display: flex;
  justify-content: space-between;
  color: rgb(255 255 255 / 0.48);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.lesson-glyph {
  margin-top: 45px;
  color: var(--gold-pale);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 10vw, 11rem);
  line-height: 1;
  text-align: center;
}

.lesson-phonetic {
  margin: 0;
  color: rgb(255 255 255 / 0.5);
  font-family: Georgia, serif;
  font-style: italic;
  text-align: center;
}

.lesson-meaning,
.lesson-example {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgb(255 255 255 / 0.14);
}

.lesson-meaning span,
.lesson-example span {
  color: var(--gold-pale);
  font-size: 0.7rem;
  font-weight: 800;
}

.lesson-example p {
  margin: 0;
}

.speak-button {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 12px 17px;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
  color: #fff;
  cursor: pointer;
}

.speak-button span {
  color: var(--gold-pale);
}

.speak-button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.speech-feedback {
  position: relative;
  z-index: 2;
  min-height: 1.3rem;
  margin: 10px 0 0;
  color: var(--gold-pale);
  font-size: 0.74rem;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(350px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  padding: 130px max(24px, 5vw);
  overflow: hidden;
  background: #dfe7e1;
}

.platform-copy h2 {
  margin-top: 17px;
  color: var(--forest-deep);
  font-size: clamp(3.2rem, 4.8vw, 5.6rem);
}

.platform-copy > p:not(.section-index) {
  max-width: 500px;
  color: var(--muted);
}

.platform-copy ul {
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.platform-copy li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid rgb(18 60 45 / 0.13);
}

.platform-copy li > span {
  color: #9a792f;
  font-family: Georgia, serif;
  font-size: 0.78rem;
}

.platform-copy li strong,
.platform-copy li small {
  display: block;
}

.platform-copy li strong {
  color: var(--forest);
}

.platform-copy li small {
  margin-top: 3px;
  color: var(--muted);
}

.button-gold {
  background: var(--gold);
  color: var(--forest-deep);
}

.platform-window {
  min-width: 790px;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 40px 100px rgb(18 60 45 / 0.2);
  transform: perspective(1400px) rotateY(4deg) rotateX(1deg);
  transform-origin: center left;
}

.window-bar {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  background: #f5f4ef;
  direction: ltr;
}

.window-bar > span {
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-radius: 50%;
  background: #c9cbc6;
}

.window-bar b {
  margin: auto;
  color: var(--forest);
  font-size: 0.72rem;
}

.window-body {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 515px;
  direction: ltr;
}

.window-body aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 20px 0;
  background: var(--forest-deep);
}

.window-body aside img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.window-body aside i {
  width: 25px;
  height: 7px;
  border-radius: 5px;
  background: rgb(255 255 255 / 0.22);
}

.window-body aside i:nth-child(2) {
  background: var(--gold);
}

.window-content {
  padding: 32px;
  background: #f6f6f1;
  direction: rtl;
}

.window-welcome small,
.window-welcome strong {
  display: block;
}

.window-welcome small {
  color: var(--muted);
}

.window-welcome strong {
  margin-top: 2px;
  color: var(--forest-deep);
  font-size: 1.5rem;
}

.window-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.window-stats article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 15px;
  background: #fff;
}

.window-stats span,
.window-stats small {
  color: var(--muted);
  font-size: 0.68rem;
}

.window-stats b {
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.window-stats i {
  height: 5px;
  border-radius: 8px;
  background: #e4e8e3;
}

.window-stats em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.window-timeline,
.window-task {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 15px;
  align-items: center;
  margin-top: 15px;
  padding: 18px;
  border-radius: 15px;
  background: #fff;
}

.window-timeline > span {
  color: #9a792f;
  font-family: Georgia, serif;
}

.window-timeline b,
.window-timeline small,
.window-task b,
.window-task small {
  display: block;
}

.window-timeline small,
.window-task small {
  color: var(--muted);
  font-size: 0.68rem;
}

.window-timeline button {
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 0.68rem;
}

.window-task {
  grid-template-columns: 45px 1fr auto;
}

.window-task > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--gold-pale);
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 1.4rem;
}

.window-task > i {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2ed;
  color: var(--forest);
  font-size: 0.65rem;
  font-style: normal;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(600px, 1.3fr);
  gap: clamp(40px, 7vw, 120px);
  max-width: 1480px;
  margin: auto;
  padding: 140px max(24px, 6vw);
}

.method-section .section-heading {
  position: static;
}

.method-section ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: method;
}

.method-section li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.method-section li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-pale);
  font-family: Georgia, serif;
}

.method-section h3 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.method-section li p {
  margin: 5px 0 0;
  color: var(--muted);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(500px, 1.25fr);
  gap: clamp(50px, 9vw, 150px);
  padding: 125px max(24px, 6vw);
  background: #f0ece3;
}

.faq-section h2 {
  margin-top: 18px;
  color: var(--forest-deep);
  font-size: clamp(3.1rem, 5vw, 5.6rem);
}

.faq-list {
  border-top: 1px solid #cfc9bc;
}

.faq-list details {
  border-bottom: 1px solid #cfc9bc;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  color: var(--forest-deep);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: #9a792f;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -7px 0 25px;
  color: var(--muted);
}

.start-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(560px, 1.24fr);
  gap: clamp(50px, 9vw, 145px);
  padding: 135px max(24px, 6vw);
  background: var(--forest-deep);
  color: #fff;
}

.start-copy h2 {
  margin-top: 18px;
  font-size: clamp(3.3rem, 5vw, 5.8rem);
}

.start-copy > p:not(.section-index) {
  max-width: 540px;
  color: rgb(255 255 255 / 0.62);
}

.start-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 45px;
}

.start-mark > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 17px;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.start-mark p,
.start-mark b,
.start-mark small {
  display: block;
  margin: 0;
}

.start-mark small {
  color: rgb(255 255 255 / 0.5);
}

.inquiry-form {
  display: grid;
  gap: 17px;
  padding: clamp(25px, 4vw, 48px);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 35px 80px rgb(0 0 0 / 0.2);
}

.form-heading {
  display: grid;
  gap: 2px;
  margin-bottom: 5px;
}

.form-heading span {
  color: #9a792f;
  font-size: 0.7rem;
  font-weight: 850;
}

.form-heading strong {
  color: var(--forest-deep);
  font-family: Georgia, serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.form-heading small {
  color: var(--muted);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
}

.inquiry-form label > span {
  color: #35463d;
  font-size: 0.74rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d8dbd7;
  border-radius: 10px;
  background: #fafaf7;
  color: var(--ink);
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--forest-bright);
  box-shadow: 0 0 0 3px rgb(40 100 75 / 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row-three {
  grid-template-columns: 0.55fr 1fr 1fr;
}

.inquiry-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 9px;
}

.inquiry-form .consent input {
  min-height: auto;
  margin-top: 4px;
}

.inquiry-form .consent span {
  color: var(--muted);
  font-weight: 500;
}

.inquiry-form > button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 55px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest-deep);
  cursor: pointer;
  font-weight: 900;
}

.inquiry-form > button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-feedback {
  min-height: 1.35rem;
  margin: 0;
  font-size: 0.8rem;
}

.form-feedback[data-state="error"] {
  color: var(--danger);
}

.form-feedback[data-state="success"] {
  color: var(--forest-bright);
  font-weight: 800;
}

.privacy-note {
  color: #8b928d;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 45px max(24px, 6vw) 30px;
  background: #071f17;
  color: #fff;
}

.footer-brand,
.footer-links {
  display: flex;
  align-items: center;
}

.footer-brand {
  gap: 12px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand small {
  color: rgb(255 255 255 / 0.45);
  font-size: 0.7rem;
}

.footer-links {
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  color: rgb(255 255 255 / 0.68);
  font-size: 0.76rem;
  text-decoration: none;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  color: rgb(255 255 255 / 0.4);
  font-size: 0.7rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .finder-options button,
  .program-list article > b {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a {
    padding: 10px;
    text-align: center;
  }

  .header-actions {
    grid-column: 3;
  }

  .hero-content {
    width: 56%;
  }

  .manifesto,
  .programs-heading {
    grid-template-columns: 110px 1fr;
  }

  .manifesto blockquote,
  .programs-heading > p:last-child {
    grid-column: 2;
    margin-top: 0;
  }

  .path-section,
  .lesson-section,
  .method-section,
  .faq-section,
  .start-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .platform-section {
    grid-template-columns: 1fr;
  }

  .platform-copy {
    max-width: 800px;
  }

  .platform-window {
    justify-self: center;
    transform: none;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 940px;
  }

  .hero-image {
    height: 52%;
    object-position: 28% center;
  }

  .hero-wash {
    background: linear-gradient(0deg, #f3ecde 0%, #f3ecde 48%, rgb(243 236 222 / 0.2) 72%, transparent 100%);
  }

  .hero-content {
    justify-content: flex-end;
    width: 100%;
    padding: 430px 32px 55px;
  }

  .hero h1 {
    font-size: clamp(4.6rem, 14vw, 7rem);
  }

  .hero-note {
    top: 28px;
    bottom: auto;
  }

  .letter-line {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .manifesto {
    grid-template-columns: 1fr;
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .manifesto blockquote,
  .programs-heading > p:last-child {
    grid-column: 1;
  }

  .path-section {
    margin-bottom: 80px;
  }

  .programs-heading {
    grid-template-columns: 1fr;
  }

  .program-list article {
    grid-template-columns: 55px 1fr 80px;
  }

  .platform-window {
    min-width: 720px;
    margin-left: -110px;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    min-height: 70px;
    padding: 9px 14px;
    gap: 7px;
  }

  .brand img {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small,
  .header-login {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.7rem;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 900px;
    margin: 8px 10px 0;
    border-radius: 25px;
  }

  .hero-image {
    height: 43%;
    object-position: 29% center;
  }

  .hero-wash {
    background: linear-gradient(0deg, #f3ecde 0%, #f3ecde 56%, rgb(243 236 222 / 0.35) 72%, transparent 100%);
  }

  .hero-content {
    padding: 350px 21px 42px;
  }

  .hero-kicker {
    margin-bottom: 16px;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 19vw, 5.5rem);
  }

  .hero-en {
    margin-top: 18px;
    font-size: 0.86rem;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 0.94rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
  }

  .hero-facts div {
    min-width: 0;
    padding: 0 8px;
    text-align: center;
  }

  .hero-facts dd {
    font-size: 0.76rem;
  }

  .hero-note {
    top: 15px;
    left: 14px;
    padding: 9px 11px;
  }

  .letter-line {
    padding: 28px 18px;
  }

  .letter-line div {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .manifesto,
  .lesson-section,
  .method-section {
    padding: 78px 18px;
  }

  .manifesto h2,
  .section-heading h2,
  .programs-heading h2,
  .lesson-copy h2,
  .platform-copy h2,
  .faq-section h2,
  .start-copy h2 {
    font-size: 3.15rem;
  }

  .path-section {
    margin: 0 10px 65px;
    padding: 55px 14px 14px;
    border-radius: 25px;
  }

  .path-finder {
    min-height: 0;
    padding: 23px 15px;
    border-radius: 21px;
  }

  .finder-step {
    padding-top: 35px;
  }

  .finder-step h3,
  .finder-result h3 {
    font-size: 2.25rem;
  }

  .finder-options,
  .finder-options-rhythm {
    grid-template-columns: 1fr;
  }

  .finder-options button {
    min-height: 88px;
  }

  .result-actions,
  .result-actions .button {
    width: 100%;
  }

  .programs-section {
    padding: 78px 18px;
  }

  .program-list article {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 30px 0;
  }

  .program-list article > b {
    display: none;
  }

  .program-list h3 {
    font-size: 2rem;
  }

  .lesson-card {
    min-height: 560px;
    padding: 26px 21px;
    border-radius: 24px;
  }

  .lesson-glyph {
    font-size: 6.5rem;
  }

  .lesson-meaning,
  .lesson-example {
    grid-template-columns: 70px 1fr;
  }

  .platform-section,
  .faq-section,
  .start-section {
    padding: 78px 18px;
  }

  .platform-window {
    min-width: 610px;
    margin-left: -250px;
    border-width: 5px;
  }

  .window-body {
    min-height: 450px;
  }

  .window-content {
    padding: 22px;
  }

  .method-section li {
    grid-template-columns: 52px 1fr;
  }

  .form-row,
  .form-row-three {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 24px 17px;
    border-radius: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 40px 18px 25px;
  }
}
