:root {
  --violet: #2d145f;
  --violet-bright: #59328f;
  --violet-deep: #180d31;
  --lavender: #b8a5d6;
  --lime: #dce7bd;
  --sage: #84917c;
  --sage-deep: #26362d;
  --sand: #d8c6ae;
  --clay: #9b6759;
  --slate: #314a56;
  --cream: #f1ede5;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #17141b;
  --ink-soft: #5e5a63;
  --line: rgba(23, 20, 27, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --page: min(1380px, calc(100vw - 72px));
  --font: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: 9999;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}

[id] {
  scroll-margin-top: 112px;
}

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1500;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 1400;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(220, 231, 189, 0.7);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 18px;
  right: 24px;
  left: 24px;
  display: grid;
  width: min(1380px, calc(100vw - 48px));
  min-height: 72px;
  margin: 0 auto;
  padding: 0 12px 0 24px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  background: rgba(20, 10, 43, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(20px) saturate(130%);
  transition: color 300ms ease, background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  border-color: var(--line);
  box-shadow: 0 12px 42px rgba(23, 20, 27, 0.1);
}

.site-header.is-menu-open {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.97);
  border-color: var(--line);
  box-shadow: 0 14px 44px rgba(23, 20, 27, 0.12);
}

.home-page .site-header:not(.is-scrolled):not(.is-menu-open) {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.72);
  border-color: rgba(23, 20, 27, 0.12);
  box-shadow: 0 12px 38px rgba(38, 54, 45, 0.08);
}

.brand {
  position: relative;
  width: 142px;
  height: 52px;
}

.brand img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 132px;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 220ms ease;
}

.brand__color,
.site-header.is-scrolled .brand__white,
.site-header.is-menu-open .brand__white {
  opacity: 0;
}

.site-header.is-scrolled .brand__color,
.site-header.is-menu-open .brand__color {
  opacity: 1;
}

.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand__white {
  opacity: 0;
}

.home-page .site-header:not(.is-scrolled):not(.is-menu-open) .brand__color {
  opacity: 1;
}

.desktop-nav {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 0.87rem;
  font-weight: 500;
}

.desktop-nav > a,
.nav-services__trigger {
  position: relative;
  padding: 12px 0;
}

.desktop-nav > a::after,
.nav-services__trigger::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a[aria-current="location"]::after,
.nav-services__trigger:hover::after,
.nav-services__trigger:focus-visible::after,
.nav-services__trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-services {
  position: relative;
}

.nav-services__trigger {
  display: flex;
  gap: 7px;
  align-items: center;
  color: inherit;
  background: transparent;
  border: 0;
  font-weight: 600;
  cursor: pointer;
}

.nav-services__trigger svg {
  width: 15px;
  transition: transform 220ms var(--ease);
}

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

.mega-menu {
  position: absolute;
  top: calc(100% + 24px);
  left: 50%;
  display: grid;
  width: min(1180px, calc(100vw - 72px));
  min-height: 516px;
  overflow: hidden;
  grid-template-columns: 330px minmax(0, 1fr);
  color: var(--ink);
  background: rgba(251, 250, 247, 0.985);
  border: 1px solid rgba(23, 20, 27, 0.11);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(18, 8, 39, 0.26);
  transform: translateX(-50%);
  transform-origin: 50% 0;
}

.mega-menu.is-opening {
  animation: megaMenuIn 320ms var(--ease) both;
}

@keyframes megaMenuIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px) scale(0.985); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.mega-menu__orientation {
  position: relative;
  display: flex;
  padding: 34px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 165, 214, 0.38), transparent 38%),
    var(--violet-deep);
}

.mega-menu__orientation > img {
  position: absolute;
  right: -54px;
  bottom: -90px;
  width: 180px;
  opacity: 0.075;
  transform: rotate(13deg);
}

.mega-menu__orientation > div,
.mega-menu__orientation > a {
  position: relative;
  z-index: 1;
}

