/* ============================================================
   VOURÉME – Make-up & Hair Styling
   Luxury Bridal Beauty Studio Website
   Premium CSS – Champagne Couture Aesthetic
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Manrope:wght@300;400;500;600;700&display=swap');

/* --- Dream Avenue Font --- */
@font-face {
  font-family: 'Dream Avenue';
  src: url('fonts/DreamAvenue.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  /* Champagne Palette */
  --champagne:        #F5E6D3;
  --champagne-light:  #FBF4ED;
  --champagne-deep:   #E8D5BF;
  --ivory:            #FEFCF9;
  --pearl:            #F9F3EC;
  --nude:             #E5D0BC;
  --taupe:            #C4AD94;
  --taupe-dark:       #9A8470;
  --greige:           #B8A898;
  --warm-cream:       #FFF8F0;
  --soft-gold:        #D4B896;
  --deep-bronze:      #8B7355;
  --rich-dark:        #3D3229;
  --text-dark:        #2C241D;
  --text-medium:      #5A4D42;
  --text-light:       #8A7D72;
  --white:            #FFFFFF;
  --overlay-dark:     rgba(44, 36, 29, 0.6);
  --overlay-light:    rgba(245, 230, 211, 0.15);
  --glass-bg:         rgba(254, 252, 249, 0.7);
  --glass-border:     rgba(212, 184, 150, 0.3);
  
  /* Typography */
  --font-heading:     'Cormorant Garamond', 'Georgia', serif;
  --font-accent:      'Lora', 'Georgia', serif;
  --font-body:        'Manrope', 'Helvetica Neue', sans-serif;
  
  /* Spacing */
  --section-padding:  clamp(80px, 10vw, 160px);
  --container-width:  1280px;
  --container-narrow: 860px;
  
  /* Transitions */
  --ease-luxury:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow:  0.8s var(--ease-luxury);
  --transition-med:   0.5s var(--ease-smooth);
  --transition-fast:  0.3s var(--ease-smooth);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--champagne-light);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

/* --- Utility Classes --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

h4 {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1.2rem;
  display: block;
}

.section-heading {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.section-subtext {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 620px;
}

/* --- Decorative Line --- */
.deco-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--soft-gold), transparent);
  margin: 2rem 0;
}

.deco-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 0;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--rich-dark);
  color: var(--champagne-light);
  border: 1px solid var(--rich-dark);
}

.btn--primary:hover {
  background: var(--deep-bronze);
  border-color: var(--deep-bronze);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61, 50, 41, 0.2);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--taupe);
}

.btn--outline:hover {
  background: var(--rich-dark);
  color: var(--champagne-light);
  border-color: var(--rich-dark);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--soft-gold, #C9A96E);
  color: var(--rich-dark, #1a1512);
  border: 1px solid var(--soft-gold, #C9A96E);
  font-weight: 500;
}

.btn--gold:hover {
  background: var(--deep-bronze, #A07040);
  border-color: var(--deep-bronze, #A07040);
  color: var(--white, #fff);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(160, 112, 64, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--champagne-light);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}

.btn--whatsapp {
  background: var(--rich-dark);
  color: var(--champagne-light);
  border: 1px solid var(--rich-dark);
}

.btn--whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
}

.btn--instagram {
  background: transparent;
  color: var(--champagne-light);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg, .btn img {
  width: 16px;
  height: 16px;
}

/* === LOADER === */
.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--rich-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}

.loader-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  font-family: 'Dream Avenue', var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--champagne);
  letter-spacing: 0.15em;
  opacity: 0;
  animation: loaderReveal 1.5s var(--ease-out-expo) 0.3s forwards;
}

.loader-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 12px;
  opacity: 0;
  animation: loaderReveal 1.5s var(--ease-out-expo) 0.7s forwards;
}

.loader-progress {
  width: 120px;
  height: 1px;
  background: rgba(196, 173, 148, 0.2);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.loader-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--soft-gold), var(--champagne));
  transition: width 0.3s linear;
}

