@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Fragment+Mono&display=swap');
@import url('loading-skeletons.css');

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --bg: #ffffff;
  --text: #2a2a2a;
  --text-muted: #8B9E8C;
  --accent: #3D5B4C;
  /* Deep forest green */
  --accent-secondary: #8B9E8C;
  /* Sage green */
  --accent-light: #EDEBE3;
  /* Cream white background */
  --black: #1a1a1a;
  --bg-dark-green: #3D5B4C;
  --white: #ffffff;
  --bg-light: #f5f4f0;
  /* Light parchment for placeholders */
  
  /* Typography */
  --font-display: 'Roboto Condensed', sans-serif;
  --font-body: 'Roboto Condensed', sans-serif;
  --font-mono: 'Fragment Mono', monospace;

  /* Consistent Transitions */
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.7, 0, 0.3, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Consistent Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-section: clamp(8rem, 15vh, 15rem);
  
  /* Consistent Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  /* Consistent Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}


/* =============================================
   RESET & BASE
   ============================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* scroll-behavior disabled - Lenis handles smooth scrolling */

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Roboto Condensed', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  width: 100%;
}

body.intro-active {
  overflow: hidden !important;
}

/* =============================================
   0. CUSTOM CURSOR (DEPRECATED)
   ============================================= */
/* Custom cursor removed as per user request to restore normal pointer. */
html,
body {
  cursor: default;
}

/* =============================================
   CONSISTENT ANIMATIONS
   ============================================= */

/* Base hover animation */
a,
button,
.burger-menu,
.close-btn,
.btn-learn-more,
.btn-category,
.btn-submit,
.premium-btn,
.lang-btn,
.menu-link,
[role="button"] {
  cursor: pointer;
}

/* Allow text cursor only in inputs and textareas */
input,
textarea {
  cursor: text;
}

/* Consistent hover effects */
a:hover,
button:hover,
.btn-learn-more:hover,
.btn-category:hover,
.btn-submit:hover,
.premium-btn:hover,
.lang-btn:hover,
.menu-link:hover {
  /* removed transform: translateY(-2px) as requested */
  color: var(--accent);
}

/* Consistent focus states - only visible for keyboard users */
a:focus,
button:focus,
.btn-learn-more:focus,
.btn-category:focus,
.btn-submit:focus,
.premium-btn:focus,
.lang-btn:focus,
.menu-link:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
.btn-learn-more:focus-visible,
.btn-category:focus-visible,
.btn-submit:focus-visible,
.premium-btn:focus-visible,
.lang-btn:focus-visible,
.menu-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Smooth opacity transitions */
img,
.video-container,
.gallery-item,
.portfolio-item {
  transition: opacity var(--transition-base), transform var(--transition-base);
}

img {
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
}

/* Exceptions: Images that ARE interactive (Portfolio Page & Beispiele) */
.masonry-item img,
.portfolio-event-card img,
.overlay-gallery img,
.lightbox img {
  pointer-events: auto !important;
  user-select: auto !important;
}

/* Explicitly block others even if nested */
.edit-step,
.collage-img,
#hero-bg {
    pointer-events: none !important;
    cursor: default !important;
}

.gallery-item:hover,
.portfolio-item:hover,
img:hover {
  opacity: 1 !important;
  transform: none !important;
  cursor: default !important;
}

/* Re-enable hover effects ONLY for interactive sections */
.masonry-item img:hover,
.portfolio-event-card img:hover {
    opacity: 0.9 !important;
    transform: scale(1.02) !important;
    cursor: zoom-in !important;
}

/* =============================================
   1. CINEMATIC INTRO OVERLAY
   ============================================= */

/* The full-screen overlay that covers everything on load */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Three vertical dark strips that wipe away upward */
.intro-bg-strip {
  position: absolute;
  inset: 0;
  background: #111110;
  transform-origin: bottom;
  will-change: transform;
}

