/* ============================================================
   CUSTOM FONTS
============================================================ */
@font-face {
  font-family: 'Ethic Serif Light';
  src: url('../fonts/ethicserif-light.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ethic Serif Light';
  src: url('../fonts/ethicserif-lightitalic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Fabio Handwriting';
  src: url('../fonts/fabiohandwriting.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Font';
  src: url('../fonts/font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Font 2';
  src: url('../fonts/font-2.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Font Extra';
  src: url('../fonts/qFdH35WCmI96Ajtm81GlU9vgwBcI.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   CSS VARIABLEN
============================================================ */
:root {
  --color-dark:    rgba(7, 7, 7, 1);
  --color-light:   rgba(247, 247, 245, 1);
  --color-white:   rgba(255, 255, 255, 1);
  --color-accent:  rgba(246, 215, 189, 1);
  --color-teal:    rgba(102, 135, 128, 1);

  --font-title:    'Ethic Serif Light', serif;
  --font-body:     'Crimson Pro', Georgia, serif;
  --font-ui:       'Overpass', sans-serif;
  --font-deco:     'Fabio Handwriting', cursive;

  --size-sub-d:    15px;
  --size-sub-m:    12px;
  --size-body-d:   20px;
  --size-body-m:   15px;

  --max-width:     1200px;
  --section-pad:   80px;
  --section-pad-m: 56px;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--color-light);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: var(--size-body-d);
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
}
main { display: block; margin: 0; padding: 0; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   TYPOGRAFIE
============================================================ */
.subheading {
  font-family: var(--font-ui);
  font-size: var(--size-sub-d);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 400;
  line-height: 1.1;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.container--narrow { max-width: 760px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 30px;
  transition: all 0.3s ease;
  border: 1.5px solid currentColor;
}
.btn--outline { color: var(--color-dark); border-color: var(--color-dark); }
.btn--outline:hover { background: var(--color-dark); color: var(--color-light); }
.btn--accent { color: var(--color-accent); border-color: var(--color-accent); }
.btn--accent:hover { background: var(--color-accent); color: var(--color-dark); }
.btn--light { color: var(--color-white); border-color: var(--color-white); }
.btn--light:hover { background: var(--color-white); color: var(--color-dark); }
.btn--dark { background: var(--color-dark); color: var(--color-white); border-color: var(--color-dark); }
.btn--dark:hover { background: transparent; color: var(--color-dark); }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FULLSCREEN MENU OVERLAY
============================================================ */
/* ============================================================
   FULLSCREEN MENU OVERLAY — Palmina Style
============================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}
.menu-overlay.open { transform: translateY(0); }

.menu-close {
  position: absolute;
  top: 28px;
  right: 40px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 28px;
  cursor: pointer;
  z-index: 101;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.menu-close:hover { opacity: 1; }

.menu-overlay__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 48px; }
.menu-overlay__list { display: flex; flex-direction: column; gap: 16px; list-style: none; margin: 0; padding: 0; }
.menu-link {
  font-family: var(--font-title);
  font-size: clamp(28px, 5vw, 52px);
  color: var(--color-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}
.menu-link:hover { color: var(--color-accent); }
.menu-overlay__cta {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-white);
  padding: 14px 36px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  border-radius: 2px;
}
.menu-overlay__cta:hover { background: var(--color-accent); color: var(--color-dark); }

/* ============================================================
   HEADER — nur MENU-Button oben rechts
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 28px 40px;
  transition: padding 0.3s ease;
}
.site-header.scrolled { padding: 18px 40px; }

.menu-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 51;
  transition: opacity 0.2s;
}
.menu-btn:hover { opacity: 0.7; }
.menu-btn.active { color: var(--color-white); }
.site-header.scrolled .menu-btn { color: var(--color-dark); }

.menu-btn__lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 36px;
}
.menu-btn__lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
}
.menu-btn.active .menu-btn__lines span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-btn.active .menu-btn__lines span:nth-child(2) { transform: rotate(-45deg) translate(6px, -6px); }

/* ============================================================
   HERO — Palmina Style
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img,
.hero__bg video {
  position: absolute;
  top: -20%; left: 0; right: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

/* Logo zentriert in der Mitte */
.hero__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
.hero__logo {
  display: block;
  width: clamp(420px, 62vw, 820px);
  max-width: 92vw;
  height: auto;
  margin: 0 auto;
}
.hero__tagline {
  font-family: var(--font-deco);
  font-size: clamp(16px, 2vw, 26px);
  font-style: italic;
  color: var(--color-white);
  margin: 0;
  letter-spacing: 0.04em;
  text-align: center;
  width: 100%;
  max-width: clamp(560px, 78vw, 980px);
  white-space: nowrap;
}

/* Text + Scroll unten */
.hero__bottom {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  text-align: center;
}
.hero__body {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.8vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin: 0 auto;
  text-align: center;
  max-width: 860px;
  width: 80vw;
  letter-spacing: 0.01em;
}

/* Animierter Scroll-Button */
.hero__scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
}
.hero__scroll-circle svg { display: block; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* Scroll-Mouse */
.hero__scroll-mouse {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 13px;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero__scroll-mouse span {
  display: block;
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  animation: mouseScroll 1.8s ease-in-out infinite;
}
@keyframes mouseScroll {
  0%   { transform: translateY(0);    opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================================
   BRAND BIO — 3-spaltig mit Foto-Collage
============================================================ */
.brand-bio {
  padding: 120px 0 100px;
  background: var(--color-white);
  overflow: hidden;
  position: relative;
}
.brand-bio__inner {
  display: grid;
  grid-template-columns: 0.9fr 2fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* ── Collage-Kolumnen ─────────────────────────────────── */
.brand-bio__collage {
  position: relative;
  height: 640px;
  /* Fade oben + unten: Fotos verschwinden hinter die angrenzenden Sektionen */
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,1) 16%,
    rgba(0,0,0,1) 84%,
    transparent 100%);
  mask-image: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,1) 16%,
    rgba(0,0,0,1) 84%,
    transparent 100%);
  will-change: transform;
}

/* Einzelne Foto-Karte */
.bio-photo {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Linke Kolonne — 3 Fotos ──────────────────────────── */
.bio-photo--1 {
  /* Dominantes Hochformat — streckt sich über die gesamte Höhe links */
  width: 88%;
  aspect-ratio: 3 / 4.2;
  top: 0;
  left: -6%;
  transform: rotate(-4deg);
  z-index: 1;
}
.bio-photo--2 {
  /* Kleiner Akzent unten rechts, überlappt photo--1 */
  width: 54%;
  aspect-ratio: 1 / 1;
  bottom: 40px;
  right: -2%;
  transform: rotate(3.5deg);
  z-index: 2;
}
.bio-photo--3 {
  /* Mittelgroßer Einschub — hinter photo--1, etwas versetzt */
  width: 50%;
  aspect-ratio: 4 / 5;
  top: 38%;
  left: 30%;
  transform: rotate(-1.8deg);
  z-index: 0;
  opacity: 0.9;
}

/* ── Rechte Kolonne — 2 Fotos ─────────────────────────── */
.bio-photo--4 {
  /* Dominantes Hochformat — gespiegelt zur linken Seite */
  width: 88%;
  aspect-ratio: 3 / 4.2;
  top: 0;
  right: -6%;
  transform: rotate(4deg);
  z-index: 1;
}
.bio-photo--5 {
  /* Kleiner Akzent unten links, überlappt photo--4 */
  width: 56%;
  aspect-ratio: 1 / 1;
  bottom: 40px;
  left: -2%;
  transform: rotate(-3deg);
  z-index: 2;
}

/* ── Text ─────────────────────────────────────────────── */
.brand-bio__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 40px 0;
  position: relative;
  z-index: 3;
}

/* Brand-Bio Welcome: Crimson italic als elegante Einleitung */
.brand-bio__welcome {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.02em;
}
.brand-bio__name {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.15;
}
.brand-bio__copy {
  font-size: 18px;
  line-height: 1.7;
  max-width: 380px;
  text-align: center;
}
.brand-bio__prose {
  font-size: 17px;
  line-height: 1.75;
  max-width: 380px;
  text-align: center;
  opacity: 0.75;
}
.brand-bio__btn {
  display: block;
  text-align: center;
  width: 100%;
  max-width: 280px;
  margin-top: 8px;
}

/* ============================================================
   PRESS
============================================================ */
.press {
  padding: 20px 0 48px;
  background: var(--color-white);
  text-align: center;
}
.press__label { margin-bottom: 28px; }
.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.press__logos img {
  height: 32px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}
.press__logos img:hover { opacity: 1; filter: none; }
.press__text-logo {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.55;
  line-height: 32px;
  transition: opacity 0.3s;
}
.press__text-logo:hover { opacity: 1; }

/* ============================================================
   MANTRA — Bild-Hintergrund + Fabio Handwriting
============================================================ */
.mantra {
  position: relative;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.mantra .container {
  display: flex;
  justify-content: center;
  width: 100%;
}
.mantra__bg {
  position: absolute;
  inset: 0;
}
.mantra__bg img,
.mantra__bg video {
  position: absolute;
  top: -20%; left: 0; right: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}
.mantra__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}
.mantra__quote {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 0 40px;
  text-align: center;
}
/* Mantra: Crimson Pro italic statt Deko-Font */
.mantra__quote p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 42px);
  color: var(--color-white);
  line-height: 1.5;
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(7,7,7,0.12);
  border-bottom: 1px solid rgba(7,7,7,0.12);
  padding: 20px 0;
  background: var(--color-light);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee__track span {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(48px, 7vw, 80px);
  letter-spacing: 0.04em;
  color: var(--color-dark);
  padding-right: 60px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   MISSION
============================================================ */
.mission {
  padding: var(--section-pad) 0;
  text-align: center;
  background: var(--color-light);
}
.mission .subheading { margin-bottom: 24px; }
/* Mission-Text: konsistente Größe */
.mission__text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.6;
}
.mission__text em {
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.services__item { display: flex; flex-direction: column; gap: 18px; }
.services__img-wrap { overflow: hidden; }
.services__img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.services__img-wrap:hover img { transform: scale(1.03); }
.services__copy { font-size: 17px; opacity: 0.8; line-height: 1.6; }

/* ============================================================
   LEAD MAGNET
============================================================ */
.lead-magnet {
  position: relative;
  padding: 100px 0 160px;
  overflow: hidden;
}
.lead-magnet__bg {
  position: absolute;
  inset: 0;
}
.lead-magnet__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.lead-magnet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.72);
}
.lead-magnet__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.lead-magnet__mockup {
  position: relative;
  height: 340px;
}
.lead-magnet__card {
  position: absolute;
  width: 55%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lead-magnet__card--back  { left: 10%; top: 0;    transform: rotate(-6deg); }
.lead-magnet__card--front { left: 30%; top: 30px; transform: rotate(4deg); }
.lead-magnet__content { display: flex; flex-direction: column; gap: 20px; }
.lead-magnet__label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.lead-magnet__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--color-white);
  line-height: 1.2;
}
.lead-magnet__copy {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
}
.lead-magnet__form { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.lead-magnet__form input {
  background: var(--color-white);
  border: none;
  padding: 14px 24px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-dark);
  border-radius: 50px;
  outline: none;
  min-width: 160px;
}
.lead-magnet__form input::placeholder { color: rgba(7,7,7,0.45); }
.lead-magnet__form button {
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.lead-magnet__form button:hover { opacity: 0.75; }

/* ============================================================
   INSTAGRAM GRID
============================================================ */
.insta-grid { display: grid; grid-template-columns: repeat(7, 1fr); margin: 0; font-size: 0; line-height: 0; }
.insta-grid__item { display: block; overflow: hidden; }
.insta-grid__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.insta-grid__item:hover img { transform: scale(1.05); }

/* Parallax: Hintergründe overflow hidden */
.hero__bg, .mantra__bg, .cta-section__bg { overflow: hidden; }

/* Tab-Panel Fade + Slide Transition */
.svc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 56px 64px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.svc-panel.active  { display: grid; }
.svc-panel.entering { opacity: 0; transform: translateX(16px); }
.svc-panel.leaving  { opacity: 0; transform: translateX(-16px); }

/* Gallery Label Slide-Up on Hover */
.gallery__label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: var(--font-deco);
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--color-white);
  z-index: 2;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery__img-wrap:hover .gallery__label {
  opacity: 1;
  transform: translateY(0);
}

/* Marquee Pause on Hover */
.marquee:hover .marquee__track { animation-play-state: paused; }

/* Button Micro-Scale on Hover */
.btn:hover           { transform: scale(1.03); }
.svc-panel__btn:hover { opacity: 0.75; transform: scale(1.03); }
.lead-magnet__form button:hover { opacity: 0.75; transform: scale(1.03); }

/* CTA Split-Word Reveal */
.cta-section__title.cta-split .cta-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.cta-section__content.visible .cta-word {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CHOOSE YOUR EXPERIENCE — Services Tabs
============================================================ */
.svc-tabs {
  padding: 100px 0 120px;
  background: var(--color-white);
}
/* Pakete-Heading: verkleinert von 80px auf 60px */
.svc-tabs__heading {
  font-family: var(--font-title);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 48px;
  color: var(--color-dark);
}
.svc-tabs__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--color-dark);
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 40px;
  overflow: hidden;
}
.svc-tab-btn {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 36px;
  border: none;
  background: transparent;
  color: var(--color-dark);
  cursor: pointer;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}
.svc-tab-btn.active {
  background: var(--color-dark);
  color: var(--color-white);
}
.svc-tabs__card {
  border: 1.5px solid rgba(7,7,7,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.svc-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 56px 64px;
}
.svc-panel.active { display: grid; }
.svc-panel__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pakete-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4.2;
}
.pakete-card {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.18);
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.55s ease;
}
.pakete-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.pakete-card--back {
  width: 70%; aspect-ratio: 3/4;
  top: 0; left: 0;
  transform: rotate(-5deg) translateY(6%);
  z-index: 1;
}
.pakete-card--front {
  width: 70%; aspect-ratio: 3/4;
  bottom: 0; right: 0;
  transform: rotate(3deg) translateY(-6%);
  z-index: 2;
}
/* Entering animation — cards fly in from the right */
.svc-panel.entering .pakete-card--back {
  transform: rotate(-5deg) translateY(6%) translateX(50px);
  opacity: 0;
}
.svc-panel.entering .pakete-card--front {
  transform: rotate(3deg) translateY(-6%) translateX(40px);
  opacity: 0;
  transition-delay: 0.07s;
}
/* Leaving animation — cards slide left */
.svc-panel.leaving .pakete-card--back,
.svc-panel.leaving .pakete-card--front {
  transform: rotate(0deg) translateX(-30px);
  opacity: 0;
  transition-duration: 0.22s;
}
.svc-panel__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-panel__title {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-dark);
}
.svc-panel__copy {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-dark);
  opacity: 0.8;
  text-align: justify;
}
.svc-panel__btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.3s;
  align-self: flex-start;
}
.svc-panel__btn:hover { opacity: 0.75; }


