/* ============================================
   VSM Wedding Moments – Design System (NEW)
   ============================================ */

:root {
  /* Color Palette – VSM Wedding Moments NEW Logo */
  --cream: #FFFFFF;
  --ivory: #F6FAF4;        /* Leichtes Grün-Weiß */
  --paper: #FFFFFF;
  --ink: #2C2C2C;          /* Charcoal aus Wedding-Schrift */
  --ink-soft: #444444;
  --ink-darker: #251608;
  --muted: #6B7B6B;
  --muted-light: #B5C4B5;
  --gold: #5B8A42;         /* Olive-Grün aus VSM Wedding Moments Logo */
  --gold-deep: #3D6B2A;
  --gold-light: #8FBB6E;
  --rose: #8FBB6E;          /* Blatt-Grün Akzent */
  --line: #DDE8DA;
  --line-soft: #EEF4EC;
  --line-blue: #2A4A2A;
  --black: #111111;

  /* Typography */
  --font-display: 'Roboto', system-ui, -apple-system, sans-serif;
  --font-body: 'Roboto', system-ui, -apple-system, sans-serif;
  --font-accent: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --container-max: 1600px;
  --container-pad: clamp(1.5rem, 4.5vw, 4.5rem);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.25s;
  --dur: 0.45s;
  --dur-slow: 0.8s;

  /* Radius – konsequent abgerundet */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 22, 18, 0.04), 0 1px 3px rgba(26, 22, 18, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 22, 18, 0.06), 0 8px 24px rgba(26, 22, 18, 0.04);
  --shadow-lg: 0 12px 32px rgba(26, 22, 18, 0.08), 0 24px 64px rgba(26, 22, 18, 0.06);
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6,
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display-xl {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.display-lg {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.display-md {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.display-sm {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.italic {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.luxury {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

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

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

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}

.muted {
  color: var(--muted);
}

/* ============================================
   Layout
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container-narrow {
  max-width: 920px;
}

.container-wide {
  max-width: 1440px;
}

.section {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.section-sm {
  padding-block: clamp(2rem, 3.5vw, 3rem);
}

.section-bg-ivory { background: var(--ivory); }
.section-bg-paper { background: var(--paper); }
.section-bg-ink {
  background: var(--ink);
  color: var(--ivory);
}
.section-bg-ink h1, .section-bg-ink h2,
.section-bg-ink h3, .section-bg-ink h4 { color: var(--ivory); }

/* Form auf dunklem Section-BG: Eingebettete h-Elemente sollen dunkel bleiben */
.section-bg-ink .form h3,
.section-bg-ink .form h4,
.section-bg-ink .form h5,
.section-bg-ink .form .form-step-title,
.section-bg-ink .form .form-header-text h3 { color: var(--ink); }

.divider {
  height: 1px;
  background: var(--line);
  border: none;
}

.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 1.5rem 0;
}

.divider-gold.center {
  margin-inline: auto;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
}

.btn-outline-light:hover {
  background: var(--ivory);
  color: var(--ink);
}

.btn-ghost {
  padding: 0.75rem 0;
  letter-spacing: 0.12em;
  color: var(--ink);
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transition: transform var(--dur) var(--ease);
  transform-origin: right;
}

.btn-ghost:hover::after {
  transform-origin: left;
  transform: scaleX(0.4);
}

.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
  transition: transform var(--dur) var(--ease);
  display: inline-block;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   Header / Navigation
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all var(--dur) var(--ease);
  padding-block: 1.1rem;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding-block: 0.75rem;
  box-shadow: 0 4px 24px rgba(43, 68, 43, 0.08);
}

.site-header.on-dark:not(.scrolled) {
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: inherit;
  transition: opacity var(--dur-fast) var(--ease);
}

.brand-logo {
  height: 58px;
  width: auto;
  transition: height var(--dur) var(--ease);
  display: block;
}

.site-header.scrolled .brand-logo {
  height: 46px;
}

.footer-brand-logo {
  height: 52px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .brand-logo {
    height: 48px;
  }
  .site-header.scrolled .brand-logo {
    height: 40px;
  }
}

.brand-mark {
  color: var(--gold);
  font-style: italic;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 0.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1px;
  background: var(--gold);
  transition: transform var(--dur) var(--ease);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: translateX(-50%) scaleX(0.6);
}

.nav-menu a.active {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

.nav-phone svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
  flex-shrink: 0;
}

.nav-phone:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  margin: 5px auto;
  transition: all var(--dur) var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-menu, .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow-y: auto;
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 6.5rem 2rem 3rem;
  min-height: 100%;
  gap: 2.75rem;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: menu-item;
}

.mobile-menu-nav::before {
  content: 'Menü';
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 1.15rem 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
  counter-increment: menu-item;
}

.mobile-menu-nav a::before {
  content: counter(menu-item, decimal-leading-zero);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--muted-light);
  flex-shrink: 0;
}

.mobile-menu-nav a::after {
  content: '→';
  margin-left: auto;
  font-size: 1rem;
  opacity: 0;
  color: var(--gold);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  transform: translateX(-6px);
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  color: var(--gold);
  padding-left: 0.5rem;
}

.mobile-menu-nav a:hover::after,
.mobile-menu-nav a.active::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-nav a.active {
  color: var(--gold);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.mobile-menu .mobile-cta {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================
   Hero (Editorial Wedding Style)
   ============================================ */

.hero-editorial {
  position: relative;
  background: var(--cream);
  padding: clamp(8rem, 13vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-editorial::before {
  content: '';
  position: absolute;
  top: 18%;
  right: -6%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(91, 138, 66, 0.18), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-editorial::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -6%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(43, 68, 43, 0.08), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-text { max-width: 580px; }

.hero-text .eyebrow {
  margin-bottom: 1.5rem;
  color: var(--gold-deep);
}

.hero-text .eyebrow::before {
  background: var(--gold-deep);
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-text h1 .italic {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.hero-text h1 .italic::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(91, 138, 66, 0.25);
  z-index: -1;
  border-radius: 4px;
}

.hero-text p {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--cream);
  margin-left: -10px;
}

.hero-trust-avatars span:first-child { margin-left: 0; }

.hero-trust-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

.hero-trust-text strong {
  color: var(--ink);
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Hero Image Mosaic – Bridal-TNC-inspired */
.hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 1rem;
  height: clamp(420px, 56vw, 620px);
}

.hero-mosaic-item {
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative;
}

.hero-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.hero-mosaic-item:hover img {
  transform: scale(1.06);
}

.hero-mosaic-item:nth-child(1) {
  grid-row: span 2;
  border-radius: 200px 200px var(--r-lg) var(--r-lg);
}

.hero-mosaic-item:nth-child(4) {
  border-radius: var(--r-lg) var(--r-lg) 200px 200px;
}

.hero-mosaic-floating {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--paper);
  padding: 1rem 1.4rem;
  border-radius: var(--r-full);
  box-shadow: 0 16px 40px rgba(20, 40, 20, 0.18);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  font-size: 0.9rem;
}

.hero-mosaic-floating-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}

.hero-mosaic-floating-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 600px) {
  .hero-mosaic-floating { display: none; }
}

/* ============================================
   Hero (Legacy – fullscreen, used on subpages if needed)
   ============================================ */

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease-out infinite alternate;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 40, 20, 0.55) 0%, rgba(20, 40, 20, 0.45) 50%, rgba(20, 40, 20, 0.85) 100%),
    linear-gradient(90deg, rgba(20, 40, 20, 0.6) 0%, rgba(20, 40, 20, 0.2) 100%);
}