.mega-menu__eyebrow {
  margin: 0 0 20px;
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mega-menu__orientation h2 {
  max-width: 250px;
  margin: 0;
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.mega-menu__orientation p:not(.mega-menu__eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
  line-height: 1.55;
}

.mega-menu__orientation > a {
  display: flex;
  min-height: 48px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--violet-deep);
  background: var(--lime);
  border-radius: 14px;
  font-size: 0.82rem;
  font-weight: 750;
  transition: transform 220ms var(--ease), background 220ms ease;
}

.mega-menu__orientation > a:hover {
  background: #e7efcf;
  transform: translateY(-2px);
}

.mega-menu__orientation > a svg,
.mega-menu__item > svg,
.mega-menu__featured > svg {
  width: 18px;
}

.mega-menu__directory {
  display: grid;
  padding: 30px 34px 26px;
  align-content: start;
}

.mega-menu__heading {
  display: flex;
  min-height: 54px;
  padding: 0 4px 18px;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.mega-menu__heading span {
  color: var(--violet);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mega-menu__heading p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.mega-menu__heading > a {
  padding: 4px 0;
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(45, 20, 95, 0.28);
}

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

.mega-menu__item {
  display: grid;
  min-height: 104px;
  padding: 18px 14px 18px 4px;
  grid-template-columns: 30px minmax(0, 1fr) 20px;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, padding 220ms var(--ease), background 220ms ease;
}

.mega-menu__item:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.mega-menu__item:nth-child(even) {
  padding-left: 24px;
}

.mega-menu__item:hover,
.mega-menu__item:focus-visible,
.mega-menu__item[aria-current="location"] {
  color: var(--violet);
  background: rgba(220, 231, 189, 0.25);
}

.mega-menu__item:hover {
  padding-right: 18px;
}

.mega-menu__item small {
  align-self: start;
  padding-top: 3px;
  color: var(--violet-bright);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mega-menu__item span {
  display: grid;
  gap: 5px;
}

.mega-menu__item strong {
  font-size: 0.93rem;
  font-weight: 650;
}

.mega-menu__item em {
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-style: normal;
  line-height: 1.35;
}

.mega-menu__item > svg {
  opacity: 0.42;
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.mega-menu__item:hover > svg,
.mega-menu__item:focus-visible > svg {
  opacity: 1;
  transform: translateX(3px);
}

.mega-menu__featured {
  display: grid;
  min-height: 60px;
  margin-top: 16px;
  padding: 10px 14px;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr) 20px;
  gap: 20px;
  align-items: center;
  color: var(--white);
  background: var(--violet);
  border-radius: 14px;
  transition: background 220ms ease, transform 220ms var(--ease);
}

.mega-menu__featured:hover {
  background: var(--violet-bright);
  transform: translateY(-2px);
}

.mega-menu__featured span {
  display: grid;
  gap: 2px;
}

.mega-menu__featured small {
  color: var(--lime);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mega-menu__featured strong {
  font-size: 0.84rem;
}

.mega-menu__featured em {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-style: normal;
}

.nav-scrim {
  position: fixed;
  z-index: 900;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(16, 8, 34, 0.42);
  border: 0;
  backdrop-filter: blur(3px);
  cursor: default;
}

.header-action {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  justify-self: end;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: var(--violet-deep);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.header-action svg {
  width: 18px;
}

.header-action:hover {
  box-shadow: 0 12px 30px rgba(20, 10, 43, 0.2);
  transform: translateY(-2px);
}

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

.hero {
  position: relative;
  --hero-pointer-x: 76%;
  --hero-pointer-y: 18%;
  min-height: 860px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(220, 231, 189, 0.88), transparent 32%),
    radial-gradient(circle at 83% 14%, rgba(216, 198, 174, 0.72), transparent 34%),
    radial-gradient(circle at 68% 82%, rgba(184, 201, 180, 0.54), transparent 30%),
    linear-gradient(135deg, #faf7f0 0%, #f1ece2 52%, #e6ece5 100%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle 340px at var(--hero-pointer-x) var(--hero-pointer-y), rgba(255, 255, 255, 0.56), transparent 72%);
  mix-blend-mode: soft-light;
  transition: opacity 500ms ease;
}

.hero__atmosphere,
.hero__atmosphere span {
  position: absolute;
  pointer-events: none;
}

.hero__atmosphere {
  inset: 0;
}

.hero__orb {
  border: 1px solid rgba(45, 20, 95, 0.1);
  border-radius: 50%;
}

.hero__orb--one {
  top: -22vw;
  right: -16vw;
  width: 58vw;
  aspect-ratio: 1;
  box-shadow: inset 0 0 120px rgba(255, 255, 255, 0.3);
  animation: heroOrbOne 16s ease-in-out infinite alternate;
}

.hero__orb--two {
  bottom: -24vw;
  left: -18vw;
  width: 52vw;
  aspect-ratio: 1;
  border-color: rgba(38, 54, 45, 0.12);
  animation: heroOrbTwo 20s ease-in-out infinite alternate;
}

.hero__line {
  top: 0;
  left: 43.7%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(45, 20, 95, 0.12), transparent);
}

.hero__glow {
  top: 18%;
  left: 45%;
  width: 140px;
  height: 140px;
  background: rgba(220, 231, 189, 0.7);
  border-radius: 50%;
  filter: blur(64px);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroOrbOne {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(-3vw, 2vw, 0) rotate(8deg); }
}

@keyframes heroOrbTwo {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, -2vw, 0) scale(1.08); }
}

@keyframes heroGlow {
  from { opacity: 0.32; transform: translate3d(-20px, 10px, 0) scale(0.88); }
  to { opacity: 0.75; transform: translate3d(46px, -28px, 0) scale(1.18); }
}

.hero__emblem {
  position: absolute;
  right: 3%;
  bottom: -19%;
  width: 300px;
  opacity: 0.045;
  transform: rotate(13deg);
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--page);
  min-height: 860px;
  margin: 0 auto;
  padding: 148px 0 92px;
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--violet-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--lime);
}

.hero__intro-line {
  display: flex;
  max-width: 620px;
  margin-bottom: 18px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.hero__intro-line .eyebrow {
  margin: 0;
}

.hero__availability {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  color: var(--sage-deep);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero__availability i {
  position: relative;
  width: 7px;
  height: 7px;
  background: #4c7d5c;
  border-radius: 50%;
}

.hero__availability i::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid rgba(76, 125, 92, 0.42);
  border-radius: inherit;
  animation: availabilityPulse 2.4s ease-out infinite;
}

@keyframes availabilityPulse {
  0% { opacity: 0.8; transform: scale(0.55); }
  75%, 100% { opacity: 0; transform: scale(1.25); }
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(4.6rem, 7.2vw, 8.4rem);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.hero h1 span,
.hero h1 strong {
  display: block;
  text-wrap: balance;
}

.hero h1 strong {
  color: var(--violet);
  font-weight: 600;
}

.js .hero__copy[data-reveal] .hero__intro-line,
.js .hero__copy[data-reveal] .hero__lead,
.js .hero__copy[data-reveal] .hero__actions,
.js .hero__copy[data-reveal] .hero__meta,
.js .hero__copy[data-reveal] h1 span,
.js .hero__copy[data-reveal] h1 strong {
  opacity: 0;
}

.js .hero__copy[data-reveal].is-visible .hero__intro-line {
  animation: heroCopyIn 720ms 80ms var(--ease) both;
}

.js .hero__copy[data-reveal].is-visible h1 span {
  animation: heroTitleIn 940ms 150ms var(--ease) both;
}

.js .hero__copy[data-reveal].is-visible h1 strong {
  animation: heroTitleIn 940ms 250ms var(--ease) both;
}

.js .hero__copy[data-reveal].is-visible .hero__lead {
  animation: heroCopyIn 760ms 390ms var(--ease) both;
}

.js .hero__copy[data-reveal].is-visible .hero__actions {
  animation: heroCopyIn 760ms 480ms var(--ease) both;
}

.js .hero__copy[data-reveal].is-visible .hero__meta {
  animation: heroCopyIn 760ms 570ms var(--ease) both;
}

@keyframes heroTitleIn {
  from { opacity: 0; filter: blur(7px); transform: translate3d(0, 46px, 0) skewY(2deg); }
  to { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) skewY(0); }
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero__lead {
  max-width: 610px;
  margin: 38px 0 0;
  color: rgba(23, 20, 27, 0.7);
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  line-height: 1.6;
}

.hero__actions,
.contact__actions,
.button-row {
  display: flex;
  margin-top: 32px;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease;
}

.button svg {
  width: 18px;
}

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

.button:active,
.header-action:active {
  transform: translateY(1px) scale(0.985);
}

.button--light {
  color: var(--violet-deep);
  background: var(--lime);
}

.button--light:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.button--outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.32);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button--outline-dark {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(23, 20, 27, 0.25);
}

.button--outline-dark:hover {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 34px rgba(38, 54, 45, 0.1);
}

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

.button--dark:hover {
  box-shadow: 0 16px 36px rgba(23, 20, 27, 0.18);
}

.button--primary {
  color: var(--white);
  background: var(--violet);
}

.button--primary:hover {
  box-shadow: 0 16px 36px rgba(45, 20, 95, 0.22);
}

.hero__meta {
  display: grid;
  max-width: 620px;
  margin-top: 46px;
  padding-top: 20px;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  color: rgba(23, 20, 27, 0.6);
  border-top: 1px solid rgba(23, 20, 27, 0.14);
  font-size: 0.83rem;
}

.hero__meta span {
  display: grid;
  gap: 3px;
}

.hero__meta b {
  color: var(--ink);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-columns: 1.24fr 0.76fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  transform: perspective(1200px) rotateX(var(--hero-tilt-x, 0deg)) rotateY(var(--hero-tilt-y, 0deg)) rotateZ(1.5deg);
  transform-style: preserve-3d;
  transition: transform 520ms var(--ease);
}

.hero-visual a {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #4c3a60;
  border: 1px solid rgba(23, 20, 27, 0.12);
  box-shadow: 0 24px 60px rgba(38, 54, 45, 0.12);
}

.js .hero-visual[data-reveal] > a:not(.hero-visual__proof) {
  opacity: 0;
  will-change: transform, opacity, clip-path;
}

.js .hero-visual[data-reveal].is-visible .hero-visual__main {
  animation: heroMainCardIn 980ms 210ms var(--ease) both;
}

.js .hero-visual[data-reveal].is-visible .hero-visual__side--mental {
  animation: heroSideCardIn 900ms 360ms var(--ease) both;
}

.js .hero-visual[data-reveal].is-visible .hero-visual__side--weight {
  animation: heroSideCardIn 900ms 470ms var(--ease) both;
}

@keyframes heroMainCardIn {
  from { opacity: 0; clip-path: inset(0 0 100% 0 round 180px 16px 16px 16px); transform: translate3d(0, 48px, 28px) rotate(-1deg); }
  to { opacity: 1; clip-path: inset(0 0 0 0 round 180px 16px 16px 16px); transform: translate3d(0, 0, 28px) rotate(0); }
}

@keyframes heroSideCardIn {
  from { opacity: 0; clip-path: inset(100% 0 0 0 round 18px); transform: translate3d(34px, 0, 16px); }
  to { opacity: 1; clip-path: inset(0 0 0 0 round 18px); transform: translate3d(0, 0, 16px); }
}

.hero-visual a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(20, 10, 43, 0.88) 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.hero-visual a:hover img {
  filter: saturate(1.06);
  transform: scale(1.045);
}

.hero-visual__main {
  grid-row: 1 / 3;
  border-radius: 180px 16px 16px 16px;
}

.hero-visual__main img {
  object-position: 63% center;
}

.hero-visual__side {
  border-radius: 16px;
}

.hero-visual__side--mental {
  border-radius: 16px 180px 16px 16px;
}

.hero-visual__side--mental img {
  object-position: 67% center;
}

.hero-visual__side--weight img {
  object-position: 76% center;
}

.hero-visual__proof {
  position: absolute !important;
  z-index: 4;
  bottom: 38px;
  left: 48%;
  display: grid;
  width: 224px;
  min-height: 88px;
  padding: 15px 16px;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  color: var(--ink) !important;
  background: rgba(251, 250, 247, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.62) !important;
  border-radius: 18px !important;
  box-shadow: 0 22px 58px rgba(24, 13, 49, 0.2) !important;
  backdrop-filter: blur(18px) saturate(125%);
  transform: translate3d(-50%, 0, 42px);
  transition: background 240ms ease, box-shadow 240ms ease, transform 300ms var(--ease) !important;
}

.js .hero-visual[data-reveal] .hero-visual__proof {
  opacity: 0;
}

.js .hero-visual[data-reveal].is-visible .hero-visual__proof {
  animation: heroProofIn 760ms 720ms var(--ease) both;
}

.hero-visual__proof::after {
  display: none;
}

.hero-visual__proof:hover {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 28px 68px rgba(24, 13, 49, 0.26) !important;
  transform: translate3d(-50%, -6px, 48px) !important;
}

.hero-visual .hero-visual__proof > strong {
  color: var(--violet);
  font-size: 2.3rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 1;
}

.hero-visual__proof > span {
  display: grid;
  gap: 3px;
}

.hero-visual__proof b {
  color: #8b5d18;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.hero-visual .hero-visual__proof small {
  color: var(--ink-soft);
  font-size: 0.63rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.hero-visual__proof > i {
  color: var(--violet);
  font-size: 0.9rem;
  font-style: normal;
}

@keyframes heroProofIn {
  from { opacity: 0; transform: translate3d(-50%, 26px, 42px) scale(0.92); }
  to { opacity: 1; transform: translate3d(-50%, 0, 42px) scale(1); }
}

.hero-visual__label,
.hero-visual__side span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 26px;
  left: 24px;
}

.hero-visual__label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
}

.hero-visual small {
  color: var(--lime);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.14em;
}

.hero-visual strong {
  font-size: 1.15rem;
  font-weight: 600;
}

.hero-visual em {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-style: normal;
}

.hero-visual__side span {
  display: grid;
  gap: 4px;
}

.hero-visual__side strong {
  font-size: 0.98rem;
}

.hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(23, 20, 27, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll i {
  position: relative;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(23, 20, 27, 0.14);
}

.hero__scroll i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: var(--lime);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

.assurance {
  position: relative;
  display: grid;
  min-height: 84px;
  padding: 0 max(36px, calc((100vw - 1380px) / 2));
  overflow: hidden;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
  background: var(--lime);
}

.assurance::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28%;
  width: 22%;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  animation: assuranceSweep 7s 1.2s ease-in-out infinite;
  transform: skewX(-18deg);
}

@keyframes assuranceSweep {
  0%, 58% { transform: translateX(0) skewX(-18deg); }
  82%, 100% { transform: translateX(610%) skewX(-18deg); }
}

.assurance p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
}

