:root {
  --white: #ffffff;
  --sand-50: #fbf8f5;
  --sand-100: #f3ece5;
  --sand-200: #e7dbd0;
  --sand-300: #d8c7b6;
  --sand-400: #c1a993;
  --ink: #15140f;
  --ink-soft: #4b453e;
  --muted: #8d857b;
  --line: rgba(21, 20, 15, 0.10);
  --line-strong: rgba(21, 20, 15, 0.18);
  --shadow-sm: 0 2px 10px rgba(21, 20, 15, 0.05);
  --shadow-md: 0 14px 34px rgba(21, 20, 15, 0.08);
  --shadow-lg: 0 30px 70px rgba(21, 20, 15, 0.14);
  --r-xs: 10px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 34px;
  --r-pill: 999px;
  --shell: 1240px;
  --gap: clamp(16px, 2.2vw, 28px);
  --section-y: clamp(64px, 9vw, 132px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote {
  margin: 0;
}

ul, ol {
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 60;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-y) 0;
  scroll-margin-top: 92px;
}

.h1 {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  margin-top: 20px;
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.62;
}

.body-lg {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.66;
}

.link {
  position: relative;
  display: inline-block;
  color: inherit;
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.link:hover::after,
.link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  background: var(--sand-100);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: scale(0);
  border-radius: inherit;
  transition: transform 0.4s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  color: var(--white);
  transform: translateY(-2px);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: scale(1);
}

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

.btn--dark::before {
  background: var(--sand-300);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.pill--ghost {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  box-shadow: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: var(--white);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 22px 20px;
  transition: padding 0.35s var(--ease);
}

.header.is-scrolled,
.header--solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}

.header.is-scrolled .header__inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.header__brand {
  justify-self: center;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header__dot {
  color: var(--sand-400);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
}

.nav__link {
  position: relative;
  padding: 4px 0;
  opacity: 0.86;
  transition: opacity 0.3s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover,
.nav__link.is-current {
  opacity: 1;
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__divider {
  opacity: 0.4;
}

.nav__link--extra {
  display: none;
}

.header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transition: transform 0.3s var(--ease);
}

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

.burger {
  position: relative;
  display: grid;
  gap: 6px;
  width: 26px;
  padding: 6px 0;
}

.burger__bar {
  display: block;
  width: 100%;
  height: 1.6px;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.header.is-open .burger__bar:first-child {
  transform: translateY(3.8px) rotate(45deg);
}

.header.is-open .burger__bar:last-child {
  transform: translateY(-3.8px) rotate(-45deg);
}

.hero {
  position: relative;
  width: calc(100% - 24px);
  max-width: 1440px;
  margin: 12px auto 0;
  min-height: clamp(560px, 92vh, 880px);
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 26s var(--ease) infinite alternate;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 20, 15, 0.26) 0%, rgba(21, 20, 15, 0.02) 32%, rgba(21, 20, 15, 0.42) 100%),
    radial-gradient(72% 58% at 50% 46%, rgba(255, 255, 255, 0.14) 0%, rgba(21, 20, 15, 0.08) 100%);
}

.hero__blob {
  position: absolute;
  z-index: -1;
  width: 46vw;
  max-width: 620px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
}

.hero__blob--a {
  top: 8%;
  left: -8%;
  background: rgba(255, 255, 255, 0.5);
  animation: float 18s ease-in-out infinite alternate;
}

.hero__blob--b {
  right: -10%;
  bottom: 4%;
  background: rgba(216, 199, 182, 0.65);
  animation: float 22s ease-in-out infinite alternate-reverse;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: inherit;
  padding: clamp(96px, 12vw, 132px) clamp(20px, 4vw, 56px) clamp(28px, 4vw, 52px);
}

.hero__tags {
  position: absolute;
  inset: clamp(96px, 12vw, 132px) clamp(20px, 4vw, 56px) 0;
  pointer-events: none;
}

.hero__tag {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: rise 0.9s var(--ease) backwards;
}

.hero__tag-num {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.hero__tag--one {
  top: 12%;
  left: 2%;
  animation-delay: 0.15s;
}

.hero__tag--two {
  top: 0;
  left: 44%;
  animation-delay: 0.3s;
}

.hero__tag--three {
  top: 62%;
  right: 4%;
  align-items: flex-start;
  animation-delay: 0.45s;
}

.hero__title {
  margin: auto 0;
  font-size: clamp(3.2rem, 15vw, 13rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  animation: rise 1.1s var(--ease) backwards;
  animation-delay: 0.1s;
}

.hero__foot {
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: rise 1s var(--ease) 0.5s backwards;
}

.hero__stack {
  display: flex;
  align-items: center;
}

.hero__stack img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.85);
  transition: transform 0.35s var(--ease);
}

.hero__stack img + img {
  margin-left: -14px;
}

.hero__stack:hover img {
  transform: translateY(-3px);
}

.hero__stack-link {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-left: 10px;
  transition: transform 0.3s var(--ease);
}

.hero__stack-link:hover {
  transform: translateX(4px);
}

.hero__tagline {
  max-width: 26ch;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.sense {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: -40px 40px 0 auto;
  padding: 14px 14px 14px 28px;
  border-radius: var(--r-pill);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.sense__text {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.35;
  font-weight: 500;
}

.sense__btn {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.sense__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.sense__btn:hover {
  transform: scale(1.07);
  background: var(--sand-400);
}

.about__grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
}

.tile {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sand-100);
  aspect-ratio: 1 / 1;
  isolation: isolate;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.tile:hover img {
  transform: scale(1.06);
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 20, 15, 0.3) 0%, rgba(21, 20, 15, 0) 40%, rgba(21, 20, 15, 0.62) 100%);
}

.tile__num,
.tile__caption {
  position: absolute;
  z-index: 2;
  color: var(--white);
}

.tile__num {
  top: 18px;
  left: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.tile__caption {
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.tile__title {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.28;
}

.tile__sub {
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.section__head {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(32px, 4.5vw, 60px);
}

.lead--right {
  margin-top: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--gap);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
}

.card__media {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--sand-100);
  aspect-ratio: 4 / 3;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.05);
}

.card__title {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card__text {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.space {
  background: var(--sand-50);
}

.space__grid {
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.space__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sand-200);
  aspect-ratio: 4 / 5;
}

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

.facts {
  display: grid;
  gap: 26px;
  margin-top: 34px;
}

.facts__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.facts__num {
  grid-row: span 2;
  color: var(--sand-400);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.facts__title {
  font-size: 1.08rem;
  font-weight: 600;
}

.facts__text {
  color: var(--muted);
  font-size: 0.96rem;
}

.companion__grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
}

.thumbs {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.thumb {
  width: clamp(110px, 15vw, 152px);
}

.thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: var(--sand-200);
  transition: transform 0.5s var(--ease);
}

.thumb:hover img {
  transform: translateY(-5px);
}

.thumb figcaption {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.companion__right {
  display: grid;
  gap: 18px;
  align-content: start;
}

.companion__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--sand-200);
  aspect-ratio: 16 / 9;
}

.companion__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.companion__media:hover img {
  transform: scale(1.04);
}

.steps__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
}

.step {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 28px 24px 32px;
  border-radius: var(--r-md);
  background: var(--sand-50);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.step:hover {
  transform: translateY(-6px);
  background: var(--sand-100);
  box-shadow: var(--shadow-md);
}

.step__num {
  color: var(--sand-400);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.step__title {
  font-size: 1.12rem;
  font-weight: 600;
}

.step__text {
  color: var(--muted);
  font-size: 0.95rem;
}

.routines {
  background: var(--sand-50);
}

.routines__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}

.routine {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 14px 22px;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.routine:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.routine__media {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--sand-200);
  aspect-ratio: 1 / 1;
}

.routine__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.routine:hover .routine__media img {
  transform: scale(1.05);
}

.routine__title {
  padding: 0 8px;
  font-size: 1.08rem;
  font-weight: 600;
}

.routine__text {
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.routine__price {
  margin-top: auto;
  padding: 0 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}

.panel {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 30px 26px 34px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.panel:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.panel__title {
  font-size: 1.14rem;
  font-weight: 600;
}

.panel__text {
  color: var(--muted);
  font-size: 0.96rem;
}

.contact__inner {
  max-width: 760px;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
  text-align: center;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, var(--sand-50) 0%, var(--sand-100) 100%);
}

.contact__inner .lead {
  margin-inline: auto;
}

.contact__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 42px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.contact__row {
  display: grid;
  gap: 4px;
  text-align: center;
}

.contact__row dt {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact__row dd {
  margin: 0;
  font-weight: 500;
}

.footer {
  padding: clamp(48px, 6vw, 82px) 0 32px;
  background: var(--ink);
  color: var(--sand-100);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.footer__logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer__note {
  max-width: 32ch;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer__col {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
  font-size: 0.95rem;
}

.footer__title {
  margin-bottom: 4px;
  color: var(--sand-400);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__text {
  color: var(--muted);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: clamp(36px, 5vw, 60px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.86rem;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 3px;
  background: transparent;
}

.progress__bar {
  display: block;
  height: 100%;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}

.page-legal {
  background: var(--white);
}

.legal {
  padding: clamp(120px, 15vw, 180px) 0 clamp(60px, 8vw, 110px);
}

.legal__head {
  max-width: 720px;
  padding-bottom: clamp(32px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
}

.legal__grid {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
  margin-top: clamp(32px, 4vw, 56px);
}

.toc {
  align-self: start;
  padding: 26px 24px;
  border-radius: var(--r-md);
  background: var(--sand-50);
}

.toc__title {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.toc__list {
  display: grid;
  gap: 10px;
  counter-reset: toc;
  font-size: 0.92rem;
}

.toc__list li {
  counter-increment: toc;
  display: grid;
  grid-template-columns: 26px 1fr;
  color: var(--ink-soft);
}

.toc__list li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--sand-400);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.toc__list a {
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.toc__list a:hover {
  color: var(--ink);
  transform: translateX(2px);
}

.prose {
  max-width: 72ch;
}

.prose section {
  padding-top: 8px;
  scroll-margin-top: 110px;
}

.prose section + section {
  margin-top: 44px;
}

.prose h2 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.prose p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.prose p + p,
.prose ul + p {
  margin-top: 14px;
}

.prose ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.prose ul li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.prose ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sand-400);
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

.js .stagger > .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.js .stagger > .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.js .stagger > .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.js .stagger > .reveal:nth-child(5) {
  transition-delay: 0.32s;
}

.js .stagger > .reveal:nth-child(6) {
  transition-delay: 0.4s;
}

.js .stagger > .reveal:nth-child(7) {
  transition-delay: 0.48s;
}

.js .stagger > .reveal:nth-child(8) {
  transition-delay: 0.56s;
}

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

@keyframes float {
  from {
    transform: translate3d(0, -18px, 0) scale(1);
  }
  to {
    transform: translate3d(18px, 22px, 0) scale(1.08);
  }
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@media (min-width: 700px) {
  .about__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__list {
    gap: 12px 60px;
  }
}

@media (min-width: 900px) {
  .nav__link--extra {
    display: inline-block;
  }

  .about__grid {
    grid-template-columns: 1fr 1.1fr;
  }

  .space__grid {
    grid-template-columns: 0.85fr 1.15fr;
  }

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

  .companion__media {
    grid-column: 1 / -1;
  }

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

  .routine--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 46% 1fr;
    grid-template-rows: auto auto auto;
    align-content: center;
    column-gap: 26px;
    row-gap: 12px;
  }

  .routine--wide .routine__media {
    grid-column: 1;
    grid-row: 1 / 4;
    height: 100%;
    aspect-ratio: auto;
  }

  .routine--wide .routine__title {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    padding-right: 18px;
    font-size: 1.24rem;
  }

  .routine--wide .routine__text {
    grid-column: 2;
    grid-row: 2;
    padding-right: 18px;
  }

  .routine--wide .routine__price {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    margin-top: 6px;
    padding-right: 18px;
  }

  .legal__grid {
    grid-template-columns: 260px 1fr;
  }

  .toc {
    position: sticky;
    top: 104px;
  }

  .section__head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    column-gap: var(--gap);
  }

  .section__head .eyebrow,
  .section__head .h2 {
    grid-column: 1;
  }

  .section__head .eyebrow {
    grid-row: 1;
  }

  .section__head .h2 {
    grid-row: 2;
  }

  .section__head .lead--right {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    margin-top: 0;
  }
}

@media (max-width: 899px) {
  .header.is-open .nav {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 22px 22px;
    border-radius: var(--r-md);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-md);
  }

  .nav__link--extra {
    display: inline-block;
  }

  .nav__link {
    padding: 8px 0;
    font-size: 1.05rem;
  }

  .nav__divider {
    display: none;
  }

  .header__inner {
    position: relative;
    grid-template-columns: 1fr auto;
  }

  .nav {
    order: 3;
  }

  .header__brand {
    justify-self: start;
  }

  .hero__tags {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    pointer-events: auto;
  }

  .hero__tag {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .hero__title {
    margin: clamp(40px, 12vw, 90px) 0;
  }

  .sense {
    margin: -28px auto 0;
    padding-left: 22px;
  }

  .thumb {
    width: 46%;
  }
}

@media (max-width: 520px) {
  .sense {
    width: calc(100% - 32px);
    gap: 14px;
  }

  .sense__btn {
    width: 50px;
    height: 50px;
  }

  .contact__inner {
    padding-inline: 18px;
  }

  .toc {
    padding: 22px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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