:root {
  --black: #090909;
  --ink: #141414;
  --panel: #161615;
  --paper: #f2f1ed;
  --white: #ffffff;
  --soft: #deddd7;
  --mid: #a7a7a2;
  --line: rgba(20,20,20,.18);
  --line-dark: rgba(255,255,255,.18);
  --accent: #4169ff;
  --accent-panel: #3150d6;
  --max: 1600px;
  --pad: clamp(24px, 4.2vw, 72px);
  --content-inset: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  --display: "Oswald", "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  --body: "Noto Sans JP", "Helvetica Neue", Arial, "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--paper);
  background: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

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

.mono {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .15em;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: stretch;
  min-height: 84px;
  padding-left: var(--pad);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(9,9,9,.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px 0 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
  text-decoration: none;
}

.brand b { font-size: 20px; font-weight: 600; letter-spacing: .09em; }

.brand-mark {
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 45%, currentColor 46%, currentColor 52%, transparent 53%);
  box-shadow: none;
}

.brand-logo-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.header-nav { display: flex; }

.header-nav a,
.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0 20px;
  border-left: 0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.header-nav a:hover { color: var(--accent); }
.header-cta { min-width: 158px; margin-left: 18px; background: var(--paper); color: var(--black); }
.header-cta::after { color: var(--accent); content: "↗"; }
.header-cta:hover { background: var(--white); }

.section-grid,
.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(104px, 11vw, 176px) var(--pad);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.section-label::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1, h2, h3, p { margin-top: 0; }
h2 {
  margin-bottom: 36px;
  font-size: clamp(44px, 6.4vw, 92px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.045em;
}
h3 { font-size: clamp(21px, 2vw, 30px); font-weight: 500; line-height: 1.4; letter-spacing: -.03em; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .55fr);
  column-gap: clamp(42px, 6vw, 92px);
  align-items: end;
  min-height: calc(100vh - 84px);
  padding-top: clamp(56px, 7vw, 104px);
  padding-bottom: clamp(48px, 6vw, 76px);
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  background-color: var(--black);
  background-image: linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: calc(100% / 4) 100%;
}

.hero-copy { position: relative; z-index: 2; min-width: 0; }
.hero-kicker { margin: 20px 0 38px; color: var(--mid); }
.eyebrow { margin-bottom: 18px; font-size: 16px; font-weight: 700; }

.hero-program {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 800;
}

.hero-program .mono { padding: 5px 9px; border: 1px solid var(--ink); font-size: 14px; }

.hero-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1;
}

.hero-title span,
.hero-title strong {
  display: block;
  white-space: nowrap;
}

.hero-title strong {
  width: fit-content;
  margin-top: 6px;
  padding: 0;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -.045em;
  transform: none;
}

.hero-brand-type {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  letter-spacing: .14em;
}

.hero-title .hero-brand-name {
  font-family: var(--display);
  font-size: clamp(88px, 13vw, 188px);
  line-height: .88;
  letter-spacing: -.035em;
}

.hero-statement {
  margin: 48px 0 26px;
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: -.045em;
}

.hero-statement > span {
  display: block;
  width: fit-content;
  white-space: nowrap;
}

.hero-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(16px, 1.7vw, 23px);
  font-weight: 800;
  line-height: 1.35;
}

.hero-promise span { white-space: nowrap; }
.hero-promise b { font-weight: 900; }
.hero-lead { max-width: 720px; color: #c8c8c3; font-size: clamp(16px, 1.25vw, 19px); font-weight: 400; line-height: 2; }
.hero-closing { width: fit-content; margin: 25px 0 0; padding-top: 13px; border-top: 2px solid var(--paper); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-closing + .hero-actions { margin-top: 18px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 56px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover { color: var(--accent); transform: none; box-shadow: none; }
.button-dark { border-color: var(--paper); background: var(--paper); color: var(--black); }
.button-light { border-color: var(--line-dark); background: transparent; color: var(--paper); }
.button-light:hover { border-color: var(--paper); box-shadow: none; }

.hero-price {
  position: relative;
  z-index: 5;
  align-self: end;
  justify-self: end;
  width: 100%;
  max-width: 360px;
  margin: 0 0 28px;
  padding: 30px;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--black);
  box-shadow: none;
  transform: none;
}

.hero-price .tape {
  position: absolute;
  top: -18px;
  left: -1px;
  padding: 7px 14px;
  background: var(--accent);
  color: var(--white);
  transform: none;
}

.price-program { margin: 0 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 800; }
.price-label { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 0 0 6px; font-size: 15px; font-weight: 800; }
.price-label span { padding: 3px 7px; background: var(--ink); color: var(--white); font-size: 14px; }
.price-main { display: flex; align-items: end; gap: 7px; line-height: 1; }
.price-main strong { font-family: var(--display); font-size: clamp(50px, 5.5vw, 78px); font-weight: 500; letter-spacing: -.04em; }
.price-main span { padding-bottom: 7px; font-size: 14px; font-weight: 700; line-height: 1.25; }
.hero-price > p { font-size: 14px; }
.price-eligibility { margin: 10px 0 7px; font-weight: 800; }
.price-same { display: inline-block; margin: 0; padding: 4px 8px; background: var(--black); color: var(--paper); font-weight: 800; }
.price-rule { height: 1px; margin: 18px 0 14px; background: var(--ink); }
.price-secondary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: 8px 16px;
  padding: 13px 14px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
}
.price-secondary span { min-width: 0; font-size: 12px; font-weight: 800; line-height: 1.45; }
.price-secondary strong { justify-self: end; white-space: nowrap; font-family: Arial, sans-serif; font-size: 20px; line-height: 1; letter-spacing: -.04em; }
.price-secondary small { grid-column: 1 / -1; font-size: 12px; font-weight: 700; line-height: 1.5; }
.price-secondary:hover { border-color: var(--accent); color: var(--accent); background: var(--paper); }
.hero-price .hero-price-detail { width: 100%; min-height: 46px; margin-top: 14px; padding: 9px 16px; font-size: 14px; }
.hero-index { position: absolute; right: 12px; top: 105px; display: flex; flex-direction: column; font: 500 clamp(54px,7vw,110px)/.8 var(--display); color: transparent; -webkit-text-stroke: 1px var(--line-dark); opacity: .8; }

.ticker {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--black);
  color: var(--paper);
}
.ticker div { padding: 14px; border-right: 1px solid var(--line-dark); font: 500 13px/1.3 var(--display); text-align: center; letter-spacing: .14em; }

.intro { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(32px, 6vw, 96px); row-gap: 32px; }
.intro-title h2 { margin: 0; }
.intro-body p { font-size: 17px; }
.prose p + p { margin-top: 24px; }
.margin-note { align-self: end; padding: 20px; border: 1px dashed var(--ink); transform: rotate(-2deg); }