.assurance > span {
  width: 4px;
  height: 4px;
  background: var(--violet);
  border-radius: 50%;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 142px 0;
}

.section-heading {
  display: grid;
  margin-bottom: 86px;
  grid-template-columns: 1fr minmax(300px, 0.65fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.experience h2,
.cannabis h2,
.contact h2,
.university-program h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5.8vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.section-heading > p {
  max-width: 500px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.service-stories {
  display: grid;
  gap: 130px;
}

.service-story {
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(58px, 8vw, 130px);
  align-items: center;
}

.service-story:nth-child(even) {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
}

.service-story:nth-child(even) .service-story__media {
  grid-column: 2;
  grid-row: 1;
}

.service-story:nth-child(even) .service-story__body {
  grid-column: 1;
  grid-row: 1;
}

.service-story__media {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background: var(--cream);
  border-radius: 220px 18px 18px 18px;
}

.service-story:nth-child(even) .service-story__media {
  border-radius: 18px 220px 18px 18px;
}

.service-story__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(24, 13, 49, 0.24));
}

.service-story__media img {
  width: 100%;
  height: 100%;
  min-height: 630px;
  object-fit: cover;
}

.service-story--aesthetic .service-story__media img {
  object-position: 53% center;
}

.service-story--mental .service-story__media img {
  object-position: 58% center;
}

.service-story--weight .service-story__media img {
  object-position: 54% center;
}

.service-story__number {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: -0.08em;
}

.service-story__body {
  padding: 22px 0;
}

.service-story h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.6rem, 4.3vw, 5.1rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-story__body > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

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

.service-list span {
  min-height: 54px;
  padding: 15px 12px 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.87rem;
  font-weight: 600;
}

.service-list span:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-list span:nth-child(even) {
  padding-left: 18px;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  margin-top: 20px;
  padding: 0;
  gap: 10px;
  align-items: center;
  color: var(--violet);
  background: transparent;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.text-link svg {
  width: 18px;
  transition: transform 220ms var(--ease);
}

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

.service-details {
  display: grid;
  margin-top: 10px;
  padding: 24px 0 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
  border-top: 1px solid var(--line);
}

.service-details.is-opening {
  animation: detailsIn 360ms var(--ease) both;
}

@keyframes detailsIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-details h4 {
  margin: 0 0 7px;
  color: var(--violet);
  font-size: 0.88rem;
}

.service-details p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.service-story .button {
  margin-top: 30px;
}

.button-row .button {
  margin-top: 0;
}

.text-action {
  display: inline-flex;
  min-height: 48px;
  padding: 0 8px;
  align-items: center;
  color: var(--violet);
  font-size: 0.88rem;
  font-weight: 700;
}

.university-program {
  position: relative;
  display: grid;
  width: var(--page);
  min-height: 430px;
  margin: 0 auto 30px;
  padding: 78px clamp(44px, 6vw, 92px);
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 70px;
  align-items: end;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(141, 169, 174, 0.38), transparent 31%),
    linear-gradient(115deg, #1f3038 0%, #314a56 72%, #506872 100%);
  border-radius: 22px;
}

.university-program__mark {
  position: absolute;
  top: -170px;
  right: 22%;
  color: rgba(255, 255, 255, 0.035);
  font-size: 38rem;
  font-weight: 800;
  line-height: 1;
  animation: universityMarkFloat 12s ease-in-out infinite alternate;
}

@keyframes universityMarkFloat {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-24px, 18px, 0) rotate(-2deg); }
}

