:root {
  --ink: #171217;
  --ink-deep: #050406;
  --ink-soft: #463a46;
  --paper: #f8f4ef;
  --paper-strong: #ffffff;
  --paper-sage: #eef2ea;
  --line: #ddd4ce;
  --line-dark: rgba(255, 255, 255, 0.18);
  --plum: #8e2ba5;
  --plum-deep: #4d135f;
  --purple-electric: #cf37f2;
  --purple-hot: #b623d9;
  --mauve: #c59bb0;
  --sand: #d9c8bd;
  --sage: #74816f;
  --sage-deep: #536048;
  --radius: 8px;
  --shadow: 0 20px 58px rgba(31, 21, 24, 0.14);
  --purple-glow: 0 22px 62px rgba(207, 55, 242, 0.24);
  --flow-gradient: linear-gradient(105deg, var(--purple-electric), var(--purple-hot) 48%, var(--plum-deep));
  --cta-gradient: linear-gradient(105deg, #a82bc5, var(--plum) 48%, var(--plum-deep));
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --flow-progress: 0;
  --flow-x: 0;
  --flow-y: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0, var(--paper) 76rem, #fffdfb 104rem, var(--paper-sage) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::selection {
  color: var(--paper-strong);
  background: var(--plum);
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(207, 55, 242, 0.58);
  outline-offset: 4px;
}

main {
  position: relative;
  overflow: hidden;
}

main::before,
main::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 130vw;
  height: 34rem;
  border-top: 2px solid rgba(142, 43, 165, 0.32);
  border-radius: 50%;
  pointer-events: none;
  transform: translateX(-50%) rotate(-4deg);
}

main::before {
  top: 48rem;
  animation: ambientFlow 18s ease-in-out infinite;
}

main::after {
  bottom: 28rem;
  border-color: rgba(116, 129, 111, 0.32);
  transform: translateX(-50%) rotate(3deg);
  animation: ambientFlow 21s ease-in-out infinite reverse;
}

main > * {
  position: relative;
  z-index: 1;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--paper-strong);
  background: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--paper-strong);
  background: rgba(5, 4, 6, 0.92);
  border-bottom: 1px solid rgba(207, 55, 242, 0.28);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--flow-gradient);
  transform: scaleX(var(--flow-progress));
  transform-origin: left;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  background: var(--ink);
  border: 1px solid rgba(207, 55, 242, 0.58);
  border-radius: 7px;
}

.brand span {
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.68rem, 1.5vw, 1rem);
  font-size: clamp(0.82rem, 1vw, 0.92rem);
  font-weight: 800;
}

.site-nav a {
  position: relative;
  color: var(--paper-strong);
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 2px;
  background: var(--flow-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta).is-active {
  color: #f3d9fb;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta).is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button,
.contact-card {
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-cta {
  padding: 0.7rem 0.95rem;
  color: var(--paper-strong);
  background: var(--cta-gradient);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(207, 55, 242, 0.28);
}

.nav-cta.is-active {
  box-shadow:
    0 10px 28px rgba(207, 55, 242, 0.38),
    inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper-strong);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(2rem, 5vw, 5.25rem);
  align-items: center;
  width: 100%;
  min-height: min(860px, calc(100svh - 74px));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.6rem) max(16px, calc((100vw - 1120px) / 2)) clamp(4.5rem, 7vw, 6.4rem);
  color: var(--paper-strong);
  overflow: hidden;
  scroll-margin-top: 74px;
  background:
    linear-gradient(115deg, rgba(5, 4, 6, 0.98) 0%, rgba(16, 11, 18, 0.98) 56%, rgba(35, 14, 43, 0.98) 100%),
    #050406;
  perspective: 1200px;
}

.hero::before {
  content: "";
  position: absolute;
  top: clamp(5.5rem, 10vw, 8.25rem);
  left: 50%;
  width: 124vw;
  height: clamp(9rem, 20vw, 17rem);
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 260' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M -80 198 C 190 42 390 24 610 108 C 845 198 1012 206 1210 104 C 1322 46 1432 40 1520 72' fill='none' stroke='%23812B86' stroke-width='36' stroke-linecap='round'/%3E%3Cpath d='M -80 198 C 190 42 390 24 610 108 C 845 198 1012 206 1210 104 C 1322 46 1432 40 1520 72' fill='none' stroke='%23812B86' stroke-width='19' stroke-linecap='round' opacity='0.54' transform='translate(0 18)'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  filter: drop-shadow(0 22px 42px rgba(207, 55, 242, 0.2));
  pointer-events: none;
  transform: translateX(-50%);
  animation: ribbonDraw 1100ms var(--ease-out) both;
}

.hero::after {
  content: "";
  position: absolute;
  right: -3vw;
  bottom: clamp(-5rem, -5vw, -2.75rem);
  left: -3vw;
  height: clamp(10.5rem, 18vw, 16rem);
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 260' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 196 C212 196 356 172 510 124 C660 78 790 62 940 70 C1110 79 1275 92 1440 76 L1440 260 L0 260 Z' fill='%23f8f4ef'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  pointer-events: none;
}

.hero > *:not(.hero-flow-field) {
  position: relative;
  z-index: 1;
}

.hero-flow-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-contours {
  position: absolute;
  top: -4%;
  right: -11%;
  width: 126%;
  height: 86%;
  opacity: 0.72;
  transform: translate3d(0, 0, 0);
  transition: transform 420ms var(--ease-out);
}

.flow-path {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1450;
  stroke-dashoffset: 1450;
  animation: traceFlow 1500ms var(--ease-out) both;
}

.flow-path-soft {
  stroke: rgba(116, 129, 111, 0.24);
  stroke-width: 3;
  animation-delay: 120ms;
}

.flow-path-bold {
  stroke: rgba(207, 55, 242, 0.68);
  stroke-width: 15;
  filter: drop-shadow(0 18px 36px rgba(207, 55, 242, 0.28));
  animation-delay: 260ms;
}

.flow-path-dash {
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 2;
  stroke-dasharray: 8 20;
  stroke-dashoffset: 900;
  animation: dashFlow 24s linear infinite;
}

.flow-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--purple-electric);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(207, 55, 242, 0.12), 0 0 24px rgba(207, 55, 242, 0.8);
  offset-path: path("M -80 420 C 190 210 390 182 620 288 C 835 388 1015 385 1210 250 C 1320 172 1448 150 1550 174");
  animation: pulseFlow 8.8s linear infinite;
}

