/* ════════════════════════════════════════════════════════════════
   GLAMARIS STUDIO – Central Stylesheet
   ════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Colors */
  --cream: #f9f1ec;
  --cream-dark: #f9f1ec;
  --cream-mid: #ecddd5;
  --rose: #C9897A;
  --rose-light: #E8C4BC;
  --rose-pale: #f5e8e3;
  --dark: #1A1A1A;
  --mid: #4A4A4A;
  --soft: #8A8A8A;
  --gold: #B8975A;
  --gold-light: #D4B07A;
  --white: #FFFFFF;
  --border: rgba(201, 137, 122, 0.15);
  --border-dark: rgba(26, 26, 26, 0.10);

  /* Fonts */
  --font-logo: 'Playfair Display', Georgia, serif;
  --font-body: 'Questrial', sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* Layout */
  --header-h: 80px;
  --section-pad: clamp(30px, 8vw, 50px);
  --container: 1200px;
  --trans: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast: 0.18s ease;

  /* Typography Scale */
  --text-xs: 12px;
  --text-sm: 15px;
  --text-base: 17px;
  --text-md: 20px;
  --text-lg: 24px;
  --text-xl: clamp(32px, 4vw, 44px);
  --text-2xl: clamp(38px, 5vw, 52px);

  --lh-tight: 1.15;
  --lh-title: 1.2;
  --lh-body: 1.75;
  --lh-loose: 1.85;


}

/* ─── RESET & BASE ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--dark);
  line-height: var(--lh-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.bg-creme {
  background: var(--cream);
}

/* ─── LAYOUT ─────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: var(--cream-dark);
}

.section--dark {
  background: var(--dark);
  color: var(--cream);
}

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: var(--lh-title);
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: normal;
  color: var(--rose);
}

.section-title--light {
  color: var(--cream);
}

.section-title--light em {
  color: var(--rose-light);
}

.section-sub {
  font-size: var(--text-base);
  color: var(--mid);
  max-width: 520px;
  line-height: var(--lh-loose);
}

.section-sub--light {
  color: rgba(249, 241, 236, 0.72);
}

.lead {
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--mid);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: var(--text-xs);
  color: var(--soft);
  letter-spacing: 0.04em;
}

.breadcrumb a {
  color: var(--soft);
  transition: color var(--trans-fast);
}

.breadcrumb a:hover {
  color: var(--rose);
}

.breadcrumb span {
  color: var(--dark);
}

/* ─── CTA STRIP ──────────────────────────────────────────────────── */
.cta-strip {
  background: var(--dark);
  padding: 56px 0;
  text-align: center;
}

.cta-strip .section-title--light {
  margin-bottom: 8px;
}

.cta-strip .section-sub--light {
  margin: 0 auto 32px;
}

.cta-strip-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.price-info-strip {
  margin-top: clamp(40px, 5vw, 56px);
  background: var(--cream-dark);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
}

.price-info-row svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  margin-top: 2px;
}

.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--rose);
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  transition: var(--trans);
  white-space: nowrap;
}

.btn--primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}

.btn--primary:hover {
  background: #b57769;
  border-color: #b57769;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 137, 122, 0.25);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: rgba(26, 26, 26, 0.4);
}

.btn--outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(249, 241, 236, 0.45);
}

.btn--outline-light:hover {
  background: var(--cream);
  color: var(--dark);
}

.btn--ghost {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}

.btn--ghost:hover {
  background: var(--rose);
  color: var(--white);
}

/* Compact/Nav variant */
.btn--compact {
  padding: 11px 22px;
  font-size: 13px;
}

/* ─── HEADER ─────────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--trans), box-shadow var(--trans);
  background: var(--cream);
}

#header.scrolled {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-dark);
}

#header .container {
  width: 100%;
}

#header.header--solid {
  background: var(--cream);
  box-shadow: 0 1px 0 var(--border-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-logo);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  transition: color var(--trans-fast);
}

.logo-name span {
  color: var(--rose);
}

.logo-tagline {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 4px;
  transition: color var(--trans-fast);
}

/* Logo variants */
.logo--light .logo-name {
  color: var(--white);
}

.logo--light .logo-tagline {
  color: var(--rose-pale);
}

