@font-face {
  font-family: "Open Sans Local";
  src: url("/assets/fonts/OpenSans-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Noto Serif Condensed Local";
  src: url("/assets/fonts/NotoSerif-Condensed-Medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Noto Serif Local";
  src: url("/assets/fonts/NotoSerif-MediumItalic.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 600;
}

:root {
  --wine: #6e3345;
  --wine-dark: #542333;
  --rose: #c594a5;
  --rose-soft: #f8f0f3;
  --gold: #f0d74c;
  --ink: #1d0f18;
  --muted: #6f686c;
  --white: #fff;
  --border: #8f8589;
  --container: 1080px;
  --shadow: 0 18px 55px rgba(66, 25, 40, 0.14);
  --radius: 18px;
  --section-space: clamp(64px, 7vw, 102px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Open Sans Local", "Open Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--wine);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--wine-dark);
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--wine-dark);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 42px), var(--container));
  margin-inline: auto;
}

.topbar {
  min-height: 31px;
  background: linear-gradient(90deg, var(--wine) 0 43%, var(--rose) 43% 100%);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.topbar__inner {
  display: flex;
  min-height: 31px;
  align-items: center;
  gap: 28px;
}

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

.topbar a:hover {
  text-decoration: underline;
}

.site-header {
  position: relative;
  z-index: 50;
  min-height: 90px;
  border-bottom: 1px solid #eee9eb;
  background: rgba(255, 255, 255, 0.98);
}

.header__inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 140px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2d9dc;
  border-radius: 50%;
  background: var(--white);
  color: var(--wine);
  cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle__icon::before { top: -7px; }
.nav-toggle__icon::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after { transform: translateY(-7px) rotate(-45deg); }

.main-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(22px, 2.7vw, 34px);
  list-style: none;
}

.main-nav a {
  position: relative;
  display: inline-block;
  padding: 34px 0 30px;
  color: #633747;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav a[aria-current="page"] {
  color: var(--rose);
}

.main-nav .shop-link {
  display: inline-flex;
  min-height: 46px;
  padding: 8px 17px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--wine);
  border-radius: 999px;
  background: var(--wine);
  box-shadow: 0 5px 14px rgba(111, 23, 56, 0.16);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: none;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.main-nav .shop-link::after { display: none; }

.main-nav .shop-link:hover,
.main-nav .shop-link:focus-visible {
  background: var(--wine-dark);
  box-shadow: 0 7px 18px rgba(111, 23, 56, 0.22);
  color: var(--white);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 383px;
  align-items: center;
  overflow: hidden;
  background-color: #8c8a82;
  background-image:
    linear-gradient(90deg, rgba(118, 116, 109, 0.98) 0%, rgba(118, 116, 109, 0.94) 44%, rgba(118, 116, 109, 0.18) 70%, rgba(118, 116, 109, 0) 100%),
    url("/assets/images/hero-standard.webp");
  background-position: center, center;
  background-size: cover;
}

.hero--home {
  min-height: 383px;
}

.hero--about {
  min-height: 367px;
  background-image:
    linear-gradient(90deg, rgba(100, 62, 73, 0.92) 0%, rgba(100, 62, 73, 0.75) 43%, rgba(100, 62, 73, 0.05) 72%),
    url("/assets/images/hero-stephanie.webp");
}

