@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --ink: #201322;
  --ink-soft: #49364d;
  --white: #ffffff;
  --paper: #fffafd;
  --violet: #90127d;
  --violet-bright: #b3179c;
  --violet-dark: #701064;
  --plum: #201322;
  --muted: #756373;
  --line: rgba(144, 18, 125, 0.16);
  --shadow: 0 24px 68px rgba(77, 7, 68, 0.14);
  --shadow-soft: 0 15px 42px rgba(77, 7, 68, 0.09);
  --radius-lg: 26px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 1500px 980px at 92% 10%, rgba(179, 23, 156, 0.105) 0%, rgba(179, 23, 156, 0.055) 34%, rgba(179, 23, 156, 0.018) 58%, rgba(179, 23, 156, 0) 78%),
    radial-gradient(ellipse 1220px 820px at 4% 6%, rgba(144, 18, 125, 0.060) 0%, rgba(144, 18, 125, 0.024) 48%, rgba(144, 18, 125, 0) 76%),
    radial-gradient(ellipse 1180px 760px at 46% 30%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.42) 46%, rgba(255, 255, 255, 0) 74%),
    linear-gradient(180deg, #fffafd 0%, #fff7fd 38%, #fbf2fa 74%, #ffffff 100%);
  background-repeat: no-repeat;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.site-shell > main {
  flex: 1 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    radial-gradient(circle at 8% 0%, rgba(179, 23, 156, 0.28), transparent 24rem),
    linear-gradient(90deg, #0d0610 0%, #1a071d 48%, #2b0c30 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 16px 38px rgba(32, 8, 36, 0.20);
}

.header-inner {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  min-height: 98px;
  padding: 12px 0 14px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-wrap {
  width: 190px;
  min-width: 168px;
}

.logo-wrap img {
  width: 100%;
  height: auto;
  transform: translateY(2px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.24));
}

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

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  font-size: 13.5px;
  padding: 10px 10px;
  border-radius: 999px;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.nav-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  color: #fff !important;
  background: linear-gradient(135deg, #741065 0%, var(--violet) 48%, var(--violet-bright) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 38px rgba(144, 18, 125, 0.34);
  transform: translateY(0);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.nav-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -35%;
  bottom: -35%;
  left: -70%;
  width: 42%;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.00) 18%,
    rgba(255, 255, 255, 0.24) 48%,
    rgba(255, 255, 255, 0.00) 76%,
    transparent 100%
  );
  transform: translate3d(-120%, 0, 0) skewX(-16deg);
  transition: transform 0.58s ease;
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #821172 0%, #a1138c 46%, #c01aaa 100%);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 20px 44px rgba(179, 23, 156, 0.40),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.nav .nav-cta:hover::before,
.nav .nav-cta:focus-visible::before {
  transform: translate3d(520%, 0, 0) skewX(-16deg);
}

.nav .nav-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.52);
  outline-offset: 3px;
}

.menu-btn {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-btn:hover,
.menu-btn:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.menu-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.46);
  outline-offset: 3px;
}

.menu-btn-line {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-btn.is-open .menu-btn-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.is-open .menu-btn-line:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open .menu-btn-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: visible;
  padding: 70px 0 64px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -90px -12vw -230px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 920px 560px at 72% 43%, rgba(179, 23, 156, 0.105) 0%, rgba(179, 23, 156, 0.046) 48%, rgba(179, 23, 156, 0) 74%),
    radial-gradient(ellipse 760px 500px at 48% 35%, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.26) 52%, rgba(255, 255, 255, 0) 78%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 72%, transparent 100%);
}

.hero-grid {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 14px;
  letter-spacing: 0.18em;
}

h1,
h2 {
  color: var(--plum);
  font-family: Sora, Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4.25vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.13;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.68;
}

.prices-hero-banner {
  position: relative;
  overflow: hidden;
  height: clamp(240px, 21vw, 315px);
  margin: 4px 0 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(137, 27, 125, 0.15);
  box-shadow:
    0 24px 72px rgba(37, 9, 41, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  isolation: isolate;
}

.prices-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18, 5, 22, 0.24), rgba(18, 5, 22, 0.09) 38%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(16, 7, 18, 0.16));
}

.prices-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 28px;
  z-index: 2;
  width: min(300px, 42%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(179, 23, 156, 0.86), rgba(234, 142, 222, 0.50), transparent);
  box-shadow: 0 0 18px rgba(216, 84, 198, 0.13);
}

.prices-hero-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.06);
  filter: contrast(1.04) brightness(0.98) saturate(1.03);
  animation: pricesBannerCamera 17s cubic-bezier(0.42, 0, 0.22, 1) infinite alternate;
}

@keyframes pricesBannerCamera {
  from {
    transform: scale(1.06) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.13) translate3d(-34px, -7px, 0);
  }
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet-dark), #a30f8d);
  box-shadow: 0 16px 40px rgba(144, 18, 125, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--plum);
  background: rgba(255, 255, 255, 0.75);
  border-color: var(--line);
  box-shadow: 0 13px 30px rgba(77, 7, 68, 0.06);
}

.hero-image {
  position: relative;
  isolation: isolate;
  border-radius: 30px;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -26px -28px -34px -24px;
  z-index: 0;
  border-radius: 44px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 66% 62%, rgba(179, 23, 156, 0.18), transparent 54%),
    radial-gradient(ellipse at 28% 18%, rgba(255, 255, 255, 0.86), transparent 38%),
    linear-gradient(135deg, rgba(144, 18, 125, 0.045), rgba(255, 255, 255, 0.24));
  filter: blur(22px);
  opacity: 0.72;
  animation: kamminHeroHalo 16s ease-in-out infinite alternate;
}

.hero-image-stage {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 30px;
  background: #f4e7f2;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow:
    0 24px 64px rgba(77, 7, 68, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.38) inset;
  transform: translateZ(0);
}

.hero-image-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.015) contrast(1.01) brightness(1.005);
  transform: scale(1.028) translate3d(0, 0, 0);
  transform-origin: center center;
  animation: kamminHeroDrift 22s ease-in-out infinite;
  will-change: transform, filter;
}

.hero-image:hover .hero-image-stage img {
  filter: saturate(1.04) contrast(1.025) brightness(1.02);
}

.hero-beauty-vignette,
.hero-beauty-texture,
.hero-beauty-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-beauty-vignette {
  z-index: 2;
  background:
    radial-gradient(circle at center, transparent 43%, rgba(94, 25, 88, 0.10) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%, rgba(82, 21, 78, 0.10)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.10));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.20),
    inset 0 28px 68px rgba(255, 255, 255, 0.10),
    inset 0 -44px 78px rgba(82, 21, 78, 0.12),
    inset 54px 0 86px rgba(255, 255, 255, 0.06),
    inset -54px 0 86px rgba(82, 21, 78, 0.08);
}

