:root {
  --ink: #272323;
  --aubergine: #35252d;
  --white: #fff;
  --quiet: #f7f5f2;
  --rose: #ead9d6;
  --clay: #bd6544;
  --clay-dark: #9e4f33;
  --copper: #c87250;
  --line: rgba(39, 35, 35, 0.18);
  --display: "Prata", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --content: min(1220px, calc(100% - 48px));
  --header-h: 90px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible,
.hero.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
section[id] { scroll-margin-top: var(--header-h); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
summary {
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: rgba(189, 101, 68, 0.2);
  touch-action: manipulation;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
:focus-visible {
  outline: 3px solid var(--clay);
  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;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: white;
  border: 2px solid;
}
.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
  width: var(--content);
  margin-inline: auto;
}
.site-header.is-sticky {
  position: fixed;
  height: 70px;
  width: 100%;
  padding-inline: max(24px, calc((100vw - 1220px) / 2));
  background: rgba(247, 245, 242, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
  animation: header-in 0.45s var(--ease);
}
@keyframes header-in {
  from {
    transform: translateY(-100%);
  }
}
.brand {
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}
.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transition: right 0.35s var(--ease);
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}
.menu-toggle {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  color: white;
  background: var(--clay);
  border: 1px solid var(--clay);
  border-radius: 2px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.3s var(--ease);
}
.button:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0) scale(0.98);
}
.button--header {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: min(720px, 100svh);
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--quiet);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #f7f5f2 0%,
    rgba(247, 245, 242, 0.99) 37%,
    rgba(247, 245, 242, 0.45) 55%,
    rgba(247, 245, 242, 0.04) 76%
  );
}
.hero__copy {
  position: relative;
  z-index: 3;
  width: var(--content);
  min-height: calc(min(720px, 100svh) - var(--header-h));
  margin-inline: auto;
  padding: clamp(70px, 9vh, 112px) 0 90px;
}
.hero__location {
  margin-bottom: 24px;
  color: #6c6262;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font: 400 clamp(64px, 7.2vw, 104px)/0.97 var(--display);
  letter-spacing: -0.04em;
}
.hero h1 span {
  color: var(--clay);
}
.hero__rule,
.small-rule {
  display: block;
  width: 62px;
  height: 2px;
  background: var(--clay);
}
.hero__rule {
  margin: 28px 0 26px;
}
.hero__promise {
  margin-bottom: 28px;
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.32;
  letter-spacing: -0.03em;
}
.hero__promise strong {
  color: var(--clay);
  font-weight: 500;
}
.button--hero {
  min-width: 240px;
}
.hero__media {
  position: absolute;
  inset: 0 0 0 48%;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #e7ded8;
  object-fit: cover;
  object-position: center 34%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(247, 245, 242, 0.7), transparent 26%),
    linear-gradient(0deg, rgba(69, 43, 38, 0.06), transparent 45%);
}
.hero__copy > * {
  animation: hero-copy-in 0.72s var(--ease) both;
}
.hero__copy > :nth-child(2) {
  animation-delay: 0.08s;
}
.hero__copy > :nth-child(3) {
  animation-delay: 0.14s;
}
.hero__copy > :nth-child(4) {
  animation-delay: 0.2s;
}
.hero__copy > :nth-child(5) {
  animation-delay: 0.26s;
}
.hero__media {
  animation: hero-image-in 0.9s var(--ease) both;
  transform-origin: right center;
}
@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}
@keyframes hero-image-in {
  from {
    opacity: 0.4;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cartography-line {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: -50px;
  width: 100%;
  height: 270px;
  pointer-events: none;
}
.cartography-line path {
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: draw-line 2.4s 0.25s var(--ease) forwards;
}
@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

.method-intro {
  position: relative;
  z-index: 2;
  padding: 34px 24px clamp(82px, 9vw, 128px);
  background: white;
}
.method-intro h2 {
  margin: 0 auto clamp(44px, 5vw, 68px);
  font: 400 clamp(28px, 3.3vw, 48px)/1.2 var(--display);
  text-align: center;
  letter-spacing: -0.035em;
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 6vw, 94px);
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.method-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
}
.method-steps li:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 23px;
  right: calc(clamp(34px, 6vw, 94px) / -2);
  color: var(--clay);
  font: 30px var(--display);
}
.step-number {
  color: var(--clay);
  font: 24px var(--display);
}
.method-steps h3 {
  margin-bottom: 12px;
  font: 400 18px/1.28 var(--display);
}
.small-rule {
  width: 24px;
  height: 1px;
  margin-bottom: 14px;
}
.method-steps p {
  margin: 0;
  color: #5f5656;
  font-size: 12px;
  line-height: 1.45;
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 660px;
  overflow: hidden;
  color: white;
  background: var(--aubergine);
}
.manifesto__word {
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font: clamp(150px, 24vw, 390px)/0.8 var(--display);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
  transform: rotate(-8deg) translateX(-8%);
  user-select: none;
}
.manifesto__copy {
  align-self: center;
  max-width: 590px;
  padding: 80px clamp(28px, 7vw, 110px) 80px 20px;
}
.manifesto__copy > p:first-child {
  color: #d3aba0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.manifesto h2 {
  margin-bottom: 34px;
  font: 400 clamp(48px, 6vw, 88px)/1 var(--display);
  letter-spacing: -0.04em;
}
.manifesto__copy > p:last-child {
  max-width: 48ch;
  color: #e8dfe1;
  font-size: 18px;
}