.testimonials {
  padding: var(--section-pad) 0;
  background: var(--color-light);
  text-align: center;
}
/* Testimonials-Heading: harmonisiert */
.testimonials__heading {
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}
.testimonials__img-wrap {
  margin: 0 auto 40px;
  max-width: 280px;
}
.testimonials__img-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.testimonials__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
/* Testimonials-Zitat: Crimson Pro statt Deko-Font */
.testimonials__quote {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.5;
  color: var(--color-dark);
}
.testimonials__attribution {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}
.testimonials__learn-more {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  display: inline-block;
  transition: opacity 0.3s;
}
.testimonials__learn-more:hover { opacity: 0.6; }

/* ============================================================
   THE BEAUTY EDIT — Download / Lead Magnet
============================================================ */
.beauty-edit {
  position: relative;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.beauty-edit__bg {
  position: absolute;
  inset: 0;
}
.beauty-edit__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.beauty-edit__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.6);
}
.beauty-edit__grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 40px;
}
.beauty-edit__card {
  grid-column: 1;
  background: var(--color-white);
  padding: 48px 56px;
  text-align: center;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.beauty-edit__the {
  font-family: var(--font-deco);
  font-size: 28px;
  line-height: 1;
  color: var(--color-dark);
}
.beauty-edit__title {
  font-family: var(--font-title);
  font-size: 36px;
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color-dark);
}
.beauty-edit__sub {
  font-family: var(--font-deco);
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: 8px;
  opacity: 0.75;
}
.beauty-edit__download {
  font-family: var(--font-deco);
  font-size: 22px;
  font-style: italic;
  color: var(--color-dark);
  opacity: 0.8;
}