.hero-beauty-texture {
  z-index: 3;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23noise)' opacity='0.72'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  animation: kamminHeroTexture 1.8s steps(2, end) infinite;
}

.hero-beauty-sheen {
  z-index: 4;
  inset: -34% -58%;
  opacity: 0;
  background: linear-gradient(112deg, transparent 34%, rgba(255, 255, 255, 0) 41%, rgba(255, 255, 255, 0.18) 48%, rgba(255, 255, 255, 0.34) 51%, rgba(255, 255, 255, 0.12) 56%, transparent 66%);
  filter: blur(1px);
  transform: translate3d(-36%, 0, 0);
  animation: kamminHeroSheen 9.5s ease-in-out infinite;
}

.hero-image:hover .hero-beauty-sheen {
  animation-duration: 7.2s;
}

@keyframes kamminHeroDrift {
  0% { transform: scale(1.028) translate3d(0, 0, 0); }
  32% { transform: scale(1.046) translate3d(-8px, -3px, 0); }
  66% { transform: scale(1.039) translate3d(7px, 3px, 0); }
  100% { transform: scale(1.028) translate3d(0, 0, 0); }
}

@keyframes kamminHeroHalo {
  from { transform: translate3d(-5px, 5px, 0) scale(0.99); opacity: 0.58; }
  to { transform: translate3d(7px, -6px, 0) scale(1.025); opacity: 0.82; }
}

@keyframes kamminHeroTexture {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(1px, -1px, 0); }
  100% { transform: translate3d(-1px, 1px, 0); }
}

@keyframes kamminHeroSheen {
  0%, 42%, 100% { opacity: 0; transform: translate3d(-38%, 0, 0); }
  50% { opacity: 0.34; }
  62% { opacity: 0; transform: translate3d(38%, 0, 0); }
}

/* Gemeinsame Sektionen */
.section {
  padding: 76px 0;
}

.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p,
.card p,
.feature-text p,
.great-text p,
.contact-card p {
  color: var(--muted);
  line-height: 1.72;
}

/* Aktuelles + Salon & Leistungen */
.salon-flow {
  position: relative;
  padding: 54px 0 86px;
  overflow: visible;
}

.salon-flow::before {
  content: "";
  position: absolute;
  inset: -90px -16vw -110px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 1040px 540px at 82% 22%, rgba(179, 23, 156, 0.070) 0%, rgba(179, 23, 156, 0.024) 46%, rgba(179, 23, 156, 0) 76%),
    radial-gradient(ellipse 760px 420px at 18% 58%, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.26) 54%, rgba(255, 255, 255, 0) 78%);
  filter: blur(8px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.salon-flow-inner {
  position: relative;
  z-index: 1;
}

.salon-news-strip {
  width: min(940px, 100%);
  margin: 0 0 26px;
}

.salon-news-strip .notice-content {
  max-width: 880px;
  padding: 12px 0 10px;
}

.salon-news-strip .notice-meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 9px;
}

.salon-news-strip .notice-meta::before {
  content: "";
  flex: 0 0 auto;
  width: 58px;
  height: 3px;
  margin: 0 13px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet-bright), rgba(179, 23, 156, 0));
  box-shadow: 0 10px 22px rgba(144, 18, 125, 0.10);
}

.notice-eyebrow {
  color: var(--violet-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.notice-text {
  max-width: 880px;
}

.notice h3 {
  margin-bottom: 10px;
  color: var(--plum);
  font-size: clamp(22px, 1.95vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.notice p:not(.kicker) {
  max-width: 880px;
  margin-bottom: 15px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.18vw, 17px);
  line-height: 1.66;
}

.notice-signature {
  margin-bottom: 0 !important;
}

.moment-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(560px, 1.18fr);
  gap: 44px;
  align-items: center;
  padding: 4px 0 0;
}

.moment-copy {
  position: relative;
  padding: 0;
}

.moment-copy h2 {
  max-width: 520px;
  margin-bottom: 16px;
}

.moment-copy > p:not(.kicker) {
  max-width: 520px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(17px, 1.42vw, 20px);
  line-height: 1.74;
}

.moment-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  max-width: 470px;
}

.moment-services span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(144, 18, 125, 0.09);
  box-shadow: 0 10px 22px rgba(77, 7, 68, 0.035);
  font-weight: 850;
  font-size: 13px;
  white-space: nowrap;
}

.moment-journey {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 30px 26px;
  align-items: start;
  padding: 8px 0 18px;
  border-radius: 42px;
  isolation: isolate;
}

.moment-journey::before {
  content: "";
  position: absolute;
  inset: -22px -18px -24px;
  z-index: -2;
  border-radius: 46px;
  background:
    radial-gradient(ellipse 560px 300px at 78% 18%, rgba(179, 23, 156, 0.054) 0%, rgba(179, 23, 156, 0.018) 48%, transparent 76%),
    radial-gradient(ellipse 480px 260px at 26% 78%, rgba(255, 255, 255, 0.50) 0%, rgba(255, 255, 255, 0.16) 58%, transparent 78%);
  opacity: 0.86;
  filter: blur(14px);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 58%, transparent 84%);
  mask-image: radial-gradient(ellipse at center, #000 0 58%, transparent 84%);
}

.moment-step {
  position: relative;
  z-index: 1;
  min-height: 224px;
  overflow: hidden;
  padding: 25px 25px 23px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 420px 220px at 72% 0%, rgba(179, 23, 156, 0.040) 0%, rgba(179, 23, 156, 0.012) 42%, transparent 70%),
    linear-gradient(150deg, rgba(255, 255, 255, 0.985) 0%, rgba(255, 251, 254, 0.935) 100%);
  border: 1px solid rgba(144, 18, 125, 0.070);
  box-shadow:
    0 24px 58px rgba(77, 7, 68, 0.070),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.moment-step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 70px rgba(77, 7, 68, 0.105),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.moment-step::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, rgba(179, 23, 156, 0.05) 0%, rgba(179, 23, 156, 0.18) 18%, rgba(210, 120, 196, 0.78) 48%, rgba(179, 23, 156, 0.20) 74%, rgba(179, 23, 156, 0.05) 100%);
  background-size: 230% 100%;
  box-shadow:
    0 8px 18px rgba(144, 18, 125, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.35);
  animation: momentCardEdge 8.8s ease-in-out infinite;
}

.moment-step::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(112deg, transparent 0%, transparent 34%, rgba(255, 255, 255, 0.54) 45%, rgba(255, 255, 255, 0.18) 51%, transparent 63%, transparent 100%);
  opacity: 0.22;
  transform: translate3d(-58%, 0, 0);
  animation: momentCardSheen 10.5s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.moment-step > * {
  position: relative;
  z-index: 1;
}

