:root {
  --page: #fffaf7;
  --ink: #2a0712;
  --muted: #74515b;
  --hero: #8a0b29;
  --hero-ink: #fdd0e4;
  --brand: #8a0b29;
  --accent: #fdd0e4;
  --soft: #f5e4dc;
  --surface: #fdd0e4;
  --card: #fffdfb;
  --feature: #f0d9ce;
  --feature-ink: #2a0712;
  --footer: #26060f;
  --footer-ink: #fff7f3;
  --line: rgba(42, 7, 18, .16);
  --logo-bg: #fff;
  --logo-ratio: 1 / 1;
  --logo-radius: 50%;
  --button-bg: #fdd0e4;
  --button-ink: #52061b;
  --shadow: 0 28px 80px rgba(42, 7, 18, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body[data-theme="mono-light"] {
  --page: #fbfaf7;
  --ink: #090909;
  --muted: #585651;
  --hero: #fff;
  --hero-ink: #070707;
  --brand: #0a0a0a;
  --accent: #d7c5a8;
  --soft: #eee7dc;
  --surface: #ded1bd;
  --card: #fff;
  --feature: #e6dac8;
  --feature-ink: #0a0a0a;
  --footer: #090909;
  --footer-ink: #fff;
  --line: rgba(0, 0, 0, .15);
  --logo-bg: #fff;
  --logo-ratio: 3 / 2;
  --logo-radius: 28px;
  --button-bg: #0a0a0a;
  --button-ink: #fff;
  --shadow: 0 28px 80px rgba(0, 0, 0, .12);
}

body[data-theme="mono-dark"] {
  --page: #f7f4ed;
  --ink: #0b0b0b;
  --muted: #5e5b55;
  --hero: #050505;
  --hero-ink: #fff;
  --brand: #050505;
  --accent: #e8dece;
  --soft: #e9e0d3;
  --surface: #0b0b0b;
  --card: #fff;
  --feature: #171717;
  --feature-ink: #fff;
  --footer: #050505;
  --footer-ink: #fff;
  --line: rgba(0, 0, 0, .16);
  --logo-bg: #000;
  --logo-ratio: 3 / 2;
  --logo-radius: 26px;
  --button-bg: #fff;
  --button-ink: #050505;
  --shadow: 0 28px 80px rgba(0, 0, 0, .24);
}

body[data-theme="beige-editorial"] {
  --page: #f7f1e7;
  --ink: #11100e;
  --muted: #666056;
  --hero: #e7dac8;
  --hero-ink: #10100e;
  --brand: #151412;
  --accent: #fff;
  --soft: #eee5d8;
  --surface: #fff;
  --card: #fffdf8;
  --feature: #171614;
  --feature-ink: #fff;
  --footer: #171614;
  --footer-ink: #fff;
  --line: rgba(17, 16, 14, .16);
  --logo-bg: #fff;
  --logo-ratio: 1 / 1;
  --logo-radius: 42px;
  --button-bg: #11100e;
  --button-ink: #fff;
  --shadow: 0 28px 80px rgba(36, 28, 19, .14);
}

body[data-theme="vino-editorial"] {
  --page: #fff8f5;
  --ink: #2e0714;
  --muted: #78515c;
  --hero: #8a0b29;
  --hero-ink: #fdd0e4;
  --brand: #8a0b29;
  --accent: #fdd0e4;
  --soft: #f7e1e8;
  --surface: #fdd0e4;
  --card: #fff;
  --feature: #fdd0e4;
  --feature-ink: #480719;
  --footer: #8a0b29;
  --footer-ink: #ffe9f1;
  --line: rgba(77, 8, 27, .16);
  --logo-bg: #8a0b29;
  --logo-ratio: 3 / 2;
  --logo-radius: 28px;
  --button-bg: #fdd0e4;
  --button-ink: #56061d;
  --shadow: 0 28px 80px rgba(92, 5, 28, .21);
}

body[data-theme="vino-badge"] {
  --page: #fffaf7;
  --ink: #2a0712;
  --muted: #74515b;
  --hero: #8a0b29;
  --hero-ink: #fdd0e4;
  --brand: #8a0b29;
  --accent: #fdd0e4;
  --soft: #f5e4dc;
  --surface: #fdd0e4;
  --card: #fffdfb;
  --feature: #f0d9ce;
  --feature-ink: #2a0712;
  --footer: #26060f;
  --footer-ink: #fff7f3;
  --line: rgba(42, 7, 18, .16);
  --logo-bg: #fff;
  --logo-ratio: 1 / 1;
  --logo-radius: 50%;
  --button-bg: #fdd0e4;
  --button-ink: #52061b;
  --shadow: 0 28px 80px rgba(42, 7, 18, .16);
}

body[data-theme="mono-badge"] {
  --page: #f4ede2;
  --ink: #080808;
  --muted: #5c574f;
  --hero: #0a0a0a;
  --hero-ink: #fff;
  --brand: #080808;
  --accent: #d6c4a7;
  --soft: #e9dfd0;
  --surface: #fff;
  --card: #fff;
  --feature: #fff;
  --feature-ink: #0a0a0a;
  --footer: #080808;
  --footer-ink: #fff;
  --line: rgba(0, 0, 0, .16);
  --logo-bg: #fff;
  --logo-ratio: 1 / 1;
  --logo-radius: 50%;
  --button-bg: #fff;
  --button-ink: #080808;
  --shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  transition: background-color .35s ease, color .35s ease;
}

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

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

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--page);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section--tight {
  padding: 88px 0;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--brand);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero .kicker,
.final-cta .kicker,
.footer .kicker {
  color: var(--accent);
}

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

h1,
h2,
.statement,
.reminder p,
.closing-title {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: .9;
}

h1 em,
h2 em {
  color: var(--accent);
  font-weight: 400;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 5.2vw, 5.1rem);
  line-height: .98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.28;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.lead {
  font-size: 1.14rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease;
}

.button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.button--hero {
  background: var(--button-bg);
  color: var(--button-ink);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
  color: currentColor;
}

.arrow {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  transition: transform .2s ease;
}

.button:hover .arrow {
  transform: translate(2px, -2px);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--hero-ink);
}