/* ============================================================
   GALLERY / VIBES FOR DAYS — asymmetrisch
============================================================ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}
.gallery__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.gallery__heading {
  font-family: var(--font-title);
  font-size: clamp(32px, 4vw, 52px);
}
.gallery__heading em {
  font-style: italic;
}
.gallery__all {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.gallery__all:hover { opacity: 0.6; }
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.gallery__item--large .gallery__img-wrap img {
  aspect-ratio: 3 / 4;
}
.gallery__col-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.gallery__col-right .gallery__img-wrap img {
  aspect-ratio: 16 / 10;
}
.gallery__item {
  padding-top: 0;
}
.gallery__link {
  display: block;
  color: var(--color-dark);
}
.gallery__img-wrap {
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.gallery__label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: var(--font-deco);
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--color-white);
  z-index: 2;
  line-height: 1;
  pointer-events: none;
}
.gallery__img-wrap img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__link:hover .gallery__img-wrap img { transform: scale(1.03); }
.gallery__link .subheading {
  margin-bottom: 6px;
  opacity: 0.55;
}
.gallery__title {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.gallery__desc {
  font-size: 16px;
  opacity: 0.75;
  margin-bottom: 14px;
  line-height: 1.6;
}
.gallery__caption {
  padding-top: 16px;
}
.gallery__caption-title {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.2;
}
.gallery__caption-desc {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.6;
}
.gallery__item--large .gallery__caption-title { font-size: clamp(22px, 2.2vw, 30px); }
.gallery__item--large .gallery__caption-desc  { font-size: 15px; max-width: 360px; }

/* ============================================================
   YOUR BRILLIANT BRAND STORY
============================================================ */
.brand-story {
  background: var(--color-dark);
  overflow: hidden;
}
.brand-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
.brand-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 40px 60px;
  color: var(--color-white);
}
.brand-story__monogram-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.brand-story__monogram-wrap svg { width: 28px; height: 28px; }
.brand-story__monogram {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.brand-story__your {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.1;
  color: var(--color-white);
}
.brand-story__brilliant {
  font-family: var(--font-deco);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  color: var(--color-accent);
}
.brand-story__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--color-white);
  margin-bottom: 10px;
}
.brand-story__copy {
  font-size: 15px;
  opacity: 0.75;
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: center;
}
.brand-story__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
   THE JOURNAL