.moment-step-two::before,
.moment-step-two::after {
  animation-delay: 1.7s;
}

.moment-step-three::before,
.moment-step-three::after {
  animation-delay: 3.1s;
}

.moment-step:hover::before {
  animation-duration: 5.4s;
}

.moment-step:hover::after {
  opacity: 0.30;
  animation-duration: 7.2s;
}

.moment-step-one {
  grid-column: 1;
  grid-row: 1;
}

.moment-step-two {
  grid-column: 2;
  grid-row: 1;
  margin-top: 66px;
}

.moment-step-three {
  grid-column: 1 / -1;
  grid-row: 2;
  width: min(520px, 72%);
  justify-self: center;
  margin-top: 2px;
}

.moment-step-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--violet-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.moment-step-tag::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  margin-left: 11px;
  background: linear-gradient(90deg, rgba(179, 23, 156, 0.50), rgba(179, 23, 156, 0));
}

.moment-step h3 {
  margin-bottom: 10px;
  color: var(--plum);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.moment-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.56;
}

@keyframes momentCardEdge {
  0%, 100% { background-position: 115% 0; }
  48%, 58% { background-position: 0% 0; }
}

@keyframes momentCardSheen {
  0%, 34%, 100% { transform: translate3d(-62%, 0, 0); }
  58% { transform: translate3d(62%, 0, 0); }
}

/* Salongefühl */
.feature {
  padding: 0;
}

.feature-box {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 46px;
  padding: 34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 82% 14%, rgba(255,255,255,0.16), transparent 28rem),
    linear-gradient(135deg, #251029, #3b1644 55%, #78106d);
  box-shadow: var(--shadow);
  color: #fff;
}

.feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.24);
  isolation: isolate;
  background: #27102c;
  box-shadow:
    0 24px 56px rgba(17, 5, 20, 0.26),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

.feature-image img {
  display: block;
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  object-position: center;
  border: 0;
  filter: contrast(1.025) brightness(0.985) saturate(1.018);
  transform: scale(1.045) translate3d(3px, 2px, 0);
  transform-origin: center center;
  will-change: transform, filter;
}

.feature-image.is-in-view img {
  animation: salongefuehlCameraPush 6.8s cubic-bezier(0.34, 0, 0.18, 1) 1 forwards;
}

.feature-image::before,
.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.feature-image::before {
  z-index: 2;
  background:
    radial-gradient(circle at 22% 12%, rgba(255,255,255,0.16), transparent 26rem),
    radial-gradient(circle at 86% 86%, rgba(179,23,156,0.18), transparent 20rem),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(30,5,34,0.12));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.035),
    inset 0 34px 58px rgba(255,255,255,0.08),
    inset 0 -42px 72px rgba(28,6,32,0.23),
    inset 44px 0 68px rgba(255,255,255,0.045),
    inset -48px 0 76px rgba(34,7,40,0.14);
  mix-blend-mode: soft-light;
}

.feature-image::after {
  z-index: 3;
  width: 52%;
  inset: -18% auto -18% -62%;
  background: linear-gradient(
    112deg,
    transparent 0%,
    rgba(255,255,255,0.00) 30%,
    rgba(255,255,255,0.15) 47%,
    rgba(255,255,255,0.05) 56%,
    transparent 72%
  );
  filter: blur(0.6px);
  opacity: 0;
  transform: translate3d(0, 0, 0) skewX(-8deg);
  mix-blend-mode: screen;
}

.feature-image.is-in-view::after {
  opacity: 0.50;
  animation: salongefuehlSatinSheen 6.4s ease-in-out infinite;
}

.feature-image:hover img {
  filter: contrast(1.04) brightness(1.01) saturate(1.035);
}

.feature-image:hover::after {
  opacity: 0.78;
}

@keyframes salongefuehlCameraPush {
  0% {
    transform: scale(1.045) translate3d(3px, 2px, 0);
    filter: contrast(1.025) brightness(0.985) saturate(1.018);
  }

  100% {
    transform: scale(1.066) translate3d(-3px, -4px, 0);
    filter: contrast(1.035) brightness(1.002) saturate(1.028);
  }
}

@keyframes salongefuehlSatinSheen {
  0% {
    opacity: 0.44;
    transform: translate3d(0, 0, 0) skewX(-8deg);
  }

  18% {
    opacity: 0.62;
  }

  52% {
    opacity: 0.38;
    transform: translate3d(310%, 0, 0) skewX(-8deg);
  }

  76%, 100% {
    opacity: 0.18;
    transform: translate3d(310%, 0, 0) skewX(-8deg);
  }
}

.feature-text h2,
.feature-text .kicker,
.feature-text p,
.great .kicker,
.great h2,
.great p,
.contact .kicker,
.contact h2,
.contact p {
  color: #fff;
}

.feature-text p,
.great p,
.contact-card p {
  color: rgba(255,255,255,0.78);
}

.feature-text .btn-secondary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 14px 34px rgba(12, 4, 16, 0.13);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.feature-text .btn-secondary::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -42%;
  bottom: -42%;
  left: -72%;
  width: 44%;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 0%,
    rgba(255,255,255,0) 22%,
    rgba(255,255,255,0.22) 48%,
    rgba(255,255,255,0) 76%,
    transparent 100%
  );
  transform: translate3d(-115%, 0, 0) skewX(-15deg);
  transition: transform 0.62s ease;
}

.feature-text .btn-secondary:hover,
.feature-text .btn-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.38);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    0 20px 42px rgba(12, 4, 16, 0.20),
    0 0 0 1px rgba(255,255,255,0.04);
}

.feature-text .btn-secondary:hover::before,
.feature-text .btn-secondary:focus-visible::before {
  transform: translate3d(560%, 0, 0) skewX(-15deg);
}

.feature-text .btn-secondary:focus-visible {
  outline: 2px solid rgba(255,255,255,0.56);
  outline-offset: 4px;
}

/* Kundenstimmen */
.testimonials {
  background:
    radial-gradient(ellipse 980px 520px at 88% 18%, rgba(179, 23, 156, 0.070), transparent 68%),
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(244,224,241,0.42));
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonials .card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 246px;
  padding: 30px 28px 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,250,254,0.78)),
    radial-gradient(circle at 82% 12%, rgba(179,23,156,0.065), transparent 52%);
  border: 1px solid rgba(144, 18, 125, 0.105);
  box-shadow: 0 20px 54px rgba(77, 7, 68, 0.075);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.testimonials .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(144,18,125,0.74), rgba(222,141,211,0.34), rgba(144,18,125,0));
  opacity: 0.78;
}

