:root {
  --ink: #171715;
  --ink-soft: #22221f;
  --ivory: #f1eee6;
  --ivory-deep: #e7e2d8;
  --paper: #faf8f3;
  --clay: #b7593f;
  --clay-dark: #8f3f2c;
  --muted: #6f6c65;
  --line: rgba(23, 23, 21, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.page-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 300;
  height: 2px;
  background: transparent;
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--clay);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  transition: height 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 72px;
  border-color: var(--line);
  background: rgba(241, 238, 230, 0.96);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.wordmark {
  display: grid;
  width: max-content;
  line-height: 1;
}

.wordmark strong {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.27em;
}

.wordmark span {
  margin-top: 6px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  opacity: 0.62;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.header-cta {
  font-size: 12px;
  font-weight: 500;
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}

.header-cta span,
.primary-link span,
.text-arrow span,
.goal-detail a span {
  transition: transform 0.25s ease;
}

.header-cta:hover span,
.primary-link:hover span,
.text-arrow:hover span,
.goal-detail a:hover span {
  transform: translate(3px, -3px);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url("assets/hero-training.jpg") 70% 34% / cover no-repeat;
  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 11, 0.91) 0%, rgba(12, 12, 11, 0.69) 42%, rgba(12, 12, 11, 0.08) 78%),
    linear-gradient(0deg, rgba(12, 12, 11, 0.55), transparent 42%);
}

.hero-index {
  position: absolute;
  top: 122px;
  right: 42px;
  z-index: 2;
  display: grid;
  gap: 9px;
  justify-items: end;
  font-size: 9px;
  letter-spacing: 0.22em;
}

.hero-index span:last-child {
  opacity: 0.52;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100% - 84px));
  padding: clamp(180px, 21vh, 250px) 0 150px 8vw;
}

