/* =============================================================================
   AMORE CUT — Luxury Hair Salon
   style.css — Complete Design System
   ============================================================================= */

/* =============================================================================
   1. FONTS
   Lokal eingebunden über assets/fonts/fonts.css (kein externer Request, DSGVO)
   ============================================================================= */


/* =============================================================================
   2. CSS CUSTOM PROPERTIES
   ============================================================================= */

:root {
  /* Backgrounds — warme, tiefe Neutraltöne statt totem Schwarz */
  --bg-primary:   #13100c;
  --bg-secondary: #1c1712;
  --bg-tertiary:  #26201a;
  --bg-cream:     #f2ece1;
  --bg-cream-2:   #e9e1d3;

  /* Gold / Messing Palette */
  --gold:         #c69a45;
  --gold-light:   #e6c079;
  --gold-dark:    #8f6f2c;
  --champagne:    #f5e6c8;

  /* Text */
  --text-primary:   #f7f3ec;
  --text-secondary: #b3a89a;
  --text-muted:     #6b6155;
  --text-ink:       #201a13;

  /* Glass / Borders */
  --glass-bg:     rgba(255, 255, 255, 0.04);
  --glass-border: rgba(201, 168, 76, 0.2);
  --border-subtle: rgba(255, 255, 255, 0.06);

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Inter', sans-serif;
}


/* =============================================================================
   3. RESET & BASE
   ============================================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Feiner Film-Grain über der ganzen Seite – gibt den dunklen Flächen Tiefe */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: no-preference) {
  body::before { animation: grainShift 8s steps(6) infinite; }
}
@keyframes grainShift {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-3%, -2%); }
  80% { transform: translate(4%, 2%); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Text Selection */
::selection {
  background: var(--gold);
  color: #0a0a0a;
}

::-moz-selection {
  background: var(--gold);
  color: #0a0a0a;
}

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

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


/* =============================================================================
   4. LOADING SCREEN
   ============================================================================= */

#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

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

.loading-logo {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 6px;
  line-height: 1;
}

.loading-logo span {
  color: var(--gold);
}

.loading-logo-img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
  object-fit: contain;
  border-radius: 8px;
}

.loading-tagline {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

.loading-bar {
  width: 200px;
  height: 1px;
  background: var(--border-subtle);
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: 2px;
}

.loading-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: loadingFill 2s ease forwards;
}

@keyframes loadingFill {
  from { width: 0; }
  to   { width: 100%; }
}


/* =============================================================================
   5. CUSTOM CURSOR
   ============================================================================= */

#cursor,
#cursor-ring {
  display: none !important;
}

#cursor.hover {
  width: 16px;
  height: 16px;
}

#cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}


/* =============================================================================
   6. NAVBAR
   ============================================================================= */

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 5%;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 5%;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 4px;
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

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