.hero__content {
  width: min(630px, 58%);
  padding-block: 55px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 4px;
  color: inherit;
  font-size: 20px;
  line-height: 1.35;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-family: "Noto Serif Condensed Local", Georgia, serif;
  font-size: clamp(42px, 4.1vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero--italic h1 {
  font-family: "Noto Serif Local", Georgia, serif;
  font-style: italic;
}

.hero__subtitle {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(19px, 1.9vw, 26px);
  font-weight: 700;
  line-height: 1.3;
}

.hero__meta {
  margin: 12px 0 0;
  font-weight: 700;
}

.section {
  padding-block: var(--section-space);
}

.section--compact {
  padding-block: clamp(48px, 5vw, 72px);
}

.section--soft {
  background: var(--rose-soft);
}

.section--wine {
  background: var(--wine);
  color: var(--white);
}

.section--wine .section-title,
.section--wine h2,
.section--wine h3 {
  color: var(--white);
}

.section-title,
.content-title,
.legal h1,
.legal h2,
.legal h3 {
  margin: 0 0 18px;
  color: var(--wine);
  font-family: "Noto Serif Condensed Local", Georgia, serif;
  font-weight: 600;
  line-height: 1.26;
}

.section-title {
  font-size: clamp(30px, 3vw, 42px);
}

.section-title--sm {
  font-size: clamp(27px, 2.45vw, 34px);
}

.content-title {
  font-size: clamp(25px, 2.25vw, 31px);
}

.subheading {
  margin: -8px 0 22px;
  color: var(--wine);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
}

.center {
  text-align: center;
}

.lede {
  max-width: 880px;
  margin: 0 auto 34px;
  font-size: 18px;
}

.steps {
  display: grid;
  margin: 34px 0 26px;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 4vw, 56px);
}

.step {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border: 1px dashed var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.step__mark {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 31px;
  line-height: 1;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font-size: 17px;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(84, 35, 51, 0.16);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button::before {
  content: "▣";
  font-size: 16px;
}

.button:hover {
  background: var(--wine-dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(84, 35, 51, 0.24);
  transform: translateY(-2px);
}

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

.button--light:hover {
  background: #fff8fa;
  color: var(--wine-dark);
}

.two-col {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 6vw, 76px);
}

.two-col--top {
  align-items: start;
}

.two-col--reverse .media {
  order: 2;
}

.media img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media--spaced {
  margin-top: 28px;
}

.content-title--spaced {
  margin-top: 34px;
}

.arrival-grid {
  display: grid;
  align-items: stretch;
  margin-top: 42px;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 76px);
}

.arrival-studio__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.arrival-address {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.route-link {
  display: inline-flex;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  padding: 7px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--wine);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.arrival-details {
  display: grid;
  gap: 0;
}

.arrival-detail {
  padding-block: 5px 30px;
}

.arrival-detail + .arrival-detail {
  padding-block: 30px 0;
  border-top: 1px solid var(--border);
}

.arrival-detail p {
  margin: 0 0 12px;
}

.not-found__logo {
  margin: 0 auto 40px;
}

.media--plain img {
  box-shadow: none;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: -1px;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-size: 22px;
  font-weight: 700;
}

.profile-points {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 70px);
}

.profile-points h3,
.service-card h3,
.treatment h2 {
  margin: 0 0 12px;
  color: var(--wine);
  font-family: "Noto Serif Condensed Local", Georgia, serif;
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1.3;
}

.image-section {
  position: relative;
  display: grid;
  min-height: 660px;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.image-section::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(30, 22, 23, 0.05) 0 41%, rgba(35, 21, 25, 0.58) 60%, rgba(35, 21, 25, 0.74) 100%);
  content: "";
}

.image-section--basic {
  background-image: url("/assets/images/basic-behandlungen.webp");
}

.image-section--new-client {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 255, 255, 0.18) 0 11%, transparent 11.2%),
    radial-gradient(circle at 94% 86%, rgba(248, 222, 231, 0.24) 0 15%, transparent 15.2%),
    linear-gradient(125deg, #d9a7b7 0%, #c77f98 46%, #9a4767 100%);
}

.image-section--new-client::before {
  z-index: -1;
  background:
    radial-gradient(ellipse at -6% 108%, rgba(84, 35, 51, 0.34) 0 34%, transparent 34.2%),
    radial-gradient(ellipse at 108% -20%, rgba(248, 240, 243, 0.24) 0 37%, transparent 37.2%);
}

.image-section--new-client::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .55;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 58%);
  mask-image: linear-gradient(90deg, #000, transparent 58%);
  content: "";
}

.image-section--new-client .image-section__inner {
  justify-content: stretch;
}

.image-section--new-client .image-section__content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .75fr);
  align-items: center;
  width: 100%;
  gap: clamp(38px, 5vw, 72px);
}

.image-section--new-client .section-title {
  max-width: 700px;
  margin-bottom: 18px;
  color: #4b102c;
  font-size: clamp(43px, 4.4vw, 64px);
  line-height: 1.02;
  -webkit-text-stroke: 0.65px rgba(255, 255, 255, 0.72);
  paint-order: stroke fill;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35),
    0 8px 24px rgba(75, 16, 44, 0.26);
}

.new-client-intro > p:not(.offer-kicker) {
  max-width: 590px;
  color: #fff;
  font-size: clamp(17px, 1.35vw, 20px);
}

.offer-price {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: end;
  width: fit-content;
  margin-top: 24px;
  color: #fff;
  column-gap: 14px;
}