.logo--light:hover .logo-name {
  color: var(--rose-light);
}

.nav {
  display: flex;
  align-items: center;
}

.nav>.nav-item>a {
  display: block;
  padding: 10px 16px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--trans-fast);
  text-wrap: nowrap;
}

.nav>.nav-item>a:hover,
.nav>.nav-item>a.active {
  color: var(--rose);
}

/* Dropdown */
.nav-item.has-dropdown {
  position: relative;
}

.nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 230px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: 0 12px 36px rgba(26, 26, 26, 0.11);
  padding: 6px 0 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 100;
}

.dropdown a {
  display: block;
  padding: 12px 22px;
  font-size: var(--text-sm);
  color: var(--mid);
  transition: var(--trans-fast);
}

.dropdown a:hover {
  color: var(--rose);
  background: var(--rose-pale);
}

/* ─── MOBILE MENU ───────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--trans);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--trans);
}

.mobile-menu-overlay.active {
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--cream);
  z-index: 999;
  padding: 96px 36px 40px;
  transition: right var(--trans);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -12px 0 48px rgba(26, 26, 26, 0.12);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  position: relative;
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 12px 0;

  border-bottom: none;

  opacity: 0;
  transform: translateY(12px);

  transition: 
    opacity 0.4s ease,
    transform 0.4s ease,
    color 0.3s ease;
}

/* BORDER */
.mobile-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--rose);

  transform: scaleX(0);
  transform-origin: right;
}

/* LINKS erscheinen */
.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

/* BORDER fährt automatisch rein */
.mobile-menu.active a::after {
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.7s ease;
}

/* gestaffelte Animation (inkl. border!) */
.mobile-menu.active a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.active a:nth-child(8) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(9) { transition-delay: 0.45s; }

/* Hover bleibt nice */
.mobile-menu a:hover {
  color: var(--dark);
  transform: translateX(4px);
}

/* Hover re-animiert Linie smooth */
.mobile-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* Sub Links */
.mobile-menu .mobile-sub {
  padding-left: 14px;
  color: var(--soft);
  text-transform: none;
  font-weight: 400;
}

.mobile-menu-ctas {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─── HERO & PAGE HERO ──────────────────────────────────────────── */
#hero {
  position: relative;
  height: 50svh;
  min-height: 510px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform, opacity, filter;
  opacity: 0;
  animation: heroReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-bg-main {
  background-image: url('../dist/img/glamaris-studio-innen-ansicht-scaled.jpeg');
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 26, 0.06) 0%,
    rgba(26, 26, 26, 0.28) 100%
  );
}

@keyframes heroReveal {
  0% {
    transform: scale(1.08);
    filter: blur(6px);
    opacity: 0;
  }
  60% {
    filter: blur(2px);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
  }
}

.hero-badge {
  position: absolute;
  bottom: clamp(28px, 5vw, 52px);
  left: clamp(20px, 5vw, 56px);
  z-index: 2;
}

.hero-badge span {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 241, 236, 0.78);
  padding: 10px 18px;
  border: 1px solid rgba(249, 241, 236, 0.2);
  border-radius: var(--r-sm);
  background: rgba(26, 26, 26, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: clamp(20px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll span {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 241, 236, 0.4);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(249, 241, 236, 0.35), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.35;
    transform: scaleY(0.4);
  }
}

.page-hero {
  padding: calc(var(--header-h) + 56px) 0 64px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 137, 122, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  max-width: 720px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--rose);
}

.page-hero-sub {
  font-size: var(--text-base);
  color: var(--mid);
  max-width: 560px;
  line-height: var(--lh-loose);
  margin-top: 22px;
}

/* ─── ABOUT PAGE COMPONENTS ─────────────────────────────────────── */
.about-split {
  display: flex;
  min-height: 85vh;
  border-bottom: 1px solid var(--border);
}

.about-split-visual {
  width: 45%;
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}

.about-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-split-visual:hover img {
  transform: scale(1.05);
}

.about-visual-label {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  backdrop-filter: blur(12px);
  border-radius: 2px;
}