@keyframes loaderReveal {
  from { opacity: 0; transform: translateY(15px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* === ENTER SCREEN === */
.enter-screen {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--rich-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}

.enter-screen.visible {
  opacity: 1;
  visibility: visible;
}

.enter-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.enter-brand {
  font-family: 'Dream Avenue', var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--champagne);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.enter-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-style: italic;
  color: var(--taupe);
  margin-bottom: 50px;
}

.enter-cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  padding: 20px 60px;
  border: 1px solid var(--taupe);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.enter-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.enter-cta:hover::before {
  transform: scaleX(1);
}

.enter-cta:hover {
  color: var(--rich-dark);
  border-color: var(--champagne);
}

.enter-cta span {
  position: relative;
  z-index: 1;
}

.enter-skip {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-top: 30px;
  cursor: pointer;
  transition: color var(--transition-fast);
  background: none;
  border: none;
}

.enter-skip:hover {
  color: var(--champagne);
}

.enter-deco-top, .enter-deco-bottom {
  position: absolute;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--taupe-dark));
}

.enter-deco-top { top: 40px; left: 50%; }
.enter-deco-bottom {
  bottom: 40px;
  left: 50%;
  background: linear-gradient(to top, transparent, var(--taupe-dark));
}

/* === INTRO VIDEO === */
.intro-video-screen {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}

.intro-video-screen.visible {
  opacity: 1;
  visibility: visible;
}

.intro-video-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-skip {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.intro-skip:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.5);
}

/* === MAIN SITE === */
.main-site {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease-luxury), visibility 1s;
}

.main-site.visible {
  opacity: 1;
  visibility: visible;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  padding: 0 clamp(24px, 4vw, 60px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-med);
  background: transparent;
}

.nav.scrolled {
  background: rgba(254, 252, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(61, 50, 41, 0.06);
  height: 70px;
}

.nav-logo {
  font-family: 'Dream Avenue', var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--champagne-light);
  transition: color var(--transition-fast);
}

.nav.scrolled .nav-logo {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne-light);
  transition: color var(--transition-fast), opacity var(--transition-fast);
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--champagne);
}

.nav.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav.scrolled .nav-links a:hover {
  color: var(--deep-bronze);
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--champagne-light) !important;
  transition: all var(--transition-fast) !important;
  opacity: 1 !important;
}

.nav-cta:hover {
  background: var(--champagne-light);
  color: var(--rich-dark) !important;
  border-color: var(--champagne-light);
}

.nav.scrolled .nav-cta {
  border-color: var(--rich-dark);
  color: var(--rich-dark) !important;
}

.nav.scrolled .nav-cta:hover {
  background: var(--rich-dark);
  color: var(--champagne-light) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--champagne-light);
  transition: all var(--transition-fast);
}

.nav.scrolled .nav-toggle span {
  background: var(--text-dark);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(4.6px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-4.6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--rich-dark);
  z-index: 4999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--champagne);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.open a:nth-child(8) { transition-delay: 0.45s; }

/* === HERO === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Schiebt den Flex-Inhalt nach oben, Scroll-Indicator hat unten Platz */
  padding-bottom: clamp(80px, 12vh, 120px);
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 36, 29, 0.3) 0%,
    rgba(44, 36, 29, 0.15) 40%,
    rgba(44, 36, 29, 0.4) 80%,
    rgba(44, 36, 29, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.08;
  opacity: 0;
  transform: translateY(30px);
}

.hero-sub {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 50px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-luxury) 2.5s forwards;
  flex-shrink: 0;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Hero animations after reveal */
.hero.animate .hero-label {
  animation: fadeInUp 1s var(--ease-out-expo) 0.2s forwards;
}

.hero.animate h1 {
  animation: fadeInUp 1.2s var(--ease-out-expo) 0.5s forwards;
}