@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  color: var(--gold-light);
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  background: var(--gold-light);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.75rem;
  font-size: clamp(1.85rem, 3.6vw, 3.4rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

@media (min-width: 1100px) {
  .hero h1 {
    max-width: 30ch;
  }
}

.hero h1 .luxury {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

/* Hand-gezeichneter SVG-Underline unter "Hochzeit" */
.hero h1 .luxury::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 18px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18' preserveAspectRatio='none'%3E%3Cpath d='M2 12 C 40 3, 80 18, 120 8 S 180 4, 198 11' stroke='%238FBB6E' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero h1 .italic {
  color: var(--gold-light);
  font-weight: 700;
}

/* Dekoratives Ornament vor der Headline */
.hero-ornament {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
}

.hero-ornament-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.hero-ornament svg {
  width: 14px;
  height: 14px;
}

.hero p {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.65;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 3rem;
}

/* Hero Badge (Pill Eyebrow) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #fff;
  padding: 0.55rem 1.1rem;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

/* Hero Check-Items */
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin: 2rem 0 2.5rem;
}

.hero-check {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-check-icon {
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-check-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

/* Trust-Karte im Hero (ohne Avatare, Google-Style) */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  border-radius: var(--r-full);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.hero-rating-google {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.hero-rating-stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.hero-rating-info {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.3;
}

.hero-rating-info strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .hero-rating {
    width: 100%;
    border-radius: var(--r-lg);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--ivory);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--gold-light);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

/* ============================================
   Hero-Stats-Band (direkt unter Hero, dunkel)
   ============================================ */

.hero-stats-band {
  background: var(--ink);
  color: #fff;
  padding: clamp(2.25rem, 4vw, 3rem) 0;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.show-mobile { display: none; }

/* ============================================
   HERO – Mobile Optimierung
   ============================================ */
@media (max-width: 768px) {
  .hero {
    align-items: flex-start;
    padding-top: clamp(7rem, 20vw, 8.5rem);
    padding-bottom: clamp(3rem, 10vw, 4rem);
  }

  .hide-mobile { display: none !important; }
  .show-mobile { display: inline !important; }
  .show-mobile .luxury::after { display: none; }

  .hero-content {
    max-width: 100%;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .hero-ornament {
    margin-bottom: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 1.1rem;
    max-width: 100%;
    letter-spacing: -0.015em;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }

  .hero-checks {
    gap: 0.75rem 1rem;
    margin: 1.25rem 0 1.75rem;
  }

  .hero-check {
    font-size: 0.88rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 0;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.68rem;
    letter-spacing: 0.01em;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .hero-checks {
    flex-direction: column;
    gap: 0.6rem;
  }
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.25rem 0.5rem;
}

.hero-stat-label {
  font-size: clamp(0.7rem, 2.2vw, 0.85rem);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.hero-stat-value {
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.625rem;
}

.hero-stat-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ============================================
   Trust Bar (legacy)
   ============================================ */

.trust-bar {
  background: var(--ink);
  color: var(--ivory);
  padding: 2.5rem 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
  align-items: center;
}

.trust-stat {
  position: relative;
}

.trust-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(251, 250, 246, 0.15);
}

@media (max-width: 768px) {
  .trust-stat:not(:last-child)::after { display: none; }
}

.trust-number {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gold-light);
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 250, 246, 0.7);
}

/* ============================================
   Section Headers
   ============================================ */

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 760px;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================
   Story Section (intro)
   ============================================ */

.story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
}

.story-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-xl);
}

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

