@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alex Brush";
  src: url("../fonts/AlexBrush-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --magenta: #c50069;
  --magenta-dark: #96004f;
  --pink: #ef3b86;
  --orange: #f85a1c;
  --peach: #fbe4d8;
  --peach-light: #fff8f4;
  --rose-light: #fbeaf1;
  --ink: #231820;
  --ink-soft: #54464f;
  --white: #ffffff;
  --line: rgba(35, 24, 32, 0.16);
  --container: min(1200px, calc(100vw - 96px));
  --header-height: 96px;
  --section-space: clamp(100px, 10vw, 170px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--peach-light);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
}

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 38px;
  font-size: clamp(2.65rem, 5vw, 5.2rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px max(34px, calc((100vw - 1340px) / 2));
  border-bottom: 1px solid transparent;
  background: var(--peach-light);
  transition: min-height 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 78px;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(35, 24, 32, 0.06);
}

.brand {
  display: block;
  width: 126px;
  height: 76px;
  flex: 0 0 auto;
}

.brand img {
  width: 126px;
  height: 76px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Header logo +18%; retain header height and show the complete claim. */
.site-header .brand {
  display: flex;
  width: 149px;
  align-items: center;
}

.site-header .brand img {
  width: 149px;
  height: 90px;
  max-width: none;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.main-navigation > a:not(.button) {
  position: relative;
  padding: 10px 0;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-navigation > a:not(.button)::after {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-navigation > a:not(.button):hover::after,
.main-navigation > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border: 2px solid var(--magenta);
  border-radius: 999px;
  color: var(--white);
  background: var(--magenta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--magenta);
  background: transparent;
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.68rem;
}

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

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--ink);
  background: transparent;
}

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

.button--light:hover,
.button--light:focus-visible {
  color: var(--white);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0 7px;
  border-bottom: 2px solid var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 16px;
  border-color: var(--magenta);
}

.text-link--light {
  color: var(--white);
}

.section {
  padding: var(--section-space) 0;
}

.section__inner {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  align-items: stretch;
  padding-top: var(--header-height);
  background: var(--peach-light);
  overflow: hidden;
}

.hero__content {
  display: flex;
  max-width: 790px;
  flex-direction: column;
  justify-content: center;
  padding: 56px 64px 56px max(48px, calc((100vw - 1340px) / 2));
}

.hero h1 {
  margin-bottom: 34px;
  font-size: clamp(2.3rem, 3.15vw, 3.2rem);
  font-weight: 700;
}

.hero h1 span {
  display: block;
}

.hero h1 > span:first-child {
  max-width: 590px;
  font-size: 0.62em;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.hero__headline-accent {
  margin-top: 18px;
  color: var(--magenta);
}

.hero__subline {
  max-width: 650px;
  margin-bottom: 19px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 500;
}

.hero blockquote {
  max-width: 650px;
  margin-bottom: 34px;
  padding-left: 19px;
  border-left: 4px solid var(--orange);
  font-size: clamp(1.2rem, 1.75vw, 1.65rem);
  font-weight: 700;
  line-height: 1.4;
}

.hero__copy {
  display: grid;
  grid-column: 1 / -1;
  width: var(--container);
  max-width: 1060px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 64px;
  margin: 0 auto;
  padding: 68px 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.hero__copy p {
  margin-bottom: 13px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.brand-line {
  margin-top: 34px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.hero__visual {
  position: relative;
  min-height: 740px;
}

.hero__color-block {
  position: absolute;
  z-index: 0;
  inset: 8% 12% 4% 8%;
  border-radius: 52% 48% 18% 82% / 32% 24% 76% 68%;
  background: var(--orange);
  transform: rotate(4deg);
}

.portrait {
  margin: 0;
  overflow: hidden;
}

.portrait img,
.contact__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait--hero {
  position: absolute;
  z-index: 1;
  inset: 4% 0 0 0;
  border-radius: 48% 0 0 0 / 17% 0 0 0;
}

.portrait--hero img {
  object-position: 62% 30%;
}

.hero__stamp {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 6%;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-family: "Alex Brush", cursive;
  font-size: 2.35rem;
  transform: rotate(-8deg);
}

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

.problem__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(68px, 8vw, 124px);
  align-items: start;
}

.problem__visual {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.portrait--problem {
  height: min(72vh, 800px);
  border-radius: 4px 45% 4px 4px / 4px 18% 4px 4px;
}

.portrait--problem img {
  object-position: 49% 35%;
}

.script-note {
  position: relative;
  z-index: 2;
  max-width: 470px;
  margin: -34px -55px 0 34px;
  padding: 24px 30px;
  color: var(--white);
  background: var(--magenta);
  font-family: "Alex Brush", cursive;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.05;
  transform: rotate(-2deg);
}

.problem__content h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.5rem);
}

.problem__content > p {
  max-width: 700px;
}

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

.rhythm-list p {
  margin: 0;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pull-quote {
  margin: 35px 0;
  color: var(--magenta);
  font-size: clamp(1.5rem, 2.35vw, 2.25rem);
  font-weight: 700;
  line-height: 1.28;
}

.highlight-copy {
  margin: 48px 0 !important;
  padding: 30px 32px;
  border-left: 6px solid var(--orange);
  background: var(--peach);
  font-weight: 600;
}

.question-emphasis {
  margin: 22px 0 38px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}

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

.reconnect__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
  gap: clamp(60px, 7vw, 110px);
  align-items: center;
}

.reconnect h2 {
  color: var(--peach);
}

.reconnect__copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
}

.precision {
  margin-top: 34px;
  color: var(--orange);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.25;
}

.portrait--reconnect {
  height: min(78vh, 820px);
  border-radius: 48% 48% 4px 4px / 18% 18% 4px 4px;
}

.portrait--reconnect img {
  object-position: 52% 30%;
}

.outcomes {
  margin-top: clamp(90px, 10vw, 150px);
  padding-top: clamp(62px, 7vw, 98px);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.outcomes h3 {
  margin-bottom: 45px;
  color: var(--orange);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

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

.outcomes__grid p {
  position: relative;
  margin: 0;
  padding: 25px 10px 25px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
}

.outcomes__grid p::before {
  position: absolute;
  top: 34px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--pink);
}

.outcomes__final {
  display: grid;
  margin-top: 64px;
  grid-template-columns: 0.5fr 1fr 1.2fr;
  gap: 40px;
  align-items: end;
}

.outcomes__final p {
  margin: 0;
}

.outcomes__final p:first-child {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcomes__final p:nth-child(2) {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.outcomes__final p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.approach {
  background: var(--peach-light);
}

.section-heading--center {
  max-width: 820px;
  margin: 0 auto clamp(65px, 7vw, 105px);
  text-align: center;
}

.section-heading--center h2 {
  color: var(--magenta);
}

.section-heading--center p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}

.levels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.levels article {
  padding: 48px clamp(28px, 3vw, 46px) 52px;
}

.levels article + article {
  border-left: 1px solid var(--line);
}

.levels h3 {
  margin-bottom: 54px;
  color: var(--magenta);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.levels p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.daily-life {
  max-width: 880px;
  margin: clamp(92px, 10vw, 145px) auto;
  text-align: center;
}

.daily-life > p:first-child {
  color: var(--magenta);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.daily-life__big {
  margin: 10px 0 34px;
  color: var(--orange);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.included {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  padding: clamp(50px, 6vw, 80px);
  color: var(--white);
  background: var(--magenta);
}

.included h3 {
  margin-bottom: 42px;
  font-size: clamp(2.4rem, 4.6vw, 4.3rem);
}

.included .button {
  border-color: var(--white);
  color: var(--magenta);
  background: var(--white);
}

.included .button:hover,
.included .button:focus-visible {
  color: var(--white);
  background: transparent;
}

.included ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.included li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.included li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.included li:has(> span:only-child) {
  grid-template-columns: 1fr;
}

.included strong {
  color: var(--peach);
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.included span {
  font-weight: 600;
}

.fit {
  padding: var(--section-space) 0;
  background: var(--peach);
}

.fit h2 {
  max-width: 1000px;
  margin-bottom: clamp(64px, 7vw, 105px);
}

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

.fit__columns article {
  padding: clamp(42px, 5vw, 70px);
}

.fit__yes {
  color: var(--white);
  background: var(--magenta);
}

.fit__no {
  border: 1px solid rgba(197, 0, 105, 0.24);
  background: var(--peach-light);
}

.fit__columns h3 {
  margin-bottom: 42px;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  letter-spacing: -0.02em;
}

.fit__no h3 {
  color: var(--magenta);
}

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

.statement-list li {
  position: relative;
  padding: 24px 0 24px 34px;
  border-top: 1px solid currentColor;
}

.statement-list li::before {
  position: absolute;
  top: 31px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
}

.fit__yes .statement-list li {
  border-color: rgba(255, 255, 255, 0.35);
}

.fit__no .statement-list li {
  border-color: var(--line);
}

.fit__closing {
  max-width: 820px;
  margin: clamp(64px, 7vw, 100px) auto 0;
  text-align: center;
}

.fit__closing p {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 600;
}

.fit__closing .button {
  margin-top: 26px;
}

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

.about__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(68px, 8vw, 128px);
  align-items: start;
}

.about__visual {
  position: sticky;
  top: calc(var(--header-height) + 35px);
}

.portrait--about {
  height: min(78vh, 860px);
  border-radius: 50% 50% 6px 6px / 17% 17% 6px 6px;
}

.portrait--about img {
  object-position: 50% 40%;
}

.about__script {
  position: relative;
  max-width: 520px;
  margin: -32px 24px 0 8px;
  padding: 25px 30px 20px;
  color: var(--white);
  background: var(--orange);
  font-family: "Alex Brush", cursive;
  font-size: clamp(1.8rem, 3.25vw, 2.85rem);
  line-height: 1.03;
  text-align: center;
  transform: rotate(2deg);
}

.about__content h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
}

.about__content > p {
  max-width: 690px;
}

.personal-break {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 48px 0;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.personal-break p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.personal-break strong {
  color: var(--magenta);
}

.about__highlight {
  margin: 52px 0;
  padding: 36px 38px;
  color: var(--white);
  background: var(--magenta);
}

.about__highlight p:first-child {
  color: var(--peach);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__highlight p:nth-child(2) {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.28;
}

.voices {
  background: var(--rose-light);
}

.voices__intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: clamp(58px, 7vw, 95px);
}

.voices__intro h2 {
  margin-bottom: 0;
}

.voices__intro p {
  margin-bottom: 6px;
  font-size: 1.05rem;
  font-weight: 500;
}

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

.testimonials article {
  min-height: 260px;
  padding: clamp(36px, 5vw, 62px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonials article:nth-child(1),
.testimonials article:nth-child(4) {
  background: rgba(255, 255, 255, 0.58);
}

.testimonial__quote {
  min-height: 64px;
  color: var(--magenta);
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.35;
}

.testimonial__quote--placeholder {
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 500;
}

.testimonials p:not(.testimonial__quote) {
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.leadmagnet {
  padding: var(--section-space) 0;
  color: var(--white);
  background: var(--magenta);
}

.leadmagnet__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(70px, 9vw, 140px);
}

.leadmagnet .eyebrow {
  color: var(--peach);
}

.leadmagnet h2 {
  position: sticky;
  top: calc(var(--header-height) + 45px);
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
}

.leadmagnet__promises {
  margin-bottom: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.leadmagnet__promises p {
  margin-bottom: 7px;
  color: var(--peach);
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
}

.leadmagnet__orientation {
  margin-bottom: 40px;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
}

.leadmagnet__content > p:not(.leadmagnet__orientation):not(.download-note) {
  color: rgba(255, 255, 255, 0.86);
}

.leadmagnet__content .button {
  margin-top: 20px;
}

.download-note {
  margin: 11px 0 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.leadmagnet__next {
  margin-top: 62px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.leadmagnet__next p:first-child {
  font-weight: 600;
}

.contact {
  display: grid;
  min-height: 920px;
  grid-template-columns: minmax(420px, 0.85fr) minmax(0, 1.15fr);
  background: var(--peach-light);
}

.contact__visual {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.contact__visual img {
  object-position: 50% 40%;
}

.contact__content {
  display: flex;
  max-width: 820px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(76px, 8vw, 132px) max(48px, calc((100vw - 1340px) / 2)) clamp(76px, 8vw, 132px) clamp(58px, 8vw, 128px);
}

.contact h2 {
  margin-bottom: 12px;
  font-size: clamp(3rem, 5.2vw, 5.25rem);
}

.contact__accent {
  margin-bottom: 38px;
  color: var(--magenta);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.field {
  position: relative;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--magenta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.field input {
  height: 48px;
}

.field textarea {
  min-height: 116px;
  padding: 8px 0;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-bottom-color: var(--magenta);
  box-shadow: 0 2px 0 var(--magenta);
}

.contact-form .button {
  width: max-content;
  margin-top: 8px;
}

.privacy-note {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.55;
}

.brand-line--contact {
  margin-top: 54px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, auto);
  gap: 30px 55px;
  align-items: center;
  padding: 34px max(34px, calc((100vw - 1340px) / 2));
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
}

.site-footer__brand {
  color: var(--peach);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__links,
.site-footer__legal {
  display: flex;
  gap: 22px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--orange);
}

.site-footer p {
  margin: 0;
  white-space: nowrap;
}

.legal-placeholder {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 40px;
  color: var(--ink);
  background: var(--peach-light);
  text-align: center;
}

.legal-placeholder__content h1 {
  margin-bottom: 22px;
  color: var(--magenta);
  font-size: clamp(3rem, 10vw, 6rem);
}

.legal-placeholder__content p {
  color: var(--orange);
  font-weight: 800;
  letter-spacing: 0.2em;
}

.legal-placeholder .brand {
  position: absolute;
  top: 24px;
  left: 32px;
}

.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.65, 0.3, 1), transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

@media (max-width: 1200px) {
  :root {
    --container: min(1080px, calc(100vw - 64px));
  }

  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .main-navigation {
    gap: 16px;
  }

  .main-navigation > a:not(.button) {
    font-size: 0.66rem;
  }

  .main-navigation .button {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  }

  .hero__content {
    padding-right: 48px;
    padding-left: 40px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 3.1vw, 3rem);
  }

  .contact__content {
    padding-right: 42px;
    padding-left: 68px;
  }

  .site-footer {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 82px;
    --container: min(880px, calc(100vw - 48px));
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: var(--header-height);
  }

  .brand img {
    width: 100px;
    height: 60px;
  }

  .brand {
    width: 100px;
    height: 60px;
  }

  .site-header .brand {
    width: 118px;
  }

  .site-header .brand img {
    width: 118px;
    height: 71px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 8px;
    padding: 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .main-navigation {
    position: fixed;
    z-index: 101;
    inset: var(--header-height) 0 auto;
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 13px;
    padding: 32px 9vw;
    opacity: 0;
    background: var(--peach-light);
    transform: translateY(-20px);
    transition: none;
  }

  .main-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-navigation > a:not(.button) {
    font-size: clamp(1.5rem, 5vw, 2.6rem);
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .main-navigation .button {
    margin-top: 22px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .hero__content {
    max-width: none;
    padding: 48px 24px;
  }

  .hero__visual {
    min-height: 760px;
  }

  .portrait--hero {
    inset: 3% 0 0;
    border-radius: 48% 0 0 0 / 20% 0 0 0;
  }

  .hero__color-block {
    inset: 6% 12% 2% 8%;
  }

  .problem__grid,
  .about__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
  }

  .problem__visual,
  .about__visual {
    top: calc(var(--header-height) + 24px);
  }

  .script-note {
    margin-right: -25px;
    margin-left: 18px;
  }

  .reconnect__intro {
    grid-template-columns: 1fr 0.65fr;
    gap: 46px;
  }

  .outcomes__final {
    grid-template-columns: 0.5fr 1fr;
  }

  .outcomes__final p:last-child {
    grid-column: 2;
  }

  .included {
    gap: 44px;
    padding: 52px;
  }

  .included li {
    grid-template-columns: 80px 1fr;
  }

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

  .contact__content {
    padding: 82px 42px;
  }

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

  .site-footer__links,
  .site-footer__legal {
    justify-content: flex-end;
  }
}

@media (max-width: 800px) {
  :root {
    --container: calc(100vw - 40px);
    --section-space: 92px;
  }

  body {
    font-size: 16px;
    line-height: 1.65;
  }

  .site-header {
    padding-right: 16px;
    padding-left: 18px;
  }

  h2 {
    margin-bottom: 30px;
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .hero__content {
    padding: 44px 20px 48px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.3vw, 3.35rem);
  }

  .hero__copy {
    display: block;
    font-size: 1rem;
    padding: 48px 0;
  }

  .button-group {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__visual {
    min-height: 132vw;
  }

  .portrait--hero {
    inset: 0 0 0 10vw;
  }

  .hero__color-block {
    inset: 5% 12vw 4% 8vw;
  }

  .hero__stamp {
    right: 7%;
    bottom: 5%;
    width: 68px;
    height: 68px;
    font-size: 2rem;
  }

  .problem__grid,
  .about__grid,
  .reconnect__intro,
  .leadmagnet__grid,
  .contact,
  .hero {
    grid-template-columns: 1fr;
  }

  .problem__visual,
  .about__visual {
    position: relative;
    top: auto;
  }

  .portrait--problem,
  .portrait--about,
  .portrait--reconnect {
    height: 128vw;
    max-height: 680px;
  }

  .problem__grid,
  .about__grid {
    gap: 84px;
  }

  .script-note {
    margin-right: -8px;
    margin-left: 22px;
  }

  .problem__content h2,
  .about__content h2 {
    font-size: clamp(2.25rem, 11vw, 3.55rem);
  }

  .reconnect__intro {
    gap: 72px;
  }

  .portrait--reconnect {
    width: 100%;
    margin-left: 0;
    border-radius: 42% 42% 0 0 / 14% 14% 0 0;
  }

  .outcomes__grid,
  .outcomes__final,
  .levels,
  .included,
  .fit__columns,
  .personal-break,
  .voices__intro,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .outcomes__grid {
    gap: 0;
  }

  .outcomes__final {
    align-items: start;
    gap: 17px;
  }

  .outcomes__final p:last-child {
    grid-column: auto;
  }

  .levels article {
    padding: 42px 22px;
  }

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

  .included {
    gap: 54px;
    padding: 40px 24px;
  }

  .included li {
    grid-template-columns: 68px 1fr;
    gap: 14px;
  }

  .fit__columns article {
    padding: 42px 24px;
  }

  .about__script {
    margin-right: 10px;
    margin-left: 8px;
  }

  .personal-break {
    gap: 20px;
  }

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

  .testimonials article {
    min-height: 220px;
  }

  .leadmagnet h2 {
    position: static;
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .leadmagnet__grid {
    gap: 32px;
  }

  .leadmagnet__content .button {
    width: 100%;
  }

  .contact__visual {
    position: static;
    height: 128vw;
    min-height: 0;
    max-height: 720px;
  }

  .contact__content {
    padding: 88px 20px;
  }

  .contact h2 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
  }

  .contact-form .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 42px 20px;
  }

  .site-footer__links,
  .site-footer__legal {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .fit h2 {
    font-size: clamp(1.9rem, 8.4vw, 2.8rem);
    line-height: 1.15;
    text-wrap: balance;
  }
}

@media (max-width: 390px) {
  :root {
    --container: calc(100vw - 32px);
  }

  .hero__content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .button {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .main-navigation .button {
    width: auto;
  }

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

  .script-note {
    margin-right: 0;
    margin-left: 12px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .about__highlight {
    padding: 30px 24px;
  }

  .included li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@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;
  }

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

@media print {
  .site-header,
  .menu-toggle {
    position: static;
  }

  .main-navigation {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .problem__visual,
  .about__visual,
  .leadmagnet h2 {
    position: static;
  }

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