.about-split-text {
  width: 55%;
  padding: clamp(60px, 10vw, 140px) clamp(32px, 6vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.about-big-quote {
  font-family: var(--font-logo);
  font-size: clamp(26px, 4.5vw, 42px);
  line-height: 1.25;
  color: var(--rose);
  margin: 40px 0;
  font-style: italic;
  position: relative;
}

.about-body-text {
  font-size: 17px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 400;
}

.about-signature {
  margin-top: 48px;
  font-family: var(--font-logo);
  font-size: 32px;
  color: var(--dark);
  line-height: 1;
}

.about-signature span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 8px;
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 56px 40px;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.value-card:hover {
  border-color: var(--rose-pale);
}

.value-num {
  position: absolute;
  right: 24px;
  top: 16px;
  font-family: var(--font-logo);
  font-size: 56px;
  color: var(--rose-light);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--rose);
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.value-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
}

.timeline {
  position: relative;
  padding-left: 48px;
  margin-top: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 64px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rose);
  transform: translateX(-50%);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--border);
}

.timeline-year {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.timeline-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 96px;
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.fact-card {
  text-align: center;
}

.fact-num {
  font-family: var(--font-logo);
  font-size: 52px;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 12px;
  font-style: italic;
}

.fact-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ─── TEAM SECTION ──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: flex-start;
  margin-top: 64px;
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-portrait {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5.2;
  background: var(--cream-dark);
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-portrait-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-info-name {
  font-family: var(--font-logo);
  font-size: 38px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1;
}

.team-role {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.team-bio {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.team-skill {
  font-size: 12px;
  font-weight: 500;
  background: var(--cream-pale);
  color: var(--soft);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.team-skill:hover {
  border-color: var(--gold-pale);
  color: var(--gold);
}

/* ─── KONTAKT PAGE COMPONENTS ───────────────────────────────────── */
.kontakt-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
  margin-top: 48px;
}

.kontakt-info-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 48px 0 64px;
}

.kontakt-info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.kontakt-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose-pale);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201, 137, 122, 0.1);
}

.kontakt-info-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.kontakt-info-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--soft);
  margin-bottom: 8px;
}

.kontakt-info-val {
  font-size: 18px;
  color: var(--dark);
  line-height: 1.55;
}

.kontakt-info-val a {
  color: inherit;
  transition: color 0.3s ease;
}

.kontakt-info-val a:hover {
  color: var(--rose);
}

.kontakt-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 32px;
  font-size: 16px;
  color: var(--dark);
  font-weight: 400;
}

.kontakt-hours span:nth-child(even) {
  color: var(--mid);
}

.kontakt-cta-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.kontakt-form-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: clamp(32px, 6vw, 64px);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.kontakt-form-title {
  font-size: 28px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.kontakt-form-sub {
  font-size: 16px;
  color: var(--mid);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .about-split {
    flex-direction: column;
  }

  .about-split-visual,
  .about-split-text {
    width: 100%;
  }

  .about-split-visual {
    height: 60vh;
  }

  .about-split-text {
    padding: 80px 48px;
  }

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

  .facts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
  }

  .kontakt-top-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}

@media (max-width: 768px) {
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .about-split-visual {
    height: 50vh;
  }

  .team-member {
    gap: 32px;
  }

  .timeline {
    padding-left: 32px;
  }

  .timeline-dot {
    left: -32px;
  }
}

/* ─── COMPONENTS ────────────────────────────────────────────────── */

/* Intro Split (Home) */
.intro-split {
  padding: clamp(52px, 7vw, 92px) 0;
  border-bottom: 1px solid var(--border);
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
}

.intro-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.intro-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.intro-h1 {
  font-family: var(--font-body);
  font-size: var(--text-2xl);
  font-weight: 500;
  line-height: var(--lh-tight);
  color: var(--dark);
  letter-spacing: -0.025em;
}

.intro-h1 em {
  font-style: normal;
  color: var(--rose);
}

.intro-lead {
  font-size: var(--text-base);
  color: var(--mid);
  line-height: var(--lh-loose);
  margin-bottom: 34px;
}

.intro-ctas {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
}

/* Service Icon Grid */
.services-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.services-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 40px);
}

.service-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f9f5f2;
  padding: 10px;
  border-radius: 22px;
}

.service-icon-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--trans), transform var(--trans);
}