============================================================ */
.journal {
  padding: var(--section-pad) 0;
  background: var(--color-light);
}
.journal__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(7,7,7,0.12);
  padding-bottom: 16px;
}
.journal__subheader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.journal__sub-left {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 18px;
  opacity: 0.65;
}
.journal__visit {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.journal__visit:hover { opacity: 0.6; }
.journal__heading {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.04em;
}
.journal__the {
  font-family: var(--font-deco);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  margin-right: 8px;
}
.journal__all {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}
.journal__all:hover { opacity: 0.6; }
.journal__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.journal__item {
  border-top: 1px solid rgba(7,7,7,0.12);
  padding-top: 20px;
}
.journal__link {
  display: block;
  color: var(--color-dark);
}
.journal__img-wrap {
  overflow: hidden;
  margin-bottom: 16px;
}
.journal__img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.journal__link:hover .journal__img-wrap img { transform: scale(1.03); }
.journal__date {
  margin-bottom: 8px;
  opacity: 0.5;
}
.journal__title {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 14px;
}
.journal__read {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
}
.cta-section__bg img,
.cta-section__bg video {
  position: absolute;
  top: -20%; left: 0; right: 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.58);
}
.cta-section__content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
}
/* CTA-Sub: Crimson Pro italic statt Deko-Font */
.cta-section__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--color-white);
  margin-bottom: 12px;
}
/* CTA-Titel: harmonisiert */
.cta-section__title {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  line-height: 1.05;
}
.cta-section__body {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 18px;
  color: var(--color-white);
  line-height: 1.6;
}
.cta-section__learn-more {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 2px;
  display: inline-block;
  transition: opacity 0.3s;
}
.cta-section__learn-more:hover { opacity: 0.6; }