.hero-kicker {
  margin-bottom: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(68px, 8.7vw, 138px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.hero h1 em,
.section-ivory h2 em,
.method h2 em,
.experience h2 em,
.contact h2 em {
  color: var(--clay);
  font-weight: 400;
}

.hero-intro {
  max-width: 510px;
  margin: 36px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-link,
.quiet-link,
.text-arrow,
.goal-detail a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 500;
}

.primary-link {
  min-height: 54px;
  padding: 0 22px;
  background: var(--paper);
  color: var(--ink);
}

.quiet-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.hero-bottom {
  position: absolute;
  right: 42px;
  bottom: 28px;
  left: 42px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-bottom p span {
  margin: 0 8px;
  opacity: 0.45;
}

.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.62;
}

.scroll-line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: breathe 2.2s ease-in-out infinite;
}

@keyframes breathe {
  50% { transform: scaleX(0.55); opacity: 0.5; }
}

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

.philosophy,
.direction,
.questions {
  padding: 130px 7vw;
}

.section-number {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-number span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.section-number p {
  color: var(--muted);
}

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

.section-number-light p {
  color: rgba(255, 255, 255, 0.48);
}

.philosophy-statement {
  max-width: 1100px;
  margin: 100px auto 120px;
}

.philosophy-statement > p {
  max-width: 540px;
  margin: 0 0 28px auto;
  color: var(--muted);
  font-size: 15px;
}

.philosophy-statement h2,
.direction-heading h2,
.questions-intro h2 {
  font-family: var(--serif);
  font-size: clamp(58px, 7.8vw, 120px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 300px;
  padding: 32px 38px 38px 0;
}

.principle + .principle {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.principle-number {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}

.principle h3 {
  margin: 92px 0 14px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.principle p {
  max-width: 330px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.editorial-break {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 700px;
  background: var(--ink);
  color: white;
}

.editorial-image {
  min-height: 700px;
  overflow: hidden;
}

.editorial-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(0.77);
}

.editorial-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 90px 8vw;
}

.editorial-copy > span,
.goal-label,
.form-heading > span,
.signature > span {
  color: var(--clay);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.editorial-copy h2 {
  margin: 26px 0 30px;
  font-family: var(--serif);
  font-size: clamp(50px, 5.6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.editorial-copy h2 em {
  color: var(--clay);
  font-weight: 400;
}

.editorial-copy p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
  line-height: 1.75;
}

.direction-heading {
  display: grid;
  grid-template-columns: 0.45fr 1.1fr 0.55fr;
  align-items: end;
  gap: 50px;
  max-width: 1280px;
  margin: 0 auto 100px;
}

.direction-heading h2 {
  font-size: clamp(54px, 6.3vw, 96px);
}

.direction-heading > p {
  max-width: 330px;
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.goal-explorer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.goal-list {
  border-right: 1px solid var(--line);
}

.goal-button {
  display: grid;
  grid-template-columns: 48px 1fr;
  width: 100%;
  align-items: center;
  padding: 24px 28px 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  text-align: left;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.goal-button:last-child {
  border-bottom: 0;
}

.goal-button span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.goal-button:hover,
.goal-button.active {
  padding-left: 14px;
  color: var(--ink);
}

.goal-button.active {
  color: var(--clay-dark);
  font-style: italic;
}

.goal-detail {
  display: flex;
  min-height: 440px;
  justify-content: center;
  flex-direction: column;
  padding: 65px 8vw;
}

.goal-detail h3 {
  max-width: 620px;
  margin: 18px 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.goal-detail > p:not(.goal-label) {
  max-width: 580px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.goal-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 23px;
  margin: 28px 0 38px;
  list-style: none;
}

.goal-detail li {
  position: relative;
  padding-left: 14px;
  font-size: 11px;
}

.goal-detail li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clay);
}

.goal-detail a {
  width: max-content;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
}

.method {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  padding: 135px 7vw;
  background: var(--ink);
  color: white;
}

.method-intro {
  position: sticky;
  top: 115px;
  align-self: start;
  padding-right: 8vw;
}

.method h2,
.experience h2,
.contact h2 {
  margin: 70px 0 28px;
  font-family: var(--serif);
  font-size: clamp(56px, 6.4vw, 98px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.method-intro > p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1.75;
}

.text-arrow {
  width: max-content;
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

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

.method-step {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 25px;
  min-height: 220px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-light);
}

.method-count,
.method-mark {
  font-size: 9px;
  letter-spacing: 0.18em;
}

.method-count {
  color: var(--clay);
}

.method-mark {
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.34);
  writing-mode: vertical-rl;
}

.method-step h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.method-step p {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.75;
}

.experience {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}

.experience-image,
.experience-overlay {
  position: absolute;
  inset: 0;
}

.experience-image img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.68);
}

.experience-overlay {
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.84), rgba(13, 13, 12, 0.15) 74%),
    linear-gradient(0deg, rgba(13, 13, 12, 0.65), transparent 50%);
}

.experience-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 86vw);
  margin-left: 9vw;
}

.experience-copy > p {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.experience h2 {
  margin-top: 28px;
}

.experience-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 28px;
  margin-top: 50px;
}

.experience-notes span {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.questions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.questions-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.questions-intro h2 {
  margin: 70px 0 25px;
  font-size: clamp(56px, 6vw, 92px);
}

.questions-intro > p {
  max-width: 390px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: grid;
  grid-template-columns: 1fr 32px;
  width: 100%;
  align-items: center;
  gap: 30px;
  padding: 29px 0;
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  text-align: left;
}

.faq-item i {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
}

.faq-item i::before,
.faq-item i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-item i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-width: 620px;
  padding: 0 45px 30px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  padding: 140px 7vw;
  background: var(--ink-soft);
  color: white;
}

.contact h2 {
  margin-top: 68px;
  font-size: clamp(56px, 6vw, 92px);
}

.contact-intro > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.75;
}

.signature {
  display: grid;
  margin-top: 70px;
}

.signature strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  font-style: italic;
}

.contact-form {
  padding: 50px;
  background: var(--paper);
  color: var(--ink);
}

.form-heading {
  margin-bottom: 42px;
}

.form-heading h3 {
  margin-top: 9px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form label > span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color 0.2s ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  min-height: 110px;
  padding: 13px 0;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #99958d;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--clay);
}

.message-field {
  margin-top: 34px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 38px;
}