.testimonials .card::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -48%;
  bottom: -48%;
  left: -78%;
  width: 48%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(112deg, transparent 0%, rgba(255,255,255,0) 24%, rgba(255,255,255,0.62) 50%, rgba(255,255,255,0) 76%, transparent 100%);
  transform: translate3d(-130%, 0, 0) skewX(-16deg);
  transition: transform 0.72s ease, opacity 0.28s ease;
}

.testimonials .card:hover,
.testimonials .card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(144, 18, 125, 0.18);
  box-shadow: 0 28px 72px rgba(77, 7, 68, 0.12);
}

.testimonials .card:hover::after,
.testimonials .card:focus-within::after {
  opacity: 0.55;
  transform: translate3d(520%, 0, 0) skewX(-16deg);
}

.quote-mark {
  margin-bottom: 14px;
  color: rgba(144, 18, 125, 0.22);
  font-size: 42px;
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.05em;
}

.card p {
  margin-bottom: 22px;
}

.testimonials .card p {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--ink-soft);
}

.testimonials .card strong {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(144, 18, 125, 0.095);
  color: var(--plum);
  font-size: 16px;
  letter-spacing: -0.01em;
}

/* Great Lengths */
.great {
  position: relative;
  background:
    radial-gradient(circle at 80% 30%, rgba(144,18,125,0.25), transparent 28rem),
    linear-gradient(135deg, #120713, #2a0c2b 52%, #140916);
  color: #fff;
}

.great-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.great-text {
  padding-right: 12px;
}

.iframe-card {
  padding: 28px;
  border-radius: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.iframe-frame {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(151, 16, 134, 0.10);
}

.iframe-frame iframe {
  width: 100%;
  max-width: 538px;
  height: 185px;
  border: 0;
}

/* Galerie */
.gallery-section {
  position: relative;
}

.gallery-head {
  max-width: 760px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(144, 18, 125, 0.11);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 46px rgba(77, 7, 68, 0.105);
  isolation: isolate;
}

.gallery-item::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(144, 18, 125, 0), rgba(179, 23, 156, 0.70), rgba(255, 207, 247, 0.55), rgba(144, 18, 125, 0));
  opacity: 0.74;
  pointer-events: none;
}

.gallery-item::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.38) 44%, transparent 66%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.28), transparent 34%);
  transform: translateX(-38%);
  transition:
    opacity 0.32s ease,
    transform 0.65s ease;
}

.gallery-open {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: inherit;
  text-align: inherit;
}

.gallery-open:focus-visible {
  outline: 3px solid rgba(179, 23, 156, 0.36);
  outline-offset: 4px;
}

.gallery-item img {
  width: 100%;
  height: 264px;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(1.02) contrast(1.02);
  transition:
    transform 0.62s ease,
    filter 0.62s ease;
}

.gallery-item:hover,
.gallery-item:focus-within {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 24px 58px rgba(77, 7, 68, 0.16);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.065);
  filter: saturate(1.06) contrast(1.04) brightness(1.015);
}

.gallery-item:hover::after,
.gallery-item:focus-within::after {
  opacity: 1;
  transform: translateX(34%);
}

.gallery-instagram {
  width: min(720px, 100%);
  margin: 30px auto 0;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(144, 18, 125, 0.12);
  box-shadow: 0 18px 46px rgba(77, 7, 68, 0.08);
}

.gallery-instagram p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.gallery-instagram-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--violet-dark), var(--violet), var(--violet-bright));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 34px rgba(144, 18, 125, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.gallery-instagram-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -45%;
  bottom: -45%;
  left: -70%;
  width: 42%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.24) 48%, transparent 78%);
  transform: translate3d(-120%, 0, 0) skewX(-16deg);
  transition: transform 0.58s ease;
}

.gallery-instagram-link:hover,
.gallery-instagram-link:focus-visible {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 20px 44px rgba(144, 18, 125, 0.32);
}

.gallery-instagram-link:hover::before,
.gallery-instagram-link:focus-visible::before {
  transform: translate3d(520%, 0, 0) skewX(-16deg);
}

.gallery-instagram-link:focus-visible {
  outline: 2px solid rgba(179, 23, 156, 0.38);
  outline-offset: 3px;
}

.gallery-lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(144, 18, 125, 0.20), transparent 56%),
    rgba(16, 7, 18, 0.80);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-frame {
  position: relative;
  width: min(1060px, 100%);
  height: min(84vh, 820px);
  overflow: hidden;
  border-radius: 30px;
  background: rgba(30, 12, 36, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.46);
  isolation: isolate;
}

.gallery-lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.gallery-lightbox-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 34%, rgba(16, 7, 18, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%, rgba(0, 0, 0, 0.12));
}

.gallery-lightbox-bg {
  position: absolute;
  z-index: 0;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  filter: blur(30px) saturate(1.04) brightness(0.58);
  transform: scale(1.08);
  opacity: 0.82;
}

.gallery-lightbox-img {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: min(88vw, 980px);
  max-height: min(80vh, 780px);
  object-fit: contain;
  border-radius: 16px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}

.gallery-lightbox-close {
  position: fixed;
  top: 20px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  outline: none;
}


.gallery-lightbox-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 54px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(35, 12, 40, 0.42);
  color: rgba(255, 255, 255, 0.92);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.gallery-lightbox-prev {
  left: 18px;
}

.gallery-lightbox-next {
  right: 18px;
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(179, 23, 156, 0.42), rgba(255, 255, 255, 0.13)),
    rgba(35, 12, 40, 0.62);
  border-color: rgba(255, 255, 255, 0.36);
  outline: none;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-prev:focus-visible {
  transform: translateY(-50%) translateX(-3px);
}

.gallery-lightbox-next:hover,
.gallery-lightbox-next:focus-visible {
  transform: translateY(-50%) translateX(3px);
}

/* Kontakt */
.contact {
  background:
    linear-gradient(135deg, rgba(33,17,36,0.98), rgba(49,22,58,0.97)),
    var(--plum);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.055)),
    rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), transparent);
  opacity: 0.65;
  pointer-events: none;
}

.contact-card p {
  margin: 0 0 18px;
}

.contact-list,
.hours {
  display: grid;
  gap: 12px;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.contact-line span:first-child {
  color: rgba(255,255,255,0.58);
}

.contact-line a,
.contact-line strong {
  color: #fff;
  text-decoration: none;
  text-align: right;
}

.contact-link {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #fff6ff;
  text-shadow: 0 0 18px rgba(223,105,210,0.38);
  outline: none;
}

.contact-route {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.085);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-route:hover,
.contact-route:focus-visible {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.135);
  border-color: rgba(255,255,255,0.32);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
  outline: none;
}

.hours-flexible {
  min-height: calc(100% - 44px);
  align-content: start;
}

