@charset "UTF-8";

:root {
  --paper: #fff;
  --paper-deep: #fff;
  --ink: #000;
  --ink-soft: #000;
  --muted: #000;
  --signal: #000;
  --signal-dark: #000;
  --signal-bright: #fff;
  --blue: #000;
  --white: #fff;
  --line: #000;
  --line-light: #fff;
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
  --page: min(1440px, 100%);
  --gutter: clamp(20px, 4.5vw, 72px);
  --section-y: clamp(72px, 10vw, 148px);
  --header-h: 72px;
  --notice-h: 34px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

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

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

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

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

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--ink);
}

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

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

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

.notice-strip {
  position: sticky;
  top: 0;
  z-index: 70;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  color: var(--white);
  background: var(--signal);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 34px;
  text-transform: uppercase;
  white-space: nowrap;
}

.notice-track {
  display: flex;
  width: max-content;
  animation: notice-scroll 28s linear infinite;
}

.notice-track span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-right: 34px;
}

.notice-track span::after {
  content: "///";
  color: var(--white);
}

@keyframes notice-scroll {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: var(--notice-h);
  z-index: 60;
  height: var(--header-h);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto auto;
  align-items: stretch;
  width: var(--page);
  height: 100%;
  margin: 0 auto;
  padding-left: var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  color: var(--signal);
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  border-left: 1px solid var(--ink);
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border-right: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background-color 160ms ease;
}

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

.header-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  border: 0;
  color: var(--white);
  background: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.header-book:hover {
  background: var(--signal);
}

.menu-toggle {
  display: none;
  width: 72px;
  border: 0;
  border-left: 1px solid var(--ink);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: calc(var(--notice-h) + var(--header-h)) 0 auto 0;
  z-index: 55;
  max-height: calc(100vh - var(--notice-h) - var(--header-h));
  max-height: calc(100dvh - var(--notice-h) - var(--header-h));
  overflow-y: auto;
  overscroll-behavior: contain;
  border-bottom: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
}

.mobile-nav[data-open="true"] {
  display: grid;
}

.mobile-nav a {
  min-height: 56px;
  padding: 16px var(--gutter);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-nav a:last-child {
  color: var(--white);
  background: var(--signal);
}

.shell {
  width: var(--page);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-y);
  border-top: 1px solid var(--ink);
}

.section-tight {
  padding-block: clamp(50px, 7vw, 96px);
}

.kicker,
.index-label,
.eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(24px, 4vw, 52px);
}

.kicker::before {
  width: 34px;
  height: 2px;
  background: var(--signal);
  content: "";
}