.hero.animate .hero-sub {
  animation: fadeInUp 1s var(--ease-out-expo) 0.9s forwards;
}

.hero.animate .hero-ctas {
  animation: fadeInUp 1s var(--ease-out-expo) 1.2s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* === SECTIONS GENERAL === */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === ABOUT === */
.about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.about-images .img-wrapper {
  overflow: hidden;
  position: relative;
}

.about-images .img-wrapper:first-child {
  grid-column: 1 / -1;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
}

.about-images .img-wrapper:hover img {
  transform: scale(1.04);
}

.about-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--soft-gold);
  border-left: 2px solid var(--soft-gold);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.8rem 0 2rem;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* === SERVICES === */
.services {
  background: var(--pearl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(61, 50, 41, 0.2);
}

@media (min-width: 769px) {
  .service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 14, 9, 0.72);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 2;
  }

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

.service-card-bg {
  position: absolute;
  inset: 0;
  background: var(--champagne-deep);
  overflow: hidden;
}

.service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
}

.service-card:hover .service-card-bg img {
  transform: scale(1.06);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(20, 14, 9, 0.92) 0%,
    rgba(20, 14, 9, 0.45) 45%,
    rgba(20, 14, 9, 0.1) 70%,
    transparent 100%
  );
}

.service-card-content {
  position: relative;
  z-index: 3;
  padding: 32px;
  width: 100%;
}

.service-card-content h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 8px;
  transition: transform 0.45s var(--ease-luxury);
}

.service-card-content p {
  color: rgba(255,255,255,0.82);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card-link::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link::after {
  transform: translateX(4px);
}

/* Desktop hover reveal */
@media (min-width: 769px) {
  /* Hide p and link with no height so h3 sits at the very bottom */
  .service-card-content p {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-bottom: 0;
    transform: translateY(10px);
    transition: opacity 0.36s ease, transform 0.36s ease, max-height 0.4s ease, margin-bottom 0.36s ease;
  }

  .service-card-link {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: opacity 0.36s ease, transform 0.36s ease, max-height 0.4s ease;
  }

  /* On hover: title slides up, text + link expand in */
  .service-card:hover .service-card-content h3 {
    transform: translateY(-10px);
  }

  .service-card:hover .service-card-content p {
    opacity: 1;
    max-height: 100px;
    margin-bottom: 16px;
    transform: translateY(0);
    transition: opacity 0.36s ease 0.16s, transform 0.36s ease 0.16s, max-height 0.4s ease 0.08s, margin-bottom 0.36s ease 0.08s;
  }

  .service-card:hover .service-card-link {
    opacity: 1;
    max-height: 40px;
    transform: translateY(0);
    transition: opacity 0.36s ease 0.26s, transform 0.36s ease 0.26s, max-height 0.4s ease 0.18s;
  }
}

/* === BRIDAL EXPERIENCE === */
.bridal-experience {
  background: var(--rich-dark);
  color: var(--champagne-light);
}

.bridal-experience .section-label {
  color: var(--taupe);
}

.bridal-experience .section-heading {
  color: var(--champagne);
}

.bridal-experience .section-subtext {
  color: var(--taupe);
}

.experience-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.experience-step {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--taupe-dark);
  line-height: 1;
  margin-bottom: 16px;
}

.experience-step h4 {
  color: var(--champagne);
  margin-bottom: 12px;
  font-weight: 400;
}