.form-submit p {
  max-width: 220px;
  color: var(--muted);
  font-size: 9px;
}

.form-submit button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  border: 0;
  background: var(--ink);
  color: white;
  font-size: 11px;
  transition: background 0.2s ease;
}

.form-submit button:hover {
  background: var(--clay-dark);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.site-footer {
  padding: 70px 7vw 35px;
  overflow: hidden;
  background: #0e0e0d;
  color: white;
}

.footer-wordmark {
  color: var(--ivory);
  font-size: clamp(100px, 20.5vw, 330px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.72;
  white-space: nowrap;
}

.footer-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 40px;
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
}

.footer-meta nav {
  display: flex;
  gap: 25px;
}

.footer-meta a {
  transition: color 0.2s ease;
}

.footer-meta a:hover {
  color: white;
}

.copyright {
  justify-self: end;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 5px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 26px;
  }

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

  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    align-content: center;
    justify-self: end;
    gap: 6px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

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

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

  .mobile-nav:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 110px 8vw 50px;
    background: var(--ivory);
    color: var(--ink);
  }

  .mobile-nav > a:not(.mobile-nav-cta) {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(42px, 8vw, 70px);
  }

  .mobile-nav > a > span {
    font-family: var(--sans);
    font-size: 9px;
    font-style: normal;
  }

  .mobile-nav-cta {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }

  .direction-heading {
    grid-template-columns: 1fr;
  }

  .direction-heading .section-number {
    margin-bottom: 30px;
  }

  .direction-heading > p {
    max-width: 480px;
  }

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

  .method-intro,
  .questions-intro {
    position: static;
  }

  .method-intro {
    margin-bottom: 80px;
  }

  .questions {
    gap: 80px;
  }

  .questions-intro h2 {
    margin-top: 50px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
    padding-inline: 18px;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 150px 0 140px 0;
    margin: 0 auto;
  }

  .hero-image {
    background-position: 57% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 12, 11, 0.83), rgba(12, 12, 11, 0.18)),
      linear-gradient(0deg, rgba(12, 12, 11, 0.82), transparent 68%);
  }

  .hero h1 {
    font-size: clamp(60px, 20vw, 94px);
  }

  .hero-intro {
    max-width: 390px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-index {
    top: 100px;
    right: 18px;
  }

  .hero-bottom {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .hero-bottom > a {
    display: none;
  }

  .philosophy,
  .direction,
  .questions,
  .method,
  .contact {
    padding: 90px 20px;
  }

  .philosophy-statement {
    margin: 70px 0 85px;
  }

  .philosophy-statement > p {
    margin-left: 0;
  }

  .philosophy-statement h2,
  .direction-heading h2,
  .questions-intro h2 {
    font-size: clamp(52px, 16vw, 76px);
  }

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

  .principle {
    min-height: 240px;
    padding: 28px 0;
  }

  .principle + .principle {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle h3 {
    margin-top: 58px;
  }

  .editorial-break {
    grid-template-columns: 1fr;
  }

  .editorial-image {
    min-height: 480px;
  }

  .editorial-copy {
    padding: 80px 20px;
  }

  .direction-heading {
    gap: 20px;
    margin-bottom: 70px;
  }

  .goal-explorer {
    grid-template-columns: 1fr;
  }

  .goal-list {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .goal-button {
    font-size: 31px;
  }

  .goal-detail {
    min-height: 480px;
    padding: 55px 0;
  }

  .method h2,
  .experience h2,
  .contact h2 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .method-step {
    grid-template-columns: 38px 1fr;
    min-height: 210px;
  }

  .method-mark {
    display: none;
  }

  .experience {
    min-height: 680px;
  }

  .experience-copy {
    width: calc(100% - 40px);
    margin: 0 20px;
  }

  .experience-overlay {
    background:
      linear-gradient(90deg, rgba(13, 13, 12, 0.78), rgba(13, 13, 12, 0.25)),
      linear-gradient(0deg, rgba(13, 13, 12, 0.82), transparent 70%);
  }

  .questions {
    gap: 65px;
  }

  .faq-item button {
    font-size: 29px;
  }

  .contact {
    gap: 75px;
  }

  .contact-form {
    padding: 35px 22px;
  }

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

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit p {
    max-width: none;
  }

  .form-submit button {
    justify-content: space-between;
  }

  .site-footer {
    padding: 60px 20px 30px;
  }

  .footer-wordmark {
    font-size: 27vw;
  }

  .footer-meta {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-meta nav {
    flex-wrap: wrap;
  }

  .copyright {
    justify-self: start;
  }
}

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

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

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


/* Premium upgrade */
.premium-strip{
padding:80px 24px;
background:linear-gradient(to bottom, rgba(255,255,255,.3), rgba(255,255,255,.7));
backdrop-filter:blur(10px);
}
.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:24px;
margin-top:32px;
}
.stats-grid div{
padding:28px;
border-radius:24px;
background:rgba(255,255,255,.6);
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:transform .3s ease;
}
.stats-grid div:hover{transform:translateY(-6px);}
.stats-grid strong{
display:block;
font-size:2rem;
margin-bottom:8px;
}

.terms-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.terms-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
  accent-color: var(--clay);
}

.terms-consent a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
}

.legal-body {
  background: var(--ivory);
}

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

.terms-hero {
  position: relative;
  display: grid;
  min-height: 74svh;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  align-items: end;
  gap: 44px;
  overflow: hidden;
  padding: 170px 7vw 78px;
  background: var(--ink);
  color: white;
}

.terms-photo,
.terms-shade {
  position: absolute;
  inset: 0;
}

.terms-photo {
  background: url("assets/barbell-detail.jpg") center 48% / cover no-repeat;
  filter: grayscale(1) contrast(1.04) brightness(0.72);
  transform: scale(1.01);
}

.terms-shade {
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.92), rgba(13, 13, 12, 0.36) 68%),
    linear-gradient(0deg, rgba(13, 13, 12, 0.74), transparent 55%);
}