/* ============================================================
   ELSEWHERE
============================================================ */
.elsewhere {
  padding: var(--section-pad) 0;
  background: var(--color-light);
  text-align: center;
}
.elsewhere__heading {
  font-family: var(--font-title);
  font-style: italic;
  font-size: clamp(72px, 10vw, 120px);
  margin-bottom: 4px;
  line-height: 1;
}
.elsewhere__sub {
  font-family: var(--font-deco);
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 56px;
}
.elsewhere__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.elsewhere__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  color: var(--color-dark);
  transition: opacity 0.3s;
}
.elsewhere__item:nth-child(2) { margin-top: 48px; }
.elsewhere__item:nth-child(4) { margin-top: 24px; }
.elsewhere__item:hover { opacity: 0.75; }
.elsewhere__img-wrap { overflow: hidden; }
.elsewhere__img-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.elsewhere__item:hover .elsewhere__img-wrap img { transform: scale(1.04); }
.elsewhere__item .subheading { font-size: 11px; }

/* ============================================================
   FOOTER — Brand zentriert
============================================================ */
.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 72px 0 0;
  margin-top: 0;
  text-align: center;
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__logo {
  font-family: var(--font-title);
  font-size: 26px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.15;
}
.site-footer__logo-sub {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  display: block;
  opacity: 0.65;
}
.site-footer__tagline {
  font-size: 15px;
  opacity: 0.6;
  margin-bottom: 24px;
  line-height: 1.6;
}
.site-footer__social {
  display: flex;
  gap: 18px;
  justify-content: center;
}
.site-footer__social a {
  color: var(--color-white);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.site-footer__social a:hover { opacity: 1; }
.site-footer__nav .subheading { color: var(--color-white); margin-bottom: 20px; }
.site-footer__nav ul { display: flex; flex-direction: column; gap: 12px; }
.site-footer__nav a { font-size: 15px; opacity: 0.65; transition: opacity 0.3s; }
.site-footer__nav a:hover { opacity: 1; }
.site-footer__newsletter .subheading { color: var(--color-white); margin-bottom: 12px; }
.site-footer__nl-text { font-size: 15px; opacity: 0.6; margin-bottom: 18px; line-height: 1.5; }
.footer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-form input {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-form input:focus { border-color: rgba(255,255,255,0.55); }
.footer-form .btn--dark {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
  margin-top: 4px;
}
.footer-form .btn--dark:hover { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.site-footer__bottom {
  text-align: center;
  padding: 22px 0 28px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.35;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__legal {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.site-footer__legal a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-footer__legal a:hover { opacity: 1; }

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--color-dark);
  padding: 14px 0;
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px 0;
  overflow: hidden;
}
.trust-strip__item {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 16px;
  white-space: nowrap;
}
.trust-strip__divider {
  color: rgba(255,255,255,0.3);
  font-size: 16px;
}

/* ============================================================
   HERO CTAs — two buttons side by side
============================================================ */
.hero__ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__ctas .btn {
  padding: 20px 56px;
  font-size: 12px;
  letter-spacing: 0.18em;
  border-radius: 0;
  border-width: 1.5px;
}

/* ============================================================
   BRAND-BIO LIST — qualification bullets
============================================================ */
.brand-bio__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 360px;
}
.brand-bio__list li {
  font-size: 16px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
  opacity: 0.8;
}
.brand-bio__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--color-dark);
  opacity: 0.4;
}