.nav-link {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* Nav CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #0a0a0a;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.nav-cta:hover::before {
  left: 100%;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

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

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

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


/* =============================================================================
   7. BUTTONS
   ============================================================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: #0a0a0a;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}


/* =============================================================================
   8. SECTION LAYOUT
   ============================================================================= */

.section {
  padding: 120px 6%;
  position: relative;
  z-index: 2;
}

.section-dark {
  background: var(--bg-secondary);
}

/* Helle Cream-Sektion – erzeugt Rhythmus dunkel/hell */
.section-light {
  background: var(--bg-cream);
  color: var(--text-ink);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Editorialer, linksbündiger Section-Header statt zentrierter Schablone */
.section-header {
  text-align: left;
  margin: 0 auto 64px;
  max-width: 1300px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 22px 28px;
}

.section-tag {
  grid-column: 1;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.section-tag::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.section-light .section-tag { color: var(--gold-dark); }
.section-light .section-tag::before { background: var(--gold-dark); }

.section-title {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-heading);
  font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 0.98;
  max-width: 18ch;
}
.section-light .section-title { color: var(--text-ink); }

/* Akzentwort: kein Gradient-Kitsch mehr, sondern klare Kursive + Unterstrich-Mark */
.section-title em {
  font-style: italic;
  color: var(--gold);
  position: relative;
  white-space: nowrap;
}
.section-light .section-title em { color: var(--gold-dark); }

.section-divider { display: none; }

.section-subtitle {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  font-size: 15.5px;
  color: var(--text-secondary);
  max-width: 44ch;
  line-height: 1.85;
  text-align: left;
}
.section-light .section-subtitle { color: #5c5346; }

@media (max-width: 860px) {
  .section-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .section-tag { grid-column: 1; }
  .section-title { grid-row: auto; max-width: none; }
  .section-subtitle { grid-column: 1; grid-row: auto; justify-self: start; max-width: 60ch; }
}


/* =============================================================================
   9. HERO SECTION
   ============================================================================= */

#hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-primary));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 8%;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
  opacity: 0.8;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(70px, 10vw, 110px);
  font-weight: 300;
  line-height: 0.9;
  color: var(--text-primary);
  margin-bottom: 0;
}

.hero-title .line {
  display: block;
}

.hero-title .gold {
  color: var(--gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin: 28px 0 44px;
  line-height: 1.7;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

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

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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


/* =============================================================================
   10. SERVICES SECTION
   ============================================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1300px;
  margin: 0 auto;
  counter-reset: svc;
  border-top: 1px solid var(--border-subtle);
}

.service-card {
  counter-increment: svc;
  background: transparent;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 40px 34px 44px;
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.services-grid .service-card:nth-child(3n) { border-right: none; }

/* Große, dezente Nummer statt Kreis-Icon-Klischee */
.service-card::before {
  content: counter(svc, decimal-leading-zero);
  position: absolute;
  top: 26px;
  right: 30px;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  opacity: 0.28;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  background: var(--glass-bg);
}
.service-card:hover::before { opacity: 0.7; }

/* Gold-Streifen links, der beim Hover aufwächst */
.service-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
.service-card:hover::after { transform: scaleY(1); }

.service-icon {
  width: auto;
  height: auto;
  background: none;
  border: none;
  border-radius: 0;
  margin-bottom: 22px;
}

.service-icon i {
  font-size: 26px;
  color: var(--gold);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 29px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 34ch;
}

.service-price {
  display: inline-block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-light);
  letter-spacing: 0.5px;
  margin-top: 26px;
}

.service-arrow {
  display: none;
}


/* =============================================================================
   11. GALLERY SECTION
   ============================================================================= */

#gallery.section-light {
  background: var(--bg-cream);
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-zoom-icon {
  color: white;
  font-size: 24px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  line-height: 1;
  padding: 4px;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.lightbox-nav:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}


/* =============================================================================
   12. PRICING SECTION
   ============================================================================= */

#pricing {
  background: var(--bg-secondary);
}

.pricing-grid {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 52px 40px;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), 0 0 80px rgba(201, 168, 76, 0.1);
  transform: scale(1.04);
}

.pricing-card:hover:not(.featured) {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #0a0a0a;
  padding: 5px 22px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 10px;
}

.pricing-amount {
  font-size: 68px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pricing-period {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.pricing-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pricing-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
}

.pricing-duration i {
  font-size: 10px;
}

.pricing-ideal {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  margin-top: 36px;
  justify-content: center;
}

/* Pricing card with image – clean structure */
.pricing-card.with-img {
  padding: 0;
  overflow: hidden;
}

.pricing-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.pricing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75);
  transition: transform 0.7s ease, filter 0.5s ease;
}

.pricing-card:hover .pricing-img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.88);
}

.pricing-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.65) 100%);
}

.pricing-card-body {
  padding: 28px 36px 36px;
}

