* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

:root {
  --line-soft: rgba(255,255,255,.08);
  --muted: rgba(255,255,255,.66);
}

.slide {
  min-height: 100vh;
  position: relative;
  background: #000;
  border-bottom: 1px solid var(--line-soft);
}

.section-inner {
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 120px 6vw;
}

.eyebrow {
  color: rgba(255,255,255,.42);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  margin-bottom: 20px;
}

h1,
h2,
h3 {
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.1;
  margin-bottom: 34px;
}

p {
  color: var(--muted);
  font-size: 17px;
}

.premium-text {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(255,255,255,.76);
  font-size: clamp(18px, 2vw, 24px);
  text-align: center;
  line-height: 1.75;
}

.small-text {
  font-size: 16px;
  margin-top: 26px;
  color: rgba(255,255,255,.58);
}

/* BUTTON */

.glass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 13px;
  cursor: pointer;
  transition: .35s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 20px 70px rgba(255,255,255,.06);
}

.glass-btn:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.16);
  box-shadow: 0 24px 80px rgba(255,255,255,.12);
}

/* LOGO + NAVIGATION */

.intro-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 6vw;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.12), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(255,255,255,.06), transparent 34%),
    #000;
}

.intro-inner {
  width: min(980px, 100%);
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

/* LOGO FLASH + FLOAT */

.floating-logo {
  width: clamp(170px, 21vw, 280px);
  height: auto;
  border-radius: 50%;
  opacity: 0;
  transform-origin: center;

  animation:
    logoFlashReveal 1.2s ease-out forwards,
    logoFloat 6s ease-in-out 1.2s infinite;

  filter:
    drop-shadow(0 0 36px rgba(255,255,255,.22))
    drop-shadow(0 28px 80px rgba(255,255,255,.10));
}

@keyframes logoFlashReveal {
  0% {
    opacity: 0;
    transform: scale(.85);
    filter:
      brightness(0)
      blur(12px)
      drop-shadow(0 0 0 rgba(255,255,255,0));
  }

  20% {
    opacity: 1;
    transform: scale(1.12);
    filter:
      brightness(3)
      blur(2px)
      drop-shadow(0 0 80px rgba(255,255,255,.95));
  }

  50% {
    transform: scale(.98);
    filter:
      brightness(1.4)
      blur(0)
      drop-shadow(0 0 45px rgba(255,255,255,.55));
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter:
      brightness(1)
      drop-shadow(0 0 36px rgba(255,255,255,.22))
      drop-shadow(0 28px 80px rgba(255,255,255,.10));
  }
}

@keyframes logoFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

.brand-title {
  font-size: clamp(34px, 6vw, 76px);
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255,255,255,.9);
  text-shadow: 0 0 22px rgba(255,255,255,.12);
}

.main-navigation {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 40px 130px rgba(0,0,0,.55);
}

.nav-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-navigation a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  transition: .25s ease;
}

.main-navigation a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  transform: translateY(-2px);
}

/* HERO ANA */

.hero-ana {
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-ana img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

/* COMMON */

.content-slide {
  text-align: center;
}

.luxury-divider {
  width: min(460px, 68vw);
  height: 1px;
  margin: 38px auto 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
}

/* SLIDERS */

.slider-wrap {
  position: relative;
  margin-top: 60px;
}

.slider,
.review-slider {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 6px 28px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.25) transparent;
}

.slider::-webkit-scrollbar,
.review-slider::-webkit-scrollbar {
  height: 7px;
}

.slider::-webkit-scrollbar-track,
.review-slider::-webkit-scrollbar-track {
  background: transparent;
}

.slider::-webkit-scrollbar-thumb,
.review-slider::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.24);
  border-radius: 999px;
}

.slider img {
  flex: 0 0 min(82vw, 520px);
  height: 640px;
  object-fit: cover;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.13);
  background: #050505;
  scroll-snap-align: center;
  box-shadow: 0 36px 120px rgba(255,255,255,.06);
}

.slider-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
  font-size: 22px;
  transition: .25s ease;
}

.slider-btn:hover {
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
}

/* HYGIENE */

.hygiene-slide {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 100vh;
  overflow: hidden;
}

.hygiene-image {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hygiene-image img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center;
  filter: saturate(.85) contrast(1.04);
}