.story-image:hover img {
  transform: scale(1.04);
}

.story-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 8px solid var(--cream);
}

.story-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-intro {
  max-width: 700px;
}

.story-content h2 {
  margin-bottom: 1.5rem;
}

.story-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink);
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  margin: 2rem 0;
}

/* ============================================
   Benefits
   ============================================ */

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
}

.benefit {
  padding: 2rem 1.75rem;
  background: var(--ivory);
  border-radius: var(--r-lg);
  position: relative;
  counter-increment: benefit-counter;
  transition: box-shadow var(--dur) var(--ease);
}

.benefit:hover {
  box-shadow: 0 8px 28px rgba(20, 40, 20, 0.10);
  background: #fff;
}

.benefits {
  counter-reset: benefit-counter;
}

.benefit::before {
  content: counter(benefit-counter, decimal-leading-zero);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-variant-numeric: tabular-nums;
}

/* Icon unsichtbar – Nummern ersetzen es */
.benefit-icon {
  display: none;
}

.benefit h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.25;
}

.benefit p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.93rem;
}

@media (max-width: 768px) {
  .benefit {
    padding: 1.75rem 0;
  }
}

/* ============================================
   Packages (Pricing Cards)
   ============================================ */

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.package {
  background: var(--paper);
  border: none;
  border-radius: var(--r-lg);
  padding: 2.75rem 2rem;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.package:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package:hover .package-name {
  color: var(--gold-deep);
}

.package.featured {
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(20, 40, 20, 0.3);
}

.package.featured h3,
.package.featured .package-name { color: var(--ivory); }

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: var(--r-full);
}

