:root {
  --ink: #141210;
  --ink-soft: #201d1a;
  --paper: #efe9dd;
  --paper-bright: #faf7f0;
  --silver: #a8a29a;
  --lavender: #b9b7c9;
  --orange: #ff6b3d;
  --line-dark: rgba(20, 18, 16, 0.22);
  --line-light: rgba(239, 233, 221, 0.22);
  --header-height: 74px;
  --container: 1240px;
  --display: "Arial Narrow", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper-bright);
  color: var(--ink);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(239, 233, 221, 0.14);
  background: var(--ink);
  color: var(--paper);
}

.header-inner {
  width: min(100%, 1500px);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 42px);
  display: grid;
  grid-template-columns: minmax(178px, 1fr) auto minmax(178px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  height: 48px;
  max-width: 205px;
  text-decoration: none;
}

.brand-link img {
  width: 190px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 30px);
}

.desktop-nav a {
  position: relative;
  color: rgba(239, 233, 221, 0.74);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-action {
  justify-self: end;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(239, 233, 221, 0.38);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 90;
  display: none;
  overflow-y: auto;
  background: var(--ink);
  color: var(--paper);
}

.mobile-panel[data-open="true"] {
  display: block;
}

.mobile-nav {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 30px 22px 60px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(24px, 7vw, 38px);
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.mobile-nav a::after {
  content: "↗";
  color: var(--orange);
  font-family: var(--mono);
  font-size: 14px;
}

.mobile-contact-note {
  margin-top: 34px;
  color: var(--silver);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main {
  padding-top: var(--header-height);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(calc(100% - 40px), 1480px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 138px) 0;
}

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

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

.section-lavender {
  background: var(--lavender);
}

.eyebrow,
.frame-code,
.meta-label,
.breadcrumb,
.legal-updated,
.field-note {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--orange);
  content: "";
}

.display-title,
.page-title,
.section-title,
.course-title,
.legal-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.93;
  text-wrap: balance;
}

.display-title {
  max-width: 790px;
  font-size: clamp(54px, 8.4vw, 132px);
  text-transform: uppercase;
}

.page-title {
  max-width: 900px;
  font-size: clamp(54px, 8vw, 116px);
  text-transform: uppercase;
}

.section-title {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 88px);
}

.title-imprint {
  position: relative;
  display: inline-block;
  color: var(--orange);
}

.title-imprint::after {
  position: absolute;
  inset: 13% -0.045em auto auto;
  width: 100%;
  height: 100%;
  border: 1px solid currentColor;
  opacity: 0.36;
  content: "";
  pointer-events: none;
}

.lede {
  max-width: 690px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2.2vw, 27px);
  line-height: 1.45;
}

.body-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(20, 18, 16, 0.72);
  font-size: clamp(16px, 1.4vw, 19px);
}

.section-dark .body-copy {
  color: rgba(239, 233, 221, 0.7);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button::after,
.text-link::after {
  content: "↗";
  color: var(--orange);
  font-size: 14px;
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink);
}

.button:hover::after,
.text-link:hover::after {
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(20, 18, 16, 0.38);
  background: transparent;
  color: var(--ink);
}

.button-light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.button-compact {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 10px;
}

.home-hero {
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: stretch;
  background: var(--paper);
}

.hero-layout {
  display: grid;
  grid-template-columns: 76px minmax(0, 1.15fr) minmax(350px, 0.85fr);
  min-height: inherit;
}