.hygiene-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 44%;
  height: 100%;
  background:
    radial-gradient(circle at 0 50%, rgba(0,0,0,.12), rgba(0,0,0,.98) 63%, #000 100%),
    linear-gradient(90deg, transparent, #000 72%);
  pointer-events: none;
}

.hygiene-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 7vw 110px 4vw;
  background: #000;
}

.hygiene-text p {
  max-width: 660px;
  font-size: clamp(17px, 1.45vw, 22px);
  color: rgba(255,255,255,.74);
  margin-bottom: 26px;
}

.hygiene-points {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.hygiene-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.hygiene-icon,
.hygiene-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.24);
  color: rgba(255,255,255,.9);
  font-size: 14px;
  letter-spacing: .08em;
}

.hygiene-point strong {
  display: block;
  color: rgba(255,255,255,.92);
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 4px;
}

.hygiene-point span {
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.6;
}

/* MATERIALIEN — WITHOUT GLASS */

.materialien-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 6vw;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), transparent 33%),
    #000;
}

.materialien-stage {
  width: min(1180px, 100%);
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  background: transparent;
  overflow: visible;
  box-shadow: none;
}

.materialien-stage::before {
  display: none;
  content: none;
}

.materialien-quote-box {
  width: min(780px, 88%);
  position: relative;
  z-index: 5;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: center;
  box-shadow: none;
}

.materialien-quote-box blockquote {
  color: rgba(255,255,255,.94);
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.22;
  font-weight: 300;
  letter-spacing: .035em;
  text-shadow: 0 0 34px rgba(255,255,255,.16);
}

.materialien-quote-box p {
  margin-top: 30px;
  color: rgba(255,255,255,.62);
  font-size: clamp(15px, 1.4vw, 18px);
}

.mat-img {
  position: absolute;
  z-index: 3;
  object-fit: contain;
  filter:
    drop-shadow(0 24px 70px rgba(255,255,255,.09))
    drop-shadow(0 0 18px rgba(255,255,255,.08));
  user-select: none;
  pointer-events: none;
}

.mat-stalex {
  top: 60px;
  left: 80px;
  width: clamp(140px, 16vw, 230px);
}

.mat-spange {
  top: 60px;
  right: 80px;
  width: clamp(150px, 17vw, 250px);
}

.mat-essie {
  bottom: 70px;
  left: 96px;
  width: clamp(130px, 15vw, 210px);
}

.mat-neo {
  bottom: 60px;
  right: 80px;
  width: clamp(150px, 18vw, 250px);
}

/* MEINE ARBEIT */

.arbeit-slide .slider img {
  height: 620px;
}

/* REZENSIONEN */

.reviews-slide {
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.08), transparent 35%),
    #000;
}

.review-slider article {
  flex: 0 0 min(86vw, 760px);
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  scroll-snap-align: center;
  padding: 54px 52px;
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 32px 120px rgba(255,255,255,.05);
}

.review-slider span {
  display: block;
  color: rgba(255,255,255,.95);
  letter-spacing: .18em;
  margin-bottom: 26px;
  font-size: 18px;
}

.review-slider p {
  max-width: 620px;
  text-align: center;
  color: rgba(255,255,255,.76);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.65;
}

/* PREISE */

.image-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 6vw;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), transparent 42%),
    #000;
}

.image-slide img {
  width: min(820px, 100%);
  max-height: calc(100vh - 140px);
  object-fit: contain;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 50px 150px rgba(255,255,255,.08);
}

/* GUTSCHEIN */

.gutschein-slide {
  background:
    radial-gradient(circle at 50% 25%, rgba(255,255,255,.08), transparent 30%),
    #000;
}

.gutschein-img {
  width: min(1060px, 100%);
  margin: 56px auto 0;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 40px 140px rgba(255,255,255,.08);
}

/* ACUITY */

.acuity-slide {
  text-align: center;
}

.acuity-box {
  margin: 54px auto 0;
  width: min(1180px, 100%);
  padding: 18px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 42px 140px rgba(255,255,255,.07);
}

.acuity-box iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  border: 0;
  border-radius: 28px;
  background: #fff;
}

/* KONTAKT */

.contact-slide {
  min-height: auto;
}

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

.contact-card {
  padding: 52px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 34px 120px rgba(255,255,255,.045);
}

.contact-card p {
  font-size: clamp(17px, 1.45vw, 22px);
  color: rgba(255,255,255,.72);
  margin-bottom: 22px;
}

.contact-card a {
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: .25s ease;
}

.contact-card a:hover {
  border-bottom-color: rgba(255,255,255,.72);
}

/* FOOTER */