.package-eyebrow {
  display: none;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.package.featured .package-eyebrow { color: var(--gold-light); }

.package-name {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.package-tagline {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.package.featured .package-tagline { color: var(--muted-light); }

.package-divider {
  height: 1px;
  background: var(--line);
  margin: 1.5rem 0;
}

.package.featured .package-divider { background: rgba(251, 250, 246, 0.15); }

.package-features {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.package-features li {
  padding: 0.625rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.75rem;
}

.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.package-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.package.featured .package-price { color: var(--muted-light); }

.package .btn {
  width: 100%;
}

.package.featured .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.package.featured .btn-primary:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}

/* ============================================
   Process / Steps
   ============================================ */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.step {
  text-align: left;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  font-style: italic;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   Gallery
   ============================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--ink);
  cursor: pointer;
  border-radius: var(--r-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--dur-slow) var(--ease);
}

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

.gallery-item.tall { grid-row: span 2; }

.g-1 { grid-column: span 5; grid-row: span 2; }
.g-2 { grid-column: span 4; }
.g-3 { grid-column: span 3; }
.g-4 { grid-column: span 3; }
.g-5 { grid-column: span 4; }
.g-6 { grid-column: span 5; }
.g-7 { grid-column: span 4; }
.g-8 { grid-column: span 4; }
.g-9 { grid-column: span 4; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 4/3; }
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--paper);
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
  transition: all var(--dur) var(--ease);
}

.testimonial:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.testimonial-quote-mark {
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-light);
  line-height: 1;
  font-style: italic;
  opacity: 0.6;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-meta {
  font-size: 0.875rem;
}

.testimonial-name {
  font-weight: 600;
  display: block;
  color: var(--ink);
}

.testimonial-event {
  color: var(--muted);
  font-size: 0.8125rem;
}

/* ============================================
   Story Hero (Full-Width mit Bild + Overlay)
   ============================================ */

.story-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  overflow: hidden;
  color: var(--ink);
}

.story-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 26s ease-out infinite alternate;
}

.story-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0.92) 100%);
}

.story-hero-byline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.story-hero-byline-photo {
  display: block;
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: top;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}

.story-hero-byline-text {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.story-hero-byline-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.story-hero-byline-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.story-hero-byline-role {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-deep);
}

.story-hero-grid {
  position: relative;
  z-index: 2;
}

.story-hero-portrait-desktop {
  display: none;
}

@media (min-width: 861px) {
  .story-hero-byline {
    display: none;
  }

  .story-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
  }

  .story-hero-portrait-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
  }

  .story-hero-portrait-desktop img {
    display: block;
    width: 320px;
    height: 320px;
    object-fit: cover;
    object-position: top;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--cream);
  }

  .story-hero-portrait-desktop-name {
    margin-top: 1.25rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    color: var(--ink);
  }

  .story-hero-portrait-desktop-role {
    margin-top: 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--gold-deep);
    white-space: nowrap;
  }
}

.story-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.story-hero .eyebrow {
  color: var(--gold-deep);
}

.story-hero .eyebrow::before {
  background: var(--gold-deep);
}

.story-hero h2 {
  color: var(--ink);
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.story-hero h2 .italic {
  color: var(--gold-deep);
}

.story-hero h2 .luxury {
  color: var(--gold-deep);
}

.story-hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-deep);
  border: none;
  margin: 0 0 2rem;
}

.story-hero p {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.story-hero-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 3px solid var(--gold-deep);
  margin: 2rem 0;
}

.story-hero .btn-ghost {
  color: var(--ink);
  margin-top: 1.5rem;
}

.story-hero .btn-ghost::after {
  background: var(--ink);
}

/* ============================================
   Region Hero (Full-Width mit Bild + Overlay)
   ============================================ */

.region-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
  color: #fff;
}

.region-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.region-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 28s ease-out infinite alternate;
}

.region-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20, 40, 20, 0.94) 0%, rgba(43, 68, 43, 0.82) 60%, rgba(43, 68, 43, 0.72) 100%);
}

.region-hero-content {
  position: relative;
  z-index: 2;
}

.region-hero-text {
  max-width: 760px;
  margin-bottom: 3.5rem;
}

.region-hero h2 {
  color: #fff;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.region-hero h2 .italic {
  color: var(--gold-light);
}

.region-hero .eyebrow {
  color: var(--gold-light);
}

.region-hero .eyebrow::before {
  background: var(--gold-light);
}

.region-hero-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.6;
}

.region-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 1100px) {
  .region-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .region-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .region-cards { grid-template-columns: 1fr; }
}