.hours-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 66px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row span {
  color: rgba(255,255,255,0.68);
}

.hours-row strong {
  color: #fff;
  font-weight: 800;
  text-align: right;
}

.hours-note {
  margin: 16px 0 0 !important;
  color: rgba(255,255,255,0.72);
}


/* Simple placeholder pages for upcoming subpages */
.subpage-hero {
  min-height: calc(100vh - 196px);
  display: grid;
  place-items: center;
  padding: 76px 0 88px;
}

.subpage-panel {
  width: min(820px, calc(100% - 36px));
  padding: clamp(28px, 5vw, 54px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 253, 0.86));
  box-shadow: var(--shadow-soft);
}

.subpage-panel h1 {
  margin-bottom: 16px;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  color: var(--plum);
}

.subpage-panel p {
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.subpage-panel .action-row {
  margin-top: 28px;
}

/* Footer */
.footer {
  flex-shrink: 0;
  padding: 28px 0;
  background: #080508;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
}

/* Scroll-to-top button */
.scroll-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 70;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 190, 226, 0.22);
  border-radius: 17px;
  color: rgba(255, 255, 255, 0.94);
  background:
    linear-gradient(135deg, rgba(24, 7, 29, 0.96) 0%, rgba(48, 13, 55, 0.95) 54%, rgba(104, 16, 96, 0.94) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 14px 34px rgba(39, 7, 45, 0.22),
    0 0 0 1px rgba(144, 18, 125, 0.08);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 12px, 0) scale(0.96);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  overflow: hidden;
  isolation: isolate;
}

.scroll-top::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -42%;
  bottom: -42%;
  left: -78%;
  width: 42%;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.00) 20%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.00) 78%,
    transparent 100%
  );
  transform: translate3d(-120%, 0, 0) skewX(-16deg);
  transition: transform 0.58s ease;
}

.scroll-top span {
  display: inline-block;
  font-size: 23px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  transform: translateY(-1px);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  border-color: rgba(255, 255, 255, 0.30);
  background:
    linear-gradient(135deg, rgba(28, 8, 34, 0.98) 0%, rgba(62, 15, 70, 0.97) 52%, rgba(132, 18, 120, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.19),
    0 17px 38px rgba(71, 10, 78, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translate3d(0, -2px, 0) scale(1.01);
}

.scroll-top:hover::before,
.scroll-top:focus-visible::before {
  transform: translate3d(410%, 0, 0) skewX(-16deg);
}

.scroll-top:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.70);
  outline-offset: 4px;
}

/* Animationen */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.7s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.08s; }
.reveal.delay-2 { animation-delay: 0.16s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}


/* Index Textsystem: harmonisierte Fließtexte */
.page-index {
  --index-text-size: clamp(16.5px, 1.08vw, 18px);
  --index-small-text-size: clamp(15.5px, 0.98vw, 16.5px);
  --index-text-line: 1.68;
  --index-card-line: 1.64;
}

.page-index .hero-lead,
.page-index .notice p:not(.kicker),
.page-index .moment-copy > p:not(.kicker),
.page-index .feature-text p,
.page-index .great p,
.page-index .gallery-head p,
.page-index .gallery-instagram p,
.page-index .contact p {
  font-size: var(--index-text-size);
  line-height: var(--index-text-line);
}

.page-index .moment-step p,
.page-index .testimonials .card p {
  font-size: var(--index-small-text-size);
  line-height: var(--index-card-line);
}

.page-index .notice h3 {
  line-height: 1.18;
}

.page-index .feature-text p,
.page-index .great p {
  max-width: 720px;
}