footer {
  padding: 42px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.52);
  background: #000;
  border-top: 1px solid rgba(255,255,255,.08);
}

footer div {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

footer a,
footer button {
  color: rgba(255,255,255,.72);
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  transition: .25s ease;
}

footer a:hover,
footer button:hover {
  color: #fff;
}

/* COOKIE */

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0,0,0,.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cookie-banner.active {
  display: flex;
}

.cookie-box {
  width: min(640px, 100%);
  padding: 40px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(22,22,22,.96), rgba(5,5,5,.96));
  border: 1px solid rgba(255,255,255,.17);
  box-shadow: 0 44px 160px rgba(0,0,0,.78);
}

.cookie-box h2 {
  font-size: 30px;
  margin-bottom: 22px;
}

.cookie-box p {
  color: rgba(255,255,255,.68);
  margin-bottom: 22px;
}

.cookie-box label {
  display: block;
  color: rgba(255,255,255,.8);
  margin-top: 16px;
  cursor: pointer;
}

.cookie-box input {
  margin-right: 10px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cookie-actions button {
  padding: 13px 21px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: #fff;
  cursor: pointer;
  transition: .25s ease;
}

.cookie-actions button:hover {
  background: rgba(255,255,255,.14);
}

/* LEGAL PAGES */

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 120px 24px;
}

.legal-page h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.legal-page h2 {
  font-size: 24px;
  margin-top: 46px;
  margin-bottom: 16px;
}

.legal-page p {
  color: rgba(255,255,255,.72);
  margin-bottom: 20px;
}

.legal-page a {
  border-bottom: 1px solid rgba(255,255,255,.22);
}

/* MOBILE */

@media (max-width: 1050px) {
  .section-inner {
    padding: 90px 24px;
  }

  .hygiene-slide {
    grid-template-columns: 1fr;
  }

  .hygiene-image {
    min-height: 58vh;
  }

  .hygiene-image img {
    min-height: 58vh;
  }

  .hygiene-image::after {
    right: 0;
    bottom: -1px;
    top: auto;
    width: 100%;
    height: 38%;
    background: linear-gradient(180deg, transparent, #000 76%);
  }

  .hygiene-text {
    padding: 70px 24px 90px;
  }

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

  .materialien-stage {
    min-height: 760px;
  }

  .mat-stalex {
    top: 54px;
    left: 34px;
  }

  .mat-spange {
    top: 54px;
    right: 34px;
  }

  .mat-essie {
    bottom: 54px;
    left: 34px;
  }

  .mat-neo {
    bottom: 48px;
    right: 30px;
  }
}

@media (max-width: 720px) {
  .intro-slide {
    padding: 42px 18px;
  }

  .intro-inner {
    min-height: calc(100vh - 84px);
    gap: 30px;
  }

  .brand-title {
    font-size: 32px;
    letter-spacing: .16em;
  }

  .main-navigation {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 26px;
  }

  .main-navigation a {
    min-height: 42px;
    font-size: 11px;
  }

  .glass-btn {
    padding: 15px 28px;
    font-size: 12px;
  }

  .slider img {
    flex-basis: 84vw;
    height: 520px;
    border-radius: 28px;
  }

  .arbeit-slide .slider img {
    height: 520px;
  }

  .materialien-slide {
    padding: 70px 18px;
  }

  .materialien-stage {
    min-height: 760px;
  }

  .materialien-quote-box {
    width: 88%;
  }

  .materialien-quote-box blockquote {
    font-size: 30px;
  }

  .mat-stalex {
    top: 34px;
    left: 16px;
    width: 118px;
  }

  .mat-spange {
    top: 34px;
    right: 14px;
    width: 132px;
  }

  .mat-essie {
    bottom: 36px;
    left: 16px;
    width: 112px;
  }

  .mat-neo {
    bottom: 30px;
    right: 12px;
    width: 124px;
  }

  .review-slider article {
    padding: 38px 24px;
    min-height: 360px;
  }

  .contact-card {
    padding: 34px 24px;
    border-radius: 30px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  footer div {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 430px) {
  .floating-logo {
    width: 170px;
  }

  .materialien-stage {
    min-height: 720px;
  }

  .materialien-quote-box blockquote {
    font-size: 24px;
  }

  .mat-stalex {
    width: 94px;
  }

  .mat-spange {
    width: 110px;
  }

  .mat-essie {
    width: 96px;
  }

  .mat-neo {
    width: 112px;
  }
}