.service-icon-circle img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: contrast(100%);
  transition: filter var(--trans-fast);
}

.service-icon-item:hover .service-icon-circle {
  background: var(--rose-pale);
  transform: translateY(-4px);
}

.service-icon-item:hover .service-icon-circle img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(20%) saturate(700%) hue-rotate(315deg) brightness(88%) contrast(95%);
}

.service-icon-item h3 {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-icon-item p {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--mid);
  line-height: var(--lh-body);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: 14px;
  transition: gap var(--trans-fast), color var(--trans-fast);
}

.service-link:hover {
  gap: 10px;
  color: #a5624f;
}

.service-link-arrow {
  font-size: var(--text-sm);
  transition: transform var(--trans-fast);
}

.service-icon-item:hover .service-link-arrow {
  transform: translateX(3px);
}

/* Trust Band / Fact Grid */
.trust-band {
  background: var(--dark);
  padding: 48px 0;
}

.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.trust-item,
.fact-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  border-right: 1px solid rgba(249, 241, 236, 0.06);
}

.trust-item:last-child,
.fact-card:last-child {
  border-right: none;
}

.trust-num,
.fact-num {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label,
.fact-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(249, 241, 236, 0.45);
}

/* Timeline (About) */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--rose-light);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -24px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rose);
  border: 3px solid var(--cream-dark);
}

.timeline-year {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-title {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: var(--text-sm);
  color: var(--mid);
  line-height: 1.75;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.value-card {
  background: var(--white);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
}

.value-num {
  font-size: 64px;
  color: rgba(201, 137, 122, 0.07);
  position: absolute;
  top: 12px;
  right: 18px;
  line-height: 1;
  pointer-events: none;
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 1.4;
}

.value-card h3 {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--mid);
  line-height: 1.75;
}

/* Team Grid */
.team-grid {}

.team-portrait {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-portrait-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gold);
  color: var(--white);
  padding: 12px 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.team-bio {
  font-size: var(--text-base);
  color: var(--mid);
  line-height: var(--lh-loose);
  margin-bottom: 20px;
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.team-skill {
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--mid);
}

/* Price Layout */
.price-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.price-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

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

.price-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--mid);
  background: var(--white);
  transition: var(--trans-fast);
  border-left: 3px solid transparent;
}

.price-nav-item:hover,
.price-nav-item.active {
  color: var(--rose);
  border-left-color: var(--rose);
  background: var(--rose-pale);
}

.price-note-general {
  margin-top: 16px;
  padding: 16px;
  background: var(--cream-dark);
  font-size: 13px;
  color: var(--mid);
  line-height: 1.65;
}

.price-categories {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-category {
  background: var(--white);
  overflow: hidden;
}

.price-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
  gap: 14px;
}

.price-cat-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.price-cat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-cat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 1.5;
}

.price-cat-name {
  font-family: var(--font-logo);
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  color: var(--rose);
}

.price-cat-toggle {
  display: none;
}

.price-cat-body {
  max-height: none;
  overflow: visible;
}

.price-list {
  padding: 0 28px 24px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--cream-dark);
  gap: 16px;
}

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

.price-row-name {
  font-size: var(--text-base);
  color: var(--dark);
  line-height: 1.4;
}

.price-row-note {
  font-size: 12px;
  color: var(--soft);
  margin-top: 2px;
}

.price-row-price {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--rose);
  white-space: nowrap;
}

/* Accordion (General usage) */
.faq-item {
  background: var(--white);
  overflow: hidden;
  border-radius: var(--r-md);
  margin-bottom: 2px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  cursor: pointer;
  gap: 14px;
  transition: var(--trans-fast);
}

.faq-question:hover {
  background: var(--rose-pale);
}

.faq-question h3 {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--dark);
}

.faq-icon {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.faq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 2;
  transition: transform var(--trans);
}

.faq-item.open .faq-icon {
  background: var(--rose);
  border-color: var(--rose);
}

.faq-item.open .faq-icon svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: var(--text-sm);
  color: var(--mid);
  line-height: var(--lh-body);
}

/* Carousel & Gallery & Lightbox */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-nav-btns {
  display: flex;
  gap: 10px;
}

.gallery-nav-btns button {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--border-dark);
  background: var(--white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
}