.region-card {
  background: #ffffff;
  border: 1px solid transparent;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--dur) var(--ease);
  cursor: default;
  box-shadow: 0 6px 18px rgba(20, 40, 20, 0.18);
}

.region-card:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(20, 40, 20, 0.28);
}

.region-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur) var(--ease);
}

.region-card:hover .region-card-icon {
  background: #ffffff;
  color: var(--gold-deep);
  transform: rotate(-6deg);
}

.region-card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.region-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}

.region-card:hover .region-card-name {
  color: #ffffff;
}

.region-hero-footer {
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ============================================
   Region / Service Area (legacy – andere Seiten)
   ============================================ */

.regions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .regions { grid-template-columns: 1fr; }
}

.region-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin: 2rem 0;
}

.region-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.region-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.6rem;
}

.region-image {
  aspect-ratio: 5/6;
  overflow: hidden;
  position: relative;
  border-radius: var(--r-xl);
}

.region-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FAQ
   ============================================ */

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

.faq-list.faq-two-col {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

@media (max-width: 768px) {
  .faq-list.faq-two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  color: var(--ink);
  transition: color var(--dur-fast) var(--ease);
}

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

.faq-toggle {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: all var(--dur) var(--ease);
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: all var(--dur) var(--ease);
}

.faq-toggle::before {
  top: 50%;
  left: 25%;
  right: 25%;
  height: 1px;
  transform: translateY(-50%);
}

.faq-toggle::after {
  left: 50%;
  top: 25%;
  bottom: 25%;
  width: 1px;
  transform: translateX(-50%);
}

.faq-item.open .faq-toggle {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-item.open .faq-toggle::before { background: var(--ink); }
.faq-item.open .faq-toggle::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}

.faq-answer-inner {
  padding-bottom: 1.75rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 720px;
}

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

/* ============================================
   Contact Form
   ============================================ */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-form-col { order: 1; }
  .contact-info { order: 2; }
}

/* Contact section background polish */
.contact-section-wrap {
  position: relative;
  overflow: hidden;
}

.contact-section-wrap::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 138, 66, 0.16), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.contact-section-wrap::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 138, 66, 0.1), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-details-list {
  display: grid;
  gap: 0.875rem;
  margin-top: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--dur) var(--ease);
}

.contact-detail:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--gold);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background: var(--gold);
  color: #fff;
  border: none;
  transition: all var(--dur) var(--ease);
}

.contact-detail:hover .contact-icon {
  transform: scale(1.06);
  background: var(--gold-deep);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.contact-detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  display: block;
}

.contact-detail-value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  transition: color var(--dur-fast) var(--ease);
}

a.contact-detail-value:hover {
  color: var(--gold-light);
}

.form {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3.5rem);
  color: var(--ink);
  border-radius: var(--r-xl);
  box-shadow: 0 30px 80px rgba(20, 40, 20, 0.28);
  position: relative;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.form-header-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(91, 138, 66, 0.25);
}

.form-header-icon svg {
  width: 26px;
  height: 26px;
}

.form-header-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.25rem;
  color: var(--ink);
  line-height: 1.2;
}

.form-header-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 480px) {
  .form {
    padding: 1.75rem 1.25rem 2rem;
  }

  .form-header {
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }

  .form-header-icon {
    width: 46px;
    height: 46px;
  }

  .form-header-icon svg {
    width: 21px;
    height: 21px;
  }

  .form-header-text h3 {
    font-size: 1.1rem;
  }

  .form-header-text p {
    font-size: 0.85rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.625rem;
}

.form-label .req {
  color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.95rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  transition: all var(--dur-fast) var(--ease);
  border-radius: var(--r-md);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(176, 141, 76, 0.1);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3e%3cpath fill='%23B08D4C' d='M6 8L0 0h12z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.package-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .package-radio-group { grid-template-columns: 1fr; }
}

.package-radio {
  position: relative;
  cursor: pointer;
}

.package-radio input {
  position: absolute;
  opacity: 0;
}

.package-radio-label {
  display: block;
  padding: 1rem 0.75rem;
  text-align: center;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--dur-fast) var(--ease);
}