.nav {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--hero-ink) 26%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-symbol {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links > a:not(.button) {
  color: inherit;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.nav .button {
  min-height: 42px;
  padding-inline: 18px;
}

.variant-bar {
  position: fixed;
  z-index: 100;
  right: 18px;
  bottom: 18px;
  width: min(430px, calc(100% - 36px));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(12, 12, 12, .9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
  color: #fff;
  backdrop-filter: blur(18px);
}

.variant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.variant-head strong {
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.variant-head span {
  color: rgba(255, 255, 255, .52);
  font-size: .64rem;
}

.variant-options {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
}

.variant-option {
  display: grid;
  min-width: 0;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 11px;
  background: #202020;
  color: #fff;
  cursor: pointer;
}

.variant-option[aria-pressed="true"] {
  border-color: #fff;
  box-shadow: inset 0 0 0 1px #fff;
}

.variant-swatch {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
}

.variant-option:nth-child(1) .variant-swatch {
  background: linear-gradient(135deg, #fff 50%, #000 50%);
}

.variant-option:nth-child(2) .variant-swatch {
  background: linear-gradient(135deg, #000 50%, #fff 50%);
}

.variant-option:nth-child(3) .variant-swatch {
  background: linear-gradient(135deg, #e7dac8 50%, #0a0a0a 50%);
}

.variant-option:nth-child(4) .variant-swatch {
  background: linear-gradient(135deg, #8a0b29 50%, #fdd0e4 50%);
}

.variant-option:nth-child(5) .variant-swatch {
  background: radial-gradient(circle, #fdd0e4 0 32%, #8a0b29 34% 70%, #fff 72%);
}

.variant-option:nth-child(6) .variant-swatch {
  background: radial-gradient(circle, #fff 0 32%, #000 34% 70%, #e7dac8 72%);
}

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

.hero::before {
  content: "";
  position: absolute;
  top: -310px;
  left: -260px;
  width: 720px;
  height: 720px;
  border: 1px solid color-mix(in srgb, var(--hero-ink) 28%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 96px color-mix(in srgb, var(--hero-ink) 5%, transparent),
    0 0 0 190px color-mix(in srgb, var(--hero-ink) 4%, transparent);
}

.hero::after {
  content: "movimiento";
  position: absolute;
  right: -30px;
  bottom: -55px;
  color: color-mix(in srgb, var(--hero-ink) 8%, transparent);
  font-family: var(--serif);
  font-size: clamp(7rem, 17vw, 16rem);
  font-style: italic;
  letter-spacing: -.08em;
  line-height: .8;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 850px;
  grid-template-columns: 1.14fr .86fr;
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
  padding-top: 130px;
  padding-bottom: 80px;
}

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

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: color-mix(in srgb, var(--hero-ink) 72%, transparent);
  font-size: 1.08rem;
}

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

.hero-logo-wrap {
  position: relative;
  justify-self: end;
  width: min(100%, 510px);
}

.logo-stage {
  position: relative;
  width: 100%;
  aspect-ratio: var(--logo-ratio);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--hero-ink) 30%, transparent);
  border-radius: var(--logo-radius);
  background: var(--logo-bg);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
  transition: aspect-ratio .35s ease, border-radius .35s ease, background-color .35s ease;
}

.logo-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.orbit-label {
  position: absolute;
  right: -26px;
  bottom: 28px;
  display: grid;
  width: 134px;
  height: 134px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-meta span {
  padding: 9px 13px;
  border: 1px solid color-mix(in srgb, var(--hero-ink) 24%, transparent);
  border-radius: 999px;
  color: color-mix(in srgb, var(--hero-ink) 78%, transparent);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.about-intro {
  position: sticky;
  top: 120px;
}

.about-copy {
  max-width: 680px;
  padding-top: 48px;
}

.about-copy p {
  font-size: 1.06rem;
}

.about-copy .statement {
  margin: 46px 0;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.15;
}

.accompany {
  background: var(--feature);
  color: var(--feature-ink);
}

.accompany .kicker {
  color: currentColor;
}

.accompany-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(54px, 8vw, 100px);
}

.accompany-copy {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.accompany-copy p {
  max-width: 640px;
  color: color-mix(in srgb, var(--feature-ink) 68%, transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.path-list {
  display: grid;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.path-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--feature-ink) 18%, transparent);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.3vw, 2rem);
}

.path-list li::after {
  content: "↗";
  font-family: var(--sans);
  font-size: 1rem;
}

.service-card {
  position: relative;
  min-height: 540px;
  padding: 180px 46px 46px;
  overflow: hidden;
  border-radius: 42% 42% 24px 24px;
  background: var(--hero);
  color: var(--hero-ink);
}

.service-card::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -110px;
  width: 370px;
  height: 370px;
  border: 1px solid color-mix(in srgb, var(--hero-ink) 34%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 60px color-mix(in srgb, var(--hero-ink) 7%, transparent);
}

.service-card-number {
  position: absolute;
  z-index: 2;
  top: 56px;
  left: 50%;
  display: block;
  width: max-content;
  margin: 0;
  font-family: var(--serif);
  font-size: 1rem;
  text-align: center;
  transform: translateX(-50%);
}

.service-card h3 {
  max-width: 330px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.service-card p {
  position: relative;
  max-width: 350px;
  color: color-mix(in srgb, var(--hero-ink) 72%, transparent);
}

.service-card--pilates {
  --hero-ink: #11100e;
  background: #d9cbb7;
}

.service-card-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pilates {
  background: var(--page);
}

.pilates-intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.pilates-heading {
  position: sticky;
  top: 120px;
}

.pilates-heading h2 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.pilates-copy {
  padding-top: 52px;
}

.pilates-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.2;
}

.pilates-copy p {
  max-width: 680px;
}

.pilates-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 38px;
  padding: 0;
  list-style: none;
}

.pilates-benefits li {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pilates-gallery-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: end;
  margin: clamp(82px, 12vw, 150px) 0 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.pilates-gallery-heading h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.pilates-gallery-heading p {
  max-width: 520px;
  margin: 0;
  justify-self: end;
  text-align: right;
}

.pilates-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
  gap: clamp(18px, 3vw, 34px);
  width: min(100%, 1040px);
  margin-inline: auto;
  align-items: start;
}

.pilates-media {
  min-width: 0;
  margin: 0;
}

.pilates-media--wide {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.pilates-media img {
  display: block;
  width: 100%;
  height: clamp(210px, 19vw, 245px);
  border-radius: 28px;
  object-fit: cover;
}

.pilates-media--wide img {
  height: clamp(420px, 39vw, 510px);
}

.pilates-media figcaption {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px 0;
  color: var(--muted);
  font-size: .72rem;
}

.pilates-media figcaption strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}

.method-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 64px;
}

.method-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.method-heading p {
  max-width: 420px;
  margin-bottom: 6px;
}

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

.step {
  min-height: 360px;
  padding: 34px 30px;
}

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

.step-number {
  display: block;
  margin-bottom: 112px;
  color: var(--brand);
  font-family: var(--serif);
}

.step p {
  max-width: 310px;
  margin-bottom: 0;
  font-size: .92rem;
}

.takeaway {
  padding: 0;
  background: var(--hero);
  color: var(--hero-ink);
}

.takeaway-inner {
  display: grid;
  min-height: 720px;
  grid-template-columns: .8fr 1.2fr;
}

.takeaway-heading {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px clamp(24px, 6vw, 80px) 70px max(24px, calc((100vw - 1180px) / 2));
  border-right: 1px solid color-mix(in srgb, var(--hero-ink) 20%, transparent);
}

.takeaway-heading h2 {
  max-width: 520px;
}

.takeaway-heading p {
  max-width: 450px;
  color: color-mix(in srgb, var(--hero-ink) 66%, transparent);
}

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

.takeaway-item {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  border-bottom: 1px solid color-mix(in srgb, var(--hero-ink) 20%, transparent);
}

.takeaway-item:nth-child(odd) {
  border-right: 1px solid color-mix(in srgb, var(--hero-ink) 20%, transparent);
}

.takeaway-item strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -.04em;
}

.takeaway-item span {
  color: color-mix(in srgb, var(--hero-ink) 55%, transparent);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.reminders-heading {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  margin-bottom: 60px;
}

.reminders-heading h2 {
  margin-bottom: 0;
}

.reminders-heading p {
  max-width: 520px;
  align-self: end;
}

.reminders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.reminder {
  min-height: 320px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
}

.reminder-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 86px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
}

.reminder p {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.16;
}

.testimonials {
  background: var(--soft);
}

.testimonials-intro {
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  gap: clamp(42px, 8vw, 112px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.testimonials-intro .section-number {
  display: block;
  margin-top: 26px;
  color: color-mix(in srgb, var(--ink) 20%, transparent);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: .78;
}

.testimonials-intro h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.6rem);
}

.testimonials-intro p:last-child {
  max-width: 680px;
}

.testimonial-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.video-story {
  min-width: 0;
  margin: 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 13%, transparent);
  border-radius: 26px;
  background: #050505;
  box-shadow: 0 24px 60px color-mix(in srgb, var(--ink) 12%, transparent);
}

.video-frame video {
  display: block;
  width: 100%;
  background: #050505;
  object-fit: cover;
}

.video-story--featured video {
  aspect-ratio: 16 / 9;
}

.video-story figcaption {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: .9rem;
}

.video-story--featured figcaption > span:first-child {
  display: grid;
  gap: 5px;
}

.video-story figcaption strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.video-duration,
.video-story--clip figcaption span {
  flex: 0 0 auto;
  color: color-mix(in srgb, var(--ink) 48%, transparent);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.testimonial-clips-heading {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin: clamp(66px, 9vw, 112px) 0 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.testimonial-clips-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.testimonial-clips-heading p {
  max-width: 420px;
  margin: 0;
  text-align: right;
}

.testimonial-clips-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
}

.video-story--clip .video-frame {
  border-radius: 22px;
}

.video-story--clip video {
  aspect-ratio: 9 / 16;
}

.video-story--clip figcaption {
  align-items: center;
  padding-top: 14px;
}

.video-story--clip figcaption strong {
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(50px, 9vw, 120px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1rem;
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--brand);
  color: #fff;
}

.faq-answer {
  max-width: 690px;
  padding: 0 54px 30px 0;
}

.final-cta {
  background: var(--hero);
  color: var(--hero-ink);
}

.closing-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.closing-copy p {
  max-width: 600px;
  color: color-mix(in srgb, var(--hero-ink) 68%, transparent);
}

.closing-title {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: .98;
}

.contact-card {
  padding: clamp(30px, 5vw, 56px);
  border-radius: 28px;
  background: var(--page);
  color: var(--ink);
}

.contact-card h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -.03em;
}

.contact-card > p {
  margin-bottom: 30px;
  font-size: .88rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

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

label {
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

input,
select {
  height: 50px;
}

textarea {
  min-height: 92px;
  padding-top: 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 72%, transparent);
}

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

.form-submit small {
  max-width: 210px;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.5;
}

.form-status {
  min-height: 22px;
  margin: 16px 0 0;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
}

.footer {
  --footer-active-bg: #7a6654;
  --footer-active-ink: #ffffff;
  --footer-active-accent: #f4e4cf;
  padding: 70px 0 42px;
  background: var(--footer-active-bg);
  color: var(--footer-active-ink);
}

.footer .kicker {
  color: var(--footer-active-accent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 50px;
  padding-bottom: 70px;
}

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

.footer-brand h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.footer-brand p {
  color: color-mix(in srgb, var(--footer-active-ink) 68%, transparent);
}

.footer-info {
  align-self: end;
}

.footer-info p {
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--footer-active-ink) 78%, transparent);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.footer-social span,
.footer-social a {
  padding: 9px 13px;
  border: 1px solid color-mix(in srgb, var(--footer-active-ink) 26%, transparent);
  border-radius: 999px;
  color: inherit;
  font-size: .72rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--footer-active-ink) 20%, transparent);
  color: color-mix(in srgb, var(--footer-active-ink) 58%, transparent);
  font-size: .68rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.text-fade {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(18px);
  transition:
    opacity .68s ease var(--fade-delay, 0ms),
    filter .68s ease var(--fade-delay, 0ms),
    transform .68s ease var(--fade-delay, 0ms);
}

.text-fade.is-text-visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.service-card-number.text-fade,
.service-card-number.text-fade.is-text-visible {
  transform: translateX(-50%);
}

@keyframes logo-float {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(1.5deg) translateY(-12px);
  }
}

@keyframes orbit-breathe {
  0%,
  100% {
    transform: rotate(-8deg) scale(1);
  }
  50% {
    transform: rotate(-5deg) scale(1.045);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes icon-pop {
  0% {
    transform: scale(.7) rotate(-20deg);
  }
  65% {
    transform: scale(1.12) rotate(4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .logo-stage {
    animation: logo-float 7s ease-in-out infinite;
  }

  .orbit-label {
    animation: orbit-breathe 5s ease-in-out infinite;
  }

  .hero-copy > * {
    opacity: 0;
    animation: hero-rise .7s ease forwards;
  }

  .hero-copy > :nth-child(1) {
    animation-delay: .08s;
  }

  .hero-copy > :nth-child(2) {
    animation-delay: .16s;
  }

  .hero-copy > :nth-child(3) {
    animation-delay: .26s;
  }

  .hero-copy > :nth-child(4) {
    animation-delay: .34s;
  }

  .hero-copy > :nth-child(5) {
    animation-delay: .42s;
  }

  .hero-copy > :nth-child(6) {
    animation-delay: .5s;
  }

  .path-list li {
    opacity: 0;
    transform: translateX(-22px);
    transition: opacity .55s ease, transform .55s ease;
  }

  .accompany-copy.is-visible .path-list li {
    opacity: 1;
    transform: none;
  }

  .accompany-copy.is-visible .path-list li:nth-child(1) {
    transition-delay: .16s;
  }

  .accompany-copy.is-visible .path-list li:nth-child(2) {
    transition-delay: .24s;
  }

  .accompany-copy.is-visible .path-list li:nth-child(3) {
    transition-delay: .32s;
  }

  .accompany-copy.is-visible .path-list li:nth-child(4) {
    transition-delay: .4s;
  }

  .steps .step {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .steps.is-visible .step {
    opacity: 1;
    transform: none;
  }

  .steps.is-visible .step:nth-child(2) {
    transition-delay: .14s;
  }

  .steps.is-visible .step:nth-child(3) {
    transition-delay: .28s;
  }

  .takeaway-list .takeaway-item {
    opacity: 0;
    transform: scale(.96);
    transition: opacity .55s ease, transform .55s ease;
  }

  .takeaway-list.is-visible .takeaway-item {
    opacity: 1;
    transform: none;
  }

  .takeaway-list.is-visible .takeaway-item:nth-child(2) {
    transition-delay: .12s;
  }

  .takeaway-list.is-visible .takeaway-item:nth-child(3) {
    transition-delay: .24s;
  }

  .takeaway-list.is-visible .takeaway-item:nth-child(4) {
    transition-delay: .36s;
  }

  .reminder.is-visible .reminder-icon {
    animation: icon-pop .55s ease both;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .text-fade {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (min-width: 981px) {
  .variant-bar {
    top: 50%;
    right: 18px;
    bottom: auto;
    width: 62px;
    padding: 8px;
    transform: translateY(-50%);
  }

  .variant-head {
    display: none;
  }

  .variant-options {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .variant-option {
    min-height: 42px;
  }
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 36px, 760px);
  }

  .nav-links > a:not(.button) {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-logo-wrap {
    width: min(78vw, 530px);
    justify-self: center;
  }

  .about-grid,
  .accompany-grid,
  .takeaway-inner,
  .reminders-heading,
  .testimonials-intro,
  .testimonial-featured-grid,
  .faq-grid,
  .closing-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .about-intro,
  .pilates-heading,
  .faq-heading {
    position: static;
  }

  .about-copy,
  .pilates-copy {
    padding-top: 0;
  }

  .accompany-copy,
  .services-grid,
  .pilates-intro,
  .pilates-gallery-heading {
    grid-template-columns: 1fr;
  }

  .pilates-gallery-heading p {
    justify-self: start;
    text-align: left;
  }

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

  .method-heading {
    display: block;
  }

  .method-heading p {
    margin-top: 22px;
  }

  .takeaway-heading {
    min-height: 540px;
    padding: 90px 24px 60px;
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--hero-ink) 20%, transparent);
  }

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

  .footer-info {
    align-self: start;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 88px 0;
  }

  .section--tight {
    padding: 70px 0;
  }

  .text-fade {
    transform: translateY(28px);
    transition-duration: .76s;
  }

  .nav {
    min-height: 74px;
  }

  .nav .button {
    min-height: 38px;
    padding-inline: 14px;
    font-size: .73rem;
  }

  .brand {
    font-size: .76rem;
  }

  .hero-inner {
    padding-top: 126px;
    padding-bottom: 100px;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-logo-wrap {
    width: min(90vw, 470px);
    margin-top: 22px;
  }

  .orbit-label {
    right: -5px;
    bottom: -28px;
    width: 112px;
    height: 112px;
    font-size: .55rem;
  }

  .variant-bar {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .variant-head span {
    display: none;
  }

  .service-card {
    min-height: 440px;
    padding: 190px 34px 34px;
  }

  .service-card-number {
    top: 78px;
    margin: 0;
    text-align: center;
  }

  .pilates-gallery {
    grid-template-columns: 1fr;
  }

  .pilates-media--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .pilates-media img,
  .pilates-media--wide img {
    height: min(58vw, 220px);
  }

  .pilates-media figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

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

  .step {
    min-height: 260px;
  }

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

  .step-number {
    margin-bottom: 72px;
  }

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

  .takeaway-item {
    min-height: 220px;
    padding: 34px 24px;
  }

  .takeaway-item:nth-child(odd) {
    border-right: 0;
  }

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

  .reminder {
    min-height: 270px;
    padding: 28px;
  }

  .reminder-icon {
    margin-bottom: 64px;
  }

  .testimonials-intro .section-number {
    margin-top: 18px;
    font-size: 5rem;
  }

  .testimonial-featured-grid {
    gap: 42px;
  }

  .testimonial-clips-heading {
    display: block;
  }

  .testimonial-clips-heading p {
    margin-top: 10px;
    text-align: left;
  }

  .video-story--featured figcaption {
    display: grid;
  }

  .video-story--clip figcaption {
    display: grid;
    gap: 5px;
  }

  .faq-list summary {
    min-height: 82px;
  }

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

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

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

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 430px) {
  .shell {
    width: calc(100% - 28px);
  }

  .brand-symbol {
    width: 31px;
    height: 31px;
  }

  .brand span:last-child {
    display: none;
  }

  .variant-bar {
    padding: 11px;
  }

  .variant-option {
    min-height: 42px;
  }

  .variant-swatch {
    width: 19px;
    height: 19px;
  }

  .hero-meta {
    gap: 7px;
  }

  .hero-meta span {
    padding: 8px 10px;
    font-size: .6rem;
  }
}