#intro-strip-1 {
  left: 0; right: 66.666%;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.0s;
}
#intro-strip-2 {
  left: 33.333%; right: 33.333%;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1) 0.08s;
}
#intro-strip-3 {
  left: 66.666%; right: 0;
  transition: transform 1.0s cubic-bezier(0.76, 0, 0.24, 1) 0.16s;
}

/* When the overlay is dismissed, strips slide up */
.intro-overlay.dismissed .intro-bg-strip {
  transform: scaleY(0);
}

/* Center content */
.intro-center {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
}

/* Logo text with clip-path reveal */
.intro-logo-wrap {
  overflow: hidden;
  padding-bottom: 0.1em;
}

.intro-logo {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 8vw, 6rem);
  font-weight: 100;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: none; /* removed translateY(60px) */
  transition: opacity 0.01s linear 0s; /* will be driven by JS */
}

/* Tagline */
.intro-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.6rem, 1.5vw, 0.85rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 1.2rem;
  opacity: 0;
  transform: none; /* removed translateY(15px) */
  transition: opacity 0.6s ease 0s;
}

.intro-overlay.content-visible .intro-tagline {
  opacity: 1;
  transform: none;
}

/* Progress bar at the bottom */
.intro-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}

.intro-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width linear;
}

/* Thin decorative horizontal lines left & right of the logo */
.intro-center::before,
.intro-center::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 1px;
  background: rgba(255,255,255,0.2);
  transition: width 0.8s cubic-bezier(0.76, 0, 0.24, 1) 0.3s;
}
.intro-center::before { right: calc(100% + 2rem); }
.intro-center::after  { left:  calc(100% + 2rem); }

.intro-overlay.content-visible .intro-center::before,
.intro-overlay.content-visible .intro-center::after {
  width: 60px;
}

/* Prevent page scroll during intro */
body.intro-active {
  overflow: hidden !important;
}

/* =============================================
   2. NAVIGATION
   ============================================= */
.top-nav-container {
  position: fixed;
  top: 40px;
  left: 40px;
  right: 40px;
  z-index: 2200;
  /* Above overlay */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-logo {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.5s var(--transition);
}

.top-nav-container.nav-dark .main-logo {
  color: #000000;
}

.top-nav-container.nav-light .main-logo {
  color: #ffffff;
}

/* ── BURGER MENU – clean two-line design ──────────────────── */
.burger-menu {
  width: 36px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2300;
  flex-shrink: 0;
  position: relative;
}

.burger-line {
  display: block;
  height: 1.5px;
  border-radius: 2px;
  background: #ffffff;
  transform-origin: center;
  transition:
    transform 0.35s cubic-bezier(0.76, 0, 0.24, 1),
    width     0.35s cubic-bezier(0.76, 0, 0.24, 1),
    opacity   0.25s ease,
    background 0.25s ease;
}

/* Top line: full width */
.burger-line:nth-child(1) {
  width: 100%;
}

/* Bottom line: shorter = refined/asymmetric look */
.burger-line:nth-child(2) {
  width: 60%;
}

/* Third span kept in HTML for open-cross but hidden by default */
.burger-line:nth-child(3) {
  display: none;
}

/* Hover: widen the short line */
.burger-menu:not(.is-exit):hover .burger-line:nth-child(2) {
  width: 100%;
}

/* Color on light/dark nav */
.top-nav-container.nav-dark .burger-line {
  background: #111111;
}
.top-nav-container.nav-light .burger-line {
  background: #ffffff;
}

/* ── Open state: two lines rotate into X ─── */
.burger-menu.open .burger-line:nth-child(1) {
  transform: translateY(7.75px) rotate(45deg);
  width: 100% !important;
  background: var(--text) !important;
}
.burger-menu.open .burger-line:nth-child(2) {
  transform: translateY(-7.75px) rotate(-45deg);
  width: 100% !important;
  background: var(--text) !important;
}

/* ── Exit X on subpages: same clean cross ─── */
.burger-menu.is-exit .burger-line:nth-child(1) {
  transform: translateY(7.75px) rotate(45deg);
  width: 100%;
}
.burger-menu.is-exit .burger-line:nth-child(2) {
  transform: translateY(-7.75px) rotate(-45deg);
  width: 100%;
}

/* Hover on exit cross: subtle opacity feedback */
.burger-menu.is-exit:hover .burger-line {
  opacity: 0.6;
}

/* Menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 2100;
  /* Below nav container */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-overlay.open {
  transform: translateY(0);
}

.menu-link {
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: var(--accent);
}

/* Language switcher */
.lang-switch {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  cursor: pointer;
}

.lang-btn {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.lang-btn.active {
  opacity: 1;
  font-weight: 700;
}

/* =============================================
   3. SECTION COMMON
   ============================================= */
section {
  padding: var(--spacing-section) 10%;
  position: relative;
  z-index: 10;
  background: var(--bg);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: var(--spacing-md);
  font-weight: 400;
  display: block;
}

/* =============================================
   4. HERO
   ============================================= */


.hero {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  color: white;
  background: var(--black);
  margin: 0;
  padding: 0;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
}

.hero-video-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 13, 0.4);
}