@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-image-stage img,
  .hero-image:hover .hero-image-stage img {
    animation: none !important;
    transform: scale(1.028) !important;
  }

  .hero-beauty-texture,
  .hero-beauty-sheen,
  .hero-image::before,
  .feature-image img,
  .feature-image::after {
    animation: none !important;
  }

  .feature-image img {
    transform: scale(1.035) translate3d(0, 0, 0) !important;
  }

  .nav-cta::before,
  .scroll-top::before {
    display: none !important;
  }

  .scroll-top:hover,
  .scroll-top:focus-visible {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 980px) {
  .header-inner {
    min-height: 86px;
    padding: 10px 0 12px;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    padding: 0 14px;
    border-radius: 22px;
    background:
      radial-gradient(circle at 12% 0%, rgba(179, 23, 156, 0.24), transparent 22rem),
      linear-gradient(135deg, rgba(13, 6, 16, 0.985), rgba(43, 12, 48, 0.985));
    box-shadow: 0 24px 54px rgba(32, 8, 36, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height 0.28s ease,
      padding 0.28s ease,
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }

  .nav.is-open {
    max-height: 560px;
    padding-top: 14px;
    padding-bottom: 14px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 12px 14px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 4px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .feature-box,
  .great-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-image::before {
    inset: -22px -20px -24px -18px;
    filter: blur(18px);
  }

  .hero-beauty-texture {
    opacity: 0.026;
  }

  .hero-beauty-sheen {
    display: none;
  }

  .salon-flow {
    padding: 48px 0 70px;
  }

  .salon-news-strip {
    margin-bottom: 24px;
  }

  .salon-news-strip .notice-content {
    padding: 12px 0 8px;
  }

  .salon-news-strip .notice-meta::before {
    width: 52px;
    margin-right: 11px;
  }

  .moment-shell,
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .moment-shell {
    gap: 26px;
    padding-top: 8px;
  }

  .moment-services {
    max-width: 520px;
  }

  .moment-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-top: 18px;
  }

  .moment-step {
    min-height: 210px;
  }

  .moment-step-two {
    margin-top: 46px;
  }

  .moment-step-three {
    width: min(500px, 76%);
    margin-top: 0;
  }

  .feature-box {
    padding: 22px;
    border-radius: 32px;
  }

  .feature-image img {
    aspect-ratio: 1.2 / 1;
  }

  .feature-image::after {
    opacity: 0.34;
  }
}

@media (max-width: 620px) {
  .header-inner,
  .hero-grid,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 26px), var(--max));
  }

  .logo-wrap {
    width: 160px;
    min-width: 152px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .action-row .btn {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .salon-flow {
    padding: 42px 0 62px;
  }

  .salon-news-strip .notice-content {
    padding: 12px 0 8px;
  }

  .salon-news-strip .notice-meta {
    align-items: flex-start;
  }

  .salon-news-strip .notice-meta::before {
    width: 44px;
    margin-top: 7px;
  }

  .notice-eyebrow {
    font-size: 11px;
    line-height: 1.35;
  }

  .salon-news-strip p:not(.kicker) {
    font-size: 15.5px;
  }

  .moment-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .moment-services span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .moment-journey {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .moment-step,
  .moment-step-one,
  .moment-step-two,
  .moment-step-three {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    justify-self: stretch;
    margin-top: 0;
  }

  .moment-step {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .iframe-card,
  .contact-card {
    padding: 22px;
  }

  .gallery-item img {
    height: 250px;
  }

  .gallery-instagram {
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
    text-align: center;
  }

  .gallery-instagram-link {
    width: 100%;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox-frame {
    width: 100%;
    height: min(82vh, 760px);
    border-radius: 22px;
  }

  .gallery-lightbox-nav {
    width: 44px;
    height: 58px;
    border-radius: 16px;
    font-size: 34px;
  }

  .gallery-lightbox-prev {
    left: 10px;
  }

  .gallery-lightbox-next {
    right: 10px;
  }

  .gallery-lightbox-img {
    max-width: 92vw;
    max-height: 77vh;
    border-radius: 12px;
  }

  .contact-line {
    display: grid;
    gap: 7px;
  }

  .contact-line a,
  .contact-line strong {
    text-align: left;
  }

  .contact-route {
    width: fit-content;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 16px 18px;
  }

  .hours-row strong {
    text-align: left;
  }
}


@media (prefers-reduced-motion: reduce) {
  .feature-text .btn-secondary::before {
    display: none;
  }

  .feature-text .btn-secondary:hover,
  .feature-text .btn-secondary:focus-visible {
    transform: none;
  }
}


@media (prefers-reduced-motion: reduce) {
  .gallery-item img,
  .gallery-item::after,
  .gallery-instagram-link,
  .gallery-instagram-link::before,
  .gallery-lightbox {
    transition: none !important;
  }
}

@media (max-width: 620px) {
  .scroll-top {
    width: 44px;
    height: 44px;
    right: 14px;
    bottom: 14px;
    border-radius: 15px;
  }

  .scroll-top span {
    font-size: 21px;
  }
}


/* Preisseite */
.nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.prices-page {
  --price-text-size: clamp(16.5px, 1.08vw, 18px);
  --price-small-text-size: clamp(15.5px, 0.98vw, 16.5px);
  --price-fine-text-size: clamp(13px, 0.86vw, 14px);
  --price-text-line: 1.68;
  --price-row-line: 1.48;
  position: relative;
  padding: 76px 0 98px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 88% 8%, rgba(179, 23, 156, 0.090), transparent 72%),
    radial-gradient(ellipse 760px 460px at 5% 0%, rgba(255, 255, 255, 0.72), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.60), rgba(253, 245, 252, 0.74));
}

.prices-page::before {
  content: "";
  position: absolute;
  inset: 190px 0 auto auto;
  width: 44vw;
  min-width: 430px;
  height: 780px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(179, 23, 156, 0.075), rgba(179, 23, 156, 0.022) 48%, transparent 74%);
  filter: blur(34px);
  opacity: 0.78;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 23%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 23%, #000 72%, transparent 100%);
}

.prices-page-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.prices-intro {
  max-width: 840px;
  margin-bottom: 30px;
}

.prices-intro h1 {
  margin-bottom: 16px;
}

.prices-intro p:not(.kicker) {
  max-width: 680px;
  color: var(--muted);
  font-size: var(--price-text-size);
  line-height: var(--price-text-line);
}

.price-category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 26px;
}

.price-category-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 18px;
  border-radius: 999px;
  color: #2b1430;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(137, 27, 125, 0.16);
  box-shadow: 0 12px 26px rgba(38, 8, 43, 0.055);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.price-category-strip a:hover,
.price-category-strip a:focus-visible {
  outline: none;
  color: #fff;
  background: linear-gradient(135deg, rgba(50, 13, 57, 0.96), rgba(137, 18, 121, 0.94));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 34px rgba(104, 14, 95, 0.18);
  transform: translateY(-2px);
}

.price-book {
  display: block;
}

.price-book-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-menu-panel {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: clamp(22px, 2.6vw, 32px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 254, 0.70));
  border: 1px solid rgba(137, 27, 125, 0.13);
  box-shadow:
    0 22px 62px rgba(37, 9, 41, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  isolation: isolate;
}

.price-menu-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 28px;
  width: min(280px, 48%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(179, 23, 156, 0.86), rgba(234, 142, 222, 0.46), transparent);
  box-shadow: 0 0 18px rgba(216, 84, 198, 0.13);
}

.price-menu-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 520px 240px at 100% 0%, rgba(179, 23, 156, 0.050), transparent 72%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.54) 28%, transparent 55%);
}

.price-menu-panel-wide,
.price-book-duo,
.prices-cta {
  grid-column: 1 / -1;
}

.price-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.price-panel-head-wide {
  align-items: end;
}

.price-panel-head h2,
.prices-cta h2 {
  margin-bottom: 0;
  color: #211025;
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.13;
  letter-spacing: -0.04em;
}

.price-panel-head-wide p:not(.price-section-kicker) {
  max-width: 390px;
  margin-bottom: 3px;
  color: rgba(47, 26, 50, 0.62);
  font-size: var(--price-small-text-size);
  line-height: var(--price-row-line);
  text-align: right;
}

.price-section-kicker,
.prices-cta-kicker {
  display: block;
  margin-bottom: 9px;
  color: #a20f91;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.15em;
  line-height: 1.25;
  text-transform: uppercase;
}

.price-panel-tag {
  flex: 0 0 auto;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(144, 18, 125, 0.76);
  background: rgba(144, 18, 125, 0.045);
  border: 1px solid rgba(137, 27, 125, 0.11);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-menu-list {
  display: grid;
  gap: 0;
}

.price-menu-list-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.price-menu-column {
  display: grid;
  gap: 0;
}

.price-menu-row {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(26px, 1fr) auto;
  gap: 10px;
  align-items: end;
  min-height: 48px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(137, 27, 125, 0.10);
}

.price-menu-row:last-child {
  border-bottom: 0;
}

.price-menu-row span {
  color: rgba(34, 16, 37, 0.84);
  font-size: var(--price-small-text-size);
  font-weight: 820;
  line-height: var(--price-row-line);
}

.price-menu-row em {
  display: block;
  margin-top: 4px;
  color: rgba(47, 26, 50, 0.54);
  font-size: var(--price-fine-text-size);
  font-style: normal;
  font-weight: 720;
}

.price-menu-row i {
  height: 1px;
  margin-bottom: 5px;
  background-image: linear-gradient(90deg, rgba(137, 27, 125, 0.20) 0 36%, transparent 36% 100%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
}

.price-menu-row strong {
  color: #211025;
  font-size: var(--price-small-text-size);
  font-weight: 950;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
}


.price-color-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-color-group {
  min-width: 0;
  padding: 18px 18px 8px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.56), rgba(255, 250, 254, 0.44));
  border: 1px solid rgba(137, 27, 125, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.price-color-group h3 {
  margin: 0 0 8px;
  color: #211025;
  font-size: var(--price-small-text-size);
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.price-color-group .price-menu-row {
  min-height: 48px;
}

.price-book-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-menu-panel-small .price-menu-row {
  min-height: 54px;
}

.prices-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 28px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(179, 23, 156, 0.19), transparent 28rem),
    linear-gradient(135deg, rgba(15, 5, 18, 0.99), rgba(49, 12, 55, 0.98));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 78px rgba(38, 8, 43, 0.20);
  isolation: isolate;
}

.prices-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 28px;
  width: min(300px, 42%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(179, 23, 156, 0.86), rgba(234, 142, 222, 0.50), transparent);
}