.package-radio input:checked + .package-radio-label {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.package-radio:hover .package-radio-label {
  border-color: var(--gold);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-checkbox input {
  margin-top: 0.25rem;
  accent-color: var(--gold);
}

.form-checkbox a {
  color: var(--ink);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  padding: 2.5rem;
  text-align: center;
  background: var(--cream);
}

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

.form-success h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ============================================
   CTA Banner
   ============================================ */

.cta-banner {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  overflow: hidden;
  text-align: center;
  color: var(--ivory);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 11, 9, 0.75), rgba(13, 11, 9, 0.85));
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--ivory);
  margin-bottom: 1.25rem;
}

.cta-banner p {
  color: rgba(251, 250, 246, 0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--black);
  color: #D0D6D9;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ivory);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand .brand-mark {
  color: var(--gold);
  font-style: italic;
}

.footer-tagline {
  display: none;
}

.site-footer h4,
.footer h4 {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #D0D6D9;
  transition: color var(--dur-fast) var(--ease);
  font-size: 0.925rem;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  font-size: 0.925rem;
}

.footer-contact a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(186, 176, 160, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: #A5ACB0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #B8C0C4;
}

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

/* ============================================
   Page Header (for subpages)
   ============================================ */

.page-header {
  padding-top: 7rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.page-header-content {
  max-width: 780px;
}

.page-header h1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

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

.breadcrumb-sep {
  color: var(--muted-light);
}

/* ============================================
   Content (legal pages, prose)
   ============================================ */

.prose {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.prose h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 1rem 0; padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; list-style: disc; }
.prose strong { font-weight: 600; color: var(--ink); }
.prose a { color: var(--gold); text-decoration: underline; }
.prose a:hover { color: var(--gold-deep); }
.prose hr { margin: 2.5rem 0; border: none; border-top: 1px solid var(--line); }

/* ============================================
   Equipment Grid (for verleih page)
   ============================================ */

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.equipment-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}

.equipment-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.equipment-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
}

.equipment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

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

.equipment-card-body {
  padding: 1.75rem;
}

.equipment-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.equipment-card ul {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.equipment-card ul li {
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.25rem;
}

.equipment-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============================================
   References Grid (logos / partners)
   ============================================ */

.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.refs-grid > div {
  padding: 2rem;
  text-align: center;
  background: var(--paper);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--muted);
  font-style: italic;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all var(--dur-fast) var(--ease);
}

.refs-grid > div:hover {
  color: var(--ink);
  background: var(--cream);
}

/* ============================================
   Animations (scroll reveal)
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.in-view {
  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; }

/* ============================================
   Utility
   ============================================ */

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.no-padding-top { padding-top: 0 !important; }
.no-padding-bottom { padding-bottom: 0 !important; }
.mb-4 { margin-bottom: 2rem; }

/* ============================================
   Carousel / Horizontal Scroller (Cross-Sell)
   ============================================ */

.carousel-wrap {
  position: relative;
}

.carousel-controls {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  height: 6px;
}

.carousel-track::-webkit-scrollbar-track {
  background: var(--line-soft);
  border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.carousel-track > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

/* Gallery Carousel – 2 rows */
.gallery-carousel-track {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}

.gallery-carousel-track::-webkit-scrollbar {
  height: 6px;
}
.gallery-carousel-track::-webkit-scrollbar-track {
  background: var(--line-soft);
  border-radius: 10px;
}
.gallery-carousel-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.gallery-carousel-item {
  height: 240px;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ink);
  scroll-snap-align: start;
  cursor: pointer;
}

.gallery-carousel-item.wide {
  grid-column: span 2;
  grid-row: span 1;
}

@media (max-width: 700px) {
  .gallery-carousel-track {
    grid-auto-columns: 240px;
  }
  .gallery-carousel-item {
    height: 180px;
  }
  .gallery-carousel-item.wide {
    grid-column: span 1;
  }
}

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

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

/* Reviews Carousel – 1 row */
.reviews-carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}

.reviews-carousel-track::-webkit-scrollbar {
  height: 6px;
}
.reviews-carousel-track::-webkit-scrollbar-track {
  background: var(--line-soft);
  border-radius: 10px;
}
.reviews-carousel-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

.reviews-carousel-track > .review-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
}

@media (max-width: 600px) {
  .reviews-carousel-track > .review-card {
    flex: 0 0 88%;
  }
}

/* ============================================
   Google-Style Reviews
   ============================================ */

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.reviews-header-text {
  max-width: 620px;
}

