:root {
  --ink: #101110;
  --ink-soft: #171917;
  --paper: #eee9df;
  --paper-soft: #d9d2c6;
  --muted: #9b9d98;
  --line: rgba(238, 233, 223, 0.16);
  --red: #e33a2f;
  --red-dark: #b92922;
  --acid: #cbd6a4;
  --shell: min(1180px, calc(100% - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

::selection { color: #fff; background: var(--red); }

img { display: block; max-width: 100%; }

a { color: inherit; }

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

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: .75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus { transform: none; }

.scroll-progress {
  position: fixed;
  z-index: 200;
  inset: 0 auto auto 0;
  width: 0;
  height: 2px;
  background: var(--red);
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(16, 17, 16, .88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  line-height: 1;
}

.brand img { width: 38px; height: 38px; object-fit: contain; }

.brand span { display: grid; gap: .22rem; }

.brand strong {
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.desktop-nav { display: flex; align-items: center; gap: 2rem; }

.desktop-nav a {
  position: relative;
  color: rgba(238, 233, 223, .74);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active { color: var(--paper); }

.desktop-nav a:hover::after,
.desktop-nav a.active::after { transform: scaleX(1); }

.desktop-nav .nav-cta {
  padding: .7rem 1.15rem;
  border: 1px solid rgba(238, 233, 223, .35);
}

.desktop-nav .nav-cta::after { display: none; }
.desktop-nav .nav-cta:hover { color: var(--ink); background: var(--paper); }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--paper);
  transition: transform .3s var(--ease);
}

.menu-button.open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-button.open span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  z-index: -1;
  inset: 84px 0 0;
  display: grid;
  align-content: center;
  gap: .5rem;
  padding: 2rem 24px 15vh;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity .35s, visibility .35s, transform .35s var(--ease);
}

.mobile-nav.open { opacity: 1; visibility: visible; transform: none; }

.mobile-nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: .4rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 10vw, 5rem);
  line-height: 1.15;
  text-decoration: none;
}

.mobile-nav a span {
  color: var(--red);
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .15em;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #0a0b0a;
}

.hero-media {
  position: absolute;
  top: 50%;
  right: max(24px, calc((100vw - 1380px) / 2));
  width: min(49vw, 720px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  transform: translateY(-50%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,11,10,.55), rgba(10,11,10,.02) 60%), linear-gradient(0deg, rgba(10,11,10,.28), transparent 50%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.72) contrast(1.05);
  animation: hero-in 1.4s var(--ease) forwards;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a0b0a 0%, #0a0b0a 28%, rgba(10,11,10,.72) 46%, rgba(10,11,10,.04) 72%);
}

.hero-orbit {
  position: absolute;
  width: min(44vw, 680px);
  aspect-ratio: 1;
  top: 50%;
  right: -8vw;
  border: 1px solid rgba(238,233,223,.18);
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-orbit::before { width: 67%; height: 67%; border: 1px solid rgba(238,233,223,.11); }
.hero-orbit::after { width: 8px; height: 8px; background: var(--red); }

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 11rem;
}

.eyebrow,
.kicker {
  margin: 0 0 1.2rem;
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before { content: ""; display: inline-block; width: 28px; height: 1px; margin: 0 .75rem .2rem 0; background: currentColor; }

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 11.8vw, 10.7rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .72;
}

.hero h1 em { color: var(--red); font-weight: 400; }

.hero-copy {
  max-width: 560px;
  margin: 2.5rem 0 0;
  color: rgba(238,233,223,.7);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.4rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 56px;
  padding: .8rem 1.15rem .8rem 1.35rem;
  border: 1px solid transparent;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease);
}

.button span { font-size: 1.1rem; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-dark { color: var(--paper); background: var(--ink); }
.button-dark:hover { background: #292b29; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: rgba(238,233,223,.8);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span { color: var(--red); }

.hero-meta {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: rgba(10,11,10,.68);
  backdrop-filter: blur(12px);
}

.hero-meta > div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: .35rem;
  padding: 1.35rem 2.5rem;
  border-right: 1px solid var(--line);
}

.hero-meta span,
.schedule-card span {
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-meta strong { font-size: .9rem; font-weight: 500; }

.section { padding: clamp(6rem, 11vw, 10rem) 0; }

.section-index {
  margin-bottom: clamp(3rem, 6vw, 6rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.statement { background: var(--ink); }

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .8fr);
  gap: 8vw;
  align-items: end;
}

.section-heading h2,
.training-head h2,
.trainer-copy h2,
.visit-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6.5vw, 6.9rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}

.statement-copy p { color: var(--muted); }
.statement-copy .lead,
.training-head .lead {
  margin-top: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  line-height: 1.45;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle {
  position: relative;
  min-height: 350px;
  padding: 2.2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background .35s;
}

.principle:hover { background: var(--ink-soft); }

.principle > span {
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  color: rgba(238,233,223,.04);
  font-family: var(--serif);
  font-size: 12rem;
  line-height: 1;
}

.principle-number { margin: 0 0 6rem; color: var(--red); font-size: .7rem; font-weight: 700; }
.principle h3 { margin: 0 0 .8rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.principle p:last-child { position: relative; z-index: 1; max-width: 280px; margin: 0; color: var(--muted); font-size: .92rem; }

.image-break {
  position: relative;
  width: var(--shell);
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  margin: clamp(5rem, 9vw, 8rem) auto;
  background: #080908;
}

.image-break-main { width: min(100%, 900px); aspect-ratio: 900 / 315; margin: 0 auto; overflow: hidden; }
.image-break-main img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.72) contrast(1.06); }

.image-break-note {
  width: min(100%, 900px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin: 0 auto;
  padding: 2rem 2.4rem;
  background: var(--red);
}

.image-break-note span { font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.image-break-note p { max-width: 620px; margin: 0; color: #fff; font-family: var(--serif); font-size: 1.45rem; line-height: 1.35; }

.training { color: var(--ink); background: var(--paper); }
.training .section-index { color: #6e6e69; border-color: rgba(16,17,16,.18); }
.training .kicker { color: var(--red); }

.training-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
  align-items: end;
}

.training-head .lead { color: #383a37; }

.schedule-card {
  position: relative;
  display: grid;
  grid-template-columns: .7fr 1fr 1.3fr;
  margin-top: clamp(4rem, 7vw, 7rem);
  border: 1px solid rgba(16,17,16,.22);
}

.schedule-card > div:not(.schedule-badge) {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .45rem;
  padding: 2rem;
  border-right: 1px solid rgba(16,17,16,.18);
}

.schedule-day strong { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.schedule-time strong { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1; }
.schedule-time i { color: var(--red); font-style: normal; }
.schedule-place strong { font-size: 1rem; }
.schedule-place small { color: #74756f; }

.schedule-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  padding: .55rem .8rem;
  color: #fff;
  background: var(--red);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 5rem;
  border-top: 1px solid rgba(16,17,16,.18);
  border-left: 1px solid rgba(16,17,16,.18);
}

.training-item {
  min-height: 230px;
  padding: 2.4rem;
  border-right: 1px solid rgba(16,17,16,.18);
  border-bottom: 1px solid rgba(16,17,16,.18);
}

.training-item-no { margin: 0 0 2rem; color: var(--red); font-size: .68rem; font-weight: 700; }
.training-item h3 { margin: 0 0 .7rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.training-item p:last-child { max-width: 420px; margin: 0; color: #656660; }

.first-time {
  display: grid;
  grid-template-columns: .8fr 1.2fr auto;
  gap: 3rem;
  align-items: center;
  margin-top: 5rem;
  padding: 3rem;
  color: var(--paper);
  background: var(--red);
}

.first-time .kicker { color: var(--ink); }
.first-time h3 { margin: 0; font-family: var(--serif); font-size: 2.35rem; font-weight: 400; line-height: 1.05; }
.first-time ol { margin: 0; padding: 0; list-style: none; }
.first-time li { display: grid; grid-template-columns: 30px 1fr; gap: .6rem; border-bottom: 1px solid rgba(255,255,255,.25); }
.first-time li span { padding-top: .5rem; color: var(--ink); font-size: .66rem; font-weight: 700; }
.first-time li p { margin: .4rem 0; font-size: .9rem; }

.gallery {
  width: var(--shell);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: clamp(5rem, 9vw, 8rem) auto;
}

.gallery figure { position: relative; justify-self: center; margin: 0; overflow: hidden; background: var(--ink); }
.gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,11,10,.46), transparent 38%); }
.gallery img { width: 100%; height: auto; object-fit: contain; filter: saturate(.78) contrast(1.03); transition: filter .6s; }
.gallery figure:hover img { filter: saturate(.85); }
.gallery figcaption { position: absolute; z-index: 2; left: 2rem; bottom: 1.6rem; font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.gallery-tall { width: min(100%, 720px); }
.gallery-wide,
.gallery-small { width: min(100%, 900px); }

.trainer { background: var(--ink); }

.trainer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}

.trainer-visual { position: relative; width: min(100%, 900px); aspect-ratio: 900 / 250; min-height: 0; }
.trainer-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: contain; filter: grayscale(1) contrast(1.04); }
.trainer-copy { width: min(100%, 720px); margin-left: auto; }

.rank-stamp {
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 130px;
  height: 130px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.rank-stamp span { display: block; font-family: var(--serif); font-size: 2.6rem; font-weight: 400; letter-spacing: 0; line-height: 1; }

.trainer-copy h2 { margin-bottom: 1.5rem; }
.trainer-role { color: var(--red); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.trainer-copy > p:not(.kicker):not(.trainer-role) { max-width: 530px; color: var(--muted); }
.trainer-copy blockquote { max-width: 540px; margin: 2.3rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid var(--line); color: var(--paper); font-family: var(--serif); font-size: 1.45rem; line-height: 1.4; }

.lineage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8rem;
  border: 1px solid var(--line);
}

.lineage > div { min-height: 210px; padding: 2rem; border-right: 1px solid var(--line); }
.lineage > div:last-child { border-right: 0; }
.lineage span { color: var(--red); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.lineage strong { display: block; margin-top: 2rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.lineage p { margin: .6rem 0 0; color: var(--muted); font-size: .9rem; }

.visit {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
}

.visit-image {
  position: relative;
  width: min(898px, calc(100% - 48px));
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  opacity: 1;
}

.visit-image img { width: 100%; height: auto; object-fit: contain; filter: saturate(.78) contrast(1.04); }

.visit-grid { position: relative; display: grid; grid-template-columns: 1fr .75fr; gap: 9vw; align-items: end; }
.visit .section-index { width: 100%; margin-bottom: 5rem; color: rgba(16,17,16,.55); border-color: rgba(16,17,16,.2); }
.visit-intro > p:not(.section-index):not(.kicker) { max-width: 560px; margin: 2rem 0; color: #494d42; }

.contact-card { padding: 3rem; color: var(--paper); background: var(--ink); }
.contact-label { margin: 0 0 2.5rem; color: var(--red); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-card h3 { margin: 0 0 .4rem; font-family: var(--serif); font-size: 2.3rem; font-weight: 400; }
.contact-card address { color: var(--muted); font-style: normal; }
.contact-card dl { margin: 2rem 0; border-top: 1px solid var(--line); }
.contact-card dl div { display: flex; justify-content: space-between; gap: 2rem; padding: .75rem 0; border-bottom: 1px solid var(--line); }
.contact-card dt { color: var(--muted); }
.contact-card dd { margin: 0; }
.contact-links { display: grid; gap: .7rem; }
.contact-links a { width: fit-content; color: var(--paper); text-decoration-color: rgba(238,233,223,.25); text-underline-offset: .25em; }
.contact-links a:hover { color: var(--red); }

.faq { color: var(--ink); background: var(--paper); border-top: 1px solid rgba(16,17,16,.12); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.faq-list { border-top: 1px solid rgba(16,17,16,.23); }
.faq details { border-bottom: 1px solid rgba(16,17,16,.23); }
.faq summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; top: 50%; right: .2rem; color: var(--red); font-family: var(--sans); font-size: 1.4rem; transform: translateY(-50%); transition: transform .25s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { max-width: 680px; margin: 0; padding: 0 3rem 1.5rem 0; color: #666760; }

.final-cta { padding: 6rem 0; background: var(--red); }
.final-cta-inner { display: grid; grid-template-columns: 150px 1fr auto; gap: 4rem; align-items: center; }
.final-cta img { width: 140px; filter: brightness(0) invert(1); opacity: .9; }
.final-cta p { margin: 0 0 .8rem; color: var(--ink); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.final-cta h2 { color: #fff; font-size: clamp(3.5rem, 7vw, 7rem); }
.round-link { width: 112px; height: 112px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; font-size: 2.2rem; text-decoration: none; transition: color .25s, background .25s, transform .25s var(--ease); }
.round-link:hover { color: var(--red); background: #fff; transform: rotate(10deg); }

.legal { background: #0c0d0c; border-top: 1px solid var(--line); }
.legal details { padding: 2.2rem 0; }
.legal summary { display: flex; justify-content: space-between; align-items: center; cursor: pointer; list-style: none; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.legal summary::-webkit-details-marker { display: none; }
.legal summary span { color: var(--red); font-size: 1.2rem; transition: transform .25s; }
.legal details[open] summary span { transform: rotate(45deg); }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; padding: 3rem 0 1rem; }
.legal-grid h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.legal-grid p { max-width: 520px; color: var(--muted); font-size: .9rem; }
.legal-grid a { color: var(--paper); }

.site-footer { padding: 5rem 0 2rem; background: #080908; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 4rem; }
.footer-brand { margin: 0 0 1rem; font-family: var(--serif); font-size: 1.8rem; }
.footer-brand span { color: var(--red); }
.footer-grid > div > p:last-child { color: var(--muted); font-size: .86rem; }
.footer-grid nav,
.footer-external { display: grid; align-content: start; gap: .75rem; }
.footer-grid nav a,
.footer-external a { width: fit-content; color: var(--muted); font-size: .85rem; text-decoration: none; }
.footer-grid a:hover { color: var(--paper); }
.footer-external span { color: var(--red); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: #666963; font-size: .72rem; letter-spacing: .06em; }
.footer-bottom a { text-decoration: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.principles .reveal:nth-child(2),
.training-grid .reveal:nth-child(2) { transition-delay: .1s; }
.principles .reveal:nth-child(3),
.training-grid .reveal:nth-child(3) { transition-delay: .2s; }
.training-grid .reveal:nth-child(4) { transition-delay: .3s; }

@keyframes hero-in { from { opacity: .35; } to { opacity: 1; } }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 760px); }

  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-nav { z-index: 99; }

  .hero-media { right: 18px; width: min(58vw, 720px); }
  .hero-shade { background: linear-gradient(90deg, #0a0b0a 0%, rgba(10,11,10,.9) 35%, rgba(10,11,10,.25) 100%); }
  .hero-inner { padding-bottom: 13rem; }
  .hero-meta { padding-left: 0; }
  .hero-meta > div { min-height: 104px; padding: 1rem 1.4rem; }

  .statement-grid,
  .training-head,
  .trainer-layout,
  .visit-grid,
  .faq-grid { grid-template-columns: 1fr; gap: 4rem; }

  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 260px; }
  .principle-number { margin-bottom: 3rem; }

  .image-break { grid-template-columns: 1fr; }
  .image-break-note { padding: 2rem; }

  .schedule-card { grid-template-columns: 1fr 1fr; }
  .schedule-card > div:not(.schedule-badge) { min-height: 150px; }
  .schedule-place { grid-column: 1 / 3; border-top: 1px solid rgba(16,17,16,.18); }

  .first-time { grid-template-columns: 1fr; gap: 2rem; }
  .first-time .button { width: fit-content; }

  .rank-stamp { right: 24px; }
  .lineage { margin-top: 5rem; }

  .contact-card { max-width: 620px; }

  .final-cta-inner { grid-template-columns: 100px 1fr; gap: 2.5rem; }
  .final-cta img { width: 100px; }
  .round-link { grid-column: 2; width: 88px; height: 88px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-external { grid-column: 1 / 3; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 32px); }

  .header-inner { height: 72px; }
  .mobile-nav { top: 72px; }

  .brand img { width: 34px; height: 34px; }
  .brand strong { font-size: .75rem; }

  .hero { min-height: 900px; align-items: start; }
  .hero-media { inset: 88px 16px auto; width: auto; aspect-ratio: 4 / 3; transform: none; }
  .hero-shade { background: linear-gradient(0deg, #0a0b0a 40%, rgba(10,11,10,.3) 72%, rgba(10,11,10,.12)); }
  .hero-orbit { width: 88vw; top: 26%; right: -30vw; }
  .hero-inner { padding-top: calc(75vw + 7rem); padding-bottom: 15rem; }
  .hero h1 { font-size: clamp(4.5rem, 23vw, 7.3rem); }
  .hero-copy { margin-top: 2rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1rem; }
  .text-link { padding: .5rem 0; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta > div { min-height: auto; grid-template-columns: 90px 1fr; padding: .65rem 1rem; border-right: 0; border-bottom: 1px solid var(--line); }

  .section { padding: 5.5rem 0; }
  .section-index { margin-bottom: 3.5rem; }
  .section-heading h2,
  .training-head h2,
  .trainer-copy h2,
  .visit-intro h2 { font-size: clamp(3.25rem, 15vw, 4.7rem); }

  .statement-grid { gap: 2.5rem; }
  .statement-copy .lead,
  .training-head .lead { font-size: 1.25rem; }
  .principles { margin-top: 4rem; }
  .principle { min-height: 230px; padding: 1.5rem; }

  .image-break { grid-template-columns: 1fr; }
  .image-break-note { flex-direction: column; gap: .8rem; padding: 1.4rem; }
  .image-break-note p { font-size: 1.35rem; }

  .training-head { gap: 2.5rem; }
  .schedule-card { grid-template-columns: 1fr; }
  .schedule-card > div:not(.schedule-badge) { min-height: 135px; border-right: 0; border-bottom: 1px solid rgba(16,17,16,.18); }
  .schedule-place { grid-column: auto; }
  .schedule-time strong { font-size: 2.35rem; }
  .training-grid { grid-template-columns: 1fr; margin-top: 3.5rem; }
  .training-item { min-height: 200px; padding: 1.6rem; }
  .first-time { margin-top: 3.5rem; padding: 1.6rem; }
  .first-time .button { width: 100%; }

  .gallery figcaption { left: 1rem; bottom: .8rem; }

  .trainer-layout { gap: 3rem; }
  .rank-stamp { width: 90px; height: 90px; right: 10px; bottom: -44px; }
  .lineage { grid-template-columns: 1fr; }
  .lineage > div { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line); }
  .lineage > div:last-child { border-bottom: 0; }

  .visit .section-index { margin-bottom: 3.5rem; }
  .visit-grid { gap: 3rem; }
  .visit-image { width: calc(100% - 32px); }
  .contact-card { padding: 1.6rem; }
  .contact-card h3 { font-size: 2rem; }
  .contact-links a { overflow-wrap: anywhere; }

  .faq-grid { gap: 3rem; }
  .faq summary { font-size: 1.08rem; }

  .final-cta { padding: 4.5rem 0; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .final-cta img { width: 72px; }
  .final-cta h2 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .round-link { grid-column: auto; width: 76px; height: 76px; }

  .legal-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-external { grid-column: auto; }
  .footer-bottom { margin-top: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