.terms-hero-copy,
.terms-note {
  position: relative;
  z-index: 2;
}

.terms-kicker,
.terms-note span,
.terms-list article > span {
  color: var(--clay);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.terms-hero h1 {
  margin: 28px 0 26px;
  font-family: var(--serif);
  font-size: clamp(74px, 9vw, 144px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.terms-hero h1 em,
.terms-intro h2 em {
  color: var(--clay);
  font-weight: 400;
}

.terms-hero-copy > p:not(.terms-kicker) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

.terms-note {
  align-self: end;
  padding: 28px;
  border: 1px solid var(--line-light);
  background: rgba(250, 248, 243, 0.08);
  backdrop-filter: blur(12px);
}

.terms-note strong {
  display: block;
  margin: 12px 0 18px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.terms-note p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.7;
}

.terms-body {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
  padding: 110px 7vw 125px;
}

.terms-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.terms-intro h2 {
  margin: 60px 0 22px;
  font-family: var(--serif);
  font-size: clamp(54px, 5.8vw, 92px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.terms-intro > p {
  max-width: 410px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.terms-intro .text-arrow {
  border-color: var(--ink);
}

.terms-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.terms-list article {
  min-height: 238px;
  padding: 28px 30px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.terms-list h3 {
  margin: 54px 0 13px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.terms-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

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

  .terms-hero,
  .terms-body {
    grid-template-columns: 1fr;
  }

  .terms-note {
    max-width: 420px;
  }

  .terms-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .terms-hero {
    min-height: 88svh;
    gap: 34px;
    padding: 132px 20px 54px;
  }

  .terms-shade {
    background: rgba(13, 13, 12, 0.76);
  }

  .terms-hero h1 {
    font-size: clamp(62px, 19vw, 92px);
  }

  .terms-body {
    gap: 64px;
    padding: 86px 20px 96px;
  }

  .terms-intro h2 {
    margin-top: 48px;
    font-size: clamp(52px, 16vw, 76px);
  }

  .terms-list {
    grid-template-columns: 1fr;
  }

  .terms-list article {
    min-height: auto;
    padding: 26px 0 30px;
    border-right: 0;
  }

  .terms-list h3 {
    margin-top: 40px;
  }
}