.hero-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-out;
  will-change: opacity;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-video.loaded {
  opacity: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-title {
  font-size: clamp(1.5rem, 6vw, 4rem);
  font-weight: 100;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 0.3em;
  opacity: 0.7;
  margin-top: 1rem;
}

/* =============================================
   5. ABOUT
   ============================================= */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  padding: var(--spacing-section) 10%;
  margin: 0 auto;
}

.about-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3 / 4;
  justify-self: end;
  background-color: var(--bg-light);
  /* Placeholder color if image fails */
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.1);
  transition: transform 1.5s var(--transition);
}

.about-image.reveal img {
  transform: scale(1);
}

.about-content h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 3rem;
  color: var(--text);
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 3rem;
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
  text-decoration: none;
  padding: 0.8rem 0;
  position: relative;
  transition: opacity 0.3s ease;
}

.btn-text-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.btn-text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 2rem;
}

.review-count {
  font-size: 0.9rem;
  opacity: 0.5;
  margin-left: 0.8rem;
  align-self: center;
}

/* (Benefits section removed) */
/* =============================================
   7. PORTFOLIO TICKER
   ============================================= */
.ticker-section {
  padding: 0;
  margin: 0 calc(-50vw + 50%);
  overflow-x: hidden;
  background: var(--bg);
  user-select: none;
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  /* Isolate stacking context so overflow clips correctly */
  isolation: isolate;
}

.ticker-row {
  display: flex;
  margin-bottom: 15px;
  /* Overflow hidden on rows prevents sub-pixel bleed */
  overflow: hidden;
}

/* Inner track: moved by JS translate3d – must stay on its own compositor layer */
.ticker-track {
  display: flex;
  width: max-content;
  will-change: transform;
  /* Backface-visibility forces GPU compositing in all browsers */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0,0,0); /* initial GPU layer promotion */
}

.ticker-item {
  height: 300px;
  min-width: 200px;
  flex-shrink: 0;
  margin-right: 15px;
  background: var(--accent-light);
  /* Prevent sub-pixel cracks between items */
  outline: 1px solid transparent;
}

.ticker-item img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  /* GPU layer is inherited from .ticker-track; no per-image will-change needed */
  will-change: auto;
  /* cursor is set by JS when lightbox is available */
  cursor: default;
}

/* ── GLOBAL SMOOTHNESS FIX ── */
/* Prevent any CSS transitions from fighting with JS or Ticker transforms */
.parallax-img, 
.ticker-track,
.collage-img,
.v-ticker-col {
  transition: transform 0s !important;
  will-change: transform;
}

.ticker-section,
.vertical-ticker-container {
  contain: paint;
}