.display {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(52px, 9.2vw, 144px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}

.display .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.display-sm {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(44px, 7vw, 106px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
}

.heading-lg {
  max-width: 950px;
  margin: 0;
  font-size: clamp(38px, 5.8vw, 82px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.heading-md {
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.lede {
  max-width: 780px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.body-copy {
  max-width: 720px;
  color: var(--ink-soft);
}

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

.body-copy p:last-child {
  margin-bottom: 0;
}

.hero {
  min-height: min(900px, calc(100vh - 106px));
  padding: clamp(52px, 7vw, 110px) 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(270px, 4fr);
  min-height: 650px;
  border-bottom: 1px solid var(--ink);
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 0 var(--gutter) clamp(48px, 6vw, 88px);
  border-right: 1px solid var(--ink);
}

.hero-main .kicker {
  margin-bottom: clamp(48px, 7vw, 90px);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-top: clamp(54px, 8vw, 110px);
}

.hero-bottom .lede {
  max-width: 650px;
}

.hero-aside {
  display: grid;
  grid-template-rows: 1fr auto auto;
  min-width: 0;
  color: var(--white);
  background: var(--blue);
}

.hero-photo {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: var(--ink);
}

.hero-photo::after {
  position: absolute;
  inset: 35% 0 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent, var(--ink));
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  animation: hero-garment-drift 14s ease-in-out infinite alternate;
}

.hero-photo-note {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-photo-note span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

@keyframes hero-garment-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(0, -10px, 0);
  }
}

.hero-aside-block {
  padding: 28px;
  border-top: 1px solid var(--line-light);
}

.hero-aside-block p {
  margin: 9px 0 0;
  color: var(--white);
  font-size: 15px;
}

.compliance-line {
  margin-top: 26px;
  padding: 17px 20px;
  border-left: 4px solid var(--signal);
  background: var(--paper-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

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

.button-secondary {
  color: var(--ink);
  background: transparent;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--blue);
}

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

.button-light:hover {
  color: var(--white);
  background: var(--signal);
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(190px, 3fr) minmax(0, 9fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
}

.apparel-backdrop {
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
}

.apparel-backdrop > :not(.apparel-object) {
  position: relative;
  z-index: 2;
}

.apparel-object {
  --object-opacity: 0.58;
  --object-rotate-x: 4deg;
  --object-rotate-y: -10deg;
  --object-rotate-z: -5deg;
  --object-drift-x: -12px;
  position: absolute;
  z-index: 1;
  width: clamp(340px, 42vw, 620px);
  margin: 0;
  pointer-events: none;
  opacity: var(--object-opacity);
  perspective: 1200px;
  transform-style: preserve-3d;
  animation: apparel-object-levitate 13s ease-in-out infinite alternate;
}

.apparel-object::after {
  position: absolute;
  right: 14%;
  bottom: -2%;
  left: 14%;
  z-index: -1;
  height: 13%;
  border-radius: 50%;
  background: rgb(0 0 0 / 0.26);
  filter: blur(24px);
  transform: perspective(700px) rotateX(66deg);
  content: "";
}

.apparel-object img {
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.13);
  mix-blend-mode: multiply;
  transform:
    rotateX(var(--object-rotate-x))
    rotateY(var(--object-rotate-y))
    rotateZ(var(--object-rotate-z));
  transform-style: preserve-3d;
  -webkit-mask-image: radial-gradient(ellipse 78% 76% at center, #000 48%, transparent 84%);
  mask-image: radial-gradient(ellipse 78% 76% at center, #000 48%, transparent 84%);
}

.apparel-object-loopwheel {
  top: clamp(32px, 5vw, 78px);
  right: max(-150px, -7vw);
  width: clamp(360px, 40vw, 570px);
}

.apparel-object-twill {
  --object-opacity: 0.52;
  --object-rotate-x: -5deg;
  --object-rotate-y: 12deg;
  --object-rotate-z: 7deg;
  --object-drift-x: 15px;
  top: clamp(40px, 6vw, 92px);
  right: max(-170px, -8vw);
}

.apparel-object-tee {
  --object-opacity: 0.64;
  --object-rotate-x: 3deg;
  --object-rotate-y: -12deg;
  --object-rotate-z: -7deg;
  --object-drift-x: -10px;
  top: clamp(46px, 7vw, 110px);
  right: max(-160px, -7vw);
}

.apparel-object-weave {
  --object-opacity: 0.48;
  --object-rotate-x: -3deg;
  --object-rotate-y: 10deg;
  --object-rotate-z: 6deg;
  --object-drift-x: 12px;
  top: clamp(34px, 5vw, 82px);
  right: max(-180px, -9vw);
  width: clamp(330px, 38vw, 540px);
}

@keyframes apparel-object-levitate {
  from {
    transform: perspective(1200px) translate3d(0, 0, 0);
  }

  to {
    transform: perspective(1200px) translate3d(var(--object-drift-x), -24px, 42px);
  }
}

.clarity-grid {
  margin-top: clamp(48px, 7vw, 90px);
  border: 1px solid var(--ink);
}

.clarity-panel {
  min-width: 0;
  padding: clamp(28px, 4vw, 58px);
}

.clarity-panel + .clarity-panel {
  border-left: 1px solid var(--ink);
}

.clarity-panel.is-not {
  color: var(--white);
  background: var(--ink);
}

.clarity-panel.is-not .index-label,
.clarity-panel.is-not .clarity-list li::before {
  color: var(--signal-bright);
}

.clarity-panel .index-label {
  margin-bottom: 60px;
  color: var(--signal);
}

.clarity-list,
.spec-list,
.plain-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.clarity-list li,
.spec-list li,
.plain-list li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-top: 1px solid currentColor;
}

.clarity-list li::before,
.spec-list li::before,
.plain-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 12px;
  content: "+";
}

.audience-grid,
.service-grid,
.program-grid,
.guide-grid {
  margin-top: clamp(48px, 7vw, 90px);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.audience-card,
.service-card,
.program-card,
.guide-card {
  position: relative;
  min-width: 0;
  padding: clamp(28px, 3.7vw, 52px);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.audience-card {
  min-height: 460px;
}

.audience-card:nth-child(2) {
  color: var(--white);
  background: var(--blue);
}

.card-number {
  display: block;
  margin-bottom: 70px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.card-copy {
  margin: 22px 0 0;
  color: var(--muted);
}

.audience-card:nth-child(2) .card-copy {
  color: var(--white);
}

.audience-card:nth-child(2) .card-number,
.audience-card:nth-child(2) .plain-list li::before {
  color: var(--signal-bright);
}

.service-card {
  min-height: 370px;
}

.service-card:nth-child(even) {
  background: var(--paper-deep);
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.program-card.featured {
  color: var(--white);
  background: var(--blue);
}

.program-card.featured .card-number,
.program-card.featured .program-price,
.program-card.featured .plain-list li::before {
  color: var(--signal-bright);
}

.program-price {
  margin: 16px 0 34px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.program-card .plain-list {
  margin-bottom: 36px;
}

.program-card .button {
  width: 100%;
  margin-top: auto;
}

.work-steps {
  margin: clamp(52px, 7vw, 92px) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  border-top: 1px solid var(--ink);
}

.work-step {
  display: grid;
  grid-template-columns: 90px minmax(180px, 4fr) minmax(0, 7fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--ink);
  counter-increment: steps;
}

.work-step::before {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  content: "0" counter(steps);
}

.work-step h3,
.work-step p {
  margin: 0;
}

.work-step h3 {
  font-size: 22px;
}

.work-step p {
  max-width: 700px;
  color: var(--muted);
}

.guide-card {
  min-height: 390px;
}

.guide-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.commitment {
  color: var(--white);
  background: var(--ink);
}

.commitment .section {
  border-color: var(--line-light);
}

.commitment .kicker::before {
  background: var(--signal-bright);
}

.commitment-grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(240px, 4fr);
  gap: clamp(50px, 8vw, 120px);
}

.commitment .heading-lg {
  max-width: 950px;
}

.commitment-copy {
  padding-top: 10px;
}

.commitment-copy p {
  margin: 0 0 26px;
  color: var(--white);
}

.fact-stack {
  margin-top: 35px;
  border-top: 1px solid var(--line-light);
}

.fact-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  align-items: stretch;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.cta-main {
  padding: clamp(54px, 8vw, 110px) var(--gutter);
  border-right: 1px solid var(--ink);
}

.cta-main .heading-lg {
  margin-bottom: 44px;
}

.cta-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  padding: clamp(42px, 5vw, 72px);
  color: var(--white);
  background: var(--signal);
}

.cta-aside a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-mono);
  font-weight: 700;
}

.page-hero {
  padding: clamp(76px, 10vw, 150px) 0 clamp(64px, 8vw, 110px);
  border-bottom: 1px solid var(--ink);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(220px, 3fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}

.page-hero-note {
  padding: 24px 0 0 24px;
  border-left: 1px solid var(--ink);
}

.page-hero-note p {
  margin: 10px 0 0;
  color: var(--muted);
}

.pricing-note {
  margin-top: 44px;
  padding: 26px;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
}

.pricing-note p {
  margin: 0;
}

.faq-list {
  margin-top: 54px;
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--ink);
}

.faq-list summary {
  position: relative;
  min-height: 64px;
  padding: 22px 55px 22px 0;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 22px;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "x";
}

.faq-answer {
  max-width: 820px;
  padding: 0 0 28px;
  color: var(--muted);
}

.article-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}

.article-index a {
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-index a:hover {
  color: var(--white);
  background: var(--ink);
}

.library-article {
  display: grid;
  grid-template-columns: minmax(180px, 3fr) minmax(0, 8fr);
  gap: clamp(36px, 7vw, 100px);
  padding: clamp(60px, 8vw, 110px) 0;
  border-bottom: 1px solid var(--ink);
  scroll-margin-top: 110px;
}

.library-meta {
  position: sticky;
  top: 110px;
  align-self: start;
}

.library-meta p {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
}

.prose {
  max-width: 790px;
}

.prose h2 {
  margin: 0 0 30px;
  font-size: clamp(34px, 4.5vw, 62px);
  letter-spacing: -0.045em;
  line-height: 1;
}

.prose h3 {
  margin: 42px 0 14px;
  font-size: 23px;
  line-height: 1.15;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ol,
.prose ul {
  padding-left: 24px;
}

.prose li + li {
  margin-top: 10px;
}

.prose .callout {
  margin: 36px 0;
  padding: 25px;
  border-left: 5px solid var(--signal);
  background: var(--paper-deep);
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(50px, 8vw, 110px);
}

.identity-block {
  align-self: start;
  border-top: 1px solid var(--ink);
}

.identity-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
}

.identity-row dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-row dd {
  margin: 0;
  font-weight: 700;
}

.identity-row address,
.legal-address {
  font-style: normal;
}

.legal-address {
  color: var(--ink-soft);
  line-height: 1.7;
}

.contact-form {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--ink);
  background: var(--white);
}

.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;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--ink);
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--ink);
}

.form-consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.form-status {
  display: none;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
}

.form-status[data-visible="true"] {
  display: block;
}

.form-status[data-state="success"] {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
}

.form-status[data-state="error"] {
  border-color: var(--signal);
  color: var(--white);
  background: var(--signal-dark);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(240px, 4fr);
  margin-top: 56px;
  border: 1px solid var(--ink);
}

.booking-copy {
  padding: clamp(32px, 5vw, 70px);
}

.booking-copy p {
  max-width: 680px;
  color: var(--muted);
}

.booking-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(30px, 4vw, 52px);
  color: var(--white);
  background: var(--blue);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 3fr) minmax(0, 8fr);
  gap: clamp(45px, 8vw, 120px);
  padding-block: clamp(70px, 9vw, 130px);
}