.flow-pulse-two {
  width: 0.48rem;
  height: 0.48rem;
  background: #ffffff;
  offset-path: path("M -60 505 C 170 330 370 262 590 342 C 812 424 998 460 1180 332 C 1305 244 1430 228 1540 252");
  animation-duration: 11.5s;
  animation-delay: -4.4s;
  opacity: 0.78;
}

.hero.is-pointer-active .hero-contours {
  transform:
    translate3d(calc(var(--flow-x) * -16px), calc(var(--flow-y) * -10px), 0)
    rotate(calc(var(--flow-x) * -1deg));
}

.hero-copy {
  max-width: 680px;
  animation: fadeUp 760ms var(--ease-out) 120ms both;
}

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

h1,
h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
}

h1 {
  max-width: 660px;
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: var(--purple-electric);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.eyebrow,
.strip-label {
  margin: 0 0 0.7rem;
  color: var(--plum-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sessions-section .eyebrow,
.contact-section .eyebrow,
.site-footer .eyebrow {
  color: var(--purple-electric);
}

.hero-lede {
  max-width: 610px;
  color: #eee8ef;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-location {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0.1rem 0 0;
  color: #e4cfe9;
  font-weight: 800;
}

.hero-location::before {
  content: "";
  width: 2.6rem;
  height: 3px;
  background: var(--flow-gradient);
  border-radius: 999px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 900;
  text-decoration: none;
  isolation: isolate;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 520ms var(--ease-out);
}

.button:hover::before {
  transform: translateX(120%);
}

.button:hover,
.nav-cta:hover,
.contact-card:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper-strong);
  background: var(--cta-gradient);
  border-color: rgba(207, 55, 242, 0.82);
  box-shadow: 0 16px 36px rgba(207, 55, 242, 0.26);
}

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

.hero .button-secondary {
  color: var(--paper-strong);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
}

.hero-mini {
  max-width: 520px;
  margin: 1rem 0 0;
  color: #cdb6d1;
  font-size: 0.96rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  overflow: visible;
  background: transparent;
  animation: floatMedia 820ms var(--ease-out) 260ms both;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 360ms var(--ease-out);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 3px solid #812b86;
  border-radius: 62% var(--radius) 0 4px / 58% var(--radius) 0 4px;
  clip-path: inset(0 53% 0 0);
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: -2.2rem;
  bottom: 8%;
  z-index: 2;
  width: 58%;
  height: 16px;
  background: var(--flow-gradient);
  border-radius: 999px;
  transform: rotate(-22deg);
  box-shadow: 0 18px 32px rgba(207, 55, 242, 0.24);
  pointer-events: none;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  border: 0;
  border-radius: 62% var(--radius) 0 4px / 58% var(--radius) 0 4px;
  box-shadow: var(--purple-glow);
  transition: transform 420ms var(--ease-out), filter 420ms ease;
}

.hero.is-pointer-active .hero-media {
  transform:
    translate3d(calc(var(--flow-x) * 14px), calc(var(--flow-y) * 10px), 0)
    rotateX(calc(var(--flow-y) * -2deg))
    rotateY(calc(var(--flow-x) * 2.5deg));
}

.hero.is-pointer-active .hero-media img {
  transform: scale(1.015) translate3d(calc(var(--flow-x) * -6px), calc(var(--flow-y) * -4px), 0);
  filter: saturate(1.05) contrast(1.02);
}

.hero-socials {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-socials a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--paper-strong);
  background: var(--flow-gradient);
  border-radius: 7px;
  box-shadow: 0 7px 18px rgba(207, 55, 242, 0.24);
  transition: transform 180ms var(--ease-out), filter 180ms ease;
}

.hero-socials a:nth-child(2) {
  background: #1877f2;
  box-shadow: 0 7px 18px rgba(24, 119, 242, 0.28);
}

.hero-socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

.hero-socials a:focus-visible {
  outline: 3px solid var(--paper-strong);
  outline-offset: 3px;
}