.university-program h2 {
  max-width: 840px;
  font-size: clamp(3.4rem, 5vw, 6.2rem);
}

.university-program p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.university-program__action {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  justify-items: start;
}

.university-program__action > span {
  color: var(--lime);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience {
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.experience__image {
  position: relative;
  min-height: 780px;
}

.experience__image > img {
  width: 86%;
  height: 700px;
  object-fit: cover;
  border-radius: 260px 260px 18px 18px;
}

.experience__image::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 52%;
  height: 64%;
  content: "";
  background: #cbd4c3;
  border-radius: 18px 18px 180px 18px;
  opacity: 0.5;
}

.experience__image-note {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: min(330px, 68%);
  padding: 28px;
  color: var(--white);
  background: var(--sage-deep);
  border-radius: 18px;
}

.experience__image-note span {
  display: block;
  margin-bottom: 30px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience__image-note p {
  margin: 0;
  font-size: 1.05rem;
}

.experience h2 {
  max-width: 860px;
}

.experience__copy > p:not(.eyebrow) {
  max-width: 710px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.care-process {
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.care-process li {
  display: grid;
  min-height: 104px;
  padding: 22px 0;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.care-process li > span {
  color: var(--violet-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.care-process b {
  font-size: 1.05rem;
}

.care-process p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.reviews {
  position: relative;
  padding: 132px max(36px, calc((100vw - 1380px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 10%, rgba(220, 231, 189, 0.74), transparent 28%),
    linear-gradient(135deg, #f2eee5 0%, #ebe7dd 100%);
}

.reviews::after {
  position: absolute;
  top: -250px;
  right: -160px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(45, 20, 95, 0.09);
  border-radius: 50%;
}

.reviews__layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.reviews__summary {
  max-width: 620px;
}

.reviews__score {
  display: flex;
  margin: 20px 0 34px;
  gap: 18px;
  align-items: center;
}

.reviews__score > strong {
  font-size: clamp(4.8rem, 7vw, 7.3rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.reviews__score > div {
  display: grid;
  gap: 3px;
}

.reviews__score span {
  color: #8b5d18;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.reviews__score small {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.reviews h2,
.social-feed h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.reviews__summary > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--ink-soft);
}

.reviews__summary .button {
  margin-top: 32px;
}

.reviews__verified {
  display: block;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.reviews__quotes {
  display: grid;
  gap: 14px;
}

.review-card {
  position: relative;
  display: grid;
  min-height: 190px;
  margin: 0;
  padding: 34px 40px;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  border: 1px solid rgba(23, 20, 27, 0.1);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(38, 54, 45, 0.08);
  transition: transform 320ms var(--ease), box-shadow 320ms ease;
}

.review-card:hover {
  box-shadow: 0 30px 72px rgba(38, 54, 45, 0.13);
  transform: translateX(-8px);
}

.review-card--sage { background: #d9e1d4; }
.review-card--sand { margin-left: 46px; background: #e3d2bd; }
.review-card--paper { margin-right: 32px; background: var(--paper); }

.review-card blockquote {
  max-width: 610px;
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.review-card figcaption {
  display: grid;
  min-width: 104px;
  gap: 2px;
  text-align: right;
}

.review-card figcaption span {
  font-size: 0.8rem;
  font-weight: 700;
}

.review-card figcaption small {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.social-feed {
  width: var(--page);
  margin: 0 auto 132px;
  padding: 108px 0 0;
  border-top: 1px solid var(--line);
}

.social-feed__heading {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.55fr);
  gap: 70px;
  align-items: end;
}

.social-feed__heading h2 {
  max-width: 920px;
}

.social-feed__profile {
  display: grid;
  min-height: 88px;
  padding: 15px 0;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-feed__avatar {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--violet-bright), var(--clay));
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 600;
}

.social-feed__profile > span:nth-child(2) {
  display: grid;
}

.social-feed__profile strong {
  font-size: 0.86rem;
}

.social-feed__profile small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.social-feed__profile a {
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(45, 20, 95, 0.28);
}

.social-feed__grid {
  display: grid;
  min-height: 600px;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 1fr 0.82fr;
  gap: 12px;
}

.social-tile {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 18px;
}

.social-tile:first-child {
  grid-row: 1 / 3;
  border-radius: 190px 18px 18px 18px;
}

.social-tile:nth-child(2) {
  grid-column: 2 / 4;
  border-radius: 18px 190px 18px 18px;
}

.social-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.social-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 38%, rgba(19, 21, 20, 0.86) 100%);
}

.social-tile:hover img {
  filter: saturate(1.05);
  transform: scale(1.04);
}

.social-tile > span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: end;
}

.social-tile small {
  grid-column: 1;
  color: var(--lime);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.social-tile strong {
  grid-column: 1;
  font-size: 1.05rem;
  font-weight: 600;
}

.social-tile em {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.12em;
}

.social-tile--team img { object-position: 52% center; }
.social-tile--advice img { object-position: 50% 43%; }
.social-tile--care img { object-position: 55% center; }
.social-tile--experience img { object-position: 50% 42%; }

.cannabis {
  display: grid;
  margin-bottom: 120px;
  padding: 0;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 0;
  align-items: stretch;
  background: #edf0e9;
  border: 1px solid rgba(26, 55, 35, 0.12);
  border-radius: 22px;
  overflow: hidden;
}

.cannabis__visual {
  min-height: 520px;
  background: #d7ddd2;
}

.cannabis__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cannabis__copy {
  padding: clamp(48px, 6vw, 90px);
  align-self: center;
}

.cannabis h2 {
  max-width: 730px;
  color: #18311f;
  font-size: clamp(3rem, 4.5vw, 5.4rem);
}

.cannabis__copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  color: #4c5b50;
}

.cannabis__points {
  display: flex;
  margin-top: 32px;
  gap: 8px;
  flex-wrap: wrap;
}

.cannabis__points span {
  padding: 9px 13px;
  color: #18311f;
  border: 1px solid rgba(24, 49, 31, 0.2);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
}

.cannabis .button {
  margin-top: 32px;
  background: #23442c;
}

.contact {
  position: relative;
  display: grid;
  min-height: 690px;
  padding: 120px max(36px, calc((100vw - 1380px) / 2));
  overflow: hidden;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 22%, rgba(126, 151, 135, 0.54), transparent 32%),
    #1d2c28;
}

.contact__emblem {
  position: absolute;
  right: 5%;
  bottom: -32%;
  width: 360px;
  opacity: 0.05;
  animation: contactEmblemDrift 18s ease-in-out infinite alternate;
}

@keyframes contactEmblemDrift {
  from { transform: translate3d(0, 0, 0) rotate(12deg); }
  to { transform: translate3d(-34px, -24px, 0) rotate(18deg); }
}

.contact h2 {
  max-width: 870px;
}

.contact__intro > p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.contact__details {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-detail {
  display: grid;
  min-height: 124px;
  padding: 24px 8px;
  gap: 4px;
  align-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: padding 220ms var(--ease), background 220ms ease;
}

a.contact-detail:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-detail span {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-detail strong {
  font-size: 1.22rem;
  font-weight: 500;
}

.contact-detail small {
  color: rgba(255, 255, 255, 0.56);
}

.site-footer {
  padding: 82px max(36px, calc((100vw - 1380px) / 2)) 34px;
  color: var(--white);
  background: #17171a;
}

.site-footer__brand {
  display: grid;
  padding-bottom: 56px;
  grid-template-columns: 220px minmax(260px, 460px);
  gap: 54px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand img {
  width: 190px;
}

.site-footer__brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__links {
  display: grid;
  padding: 56px 0 70px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.site-footer__links > div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer__links span {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__links a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.88rem;
}

.site-footer__links a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 950;
  right: 24px;
  bottom: 22px;
  display: flex;
  min-height: 62px;
  padding: 8px 18px 8px 8px;
  gap: 10px;
  align-items: center;
  color: var(--white);
  background: rgba(38, 18, 76, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(20, 10, 43, 0.24);
  backdrop-filter: blur(16px);
  transition: transform 220ms var(--ease);
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--violet-deep);
  background: var(--lime);
  border-radius: 50%;
}

.floating-whatsapp__icon svg {
  width: 23px;
}

.floating-whatsapp > span:last-child {
  display: grid;
  line-height: 1.12;
}

.floating-whatsapp b {
  font-size: 0.82rem;
}

.floating-whatsapp small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.mobile-action-bar {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

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

.js .hero-visual[data-reveal].is-visible {
  transform: perspective(1200px) rotateX(var(--hero-tilt-x, 0deg)) rotateY(var(--hero-tilt-y, 0deg)) rotateZ(1.5deg);
}

.js .service-story[data-reveal] .service-story__media {
  clip-path: inset(0 0 100% 0 round 220px 18px 18px 18px);
  transform: translate3d(0, 44px, 0);
  transition: clip-path 980ms var(--ease), transform 980ms var(--ease);
}

.js .service-story[data-reveal].is-visible .service-story__media {
  clip-path: inset(0 0 0 0 round 220px 18px 18px 18px);
  transform: translate3d(0, 0, 0);
}

.js .service-story[data-reveal] .service-story__media img {
  transform: scale(1.08);
  transition: transform 1300ms var(--ease);
}

.js .service-story[data-reveal].is-visible .service-story__media img {
  transform: scale(1);
}

.js .service-story[data-reveal] .service-story__body > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.js .service-story[data-reveal].is-visible .service-story__body > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .service-story[data-reveal].is-visible .service-story__body > :nth-child(1) { transition-delay: 180ms; }
.js .service-story[data-reveal].is-visible .service-story__body > :nth-child(2) { transition-delay: 240ms; }
.js .service-story[data-reveal].is-visible .service-story__body > :nth-child(3) { transition-delay: 300ms; }
.js .service-story[data-reveal].is-visible .service-story__body > :nth-child(4) { transition-delay: 360ms; }
.js .service-story[data-reveal].is-visible .service-story__body > :nth-child(n + 5) { transition-delay: 420ms; }

.js .experience__image[data-reveal] > img,
.js .cannabis__visual[data-reveal] > img {
  clip-path: inset(8% 8% 8% 8% round 260px 260px 18px 18px);
  transform: scale(1.07);
  transition: clip-path 1000ms var(--ease), transform 1300ms var(--ease);
}

.js .experience__image[data-reveal].is-visible > img,
.js .cannabis__visual[data-reveal].is-visible > img {
  clip-path: inset(0 0 0 0 round 260px 260px 18px 18px);
  transform: scale(1);
}

.js .review-card[data-reveal] {
  transform: translate3d(42px, 0, 0);
}

.js .review-card--sand[data-reveal] {
  transform: translate3d(-42px, 0, 0);
}

.js .review-card[data-reveal].is-visible {
  transform: translate3d(0, 0, 0);
}

.js .review-card[data-reveal].is-visible:hover {
  transform: translate3d(-8px, 0, 0);
}

.js .social-tile[data-reveal] {
  clip-path: inset(14% 8% 14% 8% round 28px);
  transform: translate3d(0, 36px, 0) scale(0.98);
  transition: opacity 800ms var(--ease), transform 900ms var(--ease), clip-path 1000ms var(--ease);
}

.js .social-tile[data-reveal].is-visible {
  clip-path: inset(0 0 0 0 round 18px);
  transform: translate3d(0, 0, 0) scale(1);
}

.js .social-tile[data-reveal]:nth-child(2) { transition-delay: 100ms; }
.js .social-tile[data-reveal]:nth-child(3) { transition-delay: 180ms; }
.js .social-tile[data-reveal]:nth-child(4) { transition-delay: 250ms; }

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 18px;
  }

  .mega-menu {
    width: min(1080px, calc(100vw - 48px));
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .mega-menu__orientation {
    padding: 30px;
  }

  .mega-menu__directory {
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 7.6vw, 6.6rem);
  }

  .hero-visual {
    min-height: 560px;
  }

  .service-story,
  .service-story:nth-child(even) {
    gap: 60px;
  }

  .service-story__media,
  .service-story__media img {
    min-height: 560px;
  }
}

@media (max-width: 1020px) {
  body.is-menu-open {
    overflow: hidden;
  }

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

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

  .menu-button {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-content: center;
    gap: 6px;
    color: currentColor;
    background: transparent;
    border: 0;
    border-radius: 50%;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: transform 220ms var(--ease);
  }

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

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

  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - 118px);
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background: rgba(251, 250, 247, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(23, 20, 27, 0.16);
  }

  .mobile-menu__heading {
    display: grid;
    padding: 0 8px 20px;
    gap: 3px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu__heading span {
    color: var(--violet);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-menu__heading small {
    color: var(--ink-soft);
    font-size: 0.76rem;
  }

  .mobile-menu__trigger,
  .mobile-menu__primary-link {
    display: flex;
    width: 100%;
    min-height: 58px;
    padding: 0 8px;
    align-items: center;
    justify-content: space-between;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
    font-weight: 650;
    text-align: left;
  }

  .mobile-menu__trigger {
    cursor: pointer;
  }

  .mobile-menu__trigger span,
  .mobile-menu__primary-link span {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .mobile-menu__trigger small,
  .mobile-menu__primary-link small {
    color: var(--violet-bright);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
  }

  .mobile-menu__trigger svg {
    width: 18px;
    color: var(--violet);
    transition: transform 220ms var(--ease);
  }

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

  .mobile-menu__services {
    display: grid;
    padding: 12px 0 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    border-bottom: 1px solid var(--line);
    animation: mobileServicesIn 260ms var(--ease) both;
  }

  @keyframes mobileServicesIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-menu__services a {
    display: grid;
    min-height: 66px;
    padding: 11px 13px;
    gap: 2px;
    align-content: center;
    background: var(--cream);
    border-radius: 12px;
    transition: background 180ms ease, transform 180ms var(--ease);
  }

  .mobile-menu__services a:hover,
  .mobile-menu__services a:focus-visible {
    background: var(--lime);
    transform: translateY(-1px);
  }

  .mobile-menu__services span {
    font-size: 0.8rem;
    font-weight: 650;
  }

  .mobile-menu__services small {
    color: var(--ink-soft);
    font-size: 0.68rem;
  }

  .mobile-menu__orientation,
  .mobile-menu__action {
    display: flex;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 15px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
  }

  .mobile-menu__orientation {
    color: var(--violet);
    background: rgba(45, 20, 95, 0.04);
    border: 1px solid rgba(45, 20, 95, 0.16);
  }

  .mobile-menu__action {
    margin-top: 8px;
    color: var(--violet-deep) !important;
    background: var(--lime);
  }

  .nav-scrim {
    z-index: 900;
  }

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

  .hero__layout {
    padding: 160px 0 90px;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    max-width: 790px;
  }

  .hero-visual {
    min-height: 660px;
  }

  .hero__scroll {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-story,
  .service-story:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-story:nth-child(even) .service-story__media,
  .service-story:nth-child(even) .service-story__body {
    grid-column: auto;
    grid-row: auto;
  }

  .service-story__media,
  .service-story:nth-child(even) .service-story__media {
    min-height: 630px;
    border-radius: 220px 22px 22px 22px;
  }

  .service-story__media img {
    min-height: 630px;
  }

  .university-program {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .experience__image {
    max-width: 740px;
  }

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

  .reviews__summary {
    max-width: 780px;
  }

  .social-feed__heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .social-feed__profile {
    max-width: 560px;
  }

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

  .cannabis__visual {
    min-height: 420px;
  }

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

@media (max-width: 700px) {
  :root {
    --page: calc(100vw - 40px);
  }

  html {
    scroll-padding-top: 92px;
  }

  [id] {
    scroll-margin-top: 92px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
    width: calc(100vw - 24px);
    min-height: 64px;
    padding-left: 18px;
  }

  .brand {
    width: 118px;
    height: 46px;
  }

  .brand img {
    width: 112px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    max-height: calc(100vh - 164px);
    padding: 20px;
    border-radius: 20px;
  }

  .mobile-menu__services {
    grid-template-columns: 1fr;
  }

  .mobile-menu__services a {
    min-height: 58px;
  }

  .hero__line {
    left: 50%;
  }

  .hero__layout {
    width: calc(100vw - 40px);
    padding: 126px 0 76px;
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 17vw, 5.4rem);
    line-height: 0.87;
  }

  .hero__intro-line {
    gap: 12px;
  }

  .hero__availability {
    font-size: 0.62rem;
  }

  .hero__lead {
    margin-top: 28px;
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

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

  .hero-visual {
    min-height: 590px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 0.8fr;
    gap: 8px;
    transform: none;
  }

  .js .hero-visual[data-reveal].is-visible {
    transform: none;
  }

  .hero-visual__main {
    grid-column: 1 / 3;
    grid-row: 1;
    border-radius: 130px 16px 16px 16px;
  }

  .hero-visual__side {
    grid-row: 2;
  }

  .hero-visual__side--mental {
    border-radius: 16px;
  }

  .hero-visual__side--weight {
    border-radius: 16px 16px 130px 16px;
  }

  .hero-visual__proof {
    top: 53%;
    bottom: auto;
    left: 50%;
    width: 204px;
    min-height: 76px;
    padding: 12px 13px;
  }

  .hero-visual .hero-visual__proof > strong {
    font-size: 2rem;
  }

  .hero-visual__label,
  .hero-visual__side span {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .hero-visual__side strong {
    font-size: 0.86rem;
  }

  .assurance {
    min-height: 78px;
    padding: 14px 20px;
    grid-template-columns: 1fr 1fr;
    gap: 7px 14px;
    text-align: left;
  }

  .assurance p {
    font-size: 0.72rem;
  }

  .assurance > span {
    display: none;
  }

  .assurance p:last-child {
    grid-column: 1 / -1;
  }

  .section {
    padding: 96px 0;
  }

  .section-heading {
    margin-bottom: 58px;
  }

  .section-heading h2,
  .experience h2,
  .contact h2,
  .university-program h2 {
    font-size: clamp(3.1rem, 14vw, 4.5rem);
  }

  .service-stories {
    gap: 94px;
  }

  .service-story,
  .service-story:nth-child(even) {
    gap: 34px;
  }

  .service-story__media,
  .service-story:nth-child(even) .service-story__media {
    min-height: 430px;
    border-radius: 140px 16px 16px 16px;
  }

  .service-story__media img {
    min-height: 430px;
  }

  .service-story h3 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .service-story__body > p:not(.eyebrow) {
    margin-top: 22px;
  }

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

  .service-list span,
  .service-list span:nth-child(even) {
    padding-left: 0;
    border-right: 0;
  }

  .service-details {
    grid-template-columns: 1fr;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .text-action {
    justify-content: center;
  }

  .university-program {
    width: calc(100vw - 24px);
    min-height: 560px;
    margin-bottom: 0;
    padding: 56px 28px;
    gap: 70px;
    border-radius: 20px;
  }

  .university-program__mark {
    top: -30px;
    right: -30px;
    font-size: 25rem;
  }

  .experience {
    gap: 70px;
  }

  .experience__image {
    min-height: 590px;
  }

  .experience__image > img {
    width: 92%;
    height: 540px;
    border-radius: 180px 180px 16px 16px;
  }

  .experience__image-note {
    bottom: 0;
    width: 74%;
    padding: 22px;
  }

  .reviews {
    padding: 90px 20px;
  }

  .reviews__layout {
    gap: 58px;
  }

  .reviews h2,
  .social-feed h2 {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .reviews__score {
    margin-bottom: 28px;
  }

  .review-card,
  .review-card--sand,
  .review-card--paper {
    min-height: 210px;
    margin-right: 0;
    margin-left: 0;
    padding: 28px 24px;
    grid-template-columns: 1fr;
  }

  .review-card figcaption {
    text-align: left;
  }

  .social-feed {
    width: calc(100vw - 24px);
    margin-bottom: 90px;
    padding-top: 82px;
  }

  .social-feed__heading {
    margin-bottom: 38px;
  }

  .social-feed__profile {
    grid-template-columns: 50px 1fr;
  }

  .social-feed__profile a {
    grid-column: 2;
    width: fit-content;
  }

  .social-feed__grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 250px 250px;
    gap: 8px;
  }

  .social-tile:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
    border-radius: 130px 16px 16px 16px;
  }

  .social-tile:nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2;
    border-radius: 16px;
  }

  .social-tile:nth-child(3),
  .social-tile:nth-child(4) {
    grid-row: 3;
  }

  .social-tile:nth-child(4) {
    border-radius: 16px 16px 100px 16px;
  }

  .social-tile > span {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .social-tile strong {
    font-size: 0.86rem;
  }

  .cannabis {
    width: calc(100vw - 24px);
    margin-bottom: 90px;
    border-radius: 20px;
  }

  .cannabis__visual {
    min-height: 280px;
  }

  .cannabis__copy {
    padding: 42px 26px 50px;
  }

  .cannabis h2 {
    font-size: clamp(2.8rem, 12.5vw, 4rem);
  }

  .contact {
    min-height: 860px;
    padding: 92px 20px;
    gap: 70px;
  }

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

  .site-footer {
    padding: 68px 20px 34px;
  }

  .site-footer__brand {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__bottom {
    gap: 8px;
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 1200;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 8px;
    display: grid;
    min-height: 62px;
    padding: 6px;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    color: var(--white);
    background: rgba(24, 13, 49, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(20, 10, 43, 0.28);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a {
    display: flex;
    min-height: 50px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .mobile-action-bar a:first-child {
    color: var(--violet-deep);
    background: var(--lime);
  }

  .mobile-action-bar a:last-child {
    background: rgba(255, 255, 255, 0.09);
  }

  .mobile-action-bar svg {
    width: 21px;
  }
}

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

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

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