.prices-cta h2 {
  color: #fff;
  margin-bottom: 8px;
  font-size: clamp(25px, 2.1vw, 34px);
}

.prices-cta p:not(.prices-cta-kicker) {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--price-small-text-size);
  line-height: 1.55;
}

.prices-cta .prices-cta-kicker {
  color: #f4a5e9;
}

.prices-cta .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
}


@media (max-width: 1060px) {
  .price-book-content,
  .price-book-duo,
  .price-menu-list-two,
  .price-color-groups,
  .prices-cta {
    grid-template-columns: 1fr;
  }

  .price-panel-head-wide {
    align-items: flex-start;
  }

  .price-panel-head-wide p:not(.price-section-kicker) {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .prices-page {
    padding: 54px 0 72px;
  }

  .prices-page-inner {
    width: min(calc(100% - 26px), var(--max));
  }

  .prices-hero-banner {
    height: clamp(160px, 42vw, 205px);
    margin: 0 0 22px;
    border-radius: 24px;
  }

  .prices-hero-banner::after {
    left: 22px;
    width: 56%;
  }

  .prices-hero-banner img {
    object-position: center 54%;
  }

  .price-category-strip {
    gap: 8px;
    margin-bottom: 20px;
  }

  .price-category-strip a {
    min-height: 36px;
    padding: 8px 13px;
    font-size: 12.5px;
  }

  .price-menu-panel,
  .prices-cta {
    border-radius: 24px;
  }

  .price-menu-panel {
    padding: 22px;
  }

  .price-menu-panel::before,
  .prices-cta::before {
    left: 22px;
    width: 56%;
  }

  .price-panel-head {
    display: grid;
    gap: 10px;
  }

  .price-panel-tag {
    width: max-content;
    margin-top: 0;
  }

  .price-menu-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: start;
    min-height: auto;
    padding: 14px 0;
  }

  .price-menu-row i {
    display: none;
  }

  .price-menu-row strong {
    padding-left: 8px;
  }


  .price-color-groups {
    gap: 12px;
  }

  .price-color-group {
    padding: 16px 16px 6px;
    border-radius: 20px;
  }

  .prices-cta {
    padding: 22px;
  }
}



/* Nagelstudio Unterseite */
.nails-page {
  --nails-text-size: clamp(16.5px, 1.08vw, 18px);
  --nails-small-text-size: clamp(15.5px, 0.98vw, 16.5px);
  --nails-text-line: 1.68;
  --nails-card-line: 1.64;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 1000px 560px at 92% 7%, rgba(179, 23, 156, 0.095), transparent 72%),
    radial-gradient(ellipse 860px 520px at 8% 18%, rgba(255, 255, 255, 0.74), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(253, 245, 252, 0.72));
}

.nails-hero-copy .hero-lead,
.nails-page .section-head > p:not(.kicker),
.nails-price-intro p:not(.kicker),
.nails-cta p {
  font-size: var(--nails-text-size);
  line-height: var(--nails-text-line);
}

.nails-hero-section {
  position: relative;
  padding: 78px 0 72px;
}

.nails-hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.86fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.nails-hero-copy h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4.25vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.nails-hero-copy .hero-lead {
  max-width: 680px;
}

.nails-hero-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.46), transparent 34%),
    linear-gradient(135deg, rgba(40, 10, 46, 0.98), rgba(137, 18, 121, 0.90));
  border: 1px solid rgba(144, 18, 125, 0.16);
  box-shadow:
    0 30px 82px rgba(72, 10, 80, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  isolation: isolate;
}

.nails-hero-image::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.28) 42%, transparent 64%),
    radial-gradient(ellipse at 50% 100%, rgba(22, 8, 24, 0.34), transparent 54%);
  opacity: 0.28;
  mix-blend-mode: screen;
}

.nails-hero-image img {
  width: 100%;
  height: clamp(390px, 48vw, 570px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.018);
  filter: saturate(1.04) contrast(1.02);
}

.nails-hero-glow {
  position: absolute;
  z-index: 1;
  inset: auto -22% -20% 24%;
  height: 42%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(179, 23, 156, 0.34), rgba(179, 23, 156, 0.10) 42%, transparent 72%);
  filter: blur(26px);
}

.nails-quote-section {
  padding: 18px 0 18px;
}

.nails-quote-panel {
  position: relative;
  overflow: hidden;
  width: min(940px, 100%);
  margin: 0 auto;
  padding: 28px 34px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 246, 253, 0.58)),
    radial-gradient(circle at 88% 12%, rgba(179, 23, 156, 0.15), transparent 36%);
  border: 1px solid rgba(144, 18, 125, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 64px rgba(77, 7, 68, 0.09);
  text-align: center;
}

.nails-quote-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 34px;
  width: 130px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(179, 23, 156, 0.88), rgba(255, 207, 247, 0.52), transparent);
}

.nails-quote-panel > span {
  position: absolute;
  top: 12px;
  left: 28px;
  color: rgba(179, 23, 156, 0.18);
  font-size: 68px;
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.nails-quote-panel p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.13;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.nails-quote-panel p + p {
  margin-top: 5px;
}

.nails-quote-panel .nails-quote-final {
  margin-top: 16px;
}

.nails-quote-panel strong {
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.nails-moment {
  padding-top: 42px;
}

.nails-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nails-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 254, 0.70));
  border: 1px solid rgba(137, 27, 125, 0.13);
  box-shadow:
    0 22px 62px rgba(37, 9, 41, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.nails-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: min(220px, 48%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(179, 23, 156, 0.88), rgba(234, 142, 222, 0.48), transparent);
}

.nails-feature-card span {
  display: block;
  margin-bottom: 18px;
  color: #a20f91;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nails-feature-card h3 {
  margin-bottom: 14px;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.nails-feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--nails-small-text-size);
  line-height: var(--nails-card-line);
}

.nails-prices-section {
  padding-top: 42px;
}