.hero-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.hero-note {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  min-width: 154px;
  padding: 0.85rem 1rem;
  color: var(--paper-strong);
  background: rgba(5, 4, 6, 0.88);
  border: 1px solid rgba(207, 55, 242, 0.4);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-note span,
.contact-card span {
  display: block;
  color: #dda6ec;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-size: 1.35rem;
}

.opening-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  width: fit-content;
  max-width: calc(100% - 32px);
  margin: -3.2rem auto 2.5rem;
  overflow: hidden;
  color: var(--paper-strong);
  background: rgba(207, 55, 242, 0.38);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.opening-strip div {
  position: relative;
  min-height: 74px;
  padding: 0.85rem 1.35rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 14, 25, 0.98), rgba(10, 8, 12, 0.96)),
    rgba(10, 8, 12, 0.94);
  border-radius: 999px;
}

.opening-strip .opening-location {
  display: grid;
  grid-template-columns: 38px max-content;
  gap: 0.75rem;
  align-items: center;
  max-width: 100%;
}

.opening-location img {
  width: 38px;
  height: 38px;
  padding: 0.42rem;
  background: rgba(207, 55, 242, 0.14);
  border: 1px solid rgba(207, 55, 242, 0.34);
  border-radius: 50%;
}

.opening-strip .strip-label {
  color: #df9ff0;
}

.opening-strip strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.35;
  white-space: nowrap;
}

.section {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(3.6rem, 7vw, 6.2rem) 0;
  scroll-margin-top: 96px;
}

.about-section .section-copy {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.section-copy p,
.section-heading p,
.coach-benefit p,
.movement-copy p,
.movement-item p,
.session-list p,
.testimonial-card blockquote,
.contact-copy p {
  color: var(--ink-soft);
}

.coach-section {
  width: min(1160px, calc(100% - 32px));
  padding-top: clamp(2rem, 5vw, 4.25rem);
  padding-bottom: clamp(0.9rem, 2vw, 1.4rem);
}

.coach-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(290px, 1fr) minmax(250px, 0.78fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: center;
  min-height: 300px;
  padding: clamp(1rem, 2.8vw, 1.55rem) clamp(1rem, 3.4vw, 2.2rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 3%, rgba(207, 55, 242, 0.08), transparent 26rem),
    linear-gradient(102deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 249, 0.92));
  border: 1px solid rgba(221, 212, 206, 0.78);
  border-radius: clamp(1.75rem, 3.4vw, 3rem);
  box-shadow: 0 22px 64px rgba(31, 21, 24, 0.1);
  isolation: isolate;
}

.coach-card::before,
.coach-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.coach-card::before {
  top: -4.8rem;
  left: -8.5rem;
  width: 26rem;
  height: 18rem;
  border-top: 1px solid rgba(207, 55, 242, 0.18);
  border-radius: 50%;
  transform: rotate(-11deg);
}

.coach-card::after {
  right: -9rem;
  bottom: -5.7rem;
  width: 24rem;
  height: 13rem;
  border-top: 1px solid rgba(116, 129, 111, 0.18);
  border-radius: 50%;
  transform: rotate(-17deg);
}

.coach-card > * {
  position: relative;
  z-index: 1;
}