.gallery-nav-btns button:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.gallery-nav-btns button svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--trans-fast);
}

.gallery-nav-btns button:hover svg {
  stroke: var(--white);
}

.carousel-wrapper {
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .carousel-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.carousel-track {
  display: flex;
  gap: 14px;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  .carousel-track {
    transform: none !important;
    display: flex;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
}

.carousel-item {
  flex: 0 0 calc(33.333% - 10px);
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
}

@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}

.carousel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.55s ease;
  background-size: contain !important;
}

.carousel-item:hover .carousel-placeholder {
  transform: scale(1.04);
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.45) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--trans);
}

.carousel-item:hover .carousel-overlay {
  opacity: 1;
}

.carousel-label {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.carousel-zoom {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(249, 241, 236, 0.55);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
}

.carousel-zoom svg {
  width: 15px;
  height: 15px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 6, 6, 0.93);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 880px;
  width: 92%;
}

.lightbox-placeholder {
  width: 100%;
  height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(249, 241, 236, 0.25);
  cursor: pointer;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--trans-fast);
}

.lightbox-close:hover {
  border-color: var(--rose);
}

.lightbox-close svg {
  width: 15px;
  height: 15px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(249, 241, 236, 0.07);
  border: 1px solid rgba(249, 241, 236, 0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans-fast);
}

.lb-nav:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.lb-nav svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

#lbPrev {
  left: -58px;
}

#lbNext {
  right: -58px;
}

/* About Strip (Home) */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-visual-side {
  position: relative;
  min-height: 480px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-visual-side span {
  font-family: var(--font-logo);
  font-size: var(--text-md);
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.about-text-side {
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-quote {
  font-family: var(--font-logo);
  font-size: var(--text-md);
  font-style: italic;
  color: var(--rose);
  line-height: 1.65;
  padding-left: 18px;
  border-left: 2px solid var(--rose-light);
  margin: 20px 0;
}

.about-body {
  font-size: var(--text-base);
  color: var(--mid);
  line-height: var(--lh-loose);
  margin-bottom: 14px;
}

.about-sig {
  font-family: var(--font-logo);
  font-size: 26px;
  font-style: italic;
  margin-top: 28px;
  color: var(--dark);
}

.about-sig span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
  margin-top: 4px;
}

/* FAQ (Home) */
.grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Contact & Forms Information */
.kontakt-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
}

.kontakt-hours span {
  font-size: 14px;
  color: var(--mid);
}

.kontakt-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.kontakt-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 4px 32px rgba(26, 26, 26, 0.06);
}

.kontakt-form-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}

.kontakt-form-sub {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ─── CONTACT & FORMS ────────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201, 137, 122, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(138, 138, 138, 0.55);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
  margin-top: 4px;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--rose);
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-check a {
  color: var(--rose);
  text-decoration: underline;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 24px;
}

.form-success.active {
  display: block;
}

.form-success h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}

/* Contact & Forms (Home Variant) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--rose-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 1.5;
}

.contact-lbl {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 3px;
}

.contact-val {
  font-size: var(--text-base);
  color: var(--dark);
  line-height: 1.55;
}

.contact-val a {
  transition: color var(--trans-fast);
}

.contact-val a:hover {
  color: var(--rose);
}

.hours-table {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 18px;
}

.hours-table span {
  font-size: var(--text-sm);
  color: var(--mid);
}

.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Compact contact form (homepage) */
.hp-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 4px 28px rgba(26, 26, 26, 0.06);
}

.hp-form-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.hp-form-card .hp-form-sub {
  font-size: var(--text-sm);
  color: var(--mid);
  margin-bottom: 24px;
  line-height: 1.7;
}

.hp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.hp-form-input,
.hp-form-textarea,
.hp-form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--dark);
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.hp-form-input::placeholder,
.hp-form-textarea::placeholder {
  color: var(--soft);
}

.hp-form-input:focus,
.hp-form-textarea:focus,
.hp-form-select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201, 137, 122, 0.12);
}

.hp-form-textarea {
  resize: vertical;
  min-height: 90px;
  margin-bottom: 14px;
}

.hp-form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-xs);
  color: var(--mid);
  margin-bottom: 18px;
  line-height: 1.6;
}