/* =============================================
   8. SERVICES
   ============================================= */
.services-section {
  background: var(--accent-light);
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.service-info h3 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 400px;
}

.service-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btn-category {
  padding: 2rem 4rem;
  border: 1px solid var(--text);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-decoration: none;
  color: var(--text);
  transition: color 0.4s var(--transition), background 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-category::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--transition);
  z-index: -1;
}

.btn-category:hover {
  color: var(--white);
}

.btn-category:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* =============================================
   9. SERVICE EXPERIENCE OVERLAY
   ============================================= */
.examples-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 2200;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  padding: 0;
}

.examples-overlay.active {
  display: flex;
}

.close-examples {
  position: fixed;
  top: 40px;
  right: 40px;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2500;
  color: var(--text);
  mix-blend-mode: difference;
}

/* Experience sections share a common layout */
.experience-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5rem 10%;
  overflow: hidden;
}

/* Hero – vertical parallax ticker background */
.vertical-ticker-container {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 20px;
  opacity: 0.15;
  z-index: 0;
}

.v-ticker-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.experience-content h2 {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* Details – two cards on a tinted background */
.experience-details {
  background: var(--accent-light);
}

.floating-ticker {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
}

.details-card {
  background: var(--white);
  padding: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.details-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  color: var(--accent);
}

.details-card ul {
  list-style: none;
}

.details-card li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
}

/* CTA – dark background with circular image ring */
.experience-cta {
  background: var(--bg-dark-green);
  color: var(--white);
}

.circular-ticker-container {
  position: absolute;
  width: 150vh;
  height: 150vh;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: rotateRing 60s linear infinite;
}

.circular-item {
  position: absolute;
  width: 200px;
  height: 250px;
  transform-origin: center;
}

.circular-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.4;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes portfolioTickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333333%);
  }
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

.btn-book-now {
  border-color: var(--white);
  color: var(--white);
  font-size: 1.2rem;
  padding: 2rem 5rem;
}

.btn-book-now::after {
  background: var(--white);
}

.btn-book-now:hover {
  color: var(--black);
}

/* Reveal animation (simpler, no flash) */
.reveal-white {
  opacity: 1;
  transform: none;
}

.reveal-white.revealed {
  opacity: 1;
  transform: none;
}

/* =============================================
   CONTACT & REVIEWS SECTION
   ============================================= */
.contact-section {
  padding: var(--spacing-section) 10%;
  background-color: var(--bg);
}

.contact-reviews-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

/* ── Editorial Contact Details ── */
.contact-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 3rem 0 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.contact-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  gap: 2rem;
}

.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.contact-detail-link {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-detail-link:hover {
  color: var(--accent);
}

.contact-instagram .insta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.25s ease;
}

.contact-instagram:hover .insta-icon {
  opacity: 1;
}

@media (max-width: 600px) {
  .contact-detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.2rem 0;
  }
  .contact-detail-link {
    font-size: 1.05rem;
  }
}

/* Standardized button styles */
.btn-submit,
.premium-btn,
.btn-learn-more,
.btn-category {
  padding: var(--spacing-sm) var(--spacing-md);
  border: none;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-base);
  cursor: pointer;
  font-size: 1rem;
}

.btn-submit:hover,
.premium-btn:hover,
.btn-learn-more:hover,
.btn-category:hover {
  background: var(--accent-secondary);
  /* removed transform: translateY(-2px) */
  box-shadow: var(--shadow-md);
}

/* =============================================
   BESPOKE SWISS EDITORIAL FORM SYSTEM (Non-AI)
   ============================================= */
.form-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

/* The Animated Focus Underline */
.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.215, 0.61, 0.35, 1);
}

.form-group:focus-within::after {
  width: 100%;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  padding: 1.5rem 0;
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 1.1rem;
  color: var(--black);
  transition: border-color 0.4s ease, padding-left 0.4s cubic-bezier(0.215, 0.61, 0.35, 1);
  outline: none;
  box-shadow: none;
}