/* ============================================================
   VALUE CARDS — 4 Gründe
============================================================ */
.value-cards {
  padding: var(--section-pad) 0;
  background: var(--color-light);
}
.value-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.value-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 28px;
  background: var(--color-white);
  border-top: 2px solid var(--color-dark);
}
.value-card__number {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0.35;
}
.value-card__title {
  font-family: var(--font-title);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.2;
}
.value-card__copy {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.75;
}

/* ============================================================
   RM-LOCATION — Editorial, Container, Bild portrait links
============================================================ */
.rm-location {
  padding: 100px 0 120px;
  background: var(--color-light);
}
.rm-location__inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.rm-location__img {
  overflow: visible;
}
.rm-location__stack {
  position: relative;
  height: 600px;
}
.rm-location__stack-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 78%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.rm-location__stack-front {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  height: 52%;
  object-fit: cover;
  display: block;
  border: 8px solid var(--color-light);
  will-change: transform;
}
.rm-location__btn {
  align-self: flex-start;
  width: auto;
}
.rm-location__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rm-location__title {
  font-family: var(--font-title);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1.2;
}
.rm-location__copy {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.8;
}
.rm-location__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rm-location__benefits li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
  opacity: 0.8;
}
.rm-location__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-size: 12px;
  top: 2px;
}

@media (max-width: 1024px) {
  .rm-location__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .rm-location { padding: 64px 0; }
}

/* ============================================================
   RM-PROCESS — 5 steps horizontal
============================================================ */
.rm-process {
  padding: var(--section-pad) 0;
  background: var(--color-dark);
  color: var(--color-white);
}
.rm-process .subheading { color: rgba(255,255,255,0.55); }
.rm-process__heading {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-white);
}
.rm-process__sub {
  font-size: 16px;
  text-align: center;
  opacity: 0.6;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.65;
}
.rm-process__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  position: relative;
}
.rm-process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 48px;
  right: 48px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.rm-process__step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.rm-process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin: 0 auto;
  background: var(--color-dark);
}
.rm-process__step-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
}
.rm-process__step-copy {
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.65;
}

/* ============================================================
   RM-FAQ — Accordion
============================================================ */
.rm-faq {
  padding: var(--section-pad) 0;
  background: var(--color-light);
}
.rm-faq__heading {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
}
.rm-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(7,7,7,0.12);
}
.faq-item:first-child {
  border-top: 1px solid rgba(7,7,7,0.12);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: opacity 0.2s;
}
.faq-question:hover { opacity: 0.7; }
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.75;
  padding: 0 40px 22px 0;
}

/* ============================================================
   RM-CONTACT — Broschüre + Formular kombiniert (dunkel)
============================================================ */
.rm-contact {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}
.rm-contact__bg {
  position: absolute;
  inset: 0;
}
.rm-contact__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.rm-contact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,7,7,0.80);
}
.rm-contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.rm-contact__left {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.rm-contact__mockup {
  position: relative;
  flex: 1;
  min-height: 400px;
}
.rm-contact__mockup .lead-magnet__card {
  position: absolute;
  width: 68%;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.rm-contact__mockup .lead-magnet__card--back  { left: 0%;  top: 0;     transform: rotate(-5deg); z-index: 2; }
.rm-contact__mockup .lead-magnet__card--front { left: 22%; top: 8%;   transform: rotate(3deg);  z-index: 1; }
.rm-contact__mockup.swapping .lead-magnet__card {
  opacity: 0;
  transform: rotate(0deg) translateY(12px) scale(0.97);
}
.rm-contact__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Dark-variant form inputs */
.rm-inquiry__form--dark .rm-inquiry__field label {
  color: rgba(255,255,255,0.5);
}
.rm-inquiry__form--dark .rm-inquiry__field input,
.rm-inquiry__form--dark .rm-inquiry__field select,
.rm-inquiry__form--dark .rm-inquiry__field textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: var(--color-white);
}
.rm-inquiry__form--dark .rm-inquiry__field input::placeholder,
.rm-inquiry__form--dark .rm-inquiry__field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.rm-inquiry__form--dark .rm-inquiry__field input:focus,
.rm-inquiry__form--dark .rm-inquiry__field select:focus,
.rm-inquiry__form--dark .rm-inquiry__field textarea:focus {
  border-color: rgba(255,255,255,0.5);
}
.rm-inquiry__form--dark .rm-inquiry__field select option {
  background: var(--color-dark);
}
.rm-inquiry__submit--light {
  background: var(--color-white);
  color: var(--color-dark);
  border: none;
}
.rm-inquiry__submit--light:hover {
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .rm-contact__inner { grid-template-columns: 1fr; gap: 56px; }
}

/* ============================================================
   RM-INQUIRY — standalone (kept for potential reuse)
============================================================ */
.rm-inquiry {
  padding: var(--section-pad) 0 120px;
  background: var(--color-white);
}
.rm-inquiry__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.rm-inquiry__title {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  margin: 16px 0 20px;
  line-height: 1.2;
}
.rm-inquiry__copy {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.7;
}
.rm-inquiry__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rm-inquiry__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rm-inquiry__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rm-inquiry__field--full {
  grid-column: 1 / -1;
}
.rm-inquiry__field label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}
.rm-inquiry__field input,
.rm-inquiry__field select,
.rm-inquiry__field textarea {
  background: var(--color-light);
  border: 1px solid rgba(7,7,7,0.15);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-dark);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  -webkit-appearance: none;
}
.rm-inquiry__field input:focus,
.rm-inquiry__field select:focus,
.rm-inquiry__field textarea:focus {
  border-color: var(--color-dark);
}
.rm-inquiry__field input::placeholder,
.rm-inquiry__field textarea::placeholder { color: rgba(7,7,7,0.35); }
.rm-inquiry__field textarea { resize: vertical; min-height: 120px; }
.rm-inquiry__submit {
  align-self: flex-start;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  padding: 18px 48px;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-top: 8px;
}
.rm-inquiry__submit:hover { opacity: 0.75; }