.legal-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  border-top: 1px solid var(--ink);
}

.legal-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-copy {
  max-width: 840px;
}

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

.legal-copy section {
  padding: 34px 0;
  border-bottom: 1px solid var(--ink);
  scroll-margin-top: 105px;
}

.legal-copy section:first-of-type {
  padding-top: 10px;
}

.legal-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy li + li {
  margin-top: 8px;
}

.effective-date {
  display: inline-block;
  margin-bottom: 32px;
  padding: 8px 11px;
  border: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.master-disclaimer {
  padding: 24px;
  border: 1px solid var(--ink);
  background: var(--paper-deep);
  font-weight: 700;
}

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

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) repeat(3, minmax(140px, 2fr));
  gap: 38px;
  padding: clamp(64px, 8vw, 110px) var(--gutter);
}

.footer-brand {
  max-width: 420px;
}

.footer-brand .brand {
  margin-bottom: 28px;
  font-size: 42px;
}

.footer-brand p {
  color: var(--white);
}

.footer-heading {
  margin: 0 0 18px;
  color: var(--signal-bright);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-size: 14px;
}

.site-footer .brand span {
  color: var(--signal-bright);
}

.footer-disclaimer {
  padding: 26px var(--gutter);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: var(--white);
  font-size: 12px;
}