.coach-image {
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.coach-image::before {
  content: "";
  position: absolute;
  inset: 0.6rem auto -0.85rem -0.65rem;
  z-index: -1;
  width: 82%;
  background: var(--flow-gradient);
  border-radius: 32px;
  transform: rotate(4deg);
  box-shadow: 0 18px 34px rgba(207, 55, 242, 0.18);
}

.coach-image img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid rgba(207, 55, 242, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(31, 21, 24, 0.16);
}

.coach-copy h2 {
  margin-bottom: 0.95rem;
  color: var(--ink-deep);
  font-size: clamp(2.15rem, 3.25vw, 3.05rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.coach-copy h2 span {
  color: var(--purple-electric);
}

.coach-copy p {
  max-width: 430px;
  margin-bottom: 0.72rem;
  font-size: 0.95rem;
  line-height: 1.48;
}

.coach-signature {
  margin: 1.1rem 0 0;
  color: var(--ink);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1;
  transform: rotate(-3deg);
}

.coach-benefits {
  display: grid;
  gap: 1rem;
  padding-left: clamp(1.1rem, 3vw, 2rem);
  border-left: 1px solid rgba(70, 58, 70, 0.16);
}

.coach-benefit {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  transition: transform 220ms var(--ease-out);
}

.coach-benefit:hover {
  transform: translateX(6px);
}

.coach-benefit img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 10px 18px rgba(31, 21, 24, 0.08));
}

.coach-benefit h3 {
  margin: 0 0 0.16rem;
  color: var(--ink-deep);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coach-benefit p {
  max-width: 230px;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.3;
}

.coach-credentials {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 0.2rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(70, 58, 70, 0.16);
}

.coach-credentials-label {
  display: flex;
  align-items: center;
  margin: 0;
  padding-right: 1rem;
  color: var(--plum-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.coach-credentials article {
  display: grid;
  align-content: center;
  gap: 0.18rem;
  min-height: 74px;
  padding: 0.4rem clamp(0.65rem, 1.4vw, 1rem);
  border-left: 1px solid rgba(70, 58, 70, 0.16);
}

.coach-credentials strong {
  color: var(--ink-deep);
  font-size: 0.92rem;
  line-height: 1.1;
}

.coach-credentials article:first-of-type strong {
  color: var(--purple-hot);
  font-size: 1.5rem;
}

.coach-credentials span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.3;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.approach-section {
  width: min(1160px, calc(100% - 32px));
  padding-top: clamp(0.45rem, 2vw, 1rem);
  padding-bottom: clamp(3.2rem, 6vw, 5.6rem);
}

.movement-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.55fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  min-height: 178px;
  padding: clamp(1.25rem, 3vw, 1.8rem) clamp(1.25rem, 3.4vw, 2.25rem);
  overflow: hidden;
  color: var(--paper-strong);
  background:
    radial-gradient(circle at 10% 30%, rgba(207, 55, 242, 0.16), transparent 16rem),
    linear-gradient(105deg, #050406, #121014 58%, #050406);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(1.75rem, 3.4vw, 3rem);
  box-shadow: 0 24px 66px rgba(31, 21, 24, 0.18);
  isolation: isolate;
}

.movement-panel::before,
.movement-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.movement-panel::before {
  top: -6.3rem;
  left: -4.7rem;
  width: 25rem;
  height: 16rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-shadow:
    1.2rem 1.2rem 0 -1px rgba(255, 255, 255, 0.04),
    2.4rem 2.4rem 0 -1px rgba(255, 255, 255, 0.04),
    3.6rem 3.6rem 0 -1px rgba(255, 255, 255, 0.04);
  transform: rotate(-6deg);
}

.movement-panel::after {
  right: -3rem;
  bottom: -2.35rem;
  left: -2rem;
  height: 4.3rem;
  border-top: 4px solid rgba(207, 55, 242, 0.9);
  border-radius: 50%;
  transform: rotate(-1.8deg);
  filter: drop-shadow(0 -10px 14px rgba(207, 55, 242, 0.26));
}

.movement-panel > * {
  position: relative;
  z-index: 1;
}

.movement-copy {
  max-width: 380px;
}

.movement-copy .eyebrow {
  margin-bottom: 0.45rem;
  color: #dca4ec;
}

.movement-copy h2 {
  margin-bottom: 0.8rem;
  color: var(--paper-strong);
  font-size: clamp(2rem, 3.35vw, 3rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.movement-copy h2 span {
  color: var(--purple-electric);
}

.movement-copy p {
  max-width: 360px;
  margin-bottom: 0;
  color: #eee7ef;
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.movement-item {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 118px;
  padding: 0.75rem 1rem;
  text-align: center;
  transition: transform 220ms var(--ease-out);
}

.movement-item:hover {
  transform: translateY(-5px);
}

.movement-item img {
  width: 58px;
  height: 58px;
  margin-bottom: 0.55rem;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(207, 55, 242, 0.18));
  transition: transform 220ms var(--ease-out), filter 220ms ease;
}

.movement-item img[src$="activity.svg"] {
  padding: 0.65rem;
}

.movement-item:hover img {
  transform: rotate(-4deg) scale(1.06);
  filter: drop-shadow(0 14px 22px rgba(207, 55, 242, 0.32));
}

.movement-item h3 {
  margin-bottom: 0.2rem;
  color: var(--paper-strong);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.1;
  text-wrap: balance;
  text-transform: uppercase;
}

.movement-item p {
  margin: 0;
  color: #ddd3db;
  font-size: 0.78rem;
  line-height: 1.25;
  text-wrap: balance;
}

@media (min-width: 881px) {
  .movement-item:not(:nth-child(3n + 1)) {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  .movement-item:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

.sessions-section {
  --sessions-edge-depth: clamp(3.5rem, 6vw, 5.75rem);
  width: 100%;
  padding-top: clamp(5rem, 8.5vw, 7.35rem);
  padding-right: max(16px, calc((100vw - 1120px) / 2));
  padding-bottom: clamp(5rem, 8.5vw, 7.35rem);
  padding-left: max(16px, calc((100vw - 1120px) / 2));
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 4, 6, 0.98), rgba(22, 17, 23, 0.98) 64%, rgba(38, 12, 47, 0.98)),
    #050406;
}

.sessions-section::before,
.sessions-section::after {
  content: "";
  position: absolute;
  left: -6%;
  z-index: 2;
  width: 112%;
  height: var(--sessions-edge-depth);
  background: var(--paper);
  border-radius: 50%;
  pointer-events: none;
}

.sessions-section::before {
  top: calc(var(--sessions-edge-depth) * -0.58);
  transform: rotate(-1.15deg);
}

.sessions-section::after {
  bottom: calc(var(--sessions-edge-depth) * -0.58);
  transform: rotate(1.15deg);
}

.sessions-flow-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.sessions-flow-field::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 4%;
  width: min(42vw, 34rem);
  height: min(42vw, 34rem);
  background: radial-gradient(circle, rgba(207, 55, 242, 0.18), transparent 66%);
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.58;
  animation: servicesGlowDrift 15s ease-in-out infinite;
}

.sessions-contours {
  position: absolute;
  top: -11%;
  right: -14%;
  width: 128%;
  height: 76%;
  opacity: 0.78;
  animation: servicesFlowDrift 18s ease-in-out infinite;
}

.sessions-flow-path {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1450;
  stroke-dashoffset: 1450;
  animation: traceFlow 1800ms var(--ease-out) both;
}

.sessions-flow-soft {
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 3;
  animation-delay: 120ms;
}

.sessions-flow-bold {
  stroke: rgba(207, 55, 242, 0.54);
  stroke-width: 13;
  filter: drop-shadow(0 16px 34px rgba(207, 55, 242, 0.24));
  animation-delay: 240ms;
}

.sessions-flow-glide {
  stroke: rgba(116, 129, 111, 0.28);
  stroke-width: 4;
  animation-delay: 360ms;
}

.sessions-section > :not(.sessions-flow-field) {
  position: relative;
  z-index: 1;
}

.sessions-section h2,
.sessions-section h3,
.sessions-section .eyebrow {
  color: var(--paper-strong);
}

.sessions-section .section-heading p,
.sessions-section .session-list p {
  color: #ddd3db;
}

.session-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.session-list div {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(207, 55, 242, 0.24);
  transition: transform 220ms var(--ease-out), background 220ms ease, border-color 220ms ease;
}

.session-list div:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(207, 55, 242, 0.45);
}

.testimonial-section {
  --testimonial-plum: #5f176b;
  --testimonial-accent: #a83bc0;
  --testimonial-summary-image-size: 300px;
  --testimonial-expanded-image-size: 120px;
  padding-top: clamp(4rem, 7vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.testimonial-label {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto 1.8rem;
  color: var(--testimonial-plum);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-label span {
  width: 4px;
  height: 16px;
  border-radius: 999px;
  background: var(--flow-gradient);
}

.testimonial-label p {
  margin: 0;
}

.testimonial-frame {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(168, 59, 192, 0.22);
  border-radius: clamp(1.75rem, 3.4vw, 3rem);
  background:
    radial-gradient(circle at 84% 44%, rgba(218, 178, 229, 0.14), transparent 24rem),
    #ffffff;
  box-shadow:
    0 28px 70px rgba(46, 17, 52, 0.09),
    0 2px 0 rgba(168, 59, 192, 0.04);
  isolation: isolate;
}

.testimonial-frame::before {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: 1rem;
  z-index: 0;
  width: min(42vw, 33rem);
  height: 8.5rem;
  border-top: 1px solid rgba(168, 59, 192, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0.62rem 0 -1px rgba(168, 59, 192, 0.11),
    0 1.24rem 0 -1px rgba(168, 59, 192, 0.09),
    0 1.86rem 0 -1px rgba(168, 59, 192, 0.07),
    0 2.48rem 0 -1px rgba(168, 59, 192, 0.05);
  transform: rotate(4deg);
  pointer-events: none;
}

.testimonial-frame::after {
  content: "";
  position: absolute;
  top: -2.6rem;
  right: -1rem;
  z-index: 0;
  width: 18rem;
  height: 9rem;
  border-top: 1px solid rgba(168, 59, 192, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0.58rem 0 -1px rgba(168, 59, 192, 0.1),
    0 1.16rem 0 -1px rgba(168, 59, 192, 0.08),
    0 1.74rem 0 -1px rgba(168, 59, 192, 0.06);
  transform: rotate(8deg);
  pointer-events: none;
}

.testimonial-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--testimonial-summary-image-size) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: clamp(31rem, 42vw, 36rem);
  padding: clamp(2rem, 3.5vw, 3rem) clamp(2rem, 4.5vw, 4rem) clamp(6rem, 8vw, 7rem);
  transition:
    opacity 280ms var(--ease-out),
    transform 280ms var(--ease-out),
    grid-template-columns 520ms var(--ease-out),
    min-height 520ms var(--ease-out);
}

.testimonial-card.is-expanded {
  grid-template-columns: var(--testimonial-expanded-image-size) minmax(0, 1fr);
  min-height: clamp(29rem, 38vw, 34rem);
}

.testimonial-card.has-no-image,
.testimonial-card.has-no-image.is-expanded {
  grid-template-columns: minmax(0, 1fr);
}

.testimonial-card.is-exiting-next {
  opacity: 0;
  transform: translateX(-4rem);
}

.testimonial-card.is-exiting-previous {
  opacity: 0;
  transform: translateX(4rem);
}

.testimonial-card.is-entering-next {
  opacity: 0;
  transform: translateX(4rem);
  transition: none;
}

.testimonial-card.is-entering-previous {
  opacity: 0;
  transform: translateX(-4rem);
  transition: none;
}

.testimonial-media {
  width: min(100%, var(--testimonial-summary-image-size));
  max-width: var(--testimonial-summary-image-size);
  aspect-ratio: 1;
  max-height: var(--testimonial-summary-image-size);
  margin: 0;
  overflow: hidden;
  background: #eee8f2;
  border-radius: clamp(1.25rem, 2.4vw, 2rem);
  box-shadow: 0 18px 44px rgba(45, 18, 52, 0.14);
  transition:
    width 520ms var(--ease-out),
    max-width 520ms var(--ease-out),
    max-height 520ms var(--ease-out),
    border-radius 520ms var(--ease-out),
    box-shadow 520ms var(--ease-out);
}

.testimonial-card.is-expanded .testimonial-media {
  width: var(--testimonial-expanded-image-size);
  max-width: var(--testimonial-expanded-image-size);
  max-height: var(--testimonial-expanded-image-size);
  align-self: start;
  margin-top: 3rem;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(45, 18, 52, 0.12);
}

.testimonial-media[hidden],
.testimonial-photo[hidden],
.testimonial-summary[hidden],
.testimonial-full-review[hidden] {
  display: none;
}

.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 620ms var(--ease-out);
}

.testimonial-card:not(.is-expanded) .testimonial-photo {
  transform: scale(1.025);
}

.testimonial-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 42rem;
}

.testimonial-card.has-no-image .testimonial-content {
  align-items: center;
  width: min(46rem, 100%);
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  display: block;
  height: 0.42em;
  color: rgba(168, 59, 192, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 6vw, 5.7rem);
  font-weight: 700;
  line-height: 0.5;
}

.testimonial-card blockquote {
  width: 100%;
  max-width: 42rem;
  margin: clamp(1.35rem, 2.4vw, 2.1rem) 0 clamp(1.2rem, 2vw, 1.7rem);
  color: var(--testimonial-plum);
}

.testimonial-card blockquote p {
  margin: 0;
}

.testimonial-summary {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.25vw, 3.15rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.testimonial-full-review {
  color: var(--testimonial-plum);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.78;
  text-wrap: pretty;
}

.testimonial-full-review p + p {
  margin-top: 1.15rem;
}

.testimonial-author {
  display: grid;
  gap: 0.08rem;
  margin: 0;
  padding-top: 1rem;
  color: var(--testimonial-plum);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  border-top: 2px solid rgba(168, 59, 192, 0.34);
}

.testimonial-author strong {
  color: var(--testimonial-plum);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.testimonial-disclosure {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-top: clamp(1.15rem, 2vw, 1.5rem);
  padding: 0.38rem 0 0.34rem;
  color: var(--testimonial-plum);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(168, 59, 192, 0.54);
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease-out);
}

.testimonial-disclosure:hover,
.testimonial-disclosure:focus-visible {
  color: var(--testimonial-accent);
  border-color: var(--testimonial-accent);
  transform: translateY(-1px);
}

.testimonial-disclosure svg {
  transition: transform 400ms var(--ease-out);
}

.testimonial-disclosure[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.testimonial-controls {
  position: absolute;
  bottom: clamp(1.4rem, 2.5vw, 2rem);
  left: 50%;
  z-index: 3;
  display: grid;
  grid-template-columns: 48px auto 48px;
  gap: clamp(0.75rem, 1.5vw, 1.1rem);
  align-items: center;
  transform: translateX(-50%);
  transition: left 520ms var(--ease-out);
}

.testimonial-frame:has(.testimonial-card.has-image:not(.is-expanded)) .testimonial-controls {
  left: 72%;
}

.testimonial-frame:has(.testimonial-card.has-image.is-expanded) .testimonial-controls {
  left: 60%;
}

.testimonial-controls > button {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--testimonial-plum);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(95, 23, 107, 0.28);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(46, 17, 52, 0.1);
  cursor: pointer;
  transition:
    transform 180ms var(--ease-out),
    color 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.testimonial-controls > button:hover,
.testimonial-controls > button:focus-visible {
  color: var(--paper-strong);
  border-color: rgba(129, 43, 134, 0.52);
  background: var(--testimonial-plum);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(129, 43, 134, 0.28);
}

.testimonial-controls > button:focus-visible,
.testimonial-dots button:focus-visible {
  outline: 3px solid rgba(129, 43, 134, 0.4);
  outline-offset: 3px;
}

.testimonial-dots {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
}

.testimonial-dots button {
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.testimonial-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(129, 43, 134, 0.24);
  border-radius: inherit;
  transform: translate(-50%, -50%);
  transition:
    width 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.testimonial-dots button[aria-current="true"]::before {
  width: 28px;
  background: var(--testimonial-plum);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  overflow: hidden;
  color: var(--paper-strong);
  background:
    linear-gradient(135deg, rgba(77, 19, 95, 0.98), rgba(28, 9, 35, 0.98)),
    var(--plum-deep);
  border-radius: clamp(1.75rem, 3.4vw, 3rem);
  box-shadow: var(--purple-glow);
  scroll-margin-top: 96px;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -10rem;
  width: 34rem;
  height: 18rem;
  border-top: 12px solid rgba(207, 55, 242, 0.36);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.contact-section .eyebrow,
.contact-section p {
  color: #f0ddec;
}

.contact-actions {
  display: grid;
  gap: 0.85rem;
}

.contact-card {
  position: relative;
  display: block;
  padding: 1rem;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: 0.55rem;
  width: 64%;
  height: 3px;
  background: rgba(207, 55, 242, 0.75);
  border-radius: 999px;
  transform: rotate(-4deg);
  transition: transform 220ms var(--ease-out);
}

.contact-card:hover::after {
  transform: rotate(-4deg) translateX(18%);
}

.contact-card strong {
  display: block;
  margin-top: 0.25rem;
  overflow-wrap: anywhere;
}

.contact-card-featured {
  background: rgba(207, 55, 242, 0.2);
  border-color: rgba(207, 55, 242, 0.55);
  box-shadow: inset 5px 0 0 var(--purple-electric);
}

.contact-card-featured strong {
  color: var(--paper-strong);
  font-size: 1.35rem;
}

.map-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  scroll-margin-top: 96px;
}

.location-summary {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-summary .eyebrow {
  margin: 0 0 0.35rem;
  color: var(--plum);
}

.location-summary h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
}

.location-summary address {
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
}

.location-summary .button {
  flex: 0 0 auto;
}

.map-frame {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--flow-gradient);
  pointer-events: none;
}

.map-frame iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(310px, auto) auto;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
  padding: 1.8rem max(16px, calc((100vw - 1120px) / 2)) 2.4rem;
  color: #d8c9d9;
  background: var(--ink-deep);
  border-top: 1px solid rgba(207, 55, 242, 0.34);
}

.footer-brand {
  display: grid;
  grid-template-columns: 58px minmax(0, 420px);
  gap: 0.9rem;
  align-items: center;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  background: var(--ink);
  border: 1px solid rgba(207, 55, 242, 0.58);
  border-radius: var(--radius);
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--paper-strong);
  font-size: 1.05rem;
}

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

.footer-connect {
  display: grid;
  gap: 0.7rem;
}

.footer-join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 48px;
  padding: 0.72rem 1rem;
  color: var(--paper-strong);
  background: var(--cta-gradient);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(207, 55, 242, 0.2);
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms ease,
    filter 180ms ease;
}

.footer-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(207, 55, 242, 0.3);
  filter: brightness(1.08);
}

.footer-join strong {
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  min-height: 44px;
  padding: 0.42rem 0.72rem 0.42rem 0.48rem;
  color: var(--paper-strong);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(207, 55, 242, 0.58);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.social-icon {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--paper-strong);
  background: var(--flow-gradient);
  border-radius: 7px;
  box-shadow: 0 7px 18px rgba(207, 55, 242, 0.24);
}

.social-link-facebook .social-icon {
  background: #1877f2;
  box-shadow: 0 7px 18px rgba(24, 119, 242, 0.28);
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-link small,
.social-link b {
  display: block;
  line-height: 1.1;
}

.social-link small {
  margin-bottom: 0.2rem;
  color: #bdaebf;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.social-link b {
  font-size: 0.82rem;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 0.35rem;
}

.site-footer p {
  margin: 0;
}

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

.reveal-ready .reveal-target {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
}

.reveal-ready .reveal-target.is-visible {
  animation: revealIn 580ms var(--ease-out) both;
}

@keyframes ribbonDraw {
  from {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.78) translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) scaleX(1) translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatMedia {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes traceFlow {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -420;
  }
}

@keyframes pulseFlow {
  from {
    offset-distance: 0%;
    opacity: 0;
  }

  12%,
  88% {
    opacity: 1;
  }

  to {
    offset-distance: 100%;
    opacity: 0;
  }
}

@keyframes ambientFlow {
  0%,
  100% {
    opacity: 0.62;
  }

  50% {
    opacity: 1;
  }
}

@keyframes servicesFlowDrift {
  0%,
  100% {
    transform: translate3d(-1.5%, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(1.5%, 1.5%, 0) rotate(1deg);
  }
}

@keyframes servicesGlowDrift {
  0%,
  100% {
    transform: translate3d(-4%, -2%, 0) scale(0.96);
    opacity: 0.42;
  }

  50% {
    transform: translate3d(4%, 3%, 0) scale(1.06);
    opacity: 0.68;
  }
}

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

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

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

  .flow-pulse {
    display: none;
  }
}

@media (max-width: 1080px) {
  .movement-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .movement-copy {
    max-width: 700px;
  }

  .movement-copy p {
    max-width: 620px;
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    background: var(--ink-deep);
    border: 1px solid rgba(207, 55, 242, 0.34);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .site-nav a:not(.nav-cta)::after {
    bottom: 0.45rem;
    left: 0.85rem;
    width: 4rem;
  }

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

  .coach-card,
  .movement-panel {
    grid-template-columns: 1fr;
  }

  .coach-card {
    min-height: 0;
  }

  .coach-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 1.25rem;
    padding-left: 0;
    border-top: 1px solid rgba(70, 58, 70, 0.16);
    border-left: 0;
  }

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

  .coach-credentials-label {
    grid-column: 1 / -1;
    padding: 0 0 0.85rem;
  }

  .coach-credentials article:nth-of-type(odd) {
    border-left: 0;
  }

  .coach-benefit {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
  }

  .coach-benefit img {
    width: 52px;
    height: 52px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    top: 43%;
    width: 138vw;
    height: 34vw;
  }

  .hero-media {
    max-width: 560px;
  }

  .opening-strip,
  .session-list {
    grid-template-columns: 1fr;
  }

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

  .movement-item {
    min-height: 124px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
    border-left: 0;
  }

  .movement-item:first-child {
    border-top: 0;
  }

  .movement-item:last-child {
    grid-column: auto;
    border-right: 0;
  }

  .opening-strip {
    margin-top: -2rem;
  }

  .testimonial-frame {
    min-height: 0;
  }

  .testimonial-frame::after {
    display: none;
  }

  .testimonial-card {
    grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    min-height: 31rem;
    padding: 2rem 1.75rem 6.25rem;
  }

  .testimonial-card.is-expanded {
    grid-template-columns: var(--testimonial-expanded-image-size) minmax(0, 1fr);
    min-height: 29rem;
  }

  .testimonial-card blockquote {
    margin: 1.15rem 0 1.25rem;
  }

  .testimonial-media {
    width: min(100%, 240px);
    max-width: 240px;
    max-height: 240px;
  }

  .testimonial-card.is-expanded .testimonial-media {
    width: var(--testimonial-expanded-image-size);
    max-width: var(--testimonial-expanded-image-size);
    max-height: var(--testimonial-expanded-image-size);
    margin-top: 2.5rem;
  }

  .testimonial-summary {
    font-size: clamp(1.75rem, 4.2vw, 2.5rem);
  }

  .testimonial-frame:has(.testimonial-card.has-image:not(.is-expanded)) .testimonial-controls {
    left: 66%;
  }

  .testimonial-frame:has(.testimonial-card.has-image.is-expanded) .testimonial-controls {
    left: 58%;
  }

  .map-frame {
    display: grid;
    min-height: 0;
  }

  .map-frame iframe {
    height: 360px;
  }

  .coach-image {
    max-width: 440px;
    justify-self: center;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.9fr);
    align-items: start;
    gap: 1.25rem 2rem;
  }

  .footer-meta {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    justify-items: initial;
    padding-top: 1rem;
    border-top: 1px solid rgba(207, 55, 242, 0.22);
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section,
  .contact-section,
  .map-section,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .hero,
  .site-footer {
    width: 100%;
  }

  .location-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .location-summary .button {
    width: 100%;
  }

  .opening-strip {
    width: fit-content;
    max-width: calc(100% - 24px);
  }

  .opening-strip .opening-location {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .opening-strip strong {
    white-space: normal;
  }

  .hero {
    padding-right: 12px;
    padding-left: 12px;
    padding-top: 1.85rem;
    padding-bottom: 3.6rem;
  }

  .hero::before {
    top: 43%;
    width: 156vw;
    height: 46vw;
  }

  .hero-media::after {
    right: -1rem;
    width: 66%;
  }

  .coach-card {
    gap: 1.2rem;
    padding: 1rem;
  }

  .coach-image img {
    border-radius: 14px;
  }

  .coach-benefits {
    grid-template-columns: 1fr;
  }

  .coach-credentials {
    grid-template-columns: 1fr;
  }

  .coach-credentials article,
  .coach-credentials article:nth-of-type(odd) {
    min-height: 0;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(70, 58, 70, 0.12);
    border-left: 0;
  }

  .coach-credentials article:first-of-type {
    border-top: 0;
  }

  .coach-benefit {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .coach-benefit img {
    width: 50px;
    height: 50px;
  }

  .movement-panel {
    gap: 1.25rem;
    padding: 1.15rem 1rem 1.45rem;
  }

  .movement-item:last-child {
    grid-column: auto;
  }

  .movement-item {
    min-height: 108px;
    padding-right: 0.45rem;
    padding-left: 0.45rem;
  }

  .movement-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.4rem;
  }

  .movement-item h3 {
    font-size: 0.68rem;
  }

  .movement-item p {
    font-size: 0.72rem;
  }

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

  .brand span {
    max-width: 145px;
  }

  h1 {
    font-size: 2.28rem;
    line-height: 0.94;
  }

  h1 span {
    display: inline;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.2rem;
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

  .hero-media img {
    aspect-ratio: 0.92;
    object-position: center;
  }

  .testimonial-section {
    padding-top: 3.75rem;
    padding-bottom: 4.5rem;
  }

  .testimonial-label {
    margin-bottom: 1.2rem;
  }

  .testimonial-frame {
    border-radius: 1.75rem;
  }

  .testimonial-frame::before {
    right: -6rem;
    bottom: 0.5rem;
    opacity: 0.72;
  }

  .testimonial-card,
  .testimonial-card.is-expanded,
  .testimonial-card.has-no-image,
  .testimonial-card.has-no-image.is-expanded {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    min-height: 0;
    padding: 1.25rem 1.15rem 6rem;
  }

  .testimonial-card {
    gap: 1.5rem;
  }

  .testimonial-card.is-expanded {
    gap: 0.75rem;
  }

  .testimonial-media {
    width: min(100%, var(--testimonial-summary-image-size));
    max-width: var(--testimonial-summary-image-size);
    max-height: var(--testimonial-summary-image-size);
    border-radius: 1.35rem;
  }

  .testimonial-card.is-expanded .testimonial-media {
    width: var(--testimonial-expanded-image-size);
    max-width: var(--testimonial-expanded-image-size);
    max-height: var(--testimonial-expanded-image-size);
    margin-top: 0;
    justify-self: start;
  }

  .testimonial-content,
  .testimonial-card.has-no-image .testimonial-content {
    align-items: center;
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .testimonial-card.is-expanded .testimonial-content {
    align-items: flex-start;
    text-align: left;
  }

  .testimonial-card.has-no-image.is-expanded .testimonial-content {
    align-items: center;
    text-align: center;
  }

  .testimonial-quote {
    font-size: 4rem;
  }

  .testimonial-summary {
    font-size: clamp(1.8rem, 8.5vw, 2.35rem);
  }

  .testimonial-full-review {
    font-size: 1rem;
    line-height: 1.72;
  }

  .testimonial-card.is-expanded blockquote {
    margin-top: 0.8rem;
  }

  .testimonial-frame:has(.testimonial-card.has-image:not(.is-expanded)) .testimonial-controls,
  .testimonial-frame:has(.testimonial-card.has-image.is-expanded) .testimonial-controls,
  .testimonial-controls {
    bottom: 1.15rem;
    left: 50%;
    grid-template-columns: 48px auto 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .footer-brand {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .footer-brand img {
    width: 52px;
    height: 52px;
  }

  .footer-meta {
    display: grid;
    grid-column: auto;
    justify-items: start;
  }

}

@media (max-width: 340px) {
  .footer-socials {
    grid-template-columns: 1fr;
  }

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

  .movement-item,
  .movement-item:nth-child(odd),
  .movement-item:last-child {
    grid-column: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 0;
  }

  .movement-item:first-child {
    border-top: 0;
  }
}