.pricing-card.with-img .pricing-badge {
  position: static;
  display: block;
  width: fit-content;
  transform: none;
  margin: 0 auto 16px;
}

.pricing-card.with-img .btn-primary,
.pricing-card.with-img .btn-secondary {
  margin-top: 28px;
}


/* =============================================================================
   13. TEAM SECTION
   ============================================================================= */

#team {
  background: var(--bg-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1300px;
  margin: 0 auto;
}

.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.team-img-wrap {
  overflow: hidden;
  height: 320px;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}

.team-info {
  padding: 28px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  gap: 10px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  transition: all 0.3s ease;
}

.team-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* =============================================================================
   14. REVIEWS SECTION
   ============================================================================= */

#reviews {
  background: var(--bg-secondary);
  overflow: hidden;
}

.reviews-carousel {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.reviews-overflow {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  min-width: 400px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 44px;
  margin: 0 12px;
  flex-shrink: 0;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 20px;
}

.review-text {
  font-family: var(--font-heading);
  font-size: 19px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 28px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  color: #0a0a0a;
  font-weight: 600;
  flex-shrink: 0;
}

.review-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.review-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.carousel-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-subtle);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}


/* =============================================================================
   15. BOOKING SECTION
   ============================================================================= */

#booking {
  background: var(--bg-primary);
}

.booking-container {
  max-width: 820px;
  margin: 0 auto;
}

.booking-form {
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
}

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

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(3) hue-rotate(5deg);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-select option {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

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

/* Time Slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.time-slot {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 11px 8px;
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  font-family: var(--font-body);
}

.time-slot:hover,
.time-slot.selected {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 12px;
  letter-spacing: 3px;
  margin-top: 8px;
}


/* =============================================================================
   16. SUCCESS MODAL
   ============================================================================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9980;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.modal-content {
  position: relative;
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  max-width: 420px;
  width: 90%;
}

.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--gold);
}

.modal-content h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.modal-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}


/* =============================================================================
   17. CONTACT SECTION
   ============================================================================= */

#contact {
  background: var(--bg-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-value {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
}

.contact-value a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}

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

.map-placeholder {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--text-muted);
  gap: 8px;
}

.map-placeholder i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 8px;
}

/* Echte Google Maps Einbettung */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s ease;
}

.map-embed:hover iframe {
  filter: grayscale(0%) contrast(1);
}

/* Google Maps – Zwei-Klick-Consent (DSGVO), gestaltet als echte Karten-Vorschau */
.map-consent {
  position: relative;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 32px 28px;
  overflow: hidden;
  cursor: pointer;
  /* CSS-only Karten-Look: warme Grundfläche, Straßenraster, Hauptstraße, Pin-Glow */
  background:
    radial-gradient(circle at 50% 40%, rgba(198,154,69,0.20), transparent 42%),
    linear-gradient(118deg, transparent 47%, rgba(230,192,121,0.10) 48% 52%, transparent 53%),
    repeating-linear-gradient(0deg,  transparent 0 44px, rgba(255,255,255,0.045) 44px 46px),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(255,255,255,0.045) 52px 54px),
    var(--bg-tertiary);
}
/* leichter Vignetten-Scrim für Lesbarkeit über dem Raster */
.map-consent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(19,16,12,0.35), rgba(19,16,12,0.72));
  pointer-events: none;
}
.map-consent > * { position: relative; z-index: 1; }
/* Kartenähnliches Label oben links */
.map-consent::before {
  content: 'Am Markt 7 · Steinhagen';
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-secondary);
  background: rgba(19,16,12,0.6);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: 40px;
}
.map-consent i {
  font-size: 46px;
  color: var(--gold);
  margin-bottom: 4px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5));
}
.map-consent-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--text-primary);
}
.map-consent-text {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 420px;
}
.map-consent-text a {
  color: var(--gold);
  text-decoration: underline;
}
.map-consent-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.map-consent-btn i { font-size: 15px; color: inherit; margin: 0; }
.map-consent-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201,168,76,0.28);
}