.hp-form-privacy input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--rose);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hp-form-btn {
  width: 100%;
  padding: 14px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--rose);
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--trans-fast), transform var(--trans-fast);
}

.hp-form-btn:hover {
  background: #b5786b;
  transform: translateY(-1px);
}

.hp-form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}

.hp-form-success.active {
  display: block;
}

.hp-form-success.show {
  display: block;
}

.hp-form-success svg {
  width: 48px;
  height: 48px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 14px;
}

.hp-form-success h4 {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.hp-form-success p {
  font-size: var(--text-sm);
  color: var(--mid);
}

/* Besuch / Anfahrt cards */
.besuch-grid {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-content: start;
  flex-direction: column;
}

.grid-flex{
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
  align-content: start;
  flex-direction: row;
}
.besuch-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(26, 26, 26, 0.06);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  cursor: pointer;
  position: relative;
}

.besuch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(26, 26, 26, 0.1);
  border-color: var(--rose-pale);
}

.besuch-card::after {
  content: '👆';
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 24px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  animation: tapIndicator 2s infinite ease-in-out;
  pointer-events: none;
}

.besuch-card:hover::after {
  opacity: 1;
}

@keyframes tapIndicator {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.1) translateY(-4px); }
  75% { transform: scale(0.9) translateY(0); }
}

/* Utilities */
@media (max-width: 768px) {
  .md-hidden, .md-none { display: none !important; }
  .form-grid {
    display: flex !important;
    flex-direction: column;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .u-grid-2col-split{
    display: flex !important ;
    flex-direction: column;
  }
}

.besuch-card-img {
  object-fit: contain;
  display: block;
}

.besuch-card-body {
  line-height: 10px;
  padding: clamp(20px, 3vw, 28px);
  background-color: var(--cream-dark);
  padding-bottom: 2px;
}

.besuch-card-body h4 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.besuch-card-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 18px;
}

.besuch-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose);
  transition: gap var(--trans-fast);
}

.besuch-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  transition: transform var(--trans-fast);
}

.besuch-card:hover .besuch-card-link {
  gap: 12px;
}

.besuch-card:hover .besuch-card-link svg {
  transform: translateX(3px);
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
#footer {
  background: #131313;
  padding: clamp(48px, 6vw, 80px) 0 28px;
  color: rgba(249, 241, 236, 0.5);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(249, 241, 236, 0.07);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(249, 241, 236, 0.45);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-fast);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}

.footer-col-title {
  font-size: var(--text-md);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}
.footer-top p{
  color: rgba(255, 255, 255, 0.832) !important;
}
.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  font-size: var(--text-sm);
 color: rgba(255, 255, 255, 0.832);

  transition: var(--trans-fast);
}
.footer-links a::before {
    content: "→";
    padding-right: 5px;
    display:inline-block;
}

.footer-links a:hover {
  color: var(--rose-light);
}

.footer-bottom {
  padding: 28px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: var(--text-xs);
  color: rgba(249, 241, 236, 0.25);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* ─── MOBILE BAR ─────────────────────────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #faf1eb;
  height: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(249, 241, 236, 0.07);
}

.mobile-bar-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #424242;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  border-right: 1px solid rgba(249, 241, 236, 0.05);
}

.mobile-bar-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ─── UTILITIES ────────────────────────────────────────────────── */
.u-mt-header {
  margin-top: var(--header-h) !important;
}

.u-mt-2 {
  margin-top: 2px !important;
}

.u-mt-14 {
  margin-top: 14px !important;
}

.u-mt-16 {
  margin-top: 16px !important;
}

.u-mt-24 {
  margin-top: 24px !important;
}

.u-mt-32 {
  margin-top: 32px !important;
}

.u-mb-2 {
  margin-bottom: 2px !important;
}