.experience-step p {
  color: var(--taupe);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* === GALLERY === */
.gallery {
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "a b c"
    "a b d"
    "e f f";
  gap: 12px;
  margin-top: 50px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* Item 1 & 2: sehr hohe 9:16 Portraits – linke zwei Spalten, je 2 Zeilen */
.gallery-item:nth-child(1) { grid-area: a; }
.gallery-item:nth-child(2) { grid-area: b; }

/* Item 3 & 4: 3:4 / 2:3 Portraits – rechte Spalte, gestapelt */
.gallery-item:nth-child(3) { grid-area: c; aspect-ratio: 3/4; }
.gallery-item:nth-child(4) { grid-area: d; aspect-ratio: 3/4; }

/* Item 5: editorial_eda_esra 4:3 Landscape – unten rechts, 2 Spalten breit */
.gallery-item:nth-child(5) { grid-area: f; aspect-ratio: 4/3; }

/* Item 6: editorial_aylin – unten links, Höhe passt sich Item 5 an */
.gallery-item:nth-child(6) { grid-area: e; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

.gallery-cta p {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* === TESTIMONIALS === */
.testimonials {
  background: var(--pearl);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--ivory);
  padding: 40px;
  position: relative;
  border: 1px solid var(--glass-border);
}

.testimonial-stars {
  color: var(--soft-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-dark);
}

.testimonial-via {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ── Testimonials Slideshow (alle Bildschirmgrößen) ─────────── */
#testimonials .slideshow-container {
  max-width: 700px;
  margin: 40px auto 0;
  position: relative;
}

#testimonials .slideshow-slides-area {
  position: relative;
  overflow: hidden;
}

#testimonials .testimonials-grid.is-slideshow {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  grid-template-columns: none !important;
  gap: 0 !important;
  margin-top: 0 !important;
  transition: transform 0.55s var(--ease-luxury);
}

#testimonials .testimonials-grid.is-slideshow > .testimonial-card {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  margin: 0 !important;
  text-align: center;
}

#testimonials .slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ivory);
  border: 1px solid var(--nude);
  color: var(--text-dark);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(61,50,41,0.10);
}

#testimonials .slideshow-arrow:hover {
  background: var(--champagne-deep);
  box-shadow: 0 4px 14px rgba(61,50,41,0.16);
}

#testimonials .slideshow-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

#testimonials .slideshow-prev { left: 10px; }
#testimonials .slideshow-next { right: 10px; }

#testimonials .slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

#testimonials .slideshow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nude);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

#testimonials .slideshow-dot.active {
  background: var(--soft-gold);
  transform: scale(1.4);
}

/* ── Google Review CTA ───────────────────────────────────────── */
.reviews-cta {
  text-align: center;
  margin-top: 52px;
}

.google-review-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.google-review-box .google-review-stars {
  color: var(--soft-gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.google-review-box h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  margin: 0;
}

.google-review-box p {
  font-size: 0.84rem;
  color: var(--text-medium);
  margin: 0 0 12px;
  max-width: 360px;
  line-height: 1.6;
}

.btn--google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
  border-radius: 4px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.btn--google:hover {
  background: #f8f9fa;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.testimonial-date {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 2px;
  margin-bottom: 6px;
}

/* === FAQ === */
.faq {
  background: var(--ivory);
}

.faq-list {
  max-width: 800px;
  margin: 50px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--champagne-deep);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition-fast);
  background: none;
  border: none;
}

.faq-question:hover {
  color: var(--deep-bronze);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition-fast);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--taupe);
  transition: transform var(--transition-fast);
}

.faq-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.faq-icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-smooth), padding 0.5s var(--ease-smooth);
}

.faq-answer-inner {
  padding: 0 0 28px 0;
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.85;
}

/* === BLOG === */
.blog {
  background: var(--pearl);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: var(--ivory);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  border: 1px solid var(--glass-border);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(61, 50, 41, 0.1);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 30px;
}

.blog-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.3;
}

.blog-card p {
  color: var(--text-medium);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-bronze);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.blog-card-link:hover {
  color: var(--rich-dark);
}

/* === CONTACT === */
.contact {
  background: var(--ivory);
}

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

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px; /* min 16px verhindert iOS Auto-Zoom */
  padding: 14px 18px;
  border: 1px solid var(--champagne-deep);
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--soft-gold);
  box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.15);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin-top: 3px;
  accent-color: var(--deep-bronze);
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.form-checkbox a {
  color: var(--deep-bronze);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #c0392b;
}