/* =============================================================================
   18. FOOTER
   ============================================================================= */

#footer {
  background: #050505;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 5% 36px;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 4px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 300px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.footer-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
}

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

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* EA Werbeagentur Credit */
.footer-agency {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.footer-agency-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-muted);
  transition: opacity var(--transition);
}

.footer-agency-link:hover {
  opacity: 0.85;
}

.footer-agency-logo {
  height: 28px;
  width: auto;
  opacity: 0.75;
  filter: brightness(1.2);
  transition: opacity var(--transition);
  border-radius: 4px;
}

.footer-agency-logo:hover {
  opacity: 1;
}

.footer-agency-name {
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.footer-agency:hover .footer-agency-name {
  color: var(--gold-light);
}


/* =============================================================================
   19. PAGE TRANSITION
   ============================================================================= */

.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9995;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}


/* =============================================================================
   20. REVEAL ANIMATION
   ============================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Staggered delay helpers */
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }


/* =============================================================================
   21. UTILITY CLASSES
   ============================================================================= */

.text-gold {
  color: var(--gold);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }

/* Subtle grain/noise overlay on dark backgrounds */
.bg-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
  opacity: 0.4;
}


/* =============================================================================
   22. RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================================= */

@media (max-width: 1024px) {
  .section {
    padding: 80px 5%;
  }

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

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

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

  .footer-top > :first-child {
    grid-column: 1 / -1;
  }

  /* Mobile Nav Menu */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .nav-cta {
    margin-top: 16px;
  }

  .nav-hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }
}


/* =============================================================================
   23. RESPONSIVE — Mobile (max-width: 768px)
   ============================================================================= */