.klasse-map,
.results,
.faq {
  padding: clamp(88px, 10vw, 150px) 24px;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) 1fr 0.8fr;
  align-items: end;
  gap: 36px;
  width: min(1160px, 100%);
  margin: 0 auto clamp(58px, 7vw, 94px);
}
.section-index {
  margin: 0;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 0;
  font: 400 clamp(38px, 4.6vw, 66px)/1.08 var(--display);
  letter-spacing: -0.04em;
}
.section-heading > p:last-child {
  max-width: 44ch;
  margin: 0;
  color: #655d5d;
}
.map-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  width: min(1160px, 100%);
  margin: auto;
  border-block: 1px solid var(--line);
}
.map-options {
  padding: 28px 48px 28px 0;
  border-right: 1px solid var(--line);
}
.map-options button {
  display: block;
  width: 100%;
  padding: 17px 5px;
  color: #796f6f;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font: clamp(19px, 2vw, 27px) var(--display);
}
.map-options button[aria-selected="true"] {
  color: var(--clay-dark);
  padding-left: 24px;
}
.map-options button[aria-selected="true"]::before {
  content: "—";
  margin-left: -24px;
  margin-right: 7px;
}
.map-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 30px;
  min-height: 510px;
  padding: clamp(30px, 5vw, 70px);
  background: var(--rose);
}
.map-panel svg {
  width: 100%;
  max-height: 350px;
}
.map-panel svg path {
  fill: none;
  stroke: rgba(53, 37, 45, 0.46);
  stroke-width: 1.3;
}
.map-panel svg .map-pulse {
  stroke: var(--clay);
  stroke-width: 2.2;
  stroke-dasharray: 8 7;
}
.map-panel__label {
  margin-bottom: 16px;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.map-panel h3 {
  margin-bottom: 18px;
  font: 400 clamp(30px, 3vw, 44px)/1.12 var(--display);
}
.map-panel a,
.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--clay-dark);
  font-weight: 600;
  text-underline-offset: 6px;
}