.hero-index {
  padding: clamp(30px, 5vw, 68px) 12px;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: rgba(20, 18, 16, 0.58);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-index span:not(:first-child) {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-copy {
  padding: clamp(54px, 8vw, 126px) clamp(24px, 5vw, 82px) clamp(54px, 7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual {
  min-width: 0;
  padding: clamp(34px, 5vw, 72px) clamp(22px, 3vw, 48px) clamp(34px, 5vw, 72px) 0;
  display: flex;
  align-items: center;
}

.frame-stack {
  position: relative;
  width: 100%;
  padding: 26px 0 0 28px;
}

.frame-stack::before,
.frame-stack::after {
  position: absolute;
  inset: 0 26px 24px 0;
  border: 1px solid var(--orange);
  content: "";
  pointer-events: none;
}

.frame-stack::after {
  inset: 13px 13px 11px 15px;
  border-color: rgba(20, 18, 16, 0.32);
}

.frame-media {
  position: relative;
  z-index: 2;
  margin: 0;
  background: var(--silver);
}

.frame-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 57% center;
  filter: saturate(0.62) contrast(1.06) sepia(0.12);
}

.frame-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 13px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.registration-mark {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.registration-mark.top-left {
  top: 18px;
  left: 18px;
}

.registration-mark.bottom-right {
  right: -8px;
  bottom: 2px;
  transform: rotate(180deg);
}

.direction-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.learning-sequence {
  border-top: 1px solid var(--line-light);
}

.sequence-row {
  display: grid;
  grid-template-columns: 54px minmax(150px, 0.72fr) minmax(200px, 1.28fr);
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
  align-items: start;
}

.sequence-row strong {
  font-family: var(--display);
  font-size: clamp(23px, 3vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.sequence-row p {
  margin: 0;
  color: rgba(239, 233, 221, 0.66);
}

.sequence-number {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.course-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 48px;
  margin-bottom: 54px;
  align-items: end;
}

.course-intro p {
  margin: 0;
}

.course-list {
  border-top: 1px solid var(--line-dark);
}

.course-row {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(230px, 0.9fr) minmax(260px, 1.25fr) 132px 54px;
  gap: 22px;
  align-items: center;
  min-height: 158px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
  text-decoration: none;
  isolation: isolate;
}

.course-row::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--ink);
  content: "";
  transition: transform 220ms ease;
}

.course-row:hover::before,
.course-row:focus-visible::before {
  transform: scaleY(1);
}

.course-row:hover,
.course-row:focus-visible {
  color: var(--paper);
}

.course-row:hover .course-description,
.course-row:focus-visible .course-description {
  color: rgba(239, 233, 221, 0.68);
}

.course-number,
.course-price {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-number {
  color: var(--orange);
}

.course-title {
  font-size: clamp(31px, 4vw, 56px);
}

.course-description {
  margin: 0;
  color: rgba(20, 18, 16, 0.66);
}

.course-price {
  text-align: right;
}

.course-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--orange);
  font-size: 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 150px) 0 clamp(66px, 8vw, 112px);
  border-bottom: 1px solid var(--line-dark);
}

.page-hero::after {
  position: absolute;
  top: 0;
  right: clamp(20px, 6vw, 90px);
  width: min(24vw, 330px);
  height: 100%;
  border-inline: 1px solid var(--line-dark);
  background: repeating-linear-gradient(180deg, transparent 0 78px, rgba(20, 18, 16, 0.07) 79px 80px);
  content: "";
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  margin-bottom: 24px;
  color: rgba(20, 18, 16, 0.58);
}

.breadcrumb a {
  text-decoration: none;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(48px, 10vw, 144px);
  align-items: start;
}

.image-frame {
  position: relative;
  margin: 0;
  padding: 18px 18px 0 0;
}

.image-frame::before {
  position: absolute;
  inset: 0 0 36px 18px;
  border: 1px solid var(--orange);
  content: "";
}

.image-frame img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--silver);
  filter: saturate(0.74) contrast(1.04);
}