.nails-price-board {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(28px, 4vw, 46px);
  color: #fff;
  background:
    radial-gradient(ellipse 680px 360px at 86% 6%, rgba(179, 23, 156, 0.22), transparent 70%),
    radial-gradient(ellipse 520px 300px at 4% 100%, rgba(255, 255, 255, 0.055), transparent 72%),
    linear-gradient(135deg, rgba(19, 6, 24, 0.98), rgba(54, 18, 61, 0.965) 58%, rgba(102, 20, 93, 0.93));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 30px 78px rgba(38, 8, 43, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  isolation: isolate;
}

.nails-price-board::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 36px;
  width: min(260px, 36%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(202, 43, 184, 0.92), rgba(239, 166, 230, 0.54), transparent);
}

.nails-price-board::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.055) 42%, transparent 70%);
  opacity: 0.72;
}

.nails-price-intro {
  display: block;
  max-width: 760px;
  margin-bottom: 28px;
}

.nails-price-intro .kicker {
  color: #f3a5e8;
}

.nails-price-intro h2 {
  max-width: 620px;
  margin: 8px 0 14px;
  color: #fff;
  font-size: clamp(30px, 3.25vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.nails-price-intro p:not(.kicker) {
  max-width: 620px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.nails-price-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nails-price-group {
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.135);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.nails-price-group h3 {
  margin-bottom: 15px;
  color: #fff;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.042em;
}

.nails-price-list {
  display: grid;
  gap: 0;
}

.nails-price-row {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(34px, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.105);
}

.nails-price-row:last-child {
  border-bottom: 0;
}

.nails-price-row span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 820;
  line-height: 1.35;
}

.nails-price-row i {
  height: 1px;
  margin-bottom: 5px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 36%, transparent 36% 100%);
  background-size: 10px 1px;
  background-repeat: repeat-x;
}

.nails-price-row strong {
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
  white-space: nowrap;
}

.nails-price-note {
  margin-top: 16px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.nails-price-note strong {
  font-size: 17px;
}

.nails-price-note span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.nails-gallery-grid .gallery-item img {
  height: 286px;
}

.nails-cta-section {
  padding: 12px 0 92px;
}

.nails-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(179, 23, 156, 0.20), transparent 26rem),
    linear-gradient(135deg, rgba(15, 5, 18, 0.99), rgba(49, 12, 55, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 26px 72px rgba(38, 8, 43, 0.20);
}

.nails-cta .kicker {
  color: #f4a5e9;
}

.nails-cta h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(27px, 2.4vw, 38px);
}

.nails-cta p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
  .nails-hero-inner,
  .nails-price-intro,
  .nails-feature-grid,
  .nails-price-groups,
  .nails-cta {
    grid-template-columns: 1fr;
  }

  .nails-hero-image img {
    height: min(64vw, 540px);
  }

  .nails-cta {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .nails-hero-section {
    padding: 54px 0 50px;
  }

  .nails-hero-inner {
    width: min(calc(100% - 26px), var(--max));
  }

  .nails-quote-section {
    padding: 12px 0 10px;
  }

  .nails-quote-panel {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .nails-quote-panel p {
    font-size: clamp(23px, 8vw, 34px);
  }

  .nails-hero-copy h1 {
    font-size: clamp(26px, 7.5vw, 38px);
  }

  .nails-hero-image,
  .nails-price-board,
  .nails-cta {
    border-radius: 26px;
  }

  .nails-hero-image img {
    height: 390px;
  }

  .nails-feature-card,
  .nails-price-group {
    padding: 22px;
    border-radius: 24px;
  }

  .nails-price-board {
    padding: 24px;
  }

  .nails-price-row {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .nails-price-row i {
    display: none;
  }

  .nails-price-row strong {
    padding-left: 8px;
  }

  .nails-price-note {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 22px;
  }

  .nails-gallery-grid .gallery-item img {
    height: 248px;
  }
}


/* Legal pages */
.legal-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(180, 20, 150, 0.11), transparent 34%),
    radial-gradient(circle at 12% 35%, rgba(180, 20, 150, 0.075), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(253, 246, 253, 0.98));
}

.legal-hero {
  padding: clamp(76px, 9vw, 140px) 24px 34px;
}

.legal-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.legal-hero h1 {
  margin: 8px 0 14px;
  max-width: 850px;
  color: var(--ink);
  font-size: clamp(36px, 4.25vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.legal-hero p:not(.kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.68;
}

.legal-section {
  padding: 22px 24px clamp(86px, 9vw, 140px);
}

.legal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.legal-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.legal-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

.legal-two-column-wide {
  gap: clamp(30px, 5vw, 86px);
}

.legal-subsection > :last-child {
  margin-bottom: 0;
}

.legal-contact-lines a,
.legal-contact-lines .email-safe {
  color: rgba(40, 23, 45, 0.76);
  font-weight: 500;
}

.legal-card {
  position: relative;
  padding: clamp(28px, 3.4vw, 50px);
  border: 1px solid rgba(155, 20, 135, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,247,254,0.78));
  box-shadow: 0 32px 90px rgba(70, 13, 60, 0.09);
  overflow: hidden;
}

.legal-card::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 86px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255,255,255,0));
}

.legal-card-wide {
  grid-column: 1 / -1;
}

.legal-card h2,
.legal-card h3 {
  color: var(--ink);
  letter-spacing: -0.04em;
}

.legal-card h2 {
  margin: 28px 0 12px;
  font-size: clamp(21px, 1.65vw, 24px);
  line-height: 1.22;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 22px 0 10px;
  font-size: clamp(18px, 1.15vw, 19px);
  line-height: 1.3;
}

.legal-card p,
.legal-card li {
  color: rgba(40, 23, 45, 0.72);
  font-size: clamp(16.5px, 1.08vw, 18px);
  line-height: 1.68;
}

.legal-card p {
  margin: 0 0 18px;
}

.legal-card ul {
  margin: 0 0 24px;
  padding-left: 1.25em;
}

.legal-card a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.legal-card a:hover,
.legal-card a:focus-visible {
  text-decoration: underline;
}

.email-safe {
  display: inline-block;
  color: rgba(40, 23, 45, 0.76);
  font-weight: 500;
  word-break: break-word;
}

.legal-text {
  max-width: none;
  margin: 0;
}

@media (max-width: 860px) {
  .legal-inner {
    width: min(100%, calc(100% - 32px));
  }

  .legal-grid,
  .legal-two-column {
    grid-template-columns: 1fr;
  }

  .legal-stack {
    gap: 20px;
  }

  .legal-hero {
    padding-top: 56px;
  }

  .legal-hero h1 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .legal-card {
    border-radius: 24px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 16px;
  }

  .legal-card h2 {
    font-size: 22px;
  }

  .legal-card h3 {
    font-size: 18px;
  }
}
