:root {
  --ink: #0a0a0a;
  --ink-soft: #11110f;
  --panel: #171714;
  --panel-light: #1f1f1b;
  --paper: #f2f0ea;
  --white: #fff;
  --muted: #aaa79e;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(10, 10, 10, 0.14);
  --accent: #c8a96a;
  --accent-soft: #ddc99f;
  --sans: "Manrope", system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --container: min(100% - 64px, 1440px);
  --header-height: 84px;
  --section-space: clamp(100px, 11vw, 180px);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: fit-content;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.brand > span > span {
  color: var(--muted);
  font-weight: 400;
}

.brand-mark {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.6;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #d1cfc8;
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.button:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 0 19px;
}

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

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}

.menu-button span {
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s ease;
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 110px 32px 40px;
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  padding: 12px 0;
  font-size: clamp(38px, 12vw, 60px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.mobile-menu__footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + 78px) max(32px, calc((100vw - 1440px) / 2)) 76px;
  overflow: hidden;
}

.hero__ambient,
.final-cta__ambient {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: rgba(172, 128, 68, 0.1);
  filter: blur(120px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-right: clamp(28px, 5vw, 80px);
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--accent-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(68px, 8.6vw, 148px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.hero h1 em,
.display-heading em,
.situations__sticky h2 em,
.final-cta h2 em {
  color: var(--accent-soft);
  font-family: var(--serif);
  font-weight: 500;
}

.hero__lead {
  max-width: 600px;
  margin: 42px 0 0;
  color: #b7b4ac;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 8px 0 5px;
  border-bottom: 1px solid currentColor;
  color: #d2d0c9;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--accent-soft);
}

.hero__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 640px);
}

.hero__image-wrap {
  position: relative;
  aspect-ratio: 0.76;
  max-height: 72svh;
  overflow: hidden;
}

.hero__image-wrap::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35));
  content: "";
}

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

.hero__badge {
  position: absolute;
  right: -1px;
  bottom: -1px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 16px;
  min-width: 220px;
  padding: 20px 24px;
  background: var(--paper);
  color: var(--ink);
}

.hero__badge-score {
  grid-row: span 2;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.stars {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.hero__badge > span:last-child {
  color: #6d6a63;
  font-size: 10px;
  letter-spacing: 0.03em;
}

.hero__meta {
  position: absolute;
  bottom: 24px;
  left: max(32px, calc((100vw - 1440px) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  color: #78766f;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__meta-line {
  width: 48px;
  height: 1px;
  background: #4f4d48;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 104px;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: #a7a49c;
  font-size: 12px;
}

.trust-strip__item:last-child {
  border-right: 0;
}

.trust-strip__number {
  color: var(--white);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.trust-strip__icon {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid #4b4944;
  border-radius: 50%;
  color: var(--accent-soft);
  font-size: 12px;
}

.section {
  width: var(--container);
  margin-inline: auto;
  padding-block: var(--section-space);
}

.display-heading {
  margin: 0;
  font-size: clamp(46px, 6.3vw, 98px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.statement {
  border-bottom: 1px solid var(--line);
}

.statement__content {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.6fr);
  gap: clamp(48px, 8vw, 140px);
}

.statement__content .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.statement__eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
}

.statement__copy {
  align-self: end;
  color: #aaa79f;
  font-size: 15px;
  line-height: 1.8;
}

.statement__copy p {
  margin: 0;
}

.statement__copy p + p {
  margin-top: 22px;
}

.offer {
  display: grid;
  grid-template-columns: 0.65fr repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.offer__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 48px 16px 0;
}

.offer__intro .display-heading {
  font-size: clamp(42px, 5vw, 76px);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 680px;
  padding: 28px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.service-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.96) 75%),
    url("/images/pit-terapy-therapy-room.webp") center / cover;
  content: "";
  opacity: 0.28;
  transform: scale(1.01);
  transition: opacity 0.5s ease, transform 0.7s ease;
}

.service-card--movement::before {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.38) 0%, rgba(10, 10, 10, 0.97) 76%),
    url("/images/pit-terapy-gym-strength.webp") center / cover;
}

.service-card:hover::before {
  opacity: 0.42;
  transform: scale(1.045);
}

.service-card__topline,
.service-card__body,
.service-card__footer {
  position: relative;
  z-index: 1;
}

.service-card__topline {
  display: flex;
  justify-content: flex-end;
  color: #a9a69f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card__body {
  margin-top: auto;
}

.service-card h3 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(35px, 3.4vw, 55px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.service-card__body > p {
  max-width: 500px;
  margin: 25px 0;
  color: #aaa79f;
  font-size: 14px;
  line-height: 1.75;
}

.tag-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.tag-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: #bcb9b0;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag-list li::before {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.service-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 22px;
}

.price__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.price__item--future {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.price__item span {
  color: #85827b;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price__item strong {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.15;
  white-space: nowrap;
}

.circle-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 58px;
  height: 58px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}

.circle-link:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.circle-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.situations {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 170px);
  border-top: 1px solid var(--line);
}

.situations__sticky {
  position: sticky;
  top: 130px;
  align-self: start;
}

