:root {
  --ink: #13283f;
  --ink-soft: #506072;
  --navy: #18314f;
  --navy-deep: #0e2238;
  --paper: #f5f1e8;
  --paper-light: #fbfaf6;
  --white: #ffffff;
  --accent: #c8573a;
  --accent-dark: #9e3f2a;
  --gold: #b89055;
  --line: rgba(19, 40, 63, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --shell: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-space: clamp(82px, 10vw, 144px);
  --shadow: 0 28px 80px rgba(8, 29, 49, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
p,
dl,
dd,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.015em;
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 18px;
  top: 16px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--accent);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-is-open {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 36px rgba(19, 40, 63, 0.08);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-seal {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  opacity: 0.68;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.3vw, 32px);
  font-size: 0.86rem;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a:not(.nav-action)::after {
  content: "";
  position: absolute;
  inset: auto 0 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  padding: 8px 18px !important;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
}

.nav-action:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex: 0 0 auto;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 1.5px;
  margin-block: 6px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-nav {
  padding: 14px var(--gutter) 26px;
  background: var(--paper-light);
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 13px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(200, 87, 58, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy-deep) 0%, #173552 58%, #214662 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: min(56vw, 760px);
  aspect-ratio: 1;
  right: -20vw;
  top: -23vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(255, 255, 255, 0.025),
    0 0 0 160px rgba(255, 255, 255, 0.018);
}

.hero-lines {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 88px, 120px 100%;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 116px);
  min-height: calc(min(900px, 100svh) - 72px);
  padding-top: 122px;
  padding-bottom: 74px;
}

.overline {
  margin-bottom: 18px;
  color: #ebc79a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.overline-dark {
  color: var(--accent);
}

.overline-light {
  color: #e6c18e;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 8vw, 6.7rem);
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.hero h1 em {
  color: #e7c08b;
  font-style: normal;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.65vw, 1.3rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.hero-facts div {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.hero-facts dd {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 44px;
  bottom: 58px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.26);
  filter: blur(18px);
}

.book {
  position: relative;
  width: min(310px, 78vw);
  aspect-ratio: 0.69;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 26px 38px;
  color: var(--navy-deep);
  background:
    linear-gradient(90deg, rgba(14, 34, 56, 0.15), transparent 8%),
    linear-gradient(155deg, #f5ead6, #d9bf91);
  box-shadow: var(--shadow), inset 7px 0 11px rgba(14, 34, 56, 0.11);
  transform: perspective(900px) rotateY(-5deg) rotateX(1deg);
}

.book::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(14, 34, 56, 0.32);
}

.book-author,
.book-en,
.book-foot {
  position: relative;
  z-index: 1;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
}

.book-rule {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 3px;
  margin-top: 24px;
  background: var(--accent);
}

.book strong {
  position: relative;
  z-index: 1;
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
}

.book-foot {
  padding-top: 13px;
  margin-top: 20px;
  border-top: 1px solid rgba(14, 34, 56, 0.28);
}

.hero-card > p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  inset: auto 0 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
}

.hero-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.hero-bottom i {
  margin-left: 8px;
  font-style: normal;
}

.section {
  padding-block: var(--section-space);
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.section-heading > p:last-child,
.section-heading-wide > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ink-soft);
}

.section-heading-wide {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: clamp(48px, 7vw, 86px);
}

.section-heading-wide > p {
  margin-bottom: 8px;
}

.intro {
  background: var(--paper-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(44px, 9vw, 140px);
  align-items: start;
}

.intro-body {
  padding-top: 42px;
}

.intro-body .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.35vw, 1.85rem);
  line-height: 1.7;
}

.intro-body > p:not(.lead) {
  color: var(--ink-soft);
}

.intro-body blockquote {
  margin: 32px 0 0;
  padding: 22px 0 0 26px;
  color: var(--accent-dark);
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.transformations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(64px, 9vw, 124px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.transformations article {
  min-height: 205px;
  padding: 28px 20px 24px;
  border-right: 1px solid var(--line);
}

.transformations article:last-child {
  border-right: 0;
}

.transformations span,
.outcome-grid article > span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.transformations h3 {
  margin: 42px 0 8px;
  font-size: 1.25rem;
}

.transformations p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.section-ink {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.section-ink::before {
  content: "效";
  position: absolute;
  right: -0.04em;
  top: -0.28em;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: min(46vw, 700px);
  line-height: 1;
}

.section-ink .section-heading h2 {
  color: var(--white);
}

.section-ink .section-heading-wide > p {
  color: rgba(255, 255, 255, 0.62);
}

.method-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.method-grid article {
  min-height: 340px;
  padding: 34px 26px;
  border-right: 1px solid var(--line-light);
}

.method-grid article:last-child {
  border-right: 0;
}

.method-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #e7c08b;
  border: 1px solid rgba(231, 192, 139, 0.5);
  border-radius: 50%;
  font-family: var(--serif);
}

.method-grid h3 {
  margin: 70px 0 18px;
  color: var(--white);
  font-size: 1.45rem;
}

.method-grid p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.practice-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 54px;
  color: rgba(255, 255, 255, 0.76);
}

.practice-line > span {
  margin-right: 12px;
  color: #e7c08b;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.practice-line strong {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.practice-line i {
  color: var(--accent);
  font-style: normal;
}

.schedule-section {
  background: var(--paper);
}

.schedule-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.schedule-list li {
  display: grid;
  grid-template-columns: 118px 90px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 118px;
  padding: 22px 12px;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease, padding 0.25s var(--ease);
}

.schedule-list li:hover {
  padding-inline: 24px;
  color: var(--white);
  background: var(--navy);
}

.schedule-list time {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
}

.schedule-list li:hover time {
  color: #e7c08b;
}

.session-no {
  color: var(--ink-soft);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.schedule-list li:hover .session-no,
.schedule-list li:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.schedule-list h3 {
  margin: 0 0 5px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.schedule-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.outcomes-section {
  background: var(--paper-light);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.outcome-grid article {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.outcome-grid .outcome-feature {
  grid-row: span 2;
  min-height: 576px;
  color: var(--white);
  background:
    linear-gradient(rgba(14, 34, 56, 0.08), rgba(14, 34, 56, 0.2)),
    var(--navy);
}

.outcome-grid h3 {
  margin: 52px 0 15px;
  font-size: 1.5rem;
}

.outcome-grid .outcome-feature h3 {
  margin-top: 180px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.28;
}

.outcome-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.outcome-grid .outcome-feature p {
  color: rgba(255, 255, 255, 0.68);
}

.rules-section {
  background: var(--paper);
}

.rules-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.rules-grid > .section-heading {
  position: sticky;
  top: 112px;
}

.rule-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rule-cards article {
  padding: 34px;
  background: var(--paper-light);
  border: 1px solid var(--line);
}

.rule-cards h3 {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.rule-cards strong {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
}

.rule-cards strong small {
  font-size: 1rem;
}

.rule-cards p,
.rule-cards li {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.rule-cards .rule-wide {
  grid-column: 1 / -1;
}

.rule-cards ul {
  margin: 0;
  padding-left: 1.2em;
}

.rule-cards li + li {
  margin-top: 8px;
}

.graduation {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(48px, 8vw, 112px);
  margin-top: clamp(64px, 8vw, 100px);
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.graduation h3 {
  font-size: 1.5rem;
}

.graduation ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: graduation;
}

.graduation li {
  position: relative;
  padding-left: 36px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  counter-increment: graduation;
}

.graduation li::before {
  content: counter(graduation, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
}

.join-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(14, 34, 56, 0.96), rgba(24, 49, 79, 0.92)),
    var(--navy);
}

.join-section::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -180px;
  bottom: -270px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.015);
}

.join-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
}

.join-copy h2 {
  max-width: 750px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1.14;
}

.join-copy > p:not(.overline) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.66);
}

.join-facts {
  margin: 38px 0;
  border-top: 1px solid var(--line-light);
}

.join-facts div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
}

.join-facts dt {
  color: #e7c08b;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.join-facts dd {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.phone-link {
  display: inline-flex;
  flex-direction: column;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.phone-link span {
  color: #e7c08b;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.phone-link strong {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.qr-card {
  width: min(100%, 360px);
  justify-self: end;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.qr-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 4px 2px;
  border-top: 1px solid var(--line);
}

.qr-card strong {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.qr-card span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.site-footer {
  padding-block: 50px;
  color: rgba(255, 255, 255, 0.62);
  background: #09192a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1rem;
}

.footer-brand div span {
  font-size: 0.72rem;
}

.site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
  font-size: 0.78rem;
}

.site-footer nav a:hover {
  color: var(--white);
}

.footer-meta {
  text-align: right;
  font-size: 0.72rem;
}

.footer-meta p {
  margin-bottom: 4px;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.68fr;
    gap: 44px;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .method-grid article:nth-child(2) {
    border-right: 0;
  }

  .method-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

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

  .transformations article:nth-child(3) {
    border-right: 0;
  }

  .transformations article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .outcome-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outcome-grid .outcome-feature {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 420px;
  }

  .outcome-grid .outcome-feature h3 {
    margin-top: 100px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 132px;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 5.6rem);
  }

  .hero-card {
    padding-top: 20px;
  }

  .hero-bottom {
    display: none;
  }

  .section-heading-wide {
    display: block;
  }

  .intro-grid,
  .rules-grid,
  .graduation,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .intro-body {
    padding-top: 0;
  }

  .transformations {
    grid-template-columns: 1fr;
  }

  .transformations article,
  .transformations article:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .transformations article:last-child {
    border-bottom: 0;
  }

  .transformations h3 {
    margin-top: 20px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article,
  .method-grid article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .method-grid article:last-child {
    border-bottom: 0;
  }

  .method-grid h3 {
    margin-top: 34px;
  }

  .practice-line {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .practice-line > span {
    width: 100%;
  }

  .schedule-list li {
    grid-template-columns: 82px 1fr;
    gap: 10px 18px;
    padding-inline: 6px;
  }

  .schedule-list li:hover {
    padding-inline: 14px;
  }

  .schedule-list .session-no {
    grid-column: 1;
    grid-row: 2;
  }

  .schedule-list li > div {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .outcome-grid,
  .rule-cards,
  .graduation ul {
    grid-template-columns: 1fr;
  }

  .outcome-grid .outcome-feature,
  .rule-cards .rule-wide {
    grid-column: auto;
  }

  .outcome-grid .outcome-feature {
    min-height: 390px;
  }

  .rules-grid > .section-heading {
    position: static;
  }

  .join-grid {
    gap: 54px;
  }

  .qr-card {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .hero-facts {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }

  .book {
    width: 250px;
  }

  .schedule-list time {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