/* White override for dark-section form */
.rm-inquiry__form--dark .rm-inquiry__submit,
.rm-inquiry__submit--light {
  background: var(--color-white);
  color: var(--color-dark);
  border: none;
}
.rm-inquiry__form--dark .rm-inquiry__submit:hover,
.rm-inquiry__submit--light:hover {
  opacity: 0.85;
  transform: none;
}

/* ============================================================
   SVC-PANEL LIST — package includes
============================================================ */
.svc-panel__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 8px;
}
.svc-panel__list li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
  opacity: 0.8;
}
.svc-panel__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-size: 12px;
  top: 2px;
}

/* ============================================================
   LEAD MAGNET GRID (fix — uses .lead-magnet__grid not .lead-magnet__inner)
============================================================ */
.lead-magnet__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
  padding: 0 60px;
}

/* ============================================================
   RESPONSIVE — 4 Breakpoints: 1200 / 1024 / 768 / 480
   Best Practice: cascading overrides, no nesting
============================================================ */

/* ── Context-aware dark-section text (moved from inline HTML) ── */
.rm-contact__right .subheading       { color: rgba(255,255,255,0.55); }
.rm-contact__right .rm-inquiry__title { color: var(--color-white); }
.rm-contact__right .rm-inquiry__copy  { color: rgba(255,255,255,0.65); }

/* ── 1200px — Large tablet / small desktop ─────────────────── */
@media (max-width: 1200px) {
  .rm-process__steps { grid-template-columns: repeat(3, 1fr); }
  .rm-process__steps::before { display: none; }
  .brand-bio__inner { grid-template-columns: 180px 1fr 180px; gap: 32px; }
  .brand-bio__collage { height: 540px; }
}

