@font-face {
  font-family: "Overpass";
  src: url("assets/fonts/Overpass-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Overpass";
  src: url("assets/fonts/Overpass-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Overpass";
  src: url("assets/fonts/Overpass-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Mono";
  src: url("assets/fonts/DMMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #151413;
  --brown-black: #211b17;
  --graphite: #373330;
  --text: #4b4743;
  --muted: #766f67;
  --paper: #fffefa;
  --porcelain: #f8f7f2;
  --champagne: #e8ddbf;
  --champagne-2: #c8a95b;
  --rose: #b88382;
  --sage: #78897d;
  --line: #e4ded2;
  --line-dark: rgba(232, 221, 191, 0.22);
  --shadow: 0 28px 70px rgba(28, 22, 16, 0.13);
  --shadow-big: 0 46px 130px rgba(24, 18, 12, 0.28);
  --max: 1280px;
  --headline: "Bodoni 72 Display", "Bodoni 72", "Didot", "Baskerville", Georgia, serif;
  --body: "Overpass", Arial, sans-serif;
  --mono: "DM Mono", monospace;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.loading {
  overflow: visible;
}

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

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

section {
  position: relative;
  scroll-margin-top: 108px;
}

:focus-visible {
  outline: 3px solid rgba(200, 169, 91, 0.55);
  outline-offset: 4px;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4000;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--champagne-2), #f4e5b2, var(--rose));
  transform: scaleX(0);
  transform-origin: left center;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(90deg, rgba(20, 18, 16, 0.08) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 5px);
  mix-blend-mode: multiply;
}

.loader {
  display: none;
}

.loader img {
  width: 360px;
  max-width: calc(100% - 60px);
  opacity: 0;
  animation: loaderLogo 1.1s var(--ease) forwards;
}

.loader span {
  color: var(--champagne-2);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

body.loaded .loader {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 100%;
  padding: 12px max(20px, calc((100% - var(--max)) / 2));
  background: rgba(255, 254, 250, 0.86);
  border-bottom: 1px solid rgba(228, 222, 210, 0.68);
  backdrop-filter: blur(18px);
}

.contact-line {
  display: none;
  justify-content: space-between;
  gap: 22px;
  padding: 0 10px 8px;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.4s var(--ease), opacity 0.4s var(--ease);
}

.site-header.scrolled .contact-line {
  opacity: 0;
  color: var(--muted);
}

.nav-shell {
  display: grid;
  grid-template-columns: 236px 1fr auto;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  min-height: 68px;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(228, 222, 210, 0.72);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.88);
  box-shadow: var(--shadow);
}

.brand img {
  width: 205px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  color: var(--graphite);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 1px;
  background: var(--champagne-2);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.42s var(--ease);
}

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

.nav-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 11px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 5px;
  overflow: hidden;
  font-weight: 600;
  isolation: isolate;
  transition: transform 0.38s var(--ease), border-color 0.38s var(--ease);
}

.nav-cta,
.button.dark {
  color: #fffaf2;
  background: var(--brown-black);
}

.button.pale {
  color: var(--ink);
  background: rgba(255, 254, 250, 0.76);
  border-color: var(--line);
}

.button.gold {
  color: var(--brown-black);
  background: var(--champagne);
  border-color: rgba(255, 255, 255, 0.42);
}

.nav-cta::before,
.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  content: "";
  transform: translateX(-130%);
  transition: transform 0.82s var(--ease);
}

.nav-cta:hover::before,
.button:hover::before {
  transform: translateX(130%);
}

.nav-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero {
  min-height: calc(100svh - 94px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 0.9fr);
  align-items: center;
  gap: 58px;
  padding: 56px max(28px, calc((100% - var(--max)) / 2)) 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 51%, #ece8de 51%, #f7f3ea 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 254, 250, 0.98) 96%),
    url("assets/fingerprint.png") left 8% bottom 11% / 310px no-repeat;
  content: "";
}

.hero-copy,
.hero-stage,
.treatment-ticker {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 680px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--champagne-2);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.display,
.section-title,
.treatment-card h3,
.value-card strong,
.review-card p,
.footer h3 {
  margin: 0;
  font-family: var(--headline);
  font-weight: 400;
  letter-spacing: 0;
}

.display {
  max-width: 780px;
  font-size: 78px;
  line-height: 0.9;
}

.display span {
  display: block;
  margin-top: 18px;
  color: var(--graphite);
  font-family: var(--body);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
  text-transform: none;
}

.hero-text {
  max-width: 610px;
  margin: 32px 0 0;
  color: var(--text);
  font-size: 18px;
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 22px 60px rgba(30, 24, 18, 0.08);
}

.hero-bullets span {
  min-height: 72px;
  padding: 18px;
  background: rgba(255, 254, 250, 0.92);
  color: var(--graphite);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-stage {
  min-height: 660px;
  transform-style: preserve-3d;
}

.stage-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow-big);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.5s var(--ease);
  will-change: transform;
}

.stage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.stage-a {
  top: 24px;
  right: 0;
  width: 420px;
  height: 560px;
}

.stage-b {
  top: 228px;
  left: 0;
  width: 282px;
  height: 392px;
}

.stage-c {
  top: 0;
  left: 90px;
  width: 252px;
  height: 310px;
}

.stage-badge {
  position: absolute;
  right: 28px;
  bottom: 46px;
  width: 282px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stage-fingerprint {
  position: absolute;
  right: 0;
  top: 116px;
  width: 280px;
  opacity: 0.28;
  mix-blend-mode: multiply;
  animation: fingerprintFloat 7s ease-in-out infinite;
}

.treatment-ticker {
  grid-column: 1 / -1;
  width: calc(100% + 56px);
  margin: 40px -28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(232, 221, 191, 0.42);
  border-bottom: 1px solid rgba(232, 221, 191, 0.42);
  background: rgba(255, 254, 250, 0.82);
  color: var(--brown-black);
}

.treatment-ticker div {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.treatment-ticker span {
  display: inline-flex;
  min-height: 76px;
  align-items: center;
  padding: 0 38px;
  font-family: var(--headline);
  font-size: 34px;
  white-space: nowrap;
}

.trust-bar {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.trust-card {
  min-height: 166px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px 34px;
  background: var(--paper);
}

.trust-card span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.trust-card strong {
  max-width: 360px;
  font-family: var(--headline);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.14;
}

.trust-card.image {
  place-items: center;
}

.trust-card.image img {
  width: 210px;
  max-height: 86px;
  object-fit: contain;
}

.intro-section,
.poster-section,
.contact {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 86px;
  padding: 130px max(28px, calc((100% - var(--max)) / 2));
}

.intro-section {
  background: var(--paper);
}

.intro-media,
.poster-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-big);
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.intro-media img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center top;
}

.intro-copy {
  max-width: 680px;
}

.section-title {
  font-size: 60px;
  line-height: 1.02;
}

.lead {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 18px;
}

.intro-copy p:not(.eyebrow):not(.lead) {
  margin: 22px 0 0;
  color: var(--text);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
}

.signature-grid div {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  background: var(--porcelain);
}

.signature-grid span,
.treatment-card > span {
  color: var(--champagne-2);
  font-family: var(--mono);
  font-size: 12px;
}

.signature-grid strong {
  color: var(--brown-black);
  font-size: 15px;
}

.treatments,
.praxis,
.reviews {
  padding: 96px max(28px, calc((100% - var(--max)) / 2));
  background: linear-gradient(180deg, var(--porcelain), var(--paper));
}

.section-head {
  display: block;
  max-width: 980px;
  margin-bottom: 56px;
}

.section-head .lead {
  max-width: 760px;
  margin-top: 22px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.treatment-card {
  position: relative;
  min-height: 474px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(248, 247, 242, 0.92)),
    var(--paper);
  box-shadow: 0 16px 46px rgba(28, 22, 16, 0.07);
  overflow: hidden;
  transition: transform 0.62s var(--ease), border-color 0.62s var(--ease), box-shadow 0.62s var(--ease);
}

.treatment-card::before {
  position: absolute;
  inset: auto -18% -28% -18%;
  height: 220px;
  background: linear-gradient(180deg, rgba(200, 169, 91, 0), rgba(200, 169, 91, 0.22));
  content: "";
  transform: translateY(80px);
  transition: transform 0.62s var(--ease);
}

.treatment-card:hover,
.treatment-card.active {
  border-color: rgba(200, 169, 91, 0.62);
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.treatment-card:hover::before,
.treatment-card.active::before {
  transform: translateY(0);
}

.treatment-card h3 {
  min-height: 92px;
  margin-top: 70px;
  font-size: 34px;
  line-height: 1.04;
}

.treatment-card p {
  min-height: 132px;
  margin: 18px 0 24px;
  color: var(--text);
  font-size: 15px;
}

.treatment-card ul {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--graphite);
  font-size: 14px;
}

.treatment-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.treatment-card li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.feature-card {
  grid-column: span 2;
  color: #fffaf2;
  background:
    linear-gradient(90deg, rgba(33, 27, 23, 0.96), rgba(33, 27, 23, 0.68)),
    url("assets/praxis-06.jpg") center / cover;
}

.feature-card p,
.feature-card li {
  color: rgba(255, 250, 242, 0.82);
}

.value-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 70px;
  padding: 96px max(28px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(33, 27, 23, 0.94), rgba(33, 27, 23, 0.78)),
    url("assets/praxis-03.jpg") center / cover fixed;
  color: #fffaf2;
}

.value-copy {
  position: sticky;
  top: 150px;
  align-self: start;
}

.value-copy .lead {
  color: rgba(255, 250, 242, 0.76);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.value-card {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  padding: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.value-card strong {
  max-width: 260px;
  color: var(--champagne);
  font-size: 30px;
  line-height: 1.08;
}

.value-card p {
  margin: 28px 0 0;
  color: rgba(255, 250, 242, 0.72);
}

.poster-section {
  background:
    linear-gradient(90deg, var(--paper), rgba(248, 247, 242, 0.9)),
    url("assets/fingerprint.png") right 12% center / 360px no-repeat;
}

.poster-copy {
  max-width: 620px;
}

.poster-frame {
  width: min(480px, 100%);
  justify-self: end;
  background: var(--brown-black);
}

.poster-frame img {
  width: 100%;
  height: auto;
}

.image-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 126px;
  gap: 14px;
}

.wall-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.wall-item.xlarge {
  grid-column: span 5;
  grid-row: span 5;
}

.wall-item.tall {
  grid-column: span 3;
  grid-row: span 5;
}

.wall-item.wide {
  grid-column: span 5;
  grid-row: span 3;
}

.wall-item.portrait {
  grid-column: span 4;
  grid-row: span 4;
}

.wall-item img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translate3d(var(--mouse-x, 0px), calc(-6% + var(--gallery-y, 0px) + var(--mouse-y, 0px)), 0) scale(1.02);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.wall-item:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: translate3d(var(--mouse-x, 0px), calc(-6% + var(--gallery-y, 0px) + var(--mouse-y, 0px)), 0) scale(1.08);
}

.dark-logo {
  display: grid;
  place-items: center;
  padding: 34px;
  background: var(--brown-black);
}

.dark-logo img {
  height: auto;
  object-fit: contain;
  transform: none;
}

.reviews {
  background: var(--paper);
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: end;
  gap: 12px 36px;
  margin-bottom: 42px;
}

.reviews-head .eyebrow {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.reviews-head .section-title {
  grid-column: 1;
  grid-row: 2;
}

.reviews-head .score-card {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.score-card {
  min-height: 190px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
  box-shadow: var(--shadow);
}

.score-card span,
.score-card small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.score-card strong {
  font-family: var(--headline);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--porcelain);
  transition: transform 0.52s var(--ease), box-shadow 0.52s var(--ease);
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.review-card p {
  margin: 0 0 30px;
  font-size: 29px;
  line-height: 1.13;
}

.review-card span {
  color: var(--sage);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.contact {
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.92), rgba(255, 254, 250, 0.66)),
    url("assets/praxis-04.jpg") center / cover fixed;
}

.contact-copy {
  max-width: 650px;
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.84);
  box-shadow: var(--shadow-big);
  backdrop-filter: blur(18px);
}

.contact-panel > a:not(.button),
.contact-panel > span {
  color: var(--graphite);
  font-size: 18px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr 0.9fr;
  gap: 40px;
  padding: 72px max(28px, calc((100% - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--brown-black);
  color: rgba(255, 250, 242, 0.78);
}

.footer img {
  width: 230px;
  max-width: 100%;
}

.footer p {
  max-width: 320px;
}

.footer h3 {
  margin-bottom: 16px;
  color: var(--champagne);
  font-size: 28px;
}

.footer a {
  display: block;
  padding: 5px 0;
}

.journal-card {
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.journal-card img {
  width: 42px;
  margin-bottom: 20px;
}

.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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

@keyframes fingerprintFloat {
  50% {
    transform: translate3d(-10px, 16px, 0) rotate(2deg);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .contact-line {
    color: var(--muted);
  }

  .nav-shell {
    grid-template-columns: 210px 1fr;
  }

  .brand img {
    width: 190px;
  }

  .nav-links {
    display: none;
  }

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

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

  .hero {
    padding-top: 56px;
  }

  .hero-stage {
    min-height: 590px;
  }

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

  .section-head,
  .reviews-head {
    grid-template-columns: 1fr;
  }

  .section-head .eyebrow,
  .section-head .section-title,
  .section-head .lead,
  .reviews-head .eyebrow,
  .reviews-head .section-title,
  .reviews-head .score-card {
    grid-column: 1;
    grid-row: auto;
  }

  .section-head .eyebrow {
    margin-bottom: 0;
  }

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

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

  .value-copy {
    position: static;
  }

  .poster-frame {
    justify-self: start;
  }

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

@media (max-width: 760px) {
  .site-header {
    top: 0;
    width: 100%;
    padding: 8px 10px;
  }

  .contact-line {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr 54px;
    min-height: 64px;
    padding: 9px 9px 9px 12px;
  }

  .brand img {
    width: 154px;
  }

  .nav-cta {
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 0;
  }

  .nav-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero,
  .intro-section,
  .poster-section,
  .contact,
  .value-section,
  .treatments,
  .praxis,
  .reviews {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
    background:
      linear-gradient(180deg, rgba(33, 27, 23, 0.88), rgba(33, 27, 23, 0.44) 42%, rgba(255, 254, 250, 0.94)),
      url("assets/praxis-01.jpg") center / cover;
  }

  .display {
    font-size: 48px;
  }

  .display span {
    font-size: 17px;
  }

  .hero-bullets,
  .signature-grid,
  .value-grid,
  .trust-bar,
  .treatment-grid,
  .review-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .stage-a {
    width: 76%;
    height: 430px;
    right: 0;
  }

  .stage-b {
    width: 52%;
    height: 310px;
    top: 272px;
  }

  .stage-c {
    width: 45%;
    height: 220px;
    left: 18px;
    top: 30px;
  }

  .stage-badge {
    right: 0;
    bottom: 18px;
    width: 238px;
  }

  .section-title {
    font-size: 42px;
  }

  .intro-section,
  .poster-section,
  .contact,
  .value-section,
  .treatments,
  .praxis,
  .reviews {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .intro-media img {
    height: 520px;
  }

  .treatment-card,
  .feature-card {
    grid-column: auto;
    min-height: auto;
  }

  .treatment-card h3,
  .treatment-card p {
    min-height: auto;
  }

  .image-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
  }

  .wall-item,
  .wall-item.xlarge,
  .wall-item.tall,
  .wall-item.wide,
  .wall-item.portrait {
    grid-column: auto;
    grid-row: auto;
  }

  .reviews-head {
    gap: 28px;
  }

  .review-card p {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero {
    background-attachment: scroll;
  }

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