.image-frame figcaption {
  position: relative;
  padding: 10px 0 0 18px;
  color: rgba(20, 18, 16, 0.6);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manifest-list,
.detail-list,
.review-standards {
  border-top: 1px solid var(--line-dark);
}

.review-standards {
  margin-top: 48px;
}

.manifest-row,
.detail-row,
.review-standard {
  display: grid;
  grid-template-columns: 70px minmax(190px, 0.64fr) minmax(230px, 1.36fr);
  gap: 24px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
}

.manifest-row h3,
.detail-row h3,
.review-standard h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.manifest-row p,
.detail-row p,
.review-standard p {
  margin: 0;
  color: rgba(20, 18, 16, 0.68);
}

.service-detail {
  display: grid;
  grid-template-columns: 86px minmax(260px, 0.9fr) minmax(280px, 1.1fr) 170px;
  gap: 28px;
  padding: clamp(44px, 6vw, 82px) 0;
  border-top: 1px solid var(--line-dark);
  align-items: start;
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.service-detail h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -0.05em;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-detail p {
  margin: 0;
  color: rgba(20, 18, 16, 0.7);
}

.service-scope {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-scope li {
  position: relative;
  padding: 9px 0 9px 20px;
  border-bottom: 1px solid rgba(20, 18, 16, 0.13);
}

.service-scope li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "+";
  font-family: var(--mono);
  font-weight: 800;
}

.service-side {
  text-align: right;
}

.service-side .price-large {
  display: block;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-note {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.28);
  color: rgba(20, 18, 16, 0.7);
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(52px, 9vw, 132px);
  align-items: start;
}

.process-grid .image-frame {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.process-steps {
  counter-reset: process;
  border-top: 1px solid var(--line-dark);
}

.process-step {
  position: relative;
  padding: 30px 0 31px 74px;
  border-bottom: 1px solid var(--line-dark);
  counter-increment: process;
}

.process-step::before {
  position: absolute;
  top: 32px;
  left: 0;
  color: var(--orange);
  content: "0" counter(process);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.process-step h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.process-step p {
  margin: 12px 0 0;
  color: rgba(20, 18, 16, 0.68);
}

.review-empty {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 40px;
  padding: clamp(44px, 7vw, 84px);
  border: 1px solid var(--line-light);
  background: var(--ink-soft);
  color: var(--paper);
}

.review-empty .empty-mark {
  color: var(--orange);
  font-family: var(--display);
  font-size: 112px;
  font-weight: 900;
  line-height: 0.8;
}

.review-empty h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 74px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.review-empty p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(239, 233, 221, 0.68);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(48px, 9vw, 126px);
  align-items: start;
}

.contact-details {
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.contact-item {
  padding: 21px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-item span {
  display: block;
  margin-bottom: 7px;
  color: rgba(20, 18, 16, 0.55);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item p {
  margin: 0;
  font-weight: 600;
}

.contact-form {
  padding: clamp(28px, 5vw, 58px);
  background: var(--ink);
  color: var(--paper);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.form-intro {
  margin-bottom: 36px;
}

.form-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.form-intro p {
  max-width: 600px;
  margin: 14px 0 0;
  color: rgba(239, 233, 221, 0.65);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(239, 233, 221, 0.76);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(239, 233, 221, 0.34);
  border-radius: 0;
  background: #201d1a;
  color: var(--paper);
  caret-color: var(--orange);
}

.field textarea {
  min-height: 156px;
  resize: vertical;
}

.field select {
  color-scheme: dark;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(239, 233, 221, 0.38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: 2px solid transparent;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.submit-button {
  min-width: 188px;
  flex: 0 0 auto;
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.submit-button::after {
  color: var(--ink);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--paper);
  font-size: 14px;
}

.form-status[data-state="success"] {
  color: #b9efba;
}

.form-status[data-state="error"] {
  color: #ffb29c;
}

.legal-wrap {
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-top: 8px;
}

.legal-aside p {
  margin: 0 0 18px;
}

.legal-aside a {
  display: block;
  padding: 8px 0;
  color: rgba(20, 18, 16, 0.62);
  font-size: 14px;
}

.legal-content {
  max-width: 830px;
}

.legal-content section {
  scroll-margin-top: calc(var(--header-height) + 28px);
  padding: 0 0 40px;
  margin: 0 0 40px;
  border-bottom: 1px solid var(--line-dark);
}

.legal-content h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.legal-content h3 {
  margin: 25px 0 10px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: rgba(20, 18, 16, 0.74);
}

.legal-content ul {
  padding-left: 20px;
}

.legal-contact {
  padding: 28px;
  border-left: 4px solid var(--orange);
  background: var(--paper-bright);
}

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

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(150px, 0.55fr) minmax(220px, 0.8fr);
  gap: clamp(44px, 8vw, 112px);
  padding: clamp(58px, 8vw, 108px) 0 56px;
}

.footer-brand img {
  width: 238px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(239, 233, 221, 0.66);
}

.footer-column h2 {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: rgba(239, 233, 221, 0.72);
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(239, 233, 221, 0.52);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

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

  .desktop-nav {
    justify-content: flex-end;
    gap: 16px;
  }

  .header-action {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 60px minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

  .course-row {
    grid-template-columns: 52px minmax(220px, 0.9fr) minmax(230px, 1.1fr) 100px 44px;
    gap: 16px;
  }

  .service-detail {
    grid-template-columns: 66px minmax(240px, 0.9fr) minmax(260px, 1.1fr);
  }

  .service-side {
    grid-column: 2 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .service-side .price-large {
    margin: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand-link img {
    width: 176px;
    height: 42px;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-layout {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .hero-copy {
    min-height: calc(82svh - var(--header-height));
  }

  .hero-visual {
    grid-column: 2;
    padding: 0 28px 74px;
  }

  .frame-stack {
    max-width: 660px;
  }

  .frame-media img {
    aspect-ratio: 16 / 10;
  }

  .direction-grid,
  .editorial-split,
  .process-grid,
  .contact-layout,
  .legal-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-grid .image-frame,
  .legal-aside {
    position: static;
  }

  .legal-aside a {
    display: inline-block;
    margin: 0 16px 6px 0;
  }

  .course-intro {
    grid-template-columns: 1fr;
  }

  .course-row {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    min-height: 0;
    padding: 30px 0;
  }

  .course-description {
    grid-column: 2 / -1;
  }

  .course-price {
    grid-column: 2;
    text-align: left;
  }

  .course-arrow {
    grid-column: 3;
    grid-row: 2;
  }

  .service-detail {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .service-copy {
    grid-column: 2;
  }

  .service-side {
    grid-column: 2;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container,
  .container-wide {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    padding-inline: 14px;
  }

  .brand-link {
    max-width: 174px;
  }

  .brand-link img {
    width: 168px;
  }

  .hero-layout {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .hero-index {
    padding: 25px 7px;
  }

  .hero-copy {
    min-height: auto;
    padding: 72px 18px 54px 22px;
  }

  .display-title {
    font-size: clamp(50px, 16vw, 78px);
  }

  .page-title {
    font-size: clamp(48px, 15vw, 74px);
  }

  .hero-visual {
    padding: 0 17px 60px;
  }

  .frame-stack {
    padding: 18px 0 0 18px;
  }

  .frame-stack::before {
    inset: 0 16px 16px 0;
  }

  .frame-stack::after {
    inset: 8px 8px 8px 9px;
  }

  .frame-media img {
    aspect-ratio: 4 / 5;
  }

  .button-row,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link,
  .submit-button {
    width: 100%;
  }

  .sequence-row,
  .manifest-row,
  .detail-row,
  .review-standard {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
  }

  .sequence-row p,
  .manifest-row p,
  .detail-row p,
  .review-standard p {
    grid-column: 2;
  }

  .course-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .course-title,
  .course-description,
  .course-price,
  .course-arrow {
    grid-column: 2;
  }

  .course-arrow {
    grid-row: auto;
  }

  .service-detail {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .service-side {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .review-empty {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .review-empty .empty-mark {
    font-size: 82px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .contact-form {
    padding: 28px 20px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 370px) {
  .brand-link img {
    width: 150px;
  }

  .display-title {
    font-size: 48px;
  }

  .page-title {
    font-size: 45px;
  }

  .course-title {
    font-size: 29px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-row,
  .legal-aside {
    display: none !important;
  }

  main {
    padding-top: 0;
  }

  body {
    background: #fff;
    color: #000;
  }

  .legal-wrap {
    display: block;
  }
}