.footer-disclaimer p {
  max-width: 1180px;
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px var(--gutter);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1100px) {
  .desktop-nav a {
    padding-inline: 15px;
  }

  .header-book {
    min-width: 130px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 7fr) minmax(230px, 3fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .program-card {
    min-height: auto;
  }

  .footer-top {
    grid-template-columns: minmax(260px, 4fr) repeat(2, minmax(140px, 2fr));
  }

  .footer-top > :last-child {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 64px;
  }

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

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

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 0;
  }

  .hero-grid,
  .page-hero-grid,
  .commitment-grid,
  .cta-band,
  .booking-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero-grid > * {
    min-width: 0;
  }

  .hero-main {
    min-height: 610px;
    border-right: 0;
  }

  .hero-aside {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .hero-photo {
    grid-row: 1 / 3;
    min-height: 340px;
    border-right: 1px solid var(--line-light);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .split-heading,
  .library-article,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .library-meta,
  .legal-nav {
    position: static;
  }

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

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

  .cta-main {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-top > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --notice-h: 32px;
  }

  body {
    background: var(--paper);
    font-size: 16px;
  }

  .notice-strip {
    line-height: 32px;
  }

  .header-inner {
    padding-left: 20px;
  }

  .display {
    font-size: clamp(42px, 15vw, 72px);
    line-height: 0.87;
  }

  .display-sm {
    font-size: clamp(42px, 14vw, 65px);
  }

  .hero-main {
    min-height: 580px;
    padding-inline: 20px;
  }

  .hero-main .kicker {
    margin-bottom: 44px;
  }

  .hero-aside {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hero-photo {
    grid-row: auto;
    min-height: 330px;
    border-right: 0;
  }

  .apparel-object {
    right: -155px;
    width: 350px;
    opacity: 0.3;
  }

  .apparel-object::after {
    filter: blur(18px);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .clarity-panel + .clarity-panel {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .audience-card,
  .service-card,
  .guide-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 44px;
  }

  .work-step {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .work-step p {
    grid-column: 2;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-top > :last-child {
    grid-column: auto;
  }

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

  .button,
  .button-row .button {
    width: 100%;
  }
}

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

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

  .notice-track {
    justify-content: center;
    width: 100%;
    transform: none;
  }

  .notice-track span {
    display: none;
  }

  .notice-track span:nth-child(2) {
    display: inline-flex;
    padding: 0 16px;
    text-align: center;
  }

  .notice-track span:nth-child(2)::after {
    display: none;
  }

  .reveal,
  .reveal.reveal-ready {
    opacity: 1;
    transform: none;
  }
}