.u-mb-14 {
  margin-bottom: 14px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-mb-28 {
  margin-bottom: 28px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-mb-60 {
  margin-bottom: 60px !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-w-full {
  width: 100% !important;
}

.u-max-w-520 {
  max-width: 520px !important;
}

/* Flex/Grid Utilities */
.u-flex {
  display: flex !important;
}

.u-flex-column {
  display: flex !important;
  flex-direction: column !important;
}

.u-flex-center {
  justify-content: center !important;
}

.u-flex-gap-12 {
  gap: 12px !important;
}

.u-flex-gap-14 {
  gap: 14px !important;
}

.u-flex-wrap {
  flex-wrap: wrap !important;
}

.u-items-start {
  align-items: flex-start !important;
}

.u-items-center {
  align-items: center !important;
}

.u-grid-2col {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: clamp(40px, 6vw, 80px) !important;
}

.u-grid-2col-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 88px) !important;
}

/* Text Utilities */
.u-text-center {
  text-align: center !important;
}

.u-text-rose {
  color: var(--rose) !important;
}

.u-text-dark {
  color: var(--dark) !important;
}

.u-text-mid {
  color: var(--mid) !important;
}

.u-text-sm {
  font-size: 15px !important;
}

.u-lh-body {
  line-height: 1.82 !important;
}

.u-text-label-soft {
  font-size: 10px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--soft) !important;
}

/* Misc */
.u-aspect-square {
  aspect-ratio: 1 !important;
}

.u-bg-cream-mid {
  background: var(--cream-mid) !important;
}

.u-overflow-hidden {
  overflow: hidden !important;
}

.u-svg-icon-rose {
  flex-shrink: 0 !important;
  width: 18px !important;
  height: 18px !important;
  stroke: var(--rose) !important;
  fill: none !important;
  stroke-width: 1.5 !important;
}

/* ─── SERVICE DETAIL (Subpages) ─────────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  margin-bottom: clamp(48px, 8vw, 96px);
}

.service-detail-grid:last-child {
  margin-bottom: 0;
}

.service-detail-grid:nth-child(even) .service-visual {
  order: 2;
}

.service-detail-grid:nth-child(even) .service-text {
  order: 1;
}

.service-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(26, 26, 26, 0.08);
  aspect-ratio: 4/5;
}

.service-visual-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.service-visual:hover .service-visual-inner {
  transform: scale(1.04);
}

.service-text h2 {
  font-size: var(--text-xl);
  margin-bottom: 18px;
}

.service-text p {
  margin-bottom: 18px;
  color: var(--mid);
}

.service-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-dark);
  padding: 12px 20px;
  border-radius: var(--r-md);
  margin: 12px 0 24px;
  border: 1.5px solid var(--border);
}

.price-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.price-value {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--rose);
}

.price-note {
  font-size: 12px;
  color: var(--soft);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--mid);
}

.feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9897A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  flex-shrink: 0;
}

/* ─── EXTENSIONS COMPONENTS ─────────────────────────────────────── */
.ext-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ext-type-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--r-lg);
  position: relative;
  border: 1.5px solid var(--border);
  transition: var(--trans);
}

.ext-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(26, 26, 26, 0.08);
  border-color: var(--rose-light);
}

.ext-type-num {
  font-family: var(--font-logo);
  font-size: 64px;
  color: rgba(201, 137, 122, 0.08);
  position: absolute;
  top: 12px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}

.ext-type-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ext-type-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(64%) sepia(14%) saturate(650%) hue-rotate(318deg) brightness(92%) contrast(91%);
}

.ext-type-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.ext-type-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ext-tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 12px;
  background: var(--cream-dark);
  color: var(--mid);
  border-radius: 20px;
  margin: 0 4px 4px 0;
}

.ext-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.ext-visual {
  border-radius: var(--r-lg);
  aspect-ratio: 1;
}

.ext-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.ext-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ext-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 4px;
}

.ext-step-body h4 {
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--dark);
}

.ext-step-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

/* ─── BEAUTY COMPONENTS ─────────────────────────────────────────── */
.beauty-hero-quote {
  font-family: var(--font-logo);
  font-size: var(--text-md);
  font-style: italic;
  color: var(--rose);
  margin-top: 24px;
  border-left: 2px solid var(--rose-light);
  padding-left: 18px;
}

.beauty-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.beauty-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.beauty-card:hover {
  border-color: var(--rose-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26, 26, 26, 0.06);
}

.beauty-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--rose-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.beauty-card-icon img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(14%) saturate(650%) hue-rotate(318deg) brightness(92%) contrast(91%);
}

.beauty-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.beauty-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