.situations__sticky h2 {
  margin: 0;
  font-size: clamp(44px, 5.5vw, 84px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1;
}

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

.situation {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.situation > span {
  color: var(--accent-soft);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.situation h3,
.situation p {
  grid-column: 2;
}

.situation h3 {
  margin: 0 0 12px;
  font-size: clamp(23px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.situation p {
  max-width: 540px;
  margin: 0;
  color: #8f8c84;
  font-size: 14px;
  line-height: 1.75;
}

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(64px, 10vw, 160px);
  align-items: center;
  width: 100%;
  padding-inline: max(32px, calc((100vw - 1440px) / 2));
  background: #e4e2dc;
  color: var(--ink);
}

.process__visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.process__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.62));
  content: "";
}

.process__visual img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.process__visual-label {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process .eyebrow {
  color: #8f6f36;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.process-list li > span {
  color: #8f6f36;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.process-list p {
  max-width: 520px;
  margin: 0;
  color: #66635c;
  font-size: 13px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 24px;
  align-items: end;
}

.gallery__header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  margin-bottom: 50px;
}

.gallery__header .eyebrow {
  margin-bottom: 10px;
}

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

.gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery__image:hover img {
  transform: scale(1.025);
}

.gallery__image--wide {
  aspect-ratio: 1.38;
}

.gallery__image--portrait {
  aspect-ratio: 0.72;
}

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

.reviews__heading {
  display: grid;
  grid-template-columns: 1fr 4fr 1fr;
  align-items: end;
  gap: 40px;
}

.reviews__heading .eyebrow {
  align-self: start;
}

.reviews__heading .display-heading {
  font-size: clamp(44px, 5.6vw, 84px);
}

.reviews__score {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding-bottom: 8px;
}

.reviews__score strong {
  font-size: 62px;
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 1;
}

.reviews__score > span:last-child {
  margin-top: 8px;
  color: #76736d;
  font-size: 10px;
}

.reviews__carousel {
  margin-top: 68px;
}

.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.reviews__controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.reviews__controls button:hover,
.reviews__controls button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.reviews__counter {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  min-width: 62px;
  color: #706d66;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.reviews__counter strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.reviews__viewport {
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
}

.reviews__viewport::-webkit-scrollbar {
  display: none;
}

.reviews__track {
  display: flex;
  gap: 18px;
}

.review-card {
  display: flex;
  flex: 0 0 calc((100% - 18px) / 2.18);
  flex-direction: column;
  min-height: 360px;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--line);
  background: #10100e;
  scroll-snap-align: start;
}

.review-card__stars {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.review-card > p {
  margin: 44px 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 23px);
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1.55;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}

.avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #292823;
  color: var(--accent-soft);
  font-size: 10px;
  font-weight: 700;
}

.review-card footer div {
  display: flex;
  flex-direction: column;
}

.review-card footer strong {
  font-size: 11px;
}

.review-card footer div span {
  color: #77746d;
  font-size: 9px;
}

.reviews__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 36px;
}

.location {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: stretch;
}

.location .display-heading {
  font-size: clamp(44px, 5vw, 78px);
}

.location__details {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.location__details > a {
  position: relative;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: start;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.location__label {
  color: #77746d;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location__details strong {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.location__arrow {
  color: var(--accent-soft);
}

.location__features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  color: #8c8981;
  font-size: 11px;
}

.location__features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.location__features b {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-soft);
  font-size: 10px;
}

.map-wrap {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #191917;
  filter: grayscale(1) contrast(1.1);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: 0;
}

.map-overlay {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 16px 19px;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  filter: grayscale(0);
}

.map-overlay span {
  color: var(--accent-soft);
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 84svh;
  padding: 100px 24px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  text-align: center;
}

.final-cta__ambient {
  top: 0;
  left: 28%;
}

.final-cta h2 {
  position: relative;
  margin: 0;
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.final-cta > p:not(.eyebrow) {
  position: relative;
  margin: 38px 0 30px;
  color: #8f8c84;
  font-size: 14px;
}

.final-cta .button {
  position: relative;
}

.site-footer {
  padding: 70px max(32px, calc((100vw - 1440px) / 2)) 26px;
  background: var(--paper);
  color: var(--ink);
}

.site-footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line-dark);
}

.brand--footer {
  font-size: 23px;
}

.brand--footer .brand-logo {
  width: 58px;
  height: 58px;
}

.brand--footer .brand-mark {
  width: 43px;
  height: 43px;
}

.site-footer__top p {
  max-width: 330px;
  margin: 0;
  color: #67645d;
  font-size: 13px;
  text-align: right;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding: 58px 0 84px;
}

.site-footer__grid > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.site-footer__grid a {
  font-size: 12px;
  transition: color 0.2s ease;
}

.site-footer__grid a:hover {
  color: #936f32;
}