/* === LOCATION === */
.location {
  background: var(--pearl);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.location-map-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--soft-gold);
  box-shadow:
    0 0 0 6px var(--pearl),
    0 0 0 7px rgba(212, 184, 150, 0.3),
    0 20px 60px rgba(0,0,0,0.12);
}

.location-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(0.2) saturate(0.5) contrast(0.9) brightness(1.0);
  transition: filter 0.6s ease;
}

.location-map-wrapper:hover iframe {
  filter: sepia(0.05) saturate(0.8) contrast(1) brightness(1.02);
}

/* Goldene Eck-Akzente */
.map-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 2;
  pointer-events: none;
}

.map-corner--tl { top: 14px;    left: 14px;    border-top: 1px solid var(--soft-gold); border-left:  1px solid var(--soft-gold); }
.map-corner--tr { top: 14px;    right: 14px;   border-top: 1px solid var(--soft-gold); border-right: 1px solid var(--soft-gold); }
.map-corner--bl { bottom: 14px; left: 14px;    border-bottom: 1px solid var(--soft-gold); border-left:  1px solid var(--soft-gold); }
.map-corner--br { bottom: 14px; right: 14px;   border-bottom: 1px solid var(--soft-gold); border-right: 1px solid var(--soft-gold); }

.location-text h3 {
  margin-bottom: 16px;
}

.location-text p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.location-address {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 24px;
}

/* === FOOTER === */
.footer {
  background: var(--rich-dark);
  padding: 80px 0 40px;
  color: var(--taupe);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(196, 173, 148, 0.15);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--champagne);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--taupe-dark);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 173, 148, 0.25);
  color: var(--taupe);
  transition: all var(--transition-fast);
  font-size: 0.85rem;
}

.footer-social a:hover {
  background: var(--champagne);
  color: var(--rich-dark);
  border-color: var(--champagne);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--taupe-dark);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--champagne);
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--taupe-dark);
}

.footer-made-with {
  font-size: 0.75rem;
  color: var(--taupe-dark);
  text-align: center;
}

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

.footer-legal a {
  font-size: 0.75rem;
  color: var(--taupe-dark);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--champagne);
}

/* === SUBPAGE STYLES === */
.subpage-header {
  background: var(--rich-dark);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(212, 184, 150, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.subpage-header .section-label {
  color: var(--taupe-dark);
}

.subpage-header h1 {
  color: var(--champagne);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

.subpage-header p {
  color: var(--taupe);
  font-family: var(--font-accent);
  font-style: italic;
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.7;
}

.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--taupe-dark);
  margin-bottom: 20px;
}

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

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

.subpage-content {
  background: var(--ivory);
  padding: var(--section-padding) 0;
}

.subpage-content .container--narrow {
  max-width: var(--container-narrow);
}

.subpage-content h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.subpage-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.subpage-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.subpage-content ul, .subpage-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-medium);
}

.subpage-content li {
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

.price-highlight {
  background: var(--pearl);
  border-left: 3px solid var(--soft-gold);
  padding: 28px 32px;
  margin: 2rem 0;
}

.price-highlight h4 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.price-highlight p {
  margin-bottom: 0;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--deep-bronze);
  font-weight: 400;
}

.subpage-cta-section {
  background: var(--pearl);
  padding: 80px 0;
  text-align: center;
}

.subpage-cta-section h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}

.subpage-cta-section p {
  color: var(--text-medium);
  font-family: var(--font-accent);
  font-style: italic;
  margin-bottom: 30px;
}

/* Blog article styles */
.article-meta {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 2rem;
}

.article-body h2 {
  margin-top: 3rem;
}

.article-body p:first-of-type {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-dark);
}

.related-articles {
  background: var(--pearl);
  padding: 80px 0;
}