.form-input:focus {
  background: transparent;
  border-bottom-color: transparent; /* covered by ::after */
  padding-left: 0.5rem;
  box-shadow: none;
  transform: none;
}

.form-input::placeholder {
  color: rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.form-input:focus::placeholder {
  color: var(--accent);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  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='%233d5b4c' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 12px;
  padding-right: 2rem;
}

/* Architectural Bespoke Submit Button */
.btn-submit {
  grid-column: span 2;
  width: 100%;
  padding: 1.8rem 3.5rem;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: '→';
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-submit:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(61, 91, 76, 0.25);
  letter-spacing: 0.25em;
}

.btn-submit:hover::after {
  transform: translateX(5px);
}

.btn-submit:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(61, 91, 76, 0.15);
}

/* Seamless Editorial Form Framing (Zero AI Clichés) */
.contact-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: none;
  border-radius: 0;
  padding: 4rem 0;
  box-shadow: none;
  border: none;
  margin: 0 auto;
  max-width: 800px;
  position: relative;
}

.contact-layout::before {
  display: none; /* No AI gradient bar */
}

.contact-layout form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
  text-align: left;
}

.contact-layout h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .contact-layout {
    padding: 2rem 0;
  }
  .contact-layout form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-group {
    grid-column: span 2;
  }
}

/* =============================================
   11. FOOTER
   ============================================= */
footer {
  padding: 4rem 10%;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 10;
}

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

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

.footer-legal a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.footer-logo {
  font-weight: 700;
  color: var(--text);
}

/* =============================================
   12. UTILITIES & ANIMATIONS
   ============================================= */
.reveal {
  opacity: 1;
  transition: opacity 0.6s var(--ease-out);
}

.reveal-up {
  opacity: 1;
  transform: none;
}

/* =============================================
   13. COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: var(--text);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  z-index: 9999;
  transition: transform 0.5s var(--transition);
  max-width: 90%;
  width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.cookie-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn-cookie {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =============================================
   14. LIGHTBOX (Universal)
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  pointer-events: none;
}

.lightbox-close {
  position: fixed;
  top: 30px;
  right: 40px;
  font-size: 3.5rem;
  color: var(--white);
  cursor: pointer;
  z-index: 9100;
  line-height: 1;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  z-index: 9100;
  padding: 2rem;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
  user-select: none;
}

.lightbox-arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow.left {
  left: 20px;
}

.lightbox-arrow.right {
  right: 20px;
}



/* =============================================
   14. RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {

  .about-section,
  .service-item {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .service-action {
    justify-content: flex-start;
  }

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

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

/* =============================================
   12. PAGE TRANSITIONS
   ============================================= */
.nav-transition-curtain {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 10000;
  pointer-events: none;
  /* GPU layer – avoids repaints during transition */
  will-change: clip-path, opacity;
  /* Start hidden */
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  opacity: 0;
  transition: clip-path 0.75s cubic-bezier(0.85, 0, 0.15, 1),
              opacity 0.75s cubic-bezier(0.85, 0, 0.15, 1);
}

/* Revealed state: curtain wipes off to top */
.nav-transition-curtain.hidden {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  opacity: 0;
  pointer-events: none;
}