.beauty-card-price {
  margin-top: auto;
  padding-top: 16px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--rose);
  border-top: 1px solid var(--border);
  display: block;
}

.beauty-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.beauty-feature-visual {
  border-radius: var(--r-lg);
  aspect-ratio: 4/5;
}

.beauty-highlight-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  padding: 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(26, 26, 26, 0.04);
  margin: 24px 0;
}

.beauty-highlight-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.beauty-highlight-box div {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

/* ─── SHARED PROCESS & PRODUCTS ─────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-step {
  position: relative;
}

.step-num {
  font-family: var(--font-logo);
  font-size: 40px;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.6;
}

.product-strip {
  background: var(--cream-dark);
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.product-strip-inner h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
}

.product-logos {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}

.product-logo {
  font-family: var(--font-logo);
  font-size: 20px;
  color: var(--soft);
  opacity: 0.7;
}

.price-overview {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  border: 1.5px solid var(--border);
  margin-top: 64px;
  text-align: center;
}

.price-overview h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.price-overview p {
  color: var(--mid);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.price-note-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream-pale);
  padding: 20px;
  border-radius: var(--r-md);
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

.price-note-box svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-note-box p {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  margin-top: 30px;
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .trust-band-inner {
    grid-template-columns: 1fr 1fr;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .intro-eyebrow {
    justify-content: center;
  }

  .intro-eyebrow::before {
    display: none;
  }

  .about-strip {
    grid-template-columns: 1fr;
  }

  .about-visual-side {
    min-height: 320px;
  }

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

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

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

  .services-icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(249, 241, 236, 0.06);
  }

  /* Subpage Tweaks */
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-grid:nth-child(even) .service-visual {
    order: 1;
  }

  .service-detail-grid:nth-child(even) .service-text {
    order: 2;
  }

  .service-visual {
    aspect-ratio: 8/10;
  }
  .btn{
    width: 100%
  }

  .ext-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .beauty-feature {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid rgba(249, 241, 236, 0.06);
  }

  .trust-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .price-layout {
    grid-template-columns: 1fr;
  }

  .price-sidebar {
    position: static;
  }

  .price-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-nav-item {
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .price-nav-item.active {
    border-bottom-color: var(--rose);
  }

  .mobile-bar {
    display: grid;
  }

  body {
    padding-bottom: 60px;
  }

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

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

  .services-icon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .intro-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-item {
    flex: 0 0 calc(80% - 7px);
  }

  #lbPrev {
    left: 6px;
  }

  #lbNext {
    right: 6px;
  }

  .hp-form-row {
    grid-template-columns: 1fr;
  }

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

  /* Subpage Tweaks */
  .ext-types-grid,
  .beauty-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ext-type-card,
  .beauty-card {
    padding: 32px 24px;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }

  .product-strip-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .intro-h1 {
    font-size: clamp(36px, 9vw, 44px);
  }

  .intro-lead,
  .service-icon-item p,
  .about-body,
  .contact-val {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .services-icon-grid {
    grid-template-columns: 1fr;
  }

  .trust-band-inner {
    grid-template-columns: 1fr;
  }

  .carousel-item {
    flex: 0 0 88%;
  }
}

/* ─── LEGAL / IMPRESSUM ────────────────────────────────────────── */
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: start;
}

@media (max-width: 860px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.legal-column > *:first-child {
  margin-top: 0;
}

.legal-item {
  margin-bottom: 32px;
}

.legal-item h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin-bottom: 12px;
}

.legal-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--dark);
}

.legal-contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
}

.legal-contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.legal-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
}

.legal-text a {
  color: var(--rose);
  text-decoration: underline;
}

.legal-text a:hover {
  text-decoration: none;
}
/* ─── COOKIE CONSENT ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  color: var(--white);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  animation: cookieSlideUp 0.35s ease;
}

.cookie-banner[hidden] {
  display: none;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

.cookie-banner__text strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 15px;
}

.cookie-banner__text a {
  color: var(--rose-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-settings-link {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.7;
}

.cookie-settings-link:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 68px; /* above mobile-bar */
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__actions .btn {
    flex: 1;
    text-align: center;
  }
}

a.active {
    color: var(--rose) !important;
    font-weight: 600
    
}