.footer-label {
  margin-bottom: 8px;
  color: #8a867e;
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #8b877f;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer__bottom a {
  color: #5f5b53;
  text-decoration: underline;
  text-decoration-color: rgba(95, 91, 83, 0.35);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.site-footer__bottom a:hover {
  color: #8f6f36;
}

.mobile-booking {
  position: fixed;
  z-index: 80;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 20px;
  background: var(--accent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

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

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

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 48px, 1100px);
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding-inline: 32px;
  }

  .offer {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer__intro {
    grid-column: 1 / -1;
    max-width: 800px;
    padding-right: 0;
    padding-bottom: 32px;
  }

  .reviews__heading {
    grid-template-columns: 1fr 4fr;
  }

  .reviews__score {
    grid-column: 2;
    align-items: flex-start;
    margin-top: 15px;
  }
}

@media (max-width: 860px) {
  :root {
    --container: calc(100% - 36px);
    --header-height: 72px;
    --section-space: 96px;
  }

  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 1fr auto;
    height: var(--header-height);
    padding: 0 18px;
  }

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

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

  .hero {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    min-height: auto;
    padding: 138px 18px 76px;
  }

  .hero__content {
    display: contents;
    padding-right: 0;
  }

  .hero__content > .eyebrow {
    order: 1;
  }

  .hero h1 {
    order: 2;
    font-size: clamp(58px, 17vw, 108px);
  }

  .hero__lead {
    order: 3;
    margin-top: 30px;
  }

  .hero__visual {
    order: 4;
    width: 76%;
    margin-top: 46px;
    margin-bottom: 54px;
  }

  .hero__actions {
    order: 5;
  }

  .hero__image-wrap {
    max-height: none;
  }

  .hero__badge {
    right: -18px;
  }

  .hero__meta {
    display: none;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip__item:nth-child(2) {
    border-right: 0;
  }

  .trust-strip__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .statement__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .statement__content .eyebrow {
    grid-column: auto;
  }

  .statement__copy {
    max-width: 580px;
  }

  .situations,
  .process,
  .location {
    grid-template-columns: 1fr;
  }

  .situations__sticky {
    position: static;
  }

  .process {
    gap: 70px;
    padding-inline: 24px;
  }

  .process__visual,
  .process__visual img {
    min-height: 620px;
  }

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

  .review-card {
    flex-basis: min(78vw, 480px);
    min-height: 310px;
  }

  .location__content {
    padding-bottom: 20px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .button {
    min-height: 54px;
    padding-inline: 20px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .statement__eyebrow {
    font-size: 11px;
  }

  .display-heading {
    font-size: clamp(43px, 13.5vw, 70px);
  }

  .hero {
    padding-top: 126px;
  }

  .hero h1 {
    font-size: clamp(55px, 18vw, 86px);
    line-height: 0.92;
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.7;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__visual {
    width: 88%;
    margin-top: 42px;
    margin-bottom: 48px;
  }

  .hero__badge {
    min-width: 195px;
    padding: 15px 17px;
  }

  .hero__badge-score {
    font-size: 29px;
  }

  .trust-strip__item {
    min-height: 92px;
    flex-direction: column;
    gap: 8px;
    padding: 15px 8px;
    font-size: 9px;
    text-align: center;
  }

  .trust-strip__number {
    font-size: 21px;
  }

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

  .offer__intro {
    padding-bottom: 22px;
  }

  .offer__intro .display-heading {
    font-size: clamp(43px, 13.5vw, 70px);
  }

  .service-card {
    min-height: 610px;
    padding: 22px;
  }

  .service-card--therapy::before {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.96) 75%),
      url("/images/pit-terapy-therapy-room-800.webp") center / cover;
  }

  .service-card--movement::before {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.38) 0%, rgba(10, 10, 10, 0.97) 76%),
      url("/images/pit-terapy-gym-strength-800.webp") center / cover;
  }

  .service-card h3 {
    font-size: 40px;
  }

  .price {
    gap: 14px;
  }

  .price__item--future {
    padding-left: 14px;
  }

  .price__item strong {
    font-size: 30px;
  }

  .situations {
    gap: 64px;
  }

  .situations__sticky h2 {
    font-size: clamp(43px, 13.5vw, 70px);
  }

  .situation {
    grid-template-columns: 32px 1fr;
    padding: 32px 0;
  }

  .process {
    width: 100%;
    padding-inline: 18px;
  }

  .process__visual,
  .process__visual img {
    min-height: 520px;
  }

  .process-list {
    margin-top: 40px;
  }

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

  .gallery__header {
    margin-bottom: 24px;
  }

  .gallery__image--portrait {
    display: none;
  }

  .gallery__image--wide {
    aspect-ratio: 0.85;
  }

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

  .reviews__score {
    grid-column: auto;
  }

  .review-card {
    flex-basis: calc(100vw - 54px);
    min-height: 290px;
    padding: 24px;
  }

  .location__details > a {
    grid-template-columns: 80px 1fr auto;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 440px;
  }

  .final-cta {
    min-height: 74svh;
    padding-bottom: 130px;
  }

  .final-cta h2 {
    font-size: clamp(62px, 18vw, 96px);
  }

  .site-footer {
    padding: 60px 18px 92px;
  }

  .site-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .site-footer__top p {
    text-align: left;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .site-footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

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

  .mobile-booking {
    display: flex;
  }
}

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

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

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

  .reviews__viewport {
    scroll-behavior: auto;
  }
}