.treatments {
  padding: clamp(90px, 10vw, 150px) 24px;
  color: white;
  background: var(--aubergine);
}
.section-heading--light .section-index {
  color: #d9a696;
}
.section-heading--light h2 {
  grid-column: 2/4;
}
.treatment-list {
  width: min(1160px, 100%);
  margin: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.treatment-list article {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 34px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.treatment-list span {
  color: #d9a696;
  font-size: 12px;
  text-transform: uppercase;
}
.treatment-list h3 {
  margin: 0;
  font: 400 clamp(24px, 2.7vw, 38px) var(--display);
}
.treatment-list p {
  max-width: 47ch;
  margin: 0;
  color: #d8ced2;
}
.signature-treatment {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  gap: 34px;
  width: min(1160px, 100%);
  margin: clamp(80px, 9vw, 130px) auto 0;
  padding: clamp(34px, 5vw, 70px);
  color: var(--ink);
  background: var(--rose);
}
.signature-treatment > p {
  color: var(--clay-dark);
  font-size: 12px;
  text-transform: uppercase;
}
.signature-treatment h3 {
  font: 400 clamp(36px, 4vw, 58px)/1.08 var(--display);
}
.other-treatments {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  width: min(1020px, 100%);
  margin: 52px auto 0;
}
.other-treatments > p {
  color: #d9a696;
}
.other-treatments ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #e8dfe1;
}

.results {
  overflow: hidden;
  background: var(--quiet);
}
.coverflow {
  width: min(1240px, calc(100vw - 48px));
  margin: auto;
  overflow: hidden;
}
.coverflow:focus-visible {
  outline-offset: 8px;
}
.coverflow__stage {
  position: relative;
  height: clamp(440px, 47vw, 610px);
  perspective: 1500px;
  transform-style: preserve-3d;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}
.coverflow__stage.is-dragging {
  cursor: grabbing;
}
.coverflow__stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1%;
  width: min(68vw, 720px);
  height: 42px;
  border-radius: 50%;
  background: rgba(53, 37, 45, 0.16);
  filter: blur(20px);
  transform: translateX(-50%);
}
.coverflow__slide {
  --x: 0px;
  --scale: 1;
  --rotate: 0deg;
  --shade: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: var(--layer, 1);
  width: clamp(290px, 36vw, 500px);
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: #e8e0dd;
  box-shadow: 0 28px 70px rgba(44, 28, 35, 0.2);
  opacity: var(--opacity, 1);
  cursor: pointer;
  transform: translate(-50%, -50%)
    translateX(calc(var(--x) + var(--drag-preview, 0px))) rotateY(var(--rotate))
    scale(var(--scale));
  transform-style: preserve-3d;
  transition:
    transform 0.72s var(--ease),
    opacity 0.5s var(--ease),
    filter 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.coverflow__stage.is-dragging .coverflow__slide {
  transition-duration: 0.08s;
}
.coverflow__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(35, 25, 29, var(--shade));
  transition: background 0.55s var(--ease);
}
.coverflow__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f0ebe8;
  pointer-events: none;
}
.coverflow__slide.is-active {
  box-shadow: 0 34px 90px rgba(44, 28, 35, 0.28);
}
.coverflow__slide.is-hidden {
  pointer-events: none;
}
.coverflow__slide:not(.is-active):hover {
  filter: saturate(1.08);
}
.coverflow--instagram .coverflow__stage {
  height: clamp(520px, 62vw, 720px);
}
.coverflow--instagram .coverflow__slide {
  width: clamp(260px, 30vw, 340px);
  aspect-ratio: 9 / 16;
  background: #fff;
  cursor: default;
}
.coverflow--instagram .coverflow__slide:not(.is-active) {
  pointer-events: none;
}
.coverflow--instagram .coverflow__slide iframe {
  pointer-events: none;
}
.coverflow--instagram .coverflow__slide.is-active iframe {
  pointer-events: auto;
}
.coverflow--instagram .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
}
.coverflow__video-activate, .coverflow__return { display: none; }
@media (hover: none), (pointer: coarse), (max-width: 700px) {
  .coverflow--instagram .coverflow__slide.is-active iframe { pointer-events: none; }
  .coverflow--instagram .coverflow__slide.is-active.is-video-active iframe { pointer-events: auto; }
  .coverflow__video-activate {
    display: flex;
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
    border: 0;
    background: transparent;
    touch-action: pan-y;
  }
  .coverflow__video-activate span, .coverflow__return {
    padding: 12px 18px;
    color: #fff;
    background: var(--aubergine);
    font: 500 14px var(--body);
    border: 1px solid currentColor;
  }
  .is-video-active .coverflow__video-activate { display: none; }
  .coverflow__slide:not(.is-active) .coverflow__video-activate span { visibility: hidden; }
  .coverflow__return:not([hidden]) { display: block; margin: 8px auto; cursor: pointer; }
}
.coverflow__toolbar {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 20px;
  width: min(760px, 100%);
  margin: 8px auto 0;
}
.coverflow__arrow {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(39, 35, 35, 0.35);
  border-radius: 50%;
  transition: 0.3s var(--ease);
}
.coverflow__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.coverflow__arrow:hover {
  color: white;
  background: var(--clay);
  border-color: var(--clay);
  transform: scale(1.06);
}
.coverflow__arrow:active {
  transform: scale(0.94);
}
.coverflow__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-block: 1px solid var(--line);
}
.coverflow__caption p {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 0;
}
.coverflow__caption strong {
  font: 400 clamp(19px, 2vw, 26px) var(--display);
}
.coverflow__caption p span {
  color: #746a6a;
  font-size: 12px;
}
.coverflow__counter {
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.coverflow__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 25px;
}
.coverflow__dot {
  width: 26px;
  height: 12px;
  padding: 0;
  background: transparent;
  border: 0;
}
.coverflow__dot::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #bfb5b3;
  transition: 0.35s var(--ease);
}
.coverflow__dot[aria-current="true"]::before {
  height: 3px;
  background: var(--clay);
  transform: scaleX(1.25);
}
.results__note {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  width: min(840px, 100%);
  margin: 54px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.results__note p {
  margin: 0;
  font: clamp(19px, 2vw, 26px)/1.45 var(--display);
}
.results__note small {
  color: #716969;
  line-height: 1.55;
}

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 520px;
}
.about__image {
  min-height: 520px;
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__copy {
  align-self: center;
  max-width: 600px;
  padding: 70px clamp(28px, 7vw, 100px);
}
.about h2 {
  margin: 20px 0 34px;
  font: 400 clamp(40px, 4.7vw, 68px)/1.08 var(--display);
  letter-spacing: -0.04em;
}
.about__copy > p:not(.section-index):not(.about__signature) {
  color: #5d5555;
  font-size: 17px;
}
.about__signature {
  margin-top: 34px;
  color: var(--clay-dark);
  font: 24px var(--display);
}

.reviews {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 8vw, 120px);
  padding: clamp(90px, 10vw, 150px) max(24px, calc((100vw - 1160px) / 2));
  background: var(--rose);
}
.reviews__intro {
  position: sticky;
  top: 120px;
  align-self: start;
}
.reviews__intro h2 {
  max-width: 560px;
  margin: 24px 0 28px;
  font: 400 clamp(40px, 4.8vw, 68px)/1.08 var(--display);
  letter-spacing: -0.04em;
}
.reviews__intro > p:not(.section-index) {
  max-width: 44ch;
  color: #5d5150;
}
.reviews__list {
  border-top: 1px solid rgba(39, 35, 35, 0.25);
}
.review {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(39, 35, 35, 0.25);
  transform-origin: left center;
}
.review__rating {
  grid-column: 1/-1;
  color: var(--clay-dark);
  font-size: 14px;
  letter-spacing: 0.2em;
}
.review blockquote {
  margin: 0;
  font: 400 clamp(19px, 2vw, 27px)/1.48 var(--display);
}
.review footer {
  align-self: end;
}
.review footer strong,
.review footer span {
  display: block;
}
.review footer strong {
  margin-bottom: 4px;
  font-size: 13px;
  text-transform: uppercase;
}
.review footer span {
  color: #685d5c;
  font-size: 11px;
}
.review--short blockquote {
  font-size: clamp(18px, 1.7vw, 23px);
}
.review--rating {
  grid-template-columns: 1fr;
  padding-block: 23px;
}
.review--rating .review__rating {
  grid-column: auto;
}
.review--rating footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
@keyframes review-in { from { opacity: 0; transform: translateY(22px); } }
@supports (animation-timeline: view()) {
  .review { animation: review-in linear both; animation-timeline: view(); animation-range: entry 0% entry 80%; }
}