.offer-price__label {
  grid-column: 1 / -1;
  margin-bottom: -4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-price strong {
  font-family: "Noto Serif Condensed Local", Georgia, serif;
  font-size: clamp(62px, 6.4vw, 88px);
  line-height: .95;
}

.offer-price__old {
  padding-bottom: 10px;
  font-size: 17px;
  text-decoration: line-through;
  opacity: .82;
}

.offer-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(112, 6, 55, 0.78);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.image-section--new-client .service-card {
  position: relative;
  padding: clamp(26px, 2.6vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  background: rgba(255, 250, 252, 0.97);
  box-shadow: 0 20px 48px rgba(84, 35, 51, 0.22);
}

.image-section--new-client .service-card h3 {
  margin-bottom: 22px;
  color: #a51657;
  font-size: clamp(28px, 2.4vw, 38px);
}

.service-card__eyebrow {
  color: #7d6170;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-features {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.offer-features li {
  position: relative;
  padding-left: 30px;
}

.offer-features li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #c51f66;
  font-weight: 800;
  content: "✓";
}

.image-section--new-client .offer-note {
  margin-top: 22px;
  color: #705a65;
}

.image-section--new-client .button {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  background: linear-gradient(135deg, #c51f66, #87113f);
  box-shadow: 0 10px 24px rgba(156, 20, 80, 0.28);
}

.image-section--new-client .button:hover,
.image-section--new-client .button:focus-visible {
  background: linear-gradient(135deg, #dc2f7a, #9d194e);
}

.image-section--special {
  min-height: 850px;
  background-image: url("/assets/images/spezialbehandlungen.webp");
}

.image-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.image-section__content {
  width: min(620px, 58%);
  color: var(--white);
}

.image-section__content > .section-title,
.image-section__content > p {
  color: var(--white);
}

.service-stack {
  display: grid;
  margin-top: 28px;
  gap: 18px;
}

.service-card {
  padding: 24px 28px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(24, 11, 17, 0.18);
  backdrop-filter: blur(6px);
}

.service-card p {
  margin: 7px 0 0;
}

.service-card .price {
  color: var(--wine);
  font-weight: 700;
}

.service-card .old-price {
  margin-right: 7px;
  color: #745d66;
  font-weight: 400;
  text-decoration: line-through;
}

.service-card .offer-note {
  font-size: 14px;
}

.award {
  padding-block: 32px;
  border-top: 1px solid #eee6e9;
  border-bottom: 1px solid #eee6e9;
  background: var(--white);
}

.award p {
  margin: 0;
  color: var(--wine);
  font-family: "Noto Serif Condensed Local", Georgia, serif;
  font-size: clamp(23px, 2.5vw, 31px);
  font-weight: 600;
  text-align: center;
}

.anchor-nav {
  padding-block: clamp(48px, 5vw, 70px);
  text-align: center;
}

.anchor-nav .section-title {
  margin-bottom: 8px;
}

.anchor-nav__links {
  max-width: 1060px;
  margin: 0 auto 28px;
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.anchor-nav__links a {
  white-space: nowrap;
}

.treatment-list {
  display: grid;
}

.treatment {
  padding-block: clamp(58px, 6vw, 90px);
}

.treatment:nth-child(odd) {
  background: var(--rose-soft);
}

.treatment__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 78px);
}

.treatment:nth-child(even) .treatment__text {
  order: 2;
}

.treatment__image img {
  width: 100%;
  max-height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.treatment p:last-child,
.treatment ul:last-child {
  margin-bottom: 0;
}

.cta-section {
  padding-block: clamp(58px, 6vw, 84px);
  background: var(--wine);
  color: var(--white);
}

.cta-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: clamp(34px, 6vw, 75px);
}

.cta-section h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Noto Serif Condensed Local", Georgia, serif;
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.25;
}

.cta-section p {
  margin: 0 0 24px;
}

.cta-section img {
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(35, 10, 19, 0.3);
}

.site-footer {
  padding-block: 26px;
  background: #2f1720;
  color: #f4e9ed;
  font-size: 15px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-nav {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 22px;
  list-style: none;
}

.site-footer a {
  color: inherit;
}

.legal {
  padding-block: var(--section-space);
}

.legal__inner {
  max-width: 900px;
}

.legal h1 {
  font-size: clamp(38px, 5vw, 58px);
}

.legal h2 {
  margin-top: 42px;
  font-size: clamp(25px, 2.8vw, 34px);
}

.legal h3 {
  margin-top: 30px;
  font-size: 23px;
}

.legal a {
  overflow-wrap: anywhere;
}

.legal-note {
  margin-top: 44px;
  padding: 22px;
  border-left: 4px solid var(--wine);
  background: var(--rose-soft);
}

.back-to-top {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(62, 22, 36, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .header__inner { gap: 18px; }
  .main-nav ul { gap: 14px; }
  .main-nav a { font-size: 13px; }
  .main-nav .shop-link { padding: 7px 12px; }
  .hero__content { width: min(650px, 68%); }
  .image-section__content { width: min(650px, 66%); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .topbar { background: var(--wine); }
  .topbar__inner { justify-content: center; }
  .site-header,
  .header__inner { min-height: 78px; }
  .brand img { width: 122px; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    z-index: 45;
    inset: 109px 0 auto;
    max-height: calc(100vh - 109px);
    overflow-y: auto;
    border-top: 1px solid #ece4e7;
    background: var(--white);
    box-shadow: 0 22px 44px rgba(45, 20, 29, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav ul {
    display: block;
    padding: 10px 22px 20px;
  }
  .main-nav a {
    display: block;
    padding: 17px 4px;
    border-bottom: 1px solid #eee7e9;
    font-size: 15px;
  }
  .main-nav a::after { display: none; }
  .main-nav .shop-link {
    display: flex;
    width: 100%;
    margin-top: 12px;
    padding: 13px 18px;
    border-bottom: 2px solid #6f1738;
  }
  .hero,
  .hero--home,
  .hero--about {
    min-height: 510px;
    background-position: 64% center;
  }
  .hero::before {
    position: absolute;
    inset: 0;
    background: rgba(69, 52, 56, 0.35);
    content: "";
  }
  .hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 650px;
    padding-block: 60px;
  }
  .two-col,
  .treatment__grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }
  .two-col--reverse .media,
  .treatment:nth-child(even) .treatment__text {
    order: initial;
  }
  .profile-points { grid-template-columns: 1fr; }
  .image-section,
  .image-section--special {
    min-height: auto;
    padding-block: 72px;
    background-position: 35% center;
  }
  .image-section::before {
    background: rgba(39, 24, 29, 0.68);
  }
  .image-section--new-client::before {
    background:
      radial-gradient(ellipse at -8% 88%, rgba(132, 8, 71, 0.4) 0 24%, transparent 24.5%),
      radial-gradient(ellipse at 100% 0, rgba(255, 238, 246, 0.42) 0 25%, transparent 25.5%);
  }
  .image-section--new-client .image-section__inner {
    display: flex;
  }
  .image-section--new-client .image-section__content {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .image-section--new-client .section-title {
    color: #fff;
    font-size: clamp(43px, 12vw, 64px);
    -webkit-text-stroke: 0;
    text-shadow: 0 2px 14px rgba(82, 5, 42, 0.72);
  }
  .offer-price {
    margin-top: 26px;
  }
  .image-section__content {
    width: 100%;
  }
  .cta-section img { max-width: 380px; }
  .arrival-grid { grid-template-columns: 1fr; margin-top: 34px; }
  .arrival-studio__footer { align-items: flex-start; }
}

@media (min-width: 821px) {
  .image-section,
  .image-section--special {
    min-height: auto;
    padding-block: clamp(88px, 8vw, 124px);
  }

  .image-section--new-client {
    padding-block: clamp(62px, 5.5vw, 82px);
  }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .topbar__inner { gap: 13px; font-size: 11px; }
  .topbar__inner a:last-child {
    max-width: 188px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero,
  .hero--home,
  .hero--about {
    min-height: 470px;
    background-position: 67% center;
  }
  .hero__content { padding-block: 48px; }
  .eyebrow { font-size: 16px; }
  .hero h1 { font-size: clamp(37px, 11vw, 50px); }
  .hero__subtitle { font-size: 19px; }
  .steps { grid-template-columns: 1fr; gap: 13px; }
  .step { min-height: 62px; }
  .service-card { padding: 22px 20px; }
  .anchor-nav__links a { white-space: normal; }
  .treatment__image img { max-height: 360px; }
  .footer__inner { align-items: flex-start; flex-direction: column; }
  .footer-nav { flex-wrap: wrap; gap: 10px 18px; }
  .cta-section img { max-width: 100%; }
}

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