.reviews-header-text h2 {
  margin-bottom: 0.75rem;
}

.reviews-header-text p {
  font-size: 1.05rem;
  color: var(--muted);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--paper);
  padding: 1rem 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}

.google-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.google-badge-stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.google-badge-info {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.google-badge-info strong {
  color: var(--ink);
  font-weight: 700;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--dur) var(--ease);
}

.review-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(43, 68, 43, 0.06);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.review-text {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.review-avatar.color-1 { background: linear-gradient(135deg, #4285F4, #1A73E8); }
.review-avatar.color-2 { background: linear-gradient(135deg, #EA4335, #C5221F); }
.review-avatar.color-3 { background: linear-gradient(135deg, #FBBC04, #F29900); }
.review-avatar.color-4 { background: linear-gradient(135deg, #34A853, #188038); }
.review-avatar.color-5 { background: linear-gradient(135deg, #9334E6, #7627BB); }
.review-avatar.color-6 { background: linear-gradient(135deg, #FF6D01, #E8710A); }

.review-author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  display: block;
  line-height: 1.3;
}

.review-author-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================
   Asymmetric Benefits Grid (mit großer CTA-Card)
   ============================================ */

.benefits-asym {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 1.25rem;
}

@media (max-width: 1100px) {
  .benefits-asym { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .benefits-asym { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .benefits-asym .benefit-card { padding: 1.5rem 1.125rem; }
}

.benefit-card {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  border: none;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  background: #fff;
  box-shadow: 0 8px 28px rgba(20, 40, 20, 0.10);
}

.benefit-card-icon {
  width: 56px;
  height: 56px;
  background: var(--line-soft);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.375rem;
  color: var(--gold);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  flex-shrink: 0;
}

.benefit-card:hover .benefit-card-icon {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 6px 18px rgba(91, 138, 66, 0.28);
}

.benefit-card-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover .benefit-card-icon svg {
  transform: scale(1.15);
}

/* Per-card micro-animations on hover */
@keyframes icon-bounce {
  0%   { transform: scale(1) translateY(0); }
  45%  { transform: scale(1.18) translateY(-4px); }
  70%  { transform: scale(1.10) translateY(-2px); }
  100% { transform: scale(1.15) translateY(0); }
}
@keyframes icon-spin-once {
  0%   { transform: rotate(0deg) scale(1); }
  60%  { transform: rotate(200deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1.15); }
}
@keyframes icon-shake {
  0%, 100% { transform: rotate(0deg) scale(1.15); }
  20%  { transform: rotate(-10deg) scale(1.15); }
  40%  { transform: rotate(10deg) scale(1.15); }
  60%  { transform: rotate(-6deg) scale(1.15); }
  80%  { transform: rotate(6deg) scale(1.15); }
}
@keyframes icon-pulse {
  0%, 100% { transform: scale(1.15); }
  50%  { transform: scale(1.28); }
}

.benefit-card:nth-child(1):hover .benefit-card-icon svg { animation: icon-bounce 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.benefit-card:nth-child(2):hover .benefit-card-icon svg { animation: icon-bounce 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.benefit-card:nth-child(3):hover .benefit-card-icon svg { animation: icon-pulse 0.6s ease-in-out forwards; }
.benefit-card:nth-child(4):hover .benefit-card-icon svg { animation: icon-spin-once 0.65s ease-in-out forwards; }
.benefit-card:nth-child(5):hover .benefit-card-icon svg { animation: icon-bounce 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.benefit-card:nth-child(6):hover .benefit-card-icon svg { animation: icon-shake 0.55s ease-in-out forwards; }

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
  color: var(--ink);
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.benefit-card-cta {
  grid-column: span 2;
  grid-row: span 1;
  background: var(--ink);
  color: var(--paper);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.benefit-card-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(91, 138, 66, 0.18), transparent 70%);
  border-radius: 50%;
}

.benefit-card-cta h3 {
  color: var(--paper);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
}

.benefit-card-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
  position: relative;
}

.benefit-card-cta .btn {
  align-self: flex-start;
  position: relative;
}

@media (max-width: 1100px) {
  .benefit-card-cta { grid-column: span 2; }
}
@media (max-width: 600px) {
  .benefit-card-cta { grid-column: span 1; }
}

/* ============================================
   Stats Section (mit Bildern + Karten)
   ============================================ */

.stats-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .stats-section { grid-template-columns: 1fr; }
}

.stats-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ink);
}

.stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.stats-image:hover img {
  transform: scale(1.04);
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .stats-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-cards { grid-template-columns: 1fr; }
}

.stat-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: all var(--dur) var(--ease);
}

.stat-card.dark {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--paper);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(43, 68, 43, 0.08);
}

.stat-card-value {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 1rem;
}

.stat-card.dark .stat-card-value {
  color: var(--paper);
}

.stat-card-desc {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.stat-card.dark .stat-card-desc {
  color: var(--paper);
}

/* ============================================
   Enhanced Animations
   ============================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-stagger.in-view > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }
.reveal-stagger.in-view > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.65s; }
.reveal-stagger.in-view > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }

/* ============================================
   Multi-Step Form (Wizard)
   ============================================ */

.form-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
  padding: 0 1rem;
}

.form-steps::before {
  content: '';
  position: absolute;
  top: 19px;
  left: calc(16% + 1rem);
  right: calc(16% + 1rem);
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.form-step-progress {
  position: absolute;
  top: 19px;
  left: calc(16% + 1rem);
  height: 2px;
  background: var(--gold);
  z-index: 1;
  transition: width 0.5s var(--ease);
  width: 0;
}

.form-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  cursor: default;
}

.form-step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--muted);
  transition: all var(--dur) var(--ease);
  font-size: 0.95rem;
}

.form-step-indicator.active .form-step-number {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(91, 138, 66, 0.18);
}

.form-step-indicator.completed .form-step-number {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.form-step-indicator.completed .form-step-number::before {
  content: '✓';
  font-size: 1rem;
}

.form-step-indicator.completed .form-step-number-text {
  display: none;
}

.form-step-label {
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.625rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: color var(--dur-fast) var(--ease);
}

.form-step-indicator.active .form-step-label,
.form-step-indicator.completed .form-step-label {
  color: var(--ink);
}

.form-step {
  display: none;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.form-step.active {
  display: block;
  animation: fadeStepIn 0.45s var(--ease-out) forwards;
}

@keyframes fadeStepIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-step-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
  opacity: 1;
}

.form-step-subtitle {
  font-size: 0.95rem;
  color: #485860;
  margin-bottom: 1.75rem;
  line-height: 1.55;
  opacity: 1;
}

.form-nav {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.form-nav .btn {
  flex: 1;
}

.form-nav-only-next {
  justify-content: flex-end;
}

.form-nav-only-next .btn {
  flex: 0 0 auto;
  min-width: 200px;
}

/* ============================================
   Stagger Reveal Gallery (Webflow-Style)
   ============================================ */

.reveal-gallery-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.reveal-gallery-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 720px;
  margin-inline: auto;
}

.reveal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  grid-auto-rows: 220px;
}

@media (max-width: 1100px) {
  .reveal-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 768px) {
  .reveal-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
}

.reveal-gallery-item {
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ivory);
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  cursor: pointer;
  position: relative;
}

.reveal-gallery-item.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger-Delays für jedes Element */
.reveal-gallery-item:nth-child(1) { transition-delay: 0.05s; }
.reveal-gallery-item:nth-child(2) { transition-delay: 0.15s; }
.reveal-gallery-item:nth-child(3) { transition-delay: 0.25s; }
.reveal-gallery-item:nth-child(4) { transition-delay: 0.35s; }
.reveal-gallery-item:nth-child(5) { transition-delay: 0.45s; }
.reveal-gallery-item:nth-child(6) { transition-delay: 0.55s; }
.reveal-gallery-item:nth-child(7) { transition-delay: 0.20s; }
.reveal-gallery-item:nth-child(8) { transition-delay: 0.30s; }
.reveal-gallery-item:nth-child(9) { transition-delay: 0.40s; }
.reveal-gallery-item:nth-child(10) { transition-delay: 0.50s; }

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

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

/* Asymmetric layout - 6-Spalten Editorial */
.rg-tall { grid-row: span 2; }
.rg-wide { grid-column: span 2; }
.rg-large { grid-column: span 2; grid-row: span 2; }

@media (max-width: 768px) {
  .rg-tall, .rg-wide, .rg-large {
    grid-row: span 1;
    grid-column: span 1;
  }
}

/* Selection */
::selection { background: var(--gold); color: var(--paper); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--muted-light); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