/* ── 1024px — Tablet landscape ─────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }

  /* Brand Bio */
  .brand-bio__inner { grid-template-columns: 140px 1fr 140px; gap: 24px; }
  .brand-bio__collage { height: 480px; }

  /* Value Cards */
  .value-cards__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  /* Location */
  .rm-location__inner { grid-template-columns: 1fr; gap: 48px; }
  .rm-location__stack { height: 480px; }

  /* Process */
  .rm-process__steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .rm-process__steps::before { display: none; }

  /* Pakete */
  .svc-panel { padding: 48px; gap: 40px; }

  /* Contact */
  .rm-contact__inner { grid-template-columns: 1fr; gap: 56px; }
  .rm-contact__mockup { min-height: 340px; }

  /* Inquiry */
  .rm-inquiry__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ── 768px — Mobile ─────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .container { padding: 0 20px; }

  /* Header */
  .site-header { padding: 16px 20px; }
  .menu-btn { font-size: 16px; }

  /* Hero */
  .hero__tagline {
    white-space: normal;
    font-size: clamp(14px, 5vw, 20px);
    max-width: 90vw;
  }
  .hero__logo { width: 88vw; min-width: unset; }
  .hero__body { font-size: 15px; width: 92vw; }
  .hero__ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero__ctas .btn { min-width: 220px; text-align: center; }
  .hero__logo-wrap { gap: 18px; }

  /* Trust Strip */
  .trust-strip__inner { flex-wrap: wrap; justify-content: center; gap: 4px 0; }
  .trust-strip__divider { display: none; }
  .trust-strip__item { padding: 4px 12px; font-size: 12px; }

  /* Brand Bio */
  .brand-bio { padding: 64px 0 48px; }
  .brand-bio__inner { grid-template-columns: 1fr; gap: 0; }
  .brand-bio__collage--right { display: none; }
  .brand-bio__collage--left { height: 300px; margin-bottom: 36px; }
  .brand-bio__text { padding: 0; }
  .brand-bio__name { font-size: clamp(22px, 6.5vw, 34px); }
  .brand-bio__prose { font-size: 16px; }

  /* Mantra */
  .mantra { padding: 72px 0; }
  .mantra__quote { padding: 0 20px; }
  .mantra__quote p { font-size: clamp(20px, 6vw, 30px); }

  /* Marquee */
  .marquee__track span { font-size: clamp(30px, 10vw, 48px); padding-right: 40px; }

  /* Mission */
  .mission__text { font-size: clamp(18px, 5vw, 24px); }

  /* Location */
  .rm-location { padding: 56px 0; }
  .rm-location__inner { grid-template-columns: 1fr; gap: 36px; }
  .rm-location__stack { height: 340px; }

  /* Explore carousel */
  .lc-explore { padding: 48px 0 24px; }

  /* Testimonials */
  .testimonials__img-wrap { max-width: 200px; }
  .testimonials__quote { font-size: clamp(18px, 5.5vw, 26px); }

  /* Gallery */
  .gallery__grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery__col-right { gap: 20px; }
  .gallery__col-right .gallery__img-wrap img { aspect-ratio: 3 / 2; }
  .gallery__header { margin-bottom: 8px; }

  /* Pakete */
  .svc-tabs { padding: 56px 0 72px; }
  .svc-tabs__heading { font-size: clamp(26px, 7vw, 44px); }
  .svc-panel { grid-template-columns: 1fr; padding: 28px 20px; gap: 20px; }
  .svc-panel__img { display: none; }
  .svc-tab-btn { padding: 10px 22px; font-size: 10px; }

  /* CTA */
  .cta-section { padding: 80px 0; }
  .cta-section__title { font-size: clamp(28px, 8vw, 48px); }
  .cta-section__body { font-size: 16px; }

  /* Process */
  .rm-process { padding: 56px 0; }
  .rm-process__steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .rm-process__heading { font-size: clamp(24px, 6vw, 36px); }

  /* FAQ */
  .rm-faq { padding: 56px 0; }
  .rm-faq__heading { font-size: clamp(24px, 6vw, 36px); margin-bottom: 32px; }

  /* Contact */
  .rm-contact { padding: 64px 0; }
  .rm-contact__inner { grid-template-columns: 1fr; gap: 32px; }
  .rm-contact__left { display: none; }
  .rm-inquiry__row { grid-template-columns: 1fr; }
  .rm-inquiry__title { font-size: clamp(24px, 6.5vw, 36px); }
  .rm-inquiry__submit { width: 100%; text-align: center; padding: 18px 24px; }

  /* Instagram Grid */
  .insta-grid { grid-template-columns: repeat(4, 1fr); }

  /* Footer */
  .site-footer { padding: 56px 0 0; }
  .site-footer__logo { font-size: 20px; }
  .site-footer__tagline { font-size: 14px; }
  .site-footer__legal { gap: 14px; }
  .site-footer__bottom { padding: 18px 0 24px; }

  /* Typography baseline */
  .subheading { font-size: var(--size-sub-m); }
  body { font-size: var(--size-body-m); }
}

/* ── 480px — Small mobile ───────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero */
  .hero__ctas .btn { width: 100%; max-width: 280px; }

  /* Process */
  .rm-process__steps { grid-template-columns: 1fr; }

  /* Pakete nav */
  .svc-tabs__nav { border-radius: 6px; width: 100%; }
  .svc-tab-btn { flex: 1; padding: 10px 12px; font-size: 9px; letter-spacing: 0.1em; }

  /* Instagram Grid */
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  /* Legal links stacked */
  .site-footer__legal { flex-direction: column; align-items: center; gap: 10px; }

  /* Value cards */
  .value-cards__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   PRELOADER
============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: preloader-fadein 0.7s ease both;
}
@keyframes preloader-fadein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.preloader__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.preloader__logo-name {
  font-family: var(--font-title);
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}
.preloader__logo-sub {
  font-family: var(--font-ui);
  font-size: clamp(9px, 1.4vw, 13px);
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.preloader__bar {
  width: clamp(120px, 28vw, 220px);
  height: 1px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  height: 100%;
  background: rgba(255,255,255,0.75);
  animation: preloader-line 2.2s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}
@keyframes preloader-line {
  from { width: 0%; }
  to   { width: 100%; }
}