/* Wipe-fill: curtain sweeps in from the bottom to cover the page */
.nav-transition-curtain.wipe-fill {
  animation: wipeFill 0.45s forwards cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes wipeFill {
  0%   { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
  100% { clip-path: polygon(0 0,    100% 0,    100% 100%, 0 100%); }
}

/* =============================================
   15. MOBILE OPTIMIZATION
   ============================================= */
@media (max-width: 768px) {

  /* === SECTIONS – Großzügiger Weißraum === */
  section {
    padding: 6rem 7%;
  }

  /* === NAVIGATION ===
     Top-Ecken sind "Dead Zones" bei einhändiger Bedienung.
     Burger bekommt eine unsichtbar vergrößerte Touch-Fläche (44×44px min). */
  .top-nav-container {
    top: 24px;
    left: 20px;
    right: 20px;
  }

  /* Logo: Tap-Fläche nach oben/unten erweitern */
  .main-logo {
    padding: 12px 0;
    margin: -12px 0;
  }

  /* Burger: unsichtbare Tap-Fläche auf 44×44px erweitern */
  .burger-menu {
    padding: 14px;
    margin: -14px -14px -14px 0;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-logo {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }

  /* === MENU OVERLAY – Links in der Mitte, beide Daumen erreichbar === */
  .menu-overlay {
    align-items: flex-start;
    padding: 6rem 7% 4rem;
  }

  /* Menu-Links: 56px min-Höhe = komfortables Tap-Ziel */
  .menu-link {
    min-height: 56px;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .lang-btn {
    padding: 12px 20px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
    line-height: 1.05;
  }

  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    max-width: 100%;
    margin: 0 auto;
  }

  .service-item {
    grid-template-columns: 1fr;
    padding: 3rem 0;
    text-align: center;
  }

  .service-number {
    display: none;
  }

  .service-info h3 {
    font-size: 1.8rem;
  }

  .contact-section form,
  .contact-layout form {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

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

  /* Inputs: mind. 52px Höhe */
  .form-input {
    padding: 1.4rem 0;
    min-height: 52px;
  }

  textarea.form-input {
    min-height: 120px;
    padding: 1.2rem 0;
  }

  /* Submit-Button: prominent, im unteren Thumb-Bereich */
  .btn-submit {
    grid-column: span 1;
    min-height: 56px;
    padding: 1.2rem 2rem;
    margin-top: 2rem;
  }

  /* Footer: Safe Area für Home-Indicator (iPhone X+) */
  footer {
    padding: 3.5rem 7%;
    padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 1rem 0;
  }

  .footer-legal {
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  /* Footer-Links: größere Tap-Fläche */
  .footer-legal a {
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Ticker smaller on mobile */
  .ticker-section {
    padding: 0;
    margin: 0;
    width: 100%;
    left: 0;
  }

  .ticker-row {
    margin-bottom: 8px;
  }

  .ticker-item {
    height: 150px; /* More compact on phones */
    margin-right: 10px;
  }

  /* Hero: dynamische Viewport-Höhe (Browser-Chrome wird abgezogen) */
  .hero {
    height: 100dvh;
    min-height: 100dvh;
  }

  .hero-content {
    padding: 0 7%;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 90%;
  }

  /* About: zentriert, mehr Luft */
  .about-section {
    gap: 3.5rem;
  }

  .about-content {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .about-content h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 2rem;
  }

  .about-content p {
    font-size: 1rem;
    margin: 0 auto 2.5rem;
  }

  /* Text-Links: größere Tap-Fläche */
  .btn-text-link {
    padding: 1rem 0;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
  }

  /* Services smaller */
  .service-info h3 {
    font-size: 1.5rem;
  }

  .service-info p {
    font-size: 0.95rem;
  }

  .services-section {
    padding: 5rem 5%;
  }

  /* Discovery smaller */
  .discovery-item {
    height: 45vh;
  }

  .discovery-item h3 {
    font-size: 1.3rem;
  }

  /* Contact smaller */
  .contact-section h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* === COOKIE-BANNER – Safe Area beachten === */
  .cookie-banner {
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    width: calc(100% - 3rem);
    left: 1.5rem;
    right: 1.5rem;
    transform: translateX(0) translateY(150%);
  }

  .cookie-banner.show {
    transform: translateX(0) translateY(0);
  }

  .btn-cookie {
    min-height: 44px;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }

  /* === LIGHTBOX – Pfeile links/rechts, Schließen oben === */
  .lightbox-close {
    top: max(20px, env(safe-area-inset-top, 20px));
    right: 16px;
    font-size: 2.5rem;
    padding: 16px;
  }

  .lightbox-arrow {
    font-size: 2rem;
    padding: 1.5rem;
  }

  .lightbox-arrow.left { left: 0; }
  .lightbox-arrow.right { right: 0; }

  /* Review-Formular */
  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .rating-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .review-cat-row {
    grid-template-columns: 100px 1fr 35px;
  }

  .review-card-header {
    flex-direction: column;
  }
}

.form-input {
  font-size: 1rem;
}

.btn-submit {
  padding: 1rem;
  font-size: 1rem;
}

/* =============================================
   15. DISCOVERY SECTION (Three Options)
   ============================================= */
.discovery-section {
  padding: 10vh 5% 5vh;
  background: var(--white);
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.discovery-item {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.8s var(--transition-slow);
  border-radius: 4px;
}

.discovery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
  transition: opacity 0.5s ease;
}

.discovery-item:hover {
  transform: translateY(-10px);
}

.discovery-item:hover .discovery-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.discovery-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  transition: transform 0.5s var(--ease-out);
}

.discovery-item:hover .discovery-content {
  transform: translateY(-10px);
}

.discovery-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.discovery-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  text-transform: none;
}

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

  .discovery-item {
    height: 50vh;
    min-height: 350px;
    padding: 2.5rem;
  }

  .discovery-section {
    padding: 5vh 5%;
  }
}

/* =============================================
   16. CLICKABLE RATING LINK
   ============================================= */
.contact-rating-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.4s var(--ease-out), opacity 0.3s ease;
  color: var(--text);
  margin-top: 1rem;
}

.contact-rating-link:hover {
  transform: scale(1.02);
  opacity: 0.8;
}

.contact-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.2rem 2.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--white);
}