.related-articles h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Legal page styles */
.legal-content {
  background: var(--ivory);
  padding: var(--section-padding) 0;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
}

.legal-content p, .legal-content li {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.legal-content ul {
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

/* === WhatsApp Floating Button === */
.whatsapp-float {
  position: fixed;
  bottom: max(30px, env(safe-area-inset-bottom, 30px));
  right: max(30px, env(safe-area-inset-right, 30px));
  z-index: 3000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  color: white;
  font-size: 1.5rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .experience-steps {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a b"
      "c d"
      "e f";
  }

  .gallery-item:nth-child(1) { grid-area: a; aspect-ratio: 3/4; }
  .gallery-item:nth-child(2) { grid-area: b; aspect-ratio: 3/4; }
  .gallery-item:nth-child(3) { grid-area: c; aspect-ratio: 3/4; }
  .gallery-item:nth-child(4) { grid-area: d; aspect-ratio: 3/4; }
  .gallery-item:nth-child(5) { grid-area: f; aspect-ratio: 3/4; }
  .gallery-item:nth-child(6) { grid-area: e; aspect-ratio: 3/4; }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .hero-scroll-indicator {
    order: 3;
    margin-top: 8px;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .intro-skip {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .experience-steps {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a b"
      "c d"
      "e f";
  }

  .gallery-item:nth-child(1) { grid-area: a; aspect-ratio: 3/4; }
  .gallery-item:nth-child(2) { grid-area: b; aspect-ratio: 3/4; }
  .gallery-item:nth-child(3) { grid-area: c; aspect-ratio: 3/4; }
  .gallery-item:nth-child(4) { grid-area: d; aspect-ratio: 3/4; }
  .gallery-item:nth-child(5) { grid-area: f; aspect-ratio: 3/4; }
  .gallery-item:nth-child(6) { grid-area: e; aspect-ratio: 3/4; }

  section {
    padding: 60px 0;
  }
}

/* === Nav for subpages === */
.nav--subpage .nav-logo {
  color: var(--champagne-light);
}

.nav--subpage.scrolled .nav-logo {
  color: var(--text-dark);
}

.nav--subpage .nav-links a {
  color: var(--champagne-light);
}

.nav--subpage.scrolled .nav-links a {
  color: var(--text-dark);
}

/* Service include list */
.service-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 1.5rem 0 2rem;
}

.service-includes li {
  list-style: none;
  padding-left: 20px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-medium);
}

.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--soft-gold);
  font-weight: 600;
}