.social-callout {
  padding: clamp(80px, 9vw, 130px) max(24px, calc((100vw - 1160px) / 2));
  color: white;
  background: var(--aubergine);
}
.social-callout > p {
  color: #dfb2a4;
  font-size: 13px;
}
.social-callout h2 {
  max-width: 780px;
  margin: 0 0 clamp(44px, 6vw, 76px);
  font: 400 clamp(42px, 5vw, 72px)/1.08 var(--display);
  letter-spacing: -0.04em;
}
.social-callout__links {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.social-callout__links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition:
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.social-callout__links a:hover {
  color: #efb6a4;
  transform: translateX(8px);
}
.social-callout__links span {
  font: 400 clamp(22px, 2.5vw, 34px) var(--display);
}
.social-callout__links strong {
  font-size: 13px;
  font-weight: 500;
}

.faq .section-heading {
  grid-template-columns: 0.35fr 1fr;
}
.faq-list {
  width: min(850px, 100%);
  margin: auto;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  position: relative;
  padding: 25px 54px 25px 0;
  list-style: none;
}
.faq summary h3 {
  margin: 0;
  font: clamp(20px, 2vw, 27px) var(--display);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 23px;
  color: var(--clay);
  font: 300 26px var(--body);
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  max-width: 68ch;
  padding: 0 54px 26px 0;
  color: #625a5a;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 9vw, 130px);
  padding: clamp(90px, 10vw, 150px) max(24px, calc((100vw - 1160px) / 2));
  color: white;
  background: var(--clay-dark);
}
.contact__intro > p:first-child {
  color: #f3c0af;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact h2 {
  margin: 22px 0 28px;
  font: 400 clamp(45px, 5vw, 72px)/1.08 var(--display);
  letter-spacing: -0.04em;
}
.contact__intro > p:nth-of-type(2) {
  max-width: 48ch;
  color: #f5ded6;
}
.button--light {
  margin-top: 20px;
  color: var(--clay-dark);
  background: white;
  border-color: white;
}
.button--light:hover {
  color: white;
  background: var(--aubergine);
  border-color: var(--aubergine);
}
.contact-form {
  display: grid;
  gap: 22px;
}
.contact-form label {
  display: block;
  margin-bottom: 6px;
  color: #ffe9e0;
  font-size: 13px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  color: white;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  outline: 0;
}
.contact-form select option {
  color: var(--ink);
  background: white;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: white;
  box-shadow: 0 2px 0 white;
}
.button--form {
  width: fit-content;
  margin-top: 10px;
  color: var(--aubergine);
  background: white;
  border-color: white;
}
.form-note {
  max-width: 55ch;
  color: #f2d6cc;
  font-size: 12px;
}
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 32px;
  align-items: center;
  padding: 36px max(24px, calc((100vw - 1220px) / 2));
  color: #d9ced2;
  background: var(--aubergine);
  font-size: 12px;
}
.site-footer p {
  margin: 0;
}
.site-footer__social {
  display: flex;
  gap: 18px;
}
.site-footer__social a {
  text-underline-offset: 4px;
}
.whatsapp-fab {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 10px 28px rgba(19, 51, 34, 0.35);
  transition: transform 0.3s var(--ease);
}
.whatsapp-fab:hover {
  transform: scale(1.06);
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: white;
}

