:root {
  --paper: #f1efe9;
  --surface: #fbfaf7;
  --white: #ffffff;
  --ink: #121313;
  --ink-soft: #222424;
  --muted: #6b6b64;
  --line: rgba(18, 19, 19, 0.16);
  --line-dark: rgba(255, 255, 255, 0.17);
  --accent: #ffd400;
  --accent-hover: #ffe13d;
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1240px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .site-header {
  backdrop-filter: none;
}

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

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

figure {
  margin: 0;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3.45rem, 11vw, 8.25rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.65rem, 7vw, 5.4rem);
  text-transform: uppercase;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  background: var(--accent);
  content: '';
  flex: 0 0 auto;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.62);
}

.eyebrow--without-mark::before {
  display: none;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.03rem, 2.4vw, 1.24rem);
  line-height: 1.65;
}

.lead--light {
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
  text-decoration: none;
}

.text-link::after {
  content: '↗';
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn::after {
  content: '↗';
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--accent);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.btn--outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.btn--outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--outline-dark:hover {
  background: var(--ink);
  color: var(--white);
}

.btn--compact {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.74rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(18, 19, 19, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.site-header__in {
  display: flex;
  height: var(--header-height);
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  border: 2px solid var(--accent);
  color: var(--accent);
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

.brand__copy {
  display: grid;
  min-width: 0;
}

.brand__name {
  overflow: hidden;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__role {
  display: none;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav {
  position: fixed;
  z-index: 10;
  top: var(--header-height);
  right: 0;
  bottom: auto;
  left: 0;
  display: none;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  padding: 38px 20px 120px;
  overflow-y: auto;
  background: var(--ink);
  overscroll-behavior: contain;
}

.nav--open {
  display: block;
}

.nav__link {
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-head);
  font-size: clamp(2rem, 10vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link--active {
  color: var(--accent);
}

.site-header__cta {
  display: none;
}

.burger {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  place-content: center;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2.5px 0;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero::before {
  display: none;
}

.hero .eyebrow::before {
  display: none;
}

.hero__grid {
  display: grid;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 72px 0 58px;
}

.hero__title {
  max-width: 820px;
  margin-bottom: 27px;
}

.hero__title span {
  display: block;
  color: var(--accent);
}

.hero__text {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.05rem, 2.7vw, 1.28rem);
}

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

.hero__proof {
  display: grid;
  margin-top: 52px;
  border-top: 1px solid var(--line-dark);
}

.proof {
  padding: 19px 0;
  border-bottom: 1px solid var(--line-dark);
}

.proof__value {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.proof__label {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  line-height: 1.35;
}

.hero__media {
  position: relative;
  min-height: 620px;
  margin-inline: -20px;
  overflow: hidden;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 19, 19, 0.02) 45%, rgba(18, 19, 19, 0.8) 100%);
  content: '';
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero__media-label {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__media-label strong {
  color: var(--accent);
  font-weight: 700;
}

.section {
  padding: 82px 0;
}

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

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

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

.section__head {
  display: grid;
  gap: 24px;
  margin-bottom: 46px;
}

.section__title {
  max-width: 820px;
  margin-bottom: 0;
  line-height: 1.1;
}

.section__aside {
  align-self: end;
}

.goal-grid {
  border-top: 1px solid var(--line);
}

.goal-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 25px 0 28px;
  border-bottom: 1px solid var(--line);
}

.goal-item__number {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
}

.goal-item h3 {
  margin-bottom: 8px;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
}

.goal-item p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.split-feature {
  display: grid;
  gap: 42px;
}

.split-feature__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.split-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.split-feature__media--home-method img {
  object-position: 50% 35%;
}

.split-feature__media--about-method img {
  object-position: 52% 34%;
}

.split-feature__content {
  min-width: 0;
  align-self: center;
}

.split-feature__content h2 {
  font-size: clamp(2.65rem, 6.2vw, 5rem);
}

.split-feature__title {
  line-height: 1.05;
}

.method-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: method;
}

.method-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: method;
}

.method-item::before {
  color: var(--accent);
  content: counter(method, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
}

.method-item h3 {
  margin-bottom: 5px;
}

.method-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.editorial-grid {
  display: flex;
  gap: 16px;
  margin-inline: -20px;
  padding-inline: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.story-card {
  min-width: min(82vw, 360px);
  background: var(--ink-soft);
  color: var(--white);
  scroll-snap-align: start;
  text-decoration: none;
}

.story-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.story-card__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  content: '';
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.story-card__media--editorial img {
  object-position: 50% 38%;
}

.story-card__media--portrait img {
  object-position: 50% 42%;
}

.story-card__media--coaching img {
  object-position: 48% 36%;
}

.story-card:hover .story-card__media img {
  filter: contrast(1.05);
  transform: scale(1.025);
}

.story-card__body {
  padding: 22px;
}

.story-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card h3 {
  margin-bottom: 0;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}

.story-card__arrow {
  color: var(--accent);
  font-size: 1.1rem;
}

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

.rate-row {
  display: grid;
  gap: 13px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.rate-row__name {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rate-row__price {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 9vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
}

.rate-row__price small {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
}

.rate-row__note {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.rate-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
}

.rate-footer p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

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

.conversion::before {
  position: absolute;
  top: -18vw;
  right: -17vw;
  width: 48vw;
  height: 48vw;
  min-width: 320px;
  min-height: 320px;
  border: 1px solid rgba(18, 19, 19, 0.2);
  border-radius: 50%;
  content: '';
}

.conversion__in {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.conversion h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.conversion__side {
  align-self: end;
}

.conversion__side p {
  max-width: 480px;
  color: rgba(18, 19, 19, 0.68);
}

.conversion .btn--dark {
  background: var(--ink);
  color: var(--white);
}

.page-hero {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero__grid {
  display: grid;
}

.page-hero__content {
  min-width: 0;
  padding: 70px 0 58px;
}

.page-hero__title {
  min-width: 0;
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 10.2vw, 7.5rem);
}

.page-hero__text {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1.02rem, 2.5vw, 1.22rem);
}

.page-hero__media {
  position: relative;
  min-height: 560px;
  margin-inline: -20px;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(18, 19, 19, 0.68));
  content: '';
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.page-hero__media--portrait img {
  object-position: 50% 50%;
}

.page-hero--compact .page-hero__content {
  padding: 76px 0 82px;
}

.bio-layout {
  display: grid;
  gap: 42px;
}

.bio-copy {
  max-width: 900px;
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 6vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-transform: uppercase;
}

.bio-copy mark {
  background: linear-gradient(transparent 72%, var(--accent) 72%);
  color: inherit;
}

.bio-note {
  max-width: 570px;
  color: var(--muted);
  font-size: 1rem;
}

.credential-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.credential {
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}

.credential__value {
  display: block;
  margin-bottom: 11px;
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 8vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.credential__label {
  color: var(--muted);
  font-size: 0.88rem;
}

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

.principle {
  display: grid;
  gap: 14px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.principle__number {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
}

.principle h3 {
  margin-bottom: 6px;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
}

.principle p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.offer-grid {
  display: grid;
  min-width: 0;
  border-top: 1px solid var(--line);
}

.offer {
  display: flex;
  min-width: 0;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.offer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.offer__name {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.offer__index {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.offer__price {
  margin-bottom: 17px;
  font-family: var(--font-head);
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

.offer__price small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0;
}

.offer__note {
  max-width: 430px;
  color: var(--muted);
}

.included-grid {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.included-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.included-item__mark {
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
}

.included-item h3 {
  margin-bottom: 7px;
}

.included-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.91rem;
}

.timeline {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: timeline;
}

.timeline__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: timeline;
}

.timeline__item::before {
  color: var(--accent);
  content: counter(timeline, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
}

.timeline__item h3 {
  margin-bottom: 7px;
}

.timeline__item p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

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

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

.faq summary {
  position: relative;
  padding: 23px 44px 23px 0;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--accent);
  content: '+';
  font-family: var(--font-head);
  font-size: 1.7rem;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
  max-width: 740px;
  padding: 0 44px 23px 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  gap: 46px;
}

.contact-primary {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.contact-primary h2 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 8vw, 5.6rem);
}

.contact-primary p {
  max-width: 580px;
  color: var(--muted);
}

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

.contact-row {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-row__label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row__value {
  font-family: var(--font-head);
  font-size: clamp(1.55rem, 5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
}

a.contact-row__value:hover {
  color: #8b7400;
}

.location-grid {
  display: grid;
  gap: 32px;
}

.location-card {
  align-self: center;
}

.location-card h2 {
  margin-bottom: 20px;
}

.location-card__facts {
  margin: 30px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.location-card__facts li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.location-card__facts span:first-child {
  color: var(--muted);
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 520px;
  border: 0;
  background: #ddd;
  filter: saturate(0.55) contrast(1.04);
}

.scroll-transform {
  display: none;
}

@media (min-width: 1720px) and (min-height: 700px) {
  .scroll-transform {
    --figure-scale: 1;
    --scene-opacity: 0;
    position: fixed;
    top: 50%;
    left: max(-110px, calc((100vw - var(--container)) / 2 - min(33vh, 360px)));
    z-index: 40;
    display: block;
    width: min(32.625vh, 360px);
    aspect-ratio: 9 / 16;
    height: auto;
    opacity: var(--scene-opacity);
    pointer-events: none;
    transform: translateY(-50%);
    user-select: none;
  }

  .scroll-transform__glow {
    position: absolute;
    right: -12%;
    bottom: -4%;
    width: 108%;
    height: 92%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.18) 0%, rgba(255, 212, 0, 0.055) 42%, transparent 72%);
    filter: blur(18px);
    opacity: 0.76;
    transform: scale(var(--figure-scale));
    transform-origin: 50% 100%;
  }

  .scroll-transform__stage {
    position: absolute;
    inset: 0;
    filter: drop-shadow(0 22px 28px rgba(18, 19, 19, 0.24));
    transform: translate3d(0, -4px, 0) scale(var(--figure-scale));
    transform-origin: 50% 100%;
    will-change: transform;
  }

  .scroll-transform__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .scroll-transform__source {
    position: fixed;
    left: -9999px;
    width: 360px;
    height: 640px;
    opacity: 0;
    pointer-events: none;
  }

  .scroll-transform__canvas {
    display: block;
    contain: strict;
    image-rendering: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-transform {
    display: none !important;
  }
}

.site-footer {
  padding-bottom: 78px;
  background: var(--ink);
  color: var(--white);
}

.site-footer__top {
  display: grid;
  gap: 35px;
  padding-top: 58px;
  padding-bottom: 45px;
}

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

.footer-brand__name {
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand p,
.footer-column p {
  color: rgba(255, 255, 255, 0.54);
}

.footer-column h3 {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--accent);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 19px 0;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
}

.mobile-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 19, 19, 0.96);
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.mobile-cta span:first-child {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-cta span:last-child {
  display: grid;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--ink);
  font-size: 1.05rem;
  place-items: center;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@media (min-width: 520px) {
  .brand__role {
    display: block;
  }

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

  .proof {
    padding-right: 18px;
    border-bottom: 0;
  }

  .proof + .proof {
    padding-left: 18px;
    border-left: 1px solid var(--line-dark);
  }

}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .container {
    width: min(100% - 64px, var(--container));
  }

  .section {
    padding: 106px 0;
  }

  .hero__content {
    padding: 94px 0 76px;
  }

  .hero__media,
  .page-hero__media {
    margin-inline: -32px;
  }

  .goal-grid,
  .credential-grid,
  .included-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .goal-item:nth-child(odd),
  .credential:nth-child(odd),
  .included-item:nth-child(odd),
  .timeline__item:nth-child(odd) {
    padding-right: 28px;
  }

  .goal-item:nth-child(even),
  .credential:nth-child(even),
  .included-item:nth-child(even),
  .timeline__item:nth-child(even) {
    padding-left: 28px;
    border-left: 1px solid var(--line);
  }

  .included-item:nth-child(even) {
    border-left-color: var(--line-dark);
  }

  .editorial-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 18px;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .story-card {
    min-width: 0;
  }

  .story-card--featured {
    grid-row: 1 / span 2;
  }

  .story-card--featured .story-card__media {
    aspect-ratio: 5 / 6;
  }

  .story-card:not(.story-card--featured) {
    display: grid;
    grid-template-columns: 42% 58%;
  }

  .story-card:not(.story-card--featured) .story-card__media {
    height: 100%;
    aspect-ratio: auto;
  }

  .story-card:not(.story-card--featured) .story-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .rate-row {
    grid-template-columns: 0.55fr 1fr 0.85fr;
    align-items: center;
  }

  .rate-row__note {
    justify-self: end;
  }

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

  .credential {
    padding-right: 28px;
  }

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

  .principle {
    grid-template-columns: 70px 0.7fr 1.3fr;
    align-items: start;
  }

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

  .offer {
    padding: 38px;
    border: 1px solid var(--line);
    border-top: 0;
  }

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

  .contact-row {
    grid-template-columns: 0.35fr 1fr;
    align-items: center;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .site-footer__top {
    grid-template-columns: 1.4fr repeat(3, 0.8fr);
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 1020px) {
  .site-header__in {
    gap: 28px;
  }

  .nav {
    position: static;
    display: flex;
    padding: 0;
    background: transparent;
  }

  .nav__link {
    padding: 29px 0 25px;
    border-bottom: 3px solid transparent;
    font-family: var(--font-body);
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  .nav__link + .nav__link {
    margin-left: 25px;
  }

  .nav__link--active {
    border-bottom-color: var(--accent);
    color: var(--white);
  }

  .site-header__cta {
    display: inline-flex;
  }

  .burger {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
    min-height: calc(100svh - var(--header-height));
  }

  .hero__content {
    display: flex;
    min-height: calc(100svh - var(--header-height));
    flex-direction: column;
    justify-content: center;
    padding-right: clamp(38px, 5vw, 76px);
  }

  .hero__proof {
    margin-top: auto;
    padding-top: 34px;
  }

  .hero__media {
    min-height: calc(100svh - var(--header-height));
    margin: 0 calc((100vw - min(100vw - 64px, var(--container))) / -2) 0 0;
  }

  .section__head {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 64px;
  }

  .split-feature {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(56px, 7vw, 110px);
  }

  .split-feature__media {
    min-height: 760px;
  }

  .conversion__in {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 70px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr);
    min-height: 700px;
  }

  .page-hero__content {
    align-self: center;
    padding-right: clamp(40px, 5vw, 86px);
  }

  .page-hero__media {
    min-height: 700px;
    margin: 0 calc((100vw - min(100vw - 64px, var(--container))) / -2) 0 0;
  }

  .page-hero--compact .page-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .page-hero--compact .page-hero__content {
    max-width: 1040px;
    padding: 112px 0 120px;
  }

  .bio-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: end;
    gap: 90px;
  }

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

  .timeline__item,
  .timeline__item:nth-child(odd),
  .timeline__item:nth-child(even) {
    display: block;
    padding: 32px;
    border: 1px solid var(--line);
  }

  .timeline__item + .timeline__item {
    border-left: 0;
  }

  .timeline__item::before {
    display: block;
    margin-bottom: 42px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(62px, 8vw, 120px);
  }

  .location-grid {
    grid-template-columns: minmax(330px, 0.7fr) minmax(0, 1.3fr);
    align-items: stretch;
    gap: 0;
  }

  .location-card {
    padding-right: clamp(42px, 6vw, 90px);
  }
}

@media (min-width: 1100px) {
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer + .offer {
    border-left: 0;
  }
}

@media (min-width: 1320px) {
  .hero__media,
  .page-hero__media {
    margin-right: calc((100vw - var(--container)) / -2);
  }
}

@media (max-width: 359px) {
  .site-header__in {
    gap: 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__name {
    font-size: 0.9rem;
    letter-spacing: 0.01em;
  }

  .page-hero__title--prices {
    font-size: 2.45rem;
  }

  .split-feature__content h2 {
    font-size: 2.3rem;
  }
}

:is(
  .btn,
  .burger,
  .mobile-cta,
  .goal-item,
  .story-card,
  .rate-row,
  .credential,
  .principle,
  .offer,
  .included-item,
  .timeline__item,
  .faq details,
  .contact-row,
  .location-card
) {
  transition: all 200ms ease-out;
}

.js .reveal:is(
  .goal-item,
  .story-card,
  .rate-row,
  .credential,
  .principle,
  .offer,
  .included-item,
  .timeline__item,
  .contact-row
) {
  transition: all 200ms ease-out;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  :is(.btn, .burger, .mobile-cta):hover {
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 24px rgba(18, 19, 19, 0.2);
    scale: 1.015;
  }

  :is(
    .goal-item,
    .story-card,
    .rate-row,
    .credential,
    .principle,
    .offer,
    .included-item,
    .timeline__item,
    .faq details,
    .contact-row,
    .location-card
  ):hover {
    position: relative;
    z-index: 2;
    box-shadow: 0 16px 34px rgba(18, 19, 19, 0.15);
    scale: 1.015;
  }
}

@media (prefers-reduced-motion: no-preference) {
  :is(
    .btn,
    .burger,
    .goal-item,
    .story-card,
    .rate-row,
    .credential,
    .principle,
    .offer,
    .included-item,
    .timeline__item,
    .faq details,
    .contact-row,
    .location-card
  ):active {
    box-shadow: 0 5px 14px rgba(18, 19, 19, 0.12);
    scale: 0.985;
  }

  .mobile-cta:active {
    box-shadow: 0 4px 12px rgba(18, 19, 19, 0.14);
    scale: 0.995;
  }
}

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

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

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