.four-skills { border-top: 1px solid var(--ink); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; align-items: end; margin-bottom: 58px; }
.section-heading h2 { margin: 0; }
.skill-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--ink); }
.skill-card { position: relative; min-height: 550px; padding: 30px; border-right: 1px solid var(--ink); }
.skill-card:last-child { border-right: 0; }
.skill-no { position: absolute; top: 25px; right: 25px; font-size: 38px; color: var(--mid); }
.skill-en { margin-bottom: 80px; }
.skill-card h3 { margin-bottom: 22px; font-size: clamp(31px, 3vw, 48px); }
.skill-card p { font-size: 16px; }
.skill-card ul { margin: 36px 0 0; padding: 0; list-style: none; }
.skill-card li { padding: 9px 0; border-top: 1px solid var(--line); font-size: 14px; }
.skill-b { margin: -18px 0 18px; background: var(--ink); color: var(--white); box-shadow: 9px 9px 0 var(--mid); }
.skill-b li { border-color: #555; }
.skill-b .skill-no { color: #666; }
.formula { display: flex; align-items: center; justify-content: center; gap: clamp(10px, 2.5vw, 42px); margin-top: 52px; padding: 28px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.formula span, .formula strong { font-size: clamp(15px, 1.8vw, 24px); }
.formula b { font-size: 22px; }

.learning-flow { background: var(--white); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.flow-intro { display: grid; grid-template-columns: .7fr 1.4fr 1fr; gap: 40px; align-items: start; margin-bottom: 65px; }
.flow-intro h2 { margin: 0; }
.flow-intro p { font-size: 16px; }
.flow-track { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; }
.flow-track article { padding: 28px; border: 1px solid var(--ink); }
.flow-track h3 { margin: 32px 0 14px; }
.flow-track ul { margin: 24px 0 0; padding-left: 20px; font-size: 14px; }
.flow-featured { background: var(--ink); color: var(--white); transform: translateY(-14px); box-shadow: 7px 7px 0 var(--mid); }
.flow-arrow { display: flex; align-items: center; padding: 16px; font-size: 28px; }
.flow-footnote { max-width: 920px; margin: 50px 0 0 auto; padding-left: 20px; border-left: 4px solid var(--ink); font-size: 14px; }

.support { display: grid; grid-template-columns: .8fr 1.7fr; gap: clamp(34px, 7vw, 110px); }
.support-heading { position: sticky; top: 100px; align-self: start; }
.support-heading p { max-width: 430px; font-size: 16px; }
.support-list { border-top: 2px solid var(--ink); }
.support-list article { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--ink); }
.support-list article > span { font: 700 18px/1 ui-monospace, monospace; }
.support-list h3 { margin-bottom: 10px; }
.support-list p { margin-bottom: 0; font-size: 15px; }

.capacity { overflow: hidden; border-top: 1px solid var(--ink); background: var(--soft); }
.capacity-heading { display: grid; grid-template-columns: .65fr 1.35fr 1fr; gap: 40px; align-items: end; margin-bottom: 62px; }
.capacity-heading h2, .capacity-heading p { margin-bottom: 0; }
.capacity-heading p { font-size: 16px; }
.capacity-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 2px solid var(--ink); border-left: 1px solid var(--ink); }
.capacity-card { display: flex; flex-direction: column; min-height: 390px; padding: 25px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper); }
.capacity-card-dark { background: var(--ink); color: var(--white); transform: translateY(-12px); box-shadow: 8px 8px 0 var(--mid); }
.capacity-card-lined { background: repeating-linear-gradient(-45deg, var(--white), var(--white) 4px, var(--soft) 4px, var(--soft) 8px); }
.capacity-card-open strong { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.capacity-no { min-height: 38px; font-size: 12px; font-weight: 800; }
.capacity-card > strong { margin: 42px 0 auto; font: 800 clamp(66px, 7vw, 104px)/.8 Arial, sans-serif; letter-spacing: -.08em; }
.capacity-card > strong small { margin-left: 7px; font-size: 20px; letter-spacing: 0; }
.capacity-card h3 { margin: 44px 0 12px; font-size: 22px; }
.capacity-card p { margin: 0; font-size: 14px; }
.capacity-note { max-width: 980px; margin: 48px 0 0 auto; padding: 22px 24px; border: 1px solid var(--ink); background: var(--white); font-size: 15px; }
.capacity-note strong { font-size: 17px; }

.space-gallery { border-top: 1px solid var(--ink); background: var(--white); }
.space-heading { display: grid; grid-template-columns: .65fr 1.35fr 1fr; gap: 40px; align-items: end; margin-bottom: 60px; }
.space-heading h2, .space-heading p { margin-bottom: 0; }
.space-heading p { font-size: 16px; }
.space-photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.space-photo { min-width: 0; margin: 0; }
.space-photo-main { grid-column: 1 / -1; }
.space-photo-wide { grid-column: auto; }
.space-photo-placeholder { position: relative; display: flex; flex-direction: column; aspect-ratio: 4 / 3; min-height: 0; padding: 22px; overflow: hidden; border: 1px solid var(--line); background: var(--soft); }
.space-photo-main .space-photo-placeholder { aspect-ratio: 16 / 6.4; min-height: 0; }
.space-photo-wide .space-photo-placeholder { min-height: 0; }
.space-photo-placeholder::before, .space-photo-placeholder::after { position: absolute; top: 50%; left: 50%; width: 140%; height: 1px; background: var(--mid); content: ""; transform-origin: center; }
.space-photo-placeholder::before { transform: translate(-50%, -50%) rotate(25deg); }
.space-photo-placeholder::after { transform: translate(-50%, -50%) rotate(-25deg); }
.space-photo-placeholder > * { position: relative; z-index: 1; }
.space-photo-placeholder strong { align-self: flex-start; max-width: calc(100% - 12px); margin-top: auto; padding: 0; background: transparent; font-size: clamp(24px, 2vw, 34px); line-height: 1.25; text-align: left; white-space: nowrap; }
.space-photo-placeholder-dark { background: var(--ink); color: var(--white); }
.space-photo-placeholder-dark::before, .space-photo-placeholder-dark::after { background: #555; }
.space-photo-placeholder-dark strong { background: transparent; color: currentColor; }
.space-photo figcaption { display: grid; grid-template-columns: 30px 1fr; gap: 10px; min-height: 58px; padding: 14px 16px; font-size: 13px; font-weight: 700; line-height: 1.6; }
.space-photo-note { margin: 36px 0 0 auto; max-width: 720px; font-size: 12px; }

@media (max-width: 1000px) {
  .space-photo-grid { grid-template-columns: 1fr; gap: 14px; }
  .space-photo-main,
  .space-photo-wide { grid-column: auto; }
  .space-photo-main .space-photo-placeholder,
  .space-photo-wide .space-photo-placeholder,
  .space-photo-placeholder { aspect-ratio: 16 / 10; min-height: 0; }
}

.feedback { background: var(--ink); color: var(--white); }
.feedback-title-wrap { display: grid; grid-template-columns: 1fr 2fr; align-items: end; }
.feedback-title-wrap .section-label::before { background: var(--white); }
.feedback-board { max-width: 1040px; margin: 40px 0 0 auto; border: 1px solid #777; background: #1a1a1a; transform: rotate(-.5deg); }
.board-top { display: flex; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid #777; }
.feedback-board ul { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; list-style: none; }
.feedback-board li { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 16px 18px; border-right: 1px solid #555; border-bottom: 1px solid #555; font-size: 14px; line-height: 1.55; }
.feedback-board li:nth-child(2n) { border-right: 0; }
.feedback-board li span { font-family: ui-monospace, monospace; color: #aaa; }

.mentor {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.45fr);
  gap: clamp(44px, 8vw, 120px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}
.mentor-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 12px 12px 0 var(--mid);
  transform: rotate(-1.5deg);
}
.mentor-card-main { margin: auto 0; }
.mentor-card-main > span { display: block; margin-bottom: 12px; font-size: 15px; font-weight: 800; }
.mentor-card-main strong { font: 900 clamp(38px, 4.8vw, 72px)/.86 Arial, sans-serif; letter-spacing: -.07em; }
.mentor-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.mentor-tags span { padding: 4px 8px; border: 1px solid var(--white); font-size: 12px; font-weight: 800; }
.mentor-card small { font-size: 12px; }
.mentor-copy h2 { margin: 34px 0; font-size: clamp(40px, 5.4vw, 74px); }
.mentor-lead { font-size: 19px; font-weight: 800; line-height: 1.7; }
.mentor-principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 38px; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.mentor-principles article { min-height: 230px; padding: 18px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.mentor-principles h3 { margin: 45px 0 10px; font-size: 20px; }
.mentor-principles p { margin: 0; font-size: 14px; line-height: 1.7; }
.mentor-profile-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 24px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); color: inherit; font-size: 13px; font-weight: 800; text-decoration: none; }
.mentor-profile-link:hover, .mentor-profile-link:focus-visible { border-bottom-width: 3px; }

.works { background: var(--ink); color: var(--white); }
.works .section-label::before { background: var(--white); }
.works-heading { display: grid; grid-template-columns: .65fr 1.2fr 1fr; gap: 40px; align-items: end; margin-bottom: 58px; }
.works-heading h2, .works-heading p { margin: 0; }
.works-heading p { font-size: 16px; }
.works-scroll-guide { display: flex; justify-content: flex-end; gap: 12px; margin: 0 0 14px; color: #aaa; }
.works-scroll-guide span { color: var(--white); font-size: 20px; line-height: 1; }
.works-grid { display: flex; width: calc(100% + var(--pad)); margin-right: calc(var(--pad) * -1); padding: 0 var(--pad) 18px 0; overflow-x: auto; overscroll-behavior-inline: contain; border-top: 1px solid #666; border-left: 1px solid #666; scroll-padding-inline: 0 var(--pad); scroll-snap-type: x mandatory; scrollbar-color: var(--white) #333; scrollbar-width: thin; }
.works-grid::-webkit-scrollbar { height: 10px; }
.works-grid::-webkit-scrollbar-track { background: #333; }
.works-grid::-webkit-scrollbar-thumb { background: var(--white); }
.work-card { display: flex; flex: 0 0 clamp(310px, 29vw, 430px); flex-direction: column; min-height: 370px; padding: 28px; border-right: 1px solid #666; border-bottom: 1px solid #666; color: inherit; text-decoration: none; scroll-snap-align: start; transition: background .18s ease, color .18s ease; }
.work-card:hover, .work-card:focus-visible { background: var(--white); color: var(--ink); }
.work-meta { display: flex; justify-content: space-between; gap: 16px; color: #aaa; }
.work-meta span:last-child { text-align: right; }
.work-card h3 { margin: auto 0 18px; font-size: clamp(28px, 3vw, 44px); }
.work-card p { margin-bottom: 28px; font-size: 15px; }
.work-link { width: fit-content; padding-bottom: 4px; border-bottom: 1px solid currentColor; }
.works-all { display: flex; justify-content: space-between; gap: 30px; width: min(520px, 100%); margin: 42px 0 0 auto; padding: 16px 0; border-top: 1px solid #777; border-bottom: 1px solid #777; color: inherit; font-size: 14px; font-weight: 800; text-decoration: none; }
.works-all:hover, .works-all:focus-visible { border-color: var(--white); border-width: 2px; }

.section-heading.compact { grid-template-columns: .65fr 1.2fr 1fr; gap: 40px; }
.section-heading.compact p { margin: 0; }
.curriculum-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.curriculum-grid article { min-height: 340px; padding: 28px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.curriculum-grid h3 { margin: 40px 0 22px; }
.curriculum-grid ul { margin: 0; padding-left: 19px; font-size: 14px; }
.curriculum-grid article:nth-child(2), .curriculum-grid article:nth-child(6) { background: repeating-linear-gradient(-45deg, var(--soft), var(--soft) 2px, transparent 2px, transparent 9px); }

.outputs { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(45px, 8vw, 130px); border-top: 1px solid var(--ink); }
.outputs-copy { align-self: center; }
.outputs-copy p { max-width: 480px; }
.output-stack { position: relative; min-height: 570px; }
.output-card { position: absolute; width: 78%; min-height: 170px; padding: 24px; border: 2px solid var(--ink); background: var(--paper); box-shadow: 8px 8px 0 var(--ink); }
.output-card strong { display: block; margin: 32px 0 10px; font-size: 24px; }
.output-card small { font-size: 14px; }
.output-card:nth-child(1) { top: 0; left: 0; transform: rotate(-3deg); }
.output-card:nth-child(2) { top: 85px; right: 0; transform: rotate(2deg); }
.output-card:nth-child(3) { top: 190px; left: 4%; transform: rotate(-1deg); }
.output-card:nth-child(4) { top: 300px; right: 2%; transform: rotate(3deg); }
.output-card:nth-child(5) { top: 405px; left: 8%; transform: rotate(-2deg); background: var(--ink); color: var(--white); }

.small-work { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(45px, 8vw, 130px); background: var(--white); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.small-work-copy { padding-top: 45px; }
.small-work-copy ol { margin: 40px 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.small-work-copy li { display: grid; grid-template-columns: 92px 1fr; padding: 13px 0; border-bottom: 1px solid var(--ink); font-size: 15px; }
.small-work-copy li span { font-weight: 800; }

.career-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.career-grid article { min-height: 230px; padding: 25px; border: 1px solid var(--ink); }
.career-grid p { margin: 0; font-size: 15px; }
.career-dark { background: var(--ink); color: var(--white); transform: rotate(1deg); }
.lifestyle-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.lifestyle-row span { padding: 8px 13px; border: 1px solid var(--ink); border-radius: 100px; font-size: 14px; }

.timeline { border-top: 1px solid var(--ink); }
.timeline-list { max-width: 1050px; margin-left: auto; }
.timeline-list article { display: grid; grid-template-columns: 170px 1fr; gap: 35px; padding: 31px 0; border-top: 1px solid var(--ink); }
.timeline-list article:last-child { border-bottom: 1px solid var(--ink); }
.timeline-list h3 { margin-bottom: 10px; }
.timeline-list p { margin: 0; }

.base-day { background: var(--ink); color: var(--white); }
.day-title-wrap { display: grid; grid-template-columns: 1fr 2fr; }
.day-title-wrap .section-label::before { background: var(--white); }
.day-schedule { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 45px; border-top: 1px solid #777; border-left: 1px solid #777; }
.day-schedule div { min-height: 260px; padding: 21px; border-right: 1px solid #777; border-bottom: 1px solid #777; }
.day-schedule time { font: 700 14px/1.4 ui-monospace, monospace; color: #aaa; }
.day-schedule h3 { margin: 70px 0 12px; font-size: 22px; }
.day-schedule p { margin: 0; font-size: 14px; }
.day-note { max-width: 800px; margin: 42px 0 0 auto; padding-left: 18px; border-left: 4px solid var(--white); font-size: 15px; }

.voices { overflow: hidden; border-bottom: 1px solid var(--ink); background: var(--white); }
.voices-heading { display: grid; grid-template-columns: .65fr 1.35fr 1fr; gap: 40px; align-items: end; }
.voices-heading h2, .voices-heading p { margin-bottom: 0; }
.voices-guide { margin: 48px 0 14px; text-align: right; }
.voices-guide span { display: inline-block; margin-left: 8px; font-size: 20px; }
.voices-track {
  display: flex;
  gap: 16px;
  width: calc(100% + var(--pad));
  padding: 8px var(--pad) 24px 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) var(--soft);
}
.voice-card {
  display: flex;
  flex: 0 0 min(440px, 78vw);
  flex-direction: column;
  min-height: 340px;
  padding: 26px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
  scroll-snap-align: start;
}
.voice-card-dark { background: var(--ink); color: var(--white); box-shadow: 8px 8px 0 var(--mid); }
.voice-top { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 16px; border-bottom: 1px solid currentColor; }
.voice-top > span:last-child { font-size: 12px; font-weight: 800; }
.voice-card blockquote { margin: 42px 0 36px; font-size: clamp(20px, 2.2vw, 27px); font-weight: 800; line-height: 1.65; letter-spacing: -.025em; }
.voice-card > p { margin: auto 0 0; font-size: 14px; font-weight: 700; }
.voices-note { max-width: 760px; margin: 24px 0 0 auto; font-size: 12px; }

.pricing-heading { display: grid; grid-template-columns: .6fr 1.2fr 1fr; gap: 40px; align-items: end; margin-bottom: 55px; }
.pricing-heading h2 { margin: 0; }
.pricing-heading p { margin: 0; }
.regular-price-reference { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 38px; padding: 18px 22px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.regular-price-reference > div:first-child { max-width: 660px; }
.regular-price-reference h3 { margin: 5px 0; font-size: 20px; }
.regular-price-reference p { margin: 0; font-size: 14px; }
.regular-price-number { display: flex; flex: 0 0 auto; align-items: end; gap: 6px; line-height: 1; }
.regular-price-number strong { font: 800 clamp(30px, 3.4vw, 44px)/.88 Arial, sans-serif; letter-spacing: -.06em; }
.regular-price-number span { padding-bottom: 4px; font-size: 13px; font-weight: 700; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: stretch; max-width: 1120px; margin-left: auto; }
.price-card { position: relative; padding: 27px; border: 2px solid var(--ink); background: var(--paper); }
.price-card h3 { min-height: 76px; margin: 45px 0 18px; font-size: 30px; }
.plan-price { display: flex; align-items: end; gap: 7px; margin-bottom: 24px; line-height: 1; }
.plan-price strong { font: 800 clamp(40px, 4.5vw, 62px)/.85 Arial, sans-serif; letter-spacing: -.07em; }
.plan-price span { padding-bottom: 4px; font-size: 14px; font-weight: 700; line-height: 1.25; }
.price-card > p:not(.plan-no) { min-height: 90px; font-size: 14px; }
.price-card ul { margin: 25px 0 0; padding: 0; border-top: 1px solid currentColor; list-style: none; }
.price-card li { padding: 9px 0; border-bottom: 1px solid currentColor; font-size: 14px; }
.price-card-featured { margin: -20px 0 20px; background: var(--ink); color: var(--white); box-shadow: 10px 10px 0 var(--mid); }
.corner-label { position: absolute; top: -14px; right: 15px; padding: 5px 11px; background: var(--white); color: var(--ink); border: 1px solid var(--ink); transform: rotate(2deg); }
.price-card-support { background: repeating-linear-gradient(-45deg, var(--white), var(--white) 4px, var(--soft) 4px, var(--soft) 8px); }
.pricing-notes { margin-top: 40px; padding: 20px; border: 1px dashed var(--ink); }
.pricing-notes p { margin: 5px 0; font-size: 14px; }

.flexible { overflow: hidden; background: var(--ink); color: var(--white); }
.flexible .section-label::before { background: var(--white); }
.flexible-heading { display: grid; grid-template-columns: .65fr 1.5fr .85fr; gap: 42px; align-items: end; }
.flexible-heading h2, .flexible-heading p { margin-bottom: 0; }
.flexible-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 70px; }
.flexible-grid article { min-height: 300px; padding: 30px; border: 1px solid #777; }
.flexible-grid article:first-child { background: var(--white); color: var(--ink); transform: rotate(-1deg); }
.flexible-grid h3 { margin: 80px 0 16px; font-size: clamp(26px, 3vw, 40px); }
.flexible-grid p { margin: 0; font-size: 15px; }
.flexible-note { margin: 34px 0 0; padding: 18px 22px; border: 1px solid var(--white); font-size: 15px; text-align: center; }
.flexible-note strong { font-size: 18px; }

.promise { background: var(--white); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.promise-title-wrap { display: grid; grid-template-columns: .7fr 1.7fr; }
.promise-title-wrap h2 span { color: var(--white); -webkit-text-stroke: 1.5px var(--ink); }
.promise-columns { display: grid; grid-template-columns: 1fr 1fr; max-width: 1050px; margin: 30px 0 0 auto; border: 1px solid var(--ink); }
.promise-columns article { padding: 30px; }
.promise-columns article + article { border-left: 1px solid var(--ink); background: var(--soft); }
.promise-columns h3 { display: flex; gap: 12px; align-items: center; }
.promise-columns ul { margin: 25px 0 0; padding: 0; list-style: none; }
.promise-columns li { padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; }

.relationship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 46px; }
.community-line { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 80px; padding: 22px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.community-line i { font-style: normal; }

.faq { border-top: 1px solid var(--ink); }
.faq-title-wrap { display: grid; grid-template-columns: .7fr 1.7fr; }
.faq-list { max-width: 980px; margin-left: auto; border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list summary { position: relative; padding: 23px 55px 23px 0; font-size: 17px; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 10px; content: "+"; font: 400 28px/1 monospace; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 50px 24px 0; font-size: 15px; }

.closing-message { position: relative; overflow: hidden; border-top: 1px solid var(--ink); background: var(--white); }
.closing-message::after { position: absolute; right: -2vw; bottom: -5vw; color: transparent; font: 900 clamp(90px, 18vw, 260px)/.75 Arial, sans-serif; letter-spacing: -.09em; content: "KAGARI"; -webkit-text-stroke: 1px var(--line); transform: rotate(-4deg); pointer-events: none; }
.message-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 140px); margin-top: 70px; }
.message-grid h2 { align-self: start; margin: 0; font-size: clamp(46px, 6.3vw, 90px); }
.message-copy { max-width: 680px; margin-left: auto; }
.message-copy p { font-size: 16px; line-height: 2; }
.message-copy .message-lead { margin-bottom: 32px; font-size: clamp(19px, 2vw, 24px); font-weight: 800; line-height: 1.8; }
.message-signature { display: flex; flex-direction: column; align-items: flex-end; margin-top: 46px; padding-top: 18px; border-top: 1px solid var(--ink); text-align: right; }
.message-signature strong { margin-top: 8px; font: 900 22px/1.2 Arial, sans-serif; letter-spacing: -.03em; }
.message-closing { position: relative; z-index: 1; width: fit-content; margin: 105px 0 0 auto; padding: 18px 24px; border: 2px solid var(--ink); background: var(--paper); box-shadow: 8px 8px 0 var(--ink); font-size: clamp(24px, 3vw, 42px); font-weight: 900; line-height: 1.45; letter-spacing: -.04em; transform: rotate(-1deg); }

.entry { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 100px; overflow: hidden; background: var(--ink); color: var(--white); }
.entry .section-label::before { background: var(--white); }
.entry-copy p { max-width: 620px; }
.entry-action { position: relative; z-index: 2; align-self: center; padding: 28px; border: 1px solid var(--white); }
.entry-action ol { margin: 25px 0; padding-left: 23px; }
.entry-action li { padding: 6px 0; font-size: 15px; }
.button-invert { width: 100%; border-color: var(--white); background: var(--white); color: var(--ink); }
.button-invert:hover { box-shadow: 5px 5px 0 #777; }
.entry-action small { display: block; margin-top: 14px; font-size: 14px; color: #bbb; }
.entry-stamp { position: absolute; right: -70px; top: 30px; font-size: clamp(50px, 9vw, 130px); font-weight: 900; color: transparent; -webkit-text-stroke: 1px #555; transform: rotate(10deg); }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 35px; min-height: 100px; padding: 20px var(--pad); border-top: 1px solid #555; background: var(--ink); color: var(--white); }
.site-footer .brand { padding: 0; }
.site-footer .brand-mark { background: var(--white); box-shadow: 6px 6px 0 #666; }
.site-footer p, .site-footer a { margin: 0; font-size: 14px; }

@media (max-width: 1000px) {
  .header-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-price { width: min(420px, calc(100% - 12px)); max-width: none; margin: 64px 12px 20px auto; }
  .hero-index { display: none; }
  .intro { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro-body { grid-column: 2; }
  .margin-note { grid-column: 2; width: 270px; }
  .mentor { grid-template-columns: minmax(250px, .7fr) 1.3fr; gap: 50px; }
  .mentor-principles { grid-template-columns: 1fr; }
  .mentor-principles article { min-height: auto; }
  .mentor-principles h3 { margin-top: 24px; }
  .works-heading { grid-template-columns: 1fr 2fr; }
  .works-heading h2, .works-heading p { grid-column: 2; }
  .flow-intro, .pricing-heading, .section-heading.compact, .voices-heading, .flexible-heading, .capacity-heading, .space-heading { grid-template-columns: 1fr 2fr; }
  .flow-intro p, .pricing-heading p, .section-heading.compact p, .voices-heading p, .flexible-heading p, .capacity-heading p, .space-heading p { grid-column: 2; }
  .capacity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capacity-card-dark { transform: none; box-shadow: none; }
  .curriculum-grid, .career-grid { grid-template-columns: repeat(2, 1fr); }
  .day-schedule { grid-template-columns: repeat(5, minmax(170px, 1fr)); overflow-x: auto; }
  .skill-grid { grid-template-columns: repeat(2, 1fr); }
  .skill-card:nth-child(2n) { border-right: 0; }
  .skill-card:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .skill-b { margin: 0; box-shadow: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { min-height: 58px; }
  .brand { max-width: 238px; padding: 0 12px; font-size: 14px; line-height: 1.35; }
  .header-cta { min-width: auto; padding: 0 13px; }
  .section-pad { padding-top: 84px; padding-bottom: 84px; }
  .hero { display: block; min-height: auto; padding: 30px 18px 70px; background-size: 50% 100%, 50% 100%; }
  .hero-title strong { margin-top: 6px; }
  .hero-brand-type { font-size: 16px; }
  .hero-title .hero-brand-name { font-size: clamp(54px, 17vw, 74px); }
  .hero-kicker { margin-top: 25px; }
  .hero-statement { font-size: clamp(27px, 8vw, 36px); }
  .hero-promise { display: flex; gap: 6px 12px; font-size: clamp(16px, 5vw, 20px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-price { width: calc(100% - 12px); margin: 60px 12px 0 0; transform: rotate(1deg); }
  .price-secondary { grid-template-columns: 1fr; }
  .price-secondary strong { justify-self: start; }
  .price-secondary small { grid-column: 1; }
  .ticker { grid-template-columns: 1fr 1fr; }
  .ticker div:last-child { grid-column: 1 / 3; }
  .intro, .section-heading, .flow-intro, .support, .feedback-title-wrap, .section-heading.compact, .outputs, .small-work, .pricing-heading, .promise-title-wrap, .relationship-grid, .faq-title-wrap, .entry, .voices-heading, .flexible-heading, .capacity-heading, .space-heading { display: block; }
  .section-label { margin-bottom: 28px; }
  h2 { margin-bottom: 30px; font-size: clamp(40px, 13vw, 64px); }
  .margin-note { width: 100%; margin-top: 36px; }
  .skill-grid { display: block; }
  .skill-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--ink); }
  .skill-card:last-child { border-bottom: 0; }
  .skill-b { margin: 0; box-shadow: none; }
  .skill-en { margin-bottom: 60px; }
  .formula { flex-wrap: wrap; }
  .flow-track { display: block; }
  .flow-arrow { justify-content: center; transform: rotate(90deg); }
  .flow-featured { transform: none; box-shadow: none; }
  .flow-footnote { margin-top: 38px; }
  .support-heading { position: static; margin-bottom: 50px; }
  .support-list article { grid-template-columns: 48px 1fr; }
  .capacity-heading p { margin-top: 25px; }
  .capacity-grid { grid-template-columns: 1fr; }
  .capacity-card { min-height: 310px; }
  .capacity-card > strong { margin-top: 36px; }
  .space-heading p { margin-top: 25px; }
  .space-photo-grid { grid-template-columns: 1fr; }
  .space-photo-main, .space-photo-wide { grid-column: auto; grid-row: auto; }
  .space-photo-main .space-photo-placeholder, .space-photo-wide .space-photo-placeholder, .space-photo-placeholder { min-height: 340px; }
  .feedback-board { transform: none; }
  .feedback-board ul { display: block; }
  .feedback-board li { border-right: 0; }
  .mentor { display: block; }
  .mentor-card { min-height: 440px; margin-bottom: 65px; transform: none; box-shadow: 8px 8px 0 var(--mid); }
  .mentor-card-main strong { font-size: clamp(48px, 14vw, 70px); }
  .mentor-copy h2 { margin-top: 28px; }
  .works-heading { display: block; }
  .works-heading h2 { margin-bottom: 30px; }
  .works-grid { display: flex; width: calc(100% + 18px); padding-right: 18px; }
  .work-card { flex-basis: min(330px, 84vw); min-height: 340px; }
  .curriculum-grid, .career-grid, .pricing-grid, .promise-columns { grid-template-columns: 1fr; }
  .curriculum-grid article { min-height: auto; }
  .outputs-copy { margin-bottom: 55px; }
  .output-stack { min-height: 600px; }
  .output-card { width: 88%; }
  .small-work-copy { padding-top: 0; }
  .career-grid article { min-height: auto; }
  .timeline-list article { grid-template-columns: 105px 1fr; gap: 18px; }
  .day-title-wrap { display: block; }
  .voices-heading p { margin-top: 25px; }
  .voices-track { width: calc(100% + 18px); padding-right: 18px; }
  .voice-card { flex-basis: min(360px, 84vw); min-height: 320px; }
  .pricing-heading p { margin-top: 25px; }
  .regular-price-reference { display: block; }
  .regular-price-number { margin-top: 20px; }
  .price-card-featured { margin: 0; box-shadow: none; }
  .price-card { margin-bottom: 12px; }
  .price-card h3 { min-height: auto; }
  .price-card > p:not(.plan-no) { min-height: auto; }
  .flexible-heading p { margin-top: 25px; }
  .flexible-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .flexible-grid article { min-height: auto; }
  .flexible-grid article:first-child { transform: none; }
  .flexible-grid h3 { margin-top: 50px; }
  .flexible-note { text-align: left; }
  .flexible-note strong { display: block; margin-bottom: 6px; }
  .promise-columns article + article { border-top: 1px solid var(--ink); border-left: 0; }
  .relationship-grid .prose { margin-top: 35px; }
  .community-line { justify-content: flex-start; }
  .faq-list { margin-top: 25px; }
  .message-grid { display: block; margin-top: 45px; }
  .message-copy { margin-top: 45px; }
  .message-closing { margin-top: 70px; transform: none; }
  .entry-action { margin-top: 45px; }
  .site-footer { grid-template-columns: 1fr; gap: 10px; padding-top: 32px; padding-bottom: 32px; }
}

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

/* QUADRA-inspired visual system for KAGARI */
body {
  background: var(--black);
  overflow-x: clip;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.section-grid,
.section-pad {
  width: 100%;
  max-width: none;
}

.section-label {
  color: inherit;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.section-label::before {
  width: 40px;
  opacity: .8;
}

h2 {
  font-family: var(--body);
  font-weight: 500;
}

.button {
  min-height: 52px;
  border-width: 1px;
  font-size: 12px;
  letter-spacing: .04em;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}

.button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.site-header {
  height: 84px;
}

.header-nav {
  align-items: center;
  gap: clamp(12px, 1.5vw, 28px);
}

.header-nav a {
  position: relative;
  min-width: 0;
  padding: 30px 0;
}

.header-nav a::after {
  position: absolute;
  right: 100%;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transition: right .25s ease;
}

.header-nav a:hover::after {
  right: 0;
}

.header-cta {
  min-height: 52px;
  align-self: center;
  margin-right: var(--pad);
  padding: 0 18px;
}

.hero {
  background-size: 25% 100%;
}

.hero-copy {
  align-self: center;
}

.hero-title .hero-brand-name,
.hero-price strong,
.capacity-card > strong,
.plan-price strong,
.regular-price-number strong,
.mentor-card-main strong,
.entry-stamp,
.closing-message::after {
  font-family: var(--display);
  font-weight: 400;
}

.hero-promise {
  color: var(--paper);
  font-family: var(--body);
  font-weight: 600;
}

.hero-promise b,
.price-label span,
.work-link,
.mentor-profile-link,
.works-all {
  color: var(--accent);
}

.hero-price .tape {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .14em;
}

.hero-index {
  pointer-events: none;
}

.ticker div:last-child {
  border-right: 0;
}

.intro {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro::before {
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.intro > .section-label {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.intro-title {
  grid-column: 1;
  grid-row: 2;
  text-align: left;
}

.intro-title h2 {
  font-size: clamp(52px, 6.8vw, 104px);
}

.intro-body {
  grid-column: 2;
  grid-row: 2;
  position: relative;
}

.intro-body p {
  color: #52524f;
  line-height: 2;
}

.margin-note {
  position: relative;
  grid-column: 2;
  grid-row: 3;
  align-self: start;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid var(--ink);
  color: var(--accent);
  transform: none;
}

.four-skills {
  padding-right: 0;
  padding-left: 0;
  background: var(--paper);
  color: var(--ink);
}

.four-skills > .section-heading,
.four-skills > .formula {
  margin-right: var(--pad);
  margin-left: var(--pad);
}

.section-heading {
  grid-template-columns: 17% 1fr;
}

.skill-grid {
  border-right: 0;
  border-left: 0;
  border-color: var(--line);
}

.skill-card {
  min-height: 520px;
  border-color: var(--line);
  transition: background .25s, color .25s;
}

.skill-card:hover {
  background: var(--black);
  color: var(--white);
}

.skill-b {
  margin: 0;
  background: transparent;
  color: inherit;
  box-shadow: none;
}

.skill-b:hover {
  background: var(--black);
  color: var(--white);
}

.skill-card h3 {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(36px, 3.4vw, 58px);
  font-weight: 400;
  letter-spacing: -.055em;
}

.skill-card p {
  color: #62625f;
}

.skill-card:hover p,
.skill-card:hover .skill-no {
  color: var(--mid);
}

.skill-card li {
  border-color: var(--line);
}

.skill-card:hover li {
  border-color: var(--line-dark);
}

.skill-no {
  color: var(--accent);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.skill-en {
  display: flex;
  flex: 1;
  align-items: flex-start;
}

.formula {
  border-color: var(--line);
}

.formula b,
.formula strong {
  color: var(--accent);
}

.learning-flow {
  background: var(--black);
  color: var(--white);
  border-color: var(--line-dark);
}

.flow-intro p,
.flow-track p,
.flow-footnote {
  color: #b8b8b3;
}

.flow-track article {
  border-color: var(--line-dark);
  background: transparent;
  transition: background .25s, color .25s;
}

.flow-track article:hover,
.flow-featured {
  background: var(--paper);
  color: var(--ink);
}

.flow-track article:hover p,
.flow-featured p {
  color: #62625f;
}

.flow-featured {
  transform: none;
  box-shadow: none;
}

.flow-day,
.flow-arrow {
  color: var(--accent);
}

.flow-footnote {
  border-left-color: var(--accent);
}

.support {
  background: var(--paper);
  color: var(--ink);
}

.support-heading p,
.support-list p {
  color: #62625f;
}

.support-list {
  border-top-width: 1px;
}

.support-list article {
  border-color: var(--line);
  transition: padding .25s, background .25s;
}

.support-list article:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: var(--white);
}

.support-list article > span {
  color: var(--accent);
  font-family: var(--display);
  font-weight: 500;
}

.capacity {
  background: var(--accent);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}

.capacity-heading p {
  color: rgba(255,255,255,.78);
}

.capacity-grid {
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.5);
  border-left: 1px solid rgba(255,255,255,.5);
}

.capacity-card,
.capacity-card-dark,
.capacity-card-lined,
.capacity-card-open {
  min-height: 390px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
  background: transparent;
  color: var(--white);
  box-shadow: none;
  transform: none;
}

.capacity-card:hover,
.capacity-card-dark:hover {
  background: var(--paper);
  color: var(--black);
}

.capacity-card > strong {
  font-size: clamp(70px, 8vw, 126px);
  letter-spacing: -.04em;
}

.capacity-card > strong small,
.capacity-card p {
  font-size: 14px;
}

.capacity-no {
  color: currentColor;
  opacity: .7;
}

.capacity-note {
  border-color: var(--white);
  background: transparent;
}

.space-gallery {
  background: var(--paper);
  color: var(--ink);
}

.space-heading p,
.space-photo figcaption,
.space-photo-note {
  color: #62625f;
}

.space-photo-grid {
  gap: 16px;
  border: 0;
}

.space-photo {
  border: 1px solid var(--line);
  background: var(--white);
}

.space-photo-placeholder,
.space-photo-placeholder-dark {
  border: 0;
  border-bottom: 1px solid var(--line);
  background-color: var(--soft);
  color: var(--ink);
  background-image: linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25% 100%;
}

.space-photo:nth-child(2) .space-photo-placeholder,
.space-photo:nth-child(4) .space-photo-placeholder {
  background-color: var(--soft);
  color: var(--ink);
}

.space-photo-placeholder strong {
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  letter-spacing: -.04em;
}

.feedback {
  background: var(--black);
  color: var(--white);
}

.feedback-board {
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  box-shadow: none;
  transform: none;
}

.feedback-board li,
.board-top {
  border-color: var(--line-dark);
}

.feedback-board li span,
.board-top span:last-child {
  color: var(--accent);
}

.mentor {
  padding: 0;
  gap: 0;
  background: var(--black);
  color: var(--white);
}

.mentor-card {
  min-height: 820px;
  margin: 0;
  padding: var(--pad);
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: var(--accent);
  color: var(--white);
  box-shadow: none;
  transform: none;
}

.mentor-copy {
  padding: clamp(80px, 9vw, 140px) var(--pad);
}

.mentor-card-main strong {
  font-size: clamp(64px, 8.4vw, 132px);
  line-height: .88;
  letter-spacing: -.055em;
}

.mentor-tags span {
  border-color: rgba(255,255,255,.65);
}

.mentor-copy > p,
.mentor-principles p {
  color: #b8b8b3;
}

.mentor-principles {
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.mentor-principles article {
  border: 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
}

.mentor-principles article:hover {
  background: var(--paper);
  color: var(--ink);
}

.mentor-principles article:hover p {
  color: #62625f;
}

.mentor-profile-link,
.works-all {
  border-bottom-color: currentColor;
}

.works-all {
  width: min(520px, calc(100% - (var(--pad) * 2)));
}

.works {
  padding-right: 0;
  padding-left: 0;
  background: var(--black);
  color: var(--white);
}

.works-heading,
.works-scroll-guide,
.works-all {
  margin-right: var(--pad);
  margin-left: var(--pad);
}

.works-heading p,
.work-card p {
  color: #aaa9a3;
}

.works-grid {
  width: 100%;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  scrollbar-color: var(--accent) var(--panel);
}

.work-card {
  flex-basis: min(420px, 82vw);
  min-height: 470px;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  box-shadow: none;
  transition: background .25s, color .25s;
}

.work-card:hover {
  background: var(--paper);
  color: var(--ink);
  transform: none;
}

.work-card:hover p {
  color: #62625f;
}

.work-card h3 {
  margin-top: auto;
  font-family: var(--body);
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 600;
  letter-spacing: -.04em;
}

.work-meta {
  color: var(--mid);
}

.curriculum {
  background: var(--paper);
  color: var(--ink);
}

.curriculum-grid {
  border-color: var(--line);
}

.curriculum-grid article {
  min-height: 360px;
  border-color: var(--line);
  background: transparent !important;
  transition: background .25s, color .25s;
}

.curriculum-grid article:hover {
  background: var(--black) !important;
  color: var(--white);
}

.curriculum-grid article > .mono {
  color: var(--accent);
}

.outputs {
  background: var(--accent);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}

.outputs-copy p {
  color: rgba(255,255,255,.8);
}

.output-stack {
  display: grid;
  min-height: 0;
  border-top: 1px solid rgba(255,255,255,.5);
  border-left: 1px solid rgba(255,255,255,.5);
}

.output-card,
.output-card:nth-child(n) {
  position: static;
  width: auto;
  min-height: 145px;
  padding: 22px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
  background: transparent;
  color: var(--white);
  box-shadow: none;
  transform: none;
}

.output-card:last-child {
  background: var(--paper);
  color: var(--black);
}

.output-card strong {
  margin: 18px 0 8px;
  font-weight: 500;
}

.small-work {
  background: var(--black);
  color: var(--white);
  border-color: var(--line-dark);
}

.small-work-copy p,
.small-work-copy li {
  color: #b8b8b3;
}

.small-work-copy ol,
.small-work-copy li {
  border-color: var(--line-dark);
}

.small-work-copy li span {
  color: var(--accent);
}

.career,
.timeline {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

.career-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.career-grid article,
.career-grid .career-dark {
  min-height: 260px;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  transform: none;
  transition: background .25s, color .25s;
}

.career-grid article:hover {
  background: var(--black);
  color: var(--white);
}

.career-grid article:hover p {
  color: var(--mid);
}

.career-grid article::after {
  display: block;
  margin-top: 28px;
  color: var(--accent);
  font-size: 20px;
  content: "↗";
}

.timeline-list article {
  border-color: var(--line);
}

.timeline-list article > .mono {
  color: var(--accent);
}

.base-day {
  background: var(--black);
  color: var(--white);
}

.day-schedule {
  border-color: var(--line-dark);
}

.day-schedule div {
  border-color: var(--line-dark);
}

.day-schedule time {
  color: var(--accent);
}

.day-note {
  border-left-color: var(--accent);
  color: #b8b8b3;
}

.voices {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

.voices-track {
  width: 100%;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-color: var(--accent) var(--soft);
}

.voice-card,
.voice-card-dark {
  flex-basis: min(440px, 82vw);
  min-height: 370px;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  transition: background .25s, color .25s;
}

.voice-card:hover {
  background: var(--black);
  color: var(--white);
}

.voice-card blockquote {
  font-weight: 500;
}

.voice-top > span:first-child,
.voices-guide,
.works-scroll-guide {
  color: var(--accent);
}

.pricing {
  background: var(--black);
  color: var(--white);
}

.pricing-heading p,
.regular-price-reference p,
.price-card > p:not(.plan-no),
.pricing-notes {
  color: #b8b8b3;
}

.regular-price-reference {
  border-color: var(--line-dark);
}

.pricing-grid {
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.price-card,
.price-card-featured,
.price-card-support {
  margin: 0;
  padding: 32px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}

.price-card-featured {
  background: var(--paper);
  color: var(--black);
}

.price-card-support {
  background: var(--accent);
  color: var(--white);
}

.price-card-featured > p:not(.plan-no) {
  color: #62625f;
}

.price-card-support > p:not(.plan-no) {
  color: rgba(255,255,255,.8);
}

.plan-no,
.corner-label {
  color: var(--accent);
}

.corner-label {
  top: 0;
  right: 0;
  padding: 7px 12px;
  border: 0;
  background: var(--accent);
  color: var(--white);
  transform: none;
}

.plan-price strong {
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -.045em;
}

.price-card ul,
.price-card li {
  border-color: currentColor;
}

.pricing-notes {
  border-color: var(--line-dark);
}

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

.flexible-grid {
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.5);
  border-left: 1px solid rgba(255,255,255,.5);
}

.flexible-grid article,
.flexible-grid article:first-child {
  min-height: 330px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.5);
  background: transparent;
  color: var(--white);
  transform: none;
}

.flexible-grid article:first-child {
  background: var(--paper);
  color: var(--black);
}

.flexible-note {
  border-color: var(--white);
}

.promise,
.relationship,
.closing-message {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

.promise-title-wrap h2 span {
  color: transparent;
  -webkit-text-stroke-color: var(--ink);
}

.promise-columns {
  border-color: var(--line);
}

.promise-columns article + article {
  border-color: var(--line);
  background: var(--white);
}

.promise-columns li,
.community-line {
  border-color: var(--line);
}

.relationship-grid .prose,
.promise-columns li {
  color: #62625f;
}

.community-line i {
  color: var(--accent);
}

.faq {
  background: var(--black);
  color: var(--white);
  border-color: var(--line-dark);
}

.faq-list {
  border-color: var(--white);
}

.faq-list details {
  border-color: var(--line-dark);
}

.faq-list summary::after {
  color: var(--accent);
}

.faq-list details p {
  color: #b8b8b3;
}

.closing-message::after {
  color: transparent;
  -webkit-text-stroke-color: var(--line);
}

.message-copy p {
  color: #52524f;
}

.message-signature {
  border-color: var(--line);
}

.message-signature strong {
  font-family: var(--display);
  font-weight: 400;
}

.message-closing {
  padding: 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.message-closing::after {
  margin-left: 18px;
  color: var(--accent);
  content: "↗";
}

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

.entry-action {
  border-color: rgba(255,255,255,.7);
}

.button-invert {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button-invert:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.entry-action small {
  color: rgba(255,255,255,.72);
}

.entry-stamp {
  color: transparent;
  -webkit-text-stroke-color: rgba(255,255,255,.25);
}

.site-footer {
  min-height: 180px;
  padding: 52px var(--pad);
  border-color: var(--line-dark);
  background: var(--black);
}

.site-footer .brand-mark {
  background: linear-gradient(135deg, transparent 45%, currentColor 46%, currentColor 52%, transparent 53%);
  box-shadow: none;
}

@media (max-width: 1000px) {
  .site-header {
    height: 70px;
    min-height: 70px;
  }

  .header-cta {
    margin-right: var(--pad);
  }

  .hero {
    min-height: auto;
  }

  .intro::before {
    display: none;
  }

  .intro-body {
    grid-column: 2;
    grid-row: 2;
  }

  .margin-note {
    grid-column: 2;
    grid-row: 3;
  }

  .mentor {
    grid-template-columns: minmax(300px,.8fr) 1.2fr;
  }

  .mentor-card {
    min-height: 700px;
  }
}

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

  .site-header {
    padding-left: var(--pad);
  }

  .brand {
    max-width: none;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .brand-logo-mark {
    width: 34px;
    height: 34px;
  }

  .brand span:last-child {
    font-size: 12px;
  }

  .brand b {
    font-size: 16px;
  }

  .header-cta {
    min-height: 46px;
    margin-right: var(--pad);
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    padding: 38px var(--pad) 68px;
    background-size: 50% 100%;
  }

  .hero-brand-type {
    font-size: 14px;
  }

  .hero-title .hero-brand-name {
    font-size: clamp(76px, 25vw, 106px);
  }

  .hero-statement {
    margin-top: 54px;
    font-size: clamp(28px, 8.2vw, 42px);
  }

  .hero-price {
    width: 100%;
    margin-top: 72px;
    margin-right: 0;
    transform: none;
  }

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

  .ticker div,
  .ticker div:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .ticker div:last-child {
    border-bottom: 0;
  }

  .four-skills > .section-heading,
  .four-skills > .formula,
  .works-heading,
  .works-scroll-guide,
  .works-all {
    margin-right: var(--pad);
    margin-left: var(--pad);
  }

  .skill-card {
    min-height: 430px;
    padding: 24px var(--pad);
  }

  .skill-card h3 {
    font-size: 44px;
  }

  .capacity-grid,
  .career-grid,
  .output-stack {
    border-left: 0;
  }

  .capacity-card,
  .career-grid article,
  .output-card,
  .output-card:nth-child(n) {
    border-right: 0;
  }

  .space-photo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    border-left: 0;
  }

  .space-photo {
    border: 1px solid var(--line);
  }

  .space-photo-main,
  .space-photo-wide {
    grid-column: auto;
  }

  .space-photo-main .space-photo-placeholder,
  .space-photo-wide .space-photo-placeholder,
  .space-photo-placeholder {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .mentor {
    display: block;
  }

  .mentor-card {
    min-height: 540px;
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .mentor-copy {
    padding: 84px var(--pad);
  }

  .mentor-principles {
    border-left: 0;
  }

  .mentor-principles article {
    border-right: 0;
  }

  .work-card,
  .voice-card,
  .voice-card-dark {
    flex-basis: min(340px, 88vw);
  }

  .work-card {
    min-height: 430px;
  }

  .pricing-grid,
  .flexible-grid {
    border-left: 0;
  }

  .price-card,
  .price-card-featured,
  .price-card-support,
  .flexible-grid article,
  .flexible-grid article:first-child {
    border-right: 0;
  }

  .message-closing {
    font-size: clamp(26px, 8vw, 38px);
  }

  .entry {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .site-footer {
    min-height: 0;
    padding-top: 60px;
    padding-bottom: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-nav a::after,
  .skill-card,
  .flow-track article,
  .support-list article,
  .mentor-principles article,
  .work-card,
  .curriculum-grid article,
  .career-grid article,
  .voice-card {
    transition: none;
  }
}

/* Shared section-heading contract and ultrawide readable-content cap */
.section-grid,
.section-pad {
  width: 100%;
  max-width: none;
  padding-right: var(--content-inset);
  padding-left: var(--content-inset);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, .5fr);
  gap: clamp(32px, 3.5vw, 64px);
  align-items: start;
  min-width: 0;
  margin-bottom: 58px;
}

.section-heading-main {
  min-width: 0;
}

.section-heading-main > .section-label {
  display: flex;
  width: fit-content;
  margin: 0 0 clamp(16px, 1.4vw, 24px);
}

.section-heading-main > h2 {
  margin: 0;
}

.section-heading-lead {
  min-width: 0;
  max-width: none;
  margin: clamp(0px, 1vw, 14px) 0 0;
  font-size: 16px;
  line-height: 2;
}

.section-heading-row--solo {
  margin-bottom: 40px;
}

.four-skills {
  padding-right: 0;
  padding-left: 0;
}

.four-skills > .section-heading-row,
.four-skills > .formula {
  margin-right: var(--content-inset);
  margin-left: var(--content-inset);
}

.flow-intro {
  margin-bottom: 65px;
}

.support {
  display: block;
}

.support-heading {
  position: static;
  margin-bottom: 58px;
}

.capacity-heading {
  margin-bottom: 62px;
}

.space-heading {
  margin-bottom: 60px;
}

.feedback-title-wrap {
  margin-bottom: 40px;
}

.feedback-board {
  margin-top: 0;
}

.mentor {
  display: block;
  padding-right: 0;
  padding-left: 0;
}

.mentor-heading {
  margin-bottom: 0;
  padding: clamp(80px, 9vw, 140px) var(--content-inset) clamp(56px, 6vw, 96px);
}

.mentor-body {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.45fr);
  gap: clamp(44px, 8vw, 120px);
  width: min(calc(100% - (var(--pad) * 2)), calc(var(--max) - (var(--pad) * 2)));
  margin-right: auto;
  margin-left: auto;
}

.mentor-copy {
  max-width: 1100px;
  padding: 0 var(--pad) clamp(80px, 9vw, 140px) 0;
}

.mentor-copy > p:first-child {
  margin-top: 0;
}

.works {
  padding-right: 0;
  padding-left: 0;
}

.works-heading,
.works-scroll-guide,
.works-all {
  margin-right: var(--content-inset);
  margin-left: var(--content-inset);
}

.works-heading {
  margin-bottom: 58px;
}

.works-grid {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.section-heading.compact {
  margin-bottom: 58px;
}

.section-heading-row.section-heading.compact {
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, .5fr);
  gap: clamp(32px, 3.5vw, 64px);
}

.outputs {
  display: block;
}

.outputs-heading {
  margin-bottom: 58px;
}

.outputs-heading .section-heading-lead {
  max-width: none;
}

.output-stack {
  margin-right: 0;
  margin-left: auto;
}

.small-work {
  display: block;
}

.small-work-title {
  margin-bottom: 56px;
}

.small-work-copy {
  padding-top: 0;
}

.small-work-copy ol {
  margin-top: 0;
}

.day-title-wrap {
  margin-bottom: 45px;
}

.day-schedule {
  margin-top: 0;
}

.voices {
  padding-right: 0;
  padding-left: 0;
}

.voices-heading,
.voices-guide,
.voices-note {
  margin-right: var(--content-inset);
  margin-left: var(--content-inset);
}

.voices-heading {
  margin-bottom: 48px;
}

.voices-guide {
  margin-top: 0;
}

.voices-track {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.pricing-heading {
  margin-bottom: 55px;
}

.flexible-heading {
  margin-bottom: 70px;
}

.flexible-grid {
  margin-top: 0;
}

.promise-title-wrap {
  margin-bottom: 30px;
}

.promise-columns {
  margin-top: 0;
}

.relationship-grid {
  margin-top: 0;
  margin-bottom: 0;
}

.relationship-body {
  margin-top: 0;
}

.faq-title-wrap {
  margin-bottom: 40px;
}

.faq-list {
  margin-top: 0;
}

.message-grid {
  margin-top: 0;
  margin-bottom: 70px;
}

.message-grid .message-copy {
  max-width: none;
  margin-left: 0;
}

.entry {
  display: block;
}

.entry-heading {
  margin-bottom: 58px;
}

.entry-heading .section-heading-lead {
  max-width: none;
}

.entry-action {
  width: min(100%, 760px);
  margin: 0 0 0 auto;
}

@media (max-width: 760px) {
  .section-heading-row {
    display: block;
    margin-bottom: 40px;
  }

  .section-heading-main > .section-label {
    margin-bottom: 18px;
  }

  .section-heading-lead {
    margin-top: 28px;
  }

  .four-skills > .section-heading-row,
  .four-skills > .formula,
  .works-heading,
  .works-scroll-guide,
  .works-all,
  .voices-heading,
  .voices-guide,
  .voices-note {
    margin-right: var(--content-inset);
    margin-left: var(--content-inset);
  }

  .section-heading-row--solo,
  .feedback-title-wrap,
  .day-title-wrap,
  .promise-title-wrap,
  .faq-title-wrap {
    margin-bottom: 40px;
  }

  .flow-intro,
  .support-heading,
  .capacity-heading,
  .space-heading,
  .works-heading,
  .outputs-heading,
  .small-work-title,
  .pricing-heading,
  .flexible-heading,
  .relationship-grid,
  .message-grid,
  .entry-heading {
    margin-bottom: 40px;
  }

  .relationship-grid {
    margin-bottom: 0;
  }

  .mentor-heading {
    padding: 84px var(--content-inset) 56px;
  }

  .mentor-body {
    display: block;
    width: 100%;
  }

  .mentor-copy {
    max-width: none;
    padding: 84px var(--content-inset);
  }

  .voices {
    padding-right: 0;
    padding-left: 0;
  }

  .voices-track {
    width: 100%;
    padding-right: 18px;
  }

  .message-grid .message-copy {
    margin-top: 28px;
  }

  .entry-action {
    width: 100%;
    margin-top: 45px;
  }
}

/* Keep the first viewport compact on tablets just above the stacked breakpoint. */
@media (min-width: 761px) and (max-width: 1100px) {
  .hero {
    min-height: auto;
  }
}