@media (max-width: 600px) {
  .service-includes {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   MOBILE SLIDESHOW – nur bei max-width: 768px aktiv
   ====================================================== */
@media (max-width: 768px) {

  /* ---- Slideshow Container ---- */
  .slideshow-container {
    position: relative;
    width: 100%;
  }

  /* Slide-Bereich: overflow hier, damit Pfeile im sichtbaren Bereich bleiben */
  .slideshow-slides-area {
    position: relative;
    overflow: hidden;
  }

  /* Pfeil-Buttons */
  .slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a1512;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0;
    -webkit-appearance: none;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  }

  .slideshow-arrow:active {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(0.95);
  }

  .slideshow-prev { left: 6px; }
  .slideshow-next { right: 6px; }

  .slideshow-arrow:disabled {
    opacity: 0.25;
    cursor: default;
  }

  /* Flex-Track: alle Grid-Eigenschaften deaktivieren */
  .is-slideshow {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: none !important;
    margin: 0 !important;
    gap: 0 !important;
    grid-template-columns: unset !important;
    grid-template-areas: unset !important;
    will-change: transform;
  }

  /* Jede Slide: 16px Abstand links + rechts → zentriert sichtbar
     calc(100% - 32px) + 16px + 16px = 100% des Containers → Transform stimmt */
  .is-slideshow > * {
    flex: 0 0 calc(100% - 32px) !important;
    width: calc(100% - 32px) !important;
    max-width: calc(100% - 32px) !important;
    margin: 0 16px !important;
    box-sizing: border-box;
    text-align: center;
  }

  /* Gallery: grid-area / aspect-ratio zurücksetzen */
  .gallery-grid.is-slideshow > .gallery-item {
    aspect-ratio: 3/4 !important;
    grid-area: unset !important;
    height: auto !important;
    border-radius: 4px;
    overflow: hidden;
  }

  /* Service Cards */
  .services-grid.is-slideshow > .service-card {
    max-width: calc(100% - 32px) !important;
    aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
    /* Flex-Container des Cards: Inhalt unten zentrieren */
    justify-content: flex-end;
    align-items: center;
  }

  .services-grid.is-slideshow .service-card-content {
    text-align: center;
    width: 100%;
  }

  .services-grid.is-slideshow .service-card-content h3 {
    font-size: 1.15rem;
  }

  .services-grid.is-slideshow .service-card-content p {
    font-size: 0.8rem;
  }

  /* Experience Steps */
  .experience-steps.is-slideshow > .experience-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
  }

  .experience-steps.is-slideshow .step-number {
    margin: 0 0 12px 0;
  }

  .experience-steps.is-slideshow h4 {
    font-size: 1rem;
  }

  .experience-steps.is-slideshow p {
    font-size: 0.84rem;
    max-width: 260px;
  }

  /* Testimonials */
  .testimonials-grid.is-slideshow > .testimonial-card {
    text-align: center;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #testimonials .slideshow-prev { left: 8px; }
  #testimonials .slideshow-next { right: 8px; }

  .testimonials-grid.is-slideshow blockquote {
    font-size: 0.88rem;
  }

  .testimonials-grid.is-slideshow .testimonial-author,
  .testimonials-grid.is-slideshow .testimonial-via {
    text-align: center;
  }

  /* Slideshow Punkte-Navigation */
  .slideshow-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 0;
    list-style: none;
  }

  .slideshow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--nude, #C4A882);
    border: none;
    cursor: pointer;
    padding: 0;
    -webkit-appearance: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .slideshow-dot.active {
    background: var(--soft-gold, #C9A96E);
    transform: scale(1.45);
  }

  /* ---- Blog-Karten in Slideshow ---- */
  .blog-grid.is-slideshow > .blog-card {
    text-align: left;
    border-radius: 4px;
  }

  .blog-grid.is-slideshow .blog-card-body {
    padding: 20px 18px;
  }

  .blog-grid.is-slideshow .blog-card h3 {
    font-size: 1rem;
  }

  .blog-grid.is-slideshow .blog-card p {
    font-size: 0.8rem;
  }

  /* ---- Mobile Typografie: kleiner & lesbarer ---- */
  .section-heading {
    font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
  }

  .section-subtext {
    font-size: 0.84rem !important;
    line-height: 1.65;
  }

  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem) !important;
  }

  .hero-sub {
    font-size: 0.9rem !important;
    line-height: 1.65;
  }

  .blog-card h3 {
    font-size: 1.05rem;
  }

  .blog-card p {
    font-size: 0.82rem;
  }

  .blog-card-body {
    padding: 22px;
  }

  .testimonial-card blockquote {
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .step-number {
    font-size: 2.6rem;
  }

  /* ---- Stärkere Schattierung hinter Bildtext (mobile) ---- */
  .services-grid.is-slideshow .service-card-overlay {
    background: linear-gradient(
      to top,
      rgba(10, 7, 4, 0.96) 0%,
      rgba(10, 7, 4, 0.6) 40%,
      rgba(10, 7, 4, 0.15) 65%,
      transparent 100%
    );
  }

  .services-grid.is-slideshow .service-card-content h3,
  .services-grid.is-slideshow .service-card-content p,
  .services-grid.is-slideshow .service-card-link {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  }
}