@media (max-width: 980px) {
  :root {
    --content: min(100% - 36px, 900px);
    --header-h: 76px;
  }
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .site-header > .button {
    display: none;
  }
  .menu-toggle {
    position: fixed;
    top: 16px;
    right: 18px;
    z-index: 40;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(39, 35, 35, 0.35);
    backdrop-filter: blur(8px);
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.3s var(--ease);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
  .site-nav {
    position: fixed;
    z-index: 30;
    inset: 70px 0 auto;
    display: grid;
    padding: 28px 24px 42px;
    background: var(--quiet);
    box-shadow: 0 18px 28px rgba(30, 20, 24, 0.12);
    transform: translateY(-130%);
    visibility: hidden;
    transition:
      transform 0.45s var(--ease),
      visibility 0.45s;
  }
  .site-nav.is-open {
    transform: none;
    visibility: visible;
  }
  .site-nav a {
    padding: 8px 0;
    font: 25px var(--display);
    text-transform: none;
  }
  .hero {
    min-height: 780px;
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      #f7f5f2 0%,
      rgba(247, 245, 242, 0.98) 42%,
      rgba(247, 245, 242, 0.26) 72%
    );
  }
  .hero__copy {
    min-height: 704px;
    padding-top: 110px;
  }
  .hero__media {
    left: 42%;
  }
  .section-heading {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }
  .section-heading > p:last-child {
    grid-column: 2;
  }
  .map-layout {
    grid-template-columns: 1fr;
  }
  .map-options {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px 0 22px;
    border-right: 0;
  }
  .map-options button {
    width: auto;
    min-width: max-content;
    padding: 12px 15px;
    border: 1px solid var(--line);
  }
  .map-options button[aria-selected="true"] {
    padding-left: 15px;
    color: white;
    background: var(--clay);
  }
  .map-options button[aria-selected="true"]::before {
    display: none;
  }
  .treatment-list article {
    grid-template-columns: 90px 1fr 1fr;
  }
  .signature-treatment {
    grid-template-columns: 1fr 1fr;
  }
  .signature-treatment > p {
    grid-column: 1/-1;
  }
  .other-treatments {
    grid-template-columns: 1fr;
  }
  .coverflow__stage {
    height: clamp(430px, 55vw, 550px);
  }
  .about {
    grid-template-columns: 1fr 1fr;
  }
  .about__image {
    min-height: 460px;
  }
  .reviews {
    grid-template-columns: 1fr;
  }
  .reviews__intro {
    position: static;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer p:last-child {
    text-align: right;
  }
}
@media (max-width: 700px) {
  .site-header.is-sticky {
    padding-inline: 18px;
  }
  .brand {
    font-size: 14px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 0;
  }
  .hero::before {
    display: none;
  }
  .hero__media {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: min(67vh, 560px);
    min-height: 450px;
  }
  .hero__photo {
    object-position: center 29%;
  }
  .hero__media::after {
    background: linear-gradient(
      0deg,
      rgba(247, 245, 242, 0.18),
      transparent 35%
    );
  }
  .hero__copy {
    order: 2;
    min-height: 0;
    width: 100%;
    padding: 40px 20px 90px;
  }
  .hero__location {
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: clamp(46px, 12.5vw, 56px);
  }
  .hero__promise {
    font-size: 19px;
  }
  .button--hero {
    width: 100%;
  }
  .cartography-line {
    bottom: -38px;
    height: 160px;
  }
  .method-intro {
    padding-top: 62px;
  }
  .method-intro h2 {
    text-align: left;
  }
  .method-steps {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .method-steps li:not(:last-child)::after {
    display: none;
  }
  .manifesto {
    grid-template-columns: 1fr;
    min-height: 680px;
  }
  .manifesto__word {
    position: absolute;
    inset: 30px auto auto -40px;
    font-size: 210px;
  }
  .manifesto__copy {
    position: relative;
    z-index: 1;
    align-self: end;
    padding: 260px 22px 70px;
  }
  .section-heading,
  .faq .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .section-heading > p:last-child,
  .section-heading--light h2 {
    grid-column: auto;
  }
  .map-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 40px 22px;
  }
  .map-panel svg {
    height: 240px;
  }
  .treatment-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .treatment-list h3 {
    margin: 4px 0 8px;
  }
  .signature-treatment {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }
  .other-treatments ul {
    grid-template-columns: 1fr;
  }
  .coverflow {
    width: calc(100vw - 36px);
    max-width: 100%;
    overflow: hidden;
  }
  .coverflow__stage {
    height: min(102vw, 460px);
  }
  .coverflow__slide {
    width: min(78vw, 350px);
  }
  .coverflow__toolbar {
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 10px;
  }
  .coverflow__arrow {
    width: 46px;
    height: 46px;
  }
  .coverflow__caption {
    padding: 10px 0;
  }
  .coverflow__caption p {
    display: grid;
    gap: 1px;
  }
  .coverflow__caption p span {
    font-size: 11px;
  }
  .results__note {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about__image {
    min-height: 340px;
  }
  .about__copy {
    padding: 65px 22px;
  }
  .review {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .review--rating footer {
    display: block;
  }
  .social-callout__links a {
    align-items: flex-start;
  }
  .social-callout__links strong {
    margin-top: 7px;
    text-align: right;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .site-footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 34px 22px;
  }
  .site-footer p:last-child {
    text-align: left;
  }
  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 380px) {
  .hero__media {
    min-height: 390px;
  }
  .hero__copy {
    padding-inline: 18px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .klasse-map,
  .results,
  .faq,
  .treatments {
    padding-inline: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .cartography-line path {
    stroke-dashoffset: 0;
  }
  .review { animation: none!important; }
}