@media (max-width: 768px) {
  .section {
    padding: 64px 4%;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .section-title {
    font-size: clamp(32px, 8vw, 50px);
  }

  /* Hero */
  .hero-title {
    font-size: clamp(50px, 14vw, 76px);
  }

  .hero-content {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-subtitle {
    font-size: 15px;
    margin: 20px 0 32px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 32px 24px;
  }

  /* Gallery */
  .gallery-grid {
    columns: 2;
    column-gap: 10px;
  }

  .gallery-item {
    margin-bottom: 10px;
  }

  /* Forms */
  .booking-form {
    padding: 40px 28px;
  }

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

  .time-slots {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Reviews */
  .review-card {
    min-width: 300px;
  }

  /* Pricing */
  .pricing-card.featured {
    transform: scale(1);
  }

  /* Contact */
  .contact-grid {
    gap: 40px;
  }

  .map-placeholder,
  .map-embed iframe,
  .map-consent {
    height: 260px;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-top > :first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    align-items: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-agency {
    justify-content: center;
  }
}


/* =============================================================================
   24. RESPONSIVE — Small Mobile (max-width: 480px)
   ============================================================================= */

@media (max-width: 480px) {
  .section {
    padding: 56px 4%;
  }

  .section-header {
    margin-bottom: 36px;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-tag {
    font-size: 9px;
    letter-spacing: 2.5px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Services */
  .service-card {
    padding: 28px 20px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
  }

  .service-name {
    font-size: 22px;
  }

  /* Gallery */
  .gallery-grid {
    columns: 1;
  }

  /* Nav */
  .nav-logo {
    font-size: 22px;
  }

  /* Pricing Tabs */
  .price-tab {
    padding: 9px 12px;
    font-size: 10px;
    letter-spacing: 1px;
  }

  /* Booking */
  .booking-form {
    padding: 32px 20px;
  }

  /* Reviews */
  .review-card {
    min-width: 260px;
    padding: 28px 20px;
  }

  /* Misc */
  .pricing-grid {
    gap: 40px;
  }

  .modal-content {
    padding: 44px 28px;
  }

  .loading-logo {
    font-size: 40px;
    letter-spacing: 4px;
  }

  /* Hide custom cursor on touch devices */
  #cursor,
  #cursor-ring {
    display: none;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-agency-logo {
    height: 22px;
  }
}


/* =============================================================================
   24b. GOOGLE REVIEWS CARD
   ============================================================================= */

.gr-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 5%;
}

.gr-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle gold top line */
.gr-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Faint radial glow */
.gr-card::after {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(201,168,76,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Google coloured wordmark */
.gr-wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

/* Score + stars row */
.gr-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.gr-score {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1;
}

.gr-right { text-align: left; }

.gr-stars {
  color: #FBBC05;
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.gr-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gr-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 28px 0;
  position: relative;
  z-index: 1;
}

.gr-text {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

/* Button row */
.gr-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* "Bewertungen lesen" – ghost style */
.gr-btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}
.gr-btn-read i { color: #FBBC05; }
.gr-btn-read:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* "Jetzt bewerten" – gold filled */
.gr-btn-write {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}
.gr-btn-write:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.gr-g-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .gr-card    { padding: 44px 28px; }
  .gr-score   { font-size: 50px; }
  .gr-stars   { font-size: 18px; }
  .gr-actions { flex-direction: column; align-items: center; }
  .gr-btn-read,
  .gr-btn-write { width: 100%; justify-content: center; }
}


/* =============================================================================
   25a. BOOKING CTA (Salonkee)
   ============================================================================= */

.booking-cta {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 5%;
}

.booking-cta-card {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* thin gold top-line accent */
.booking-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* subtle radial glow */
.booking-cta-card::after {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.booking-cta-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 30px;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.booking-cta-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.booking-cta-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  max-width: 420px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.booking-cta-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.booking-badge i { color: var(--gold); font-size: 10px; }

.booking-cta-btn {
  font-size: 14px;
  letter-spacing: 2px;
  padding: 18px 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.booking-cta-note {
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.booking-cta-note i { font-size: 9px; color: var(--gold); }

@media (max-width: 600px) {
  .booking-cta-card { padding: 44px 28px; }
  .booking-cta-title { font-size: 30px; }
  .booking-cta-badges { gap: 8px; }
  .booking-badge { font-size: 11px; padding: 7px 12px; }
  .booking-cta-btn { padding: 16px 36px; }
}


/* =============================================================================
   25. PRICE TABS & PRICE LIST
   ============================================================================= */

.price-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 56px;
  max-width: 1200px;
  padding: 0 5%;
  flex-wrap: wrap;
}

.price-tab {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.price-tab i { font-size: 11px; }

.price-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.price-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.price-content {
  display: none;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 5%;
  animation: priceIn 0.35s ease;
}

.price-content.active { display: block; }

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

.price-category { margin-bottom: 48px; }

.price-cat-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-cat-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 20px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  border-radius: 2px;
  flex-shrink: 0;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-subtle);
  gap: 24px;
  transition: padding-left var(--transition);
}

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

.price-row:hover { padding-left: 10px; }
.price-row:hover .price-name { color: var(--champagne); }

.price-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  transition: color var(--transition);
  letter-spacing: 0.3px;
}

.price-sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.price-dur {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  white-space: nowrap;
  background: var(--glass-bg);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
}

.price-val {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
  letter-spacing: 0.5px;
}

.price-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 48px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .price-tabs { gap: 6px; }
  .price-tab  { padding: 10px 14px; font-size: 10px; letter-spacing: 1px; }
  .price-row  { grid-template-columns: 1fr auto; }
  .price-dur  { display: none; }
  .price-val  { font-size: 18px; min-width: 55px; }
}


/* =============================================================================
   26. PRINT STYLES (minimal, accessibility)
   ============================================================================= */

@media print {
  #loading-screen,
  #cursor,
  #cursor-ring,
  #navbar,
  .hero-scroll,
  .page-transition {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}