.contact-rating-bar .rating-number {
  font-size: 1.1rem;
  font-weight: 400;
}

.contact-rating-bar .rating-stars {
  font-size: 1.5rem;
  color: var(--accent);
}

.contact-rating-bar .rating-count {
  font-size: 0.9rem;
  color: var(--text);
}

/* =============================================
   17. BEWERTUNGSSYSTEM – Reviews
   ============================================= */

.stars-display {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.reviews-score {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}

.reviews-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Trennlinie vor Kundenstimmen */
.reviews-divider {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

/* Bewertungskarten-Feed */
.reviews-feed {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2rem;
  border-radius: 4px;
  text-align: left;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.review-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.review-event-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
  align-self: flex-start;
}

.review-overall-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}

/* Kategorie-Balken */
.review-cats {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.review-cat-row {
  display: grid;
  grid-template-columns: 140px 1fr 40px;
  align-items: center;
  gap: 0.75rem;
}

.review-cat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.review-cat-bar {
  height: 3px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.review-cat-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.6s var(--ease-out);
}

.review-cat-val {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin-top: 0.75rem;
}

/* Bewertung schreiben Toggle */
.review-form-wrapper {
  margin-top: 2rem;
}

.review-toggle-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  width: 100%;
  border-radius: 2px;
}

.review-toggle-btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* Review-Formular-Grid */
.review-form {
  margin-top: 1.5rem;
}

.review-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Bewertungskategorien */
.rating-categories {
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  overflow: hidden;
}

.rating-row {
  display: grid;
  grid-template-columns: 160px auto 1fr;
  align-items: center;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 1rem;
}

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

.rating-row.overall-row {
  background: var(--accent-light);
}

.rating-row label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================
   18. KONTAKT-FORMULAR – Verfeinerungen
   ============================================= */
.contact-layout h2 {
  margin-top: 1rem;
}

/* Select styling override */
select.form-input {
  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='%236b7c6d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

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

  .rating-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .review-cat-row {
    grid-template-columns: 100px 1fr 35px;
  }

  .review-card-header {
    flex-direction: column;
  }
}