/* ===========================================
   SOMETHINGBLUE THEME - MAIN STYLES
   =========================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #cbbf9c;
  --gold-accent: #D4AF37;
  --gray: #626262;
  --text: #ffffff;
  --bg-primary: #1a1d23;
  --bg-secondary: #0a0d12;
}

html {
  height: 100%;
  overflow: hidden;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.8em;
  letter-spacing: 0.4px;
  color: var(--text);
  background: radial-gradient(circle at center right, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

/* Logo im Bereich der oberen Linien */
.logo {
  position: fixed;
  top: calc(50vh - 375px + 15px); /* Auf Höhe der oberen Linien */
  right: 100px;
  z-index: 1000;
  width: 200px;
}
.logo img { width: 100%; height: auto; }

/* ===========================================
   MOBILE HAMBURGER MENU
   =========================================== */
.mobile-menu-toggle {
  display: none; /* Nur auf Mobile sichtbar */
  position: fixed;
  top: 25px;
  left: 25px;
  z-index: 1003;
  width: 40px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* Hamburger zu X Animation */
.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(14px) rotate(45deg);
}
.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-14px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.is-active {
  opacity: 1;
}

/* ===========================================
   HORIZONTALE LINIEN
   Positionierung relativ zum content-container (750px Höhe)
   Container ist vertikal zentriert, also:
   - Container-Top: calc(50vh - 375px)
   - Container-Bottom: calc(50vh + 375px)
   =========================================== */

/* Obere Gold-Linie: 23% vom Container-Top = ca. 172px unter Container-Start */
.line-top-gold {
  position: fixed;
  top: calc(50vh - 375px + 70px); /* Container-Top + Offset */
  left: 0;
  width: 70%;
  height: 2px;
  background: var(--gold);
  z-index: 100; /* Über Modal-Overlay */
}

/* Obere Grau-Linie: etwas tiefer */
.line-top-gray {
  position: fixed;
  top: calc(50vh - 375px + 55px); /* Container-Top + Offset */
  left: 0;
  width: 80%;
  height: 2px;
  background: var(--gray);
  z-index: 100; /* Über Modal-Overlay */
}

/* Untere Grau-Linie: vom Container-Bottom */
.line-bottom-gray {
  position: fixed;
  top: calc(50vh + 375px - 10px); /* Container-Bottom - Offset */
  left: 0;
  width: 90%;
  height: 2px;
  background: var(--gray);
  z-index: 100; /* Über Modal-Overlay */
}

/* Untere Gold-Linie: etwas höher */
.line-bottom-gold {
  position: fixed;
  top: calc(50vh + 375px - 25px); /* Container-Bottom - Offset */
  right: 0;
  width: 90%;
  height: 2px;
  background: var(--gold);
  z-index: 100; /* Über Modal-Overlay */
}

.deck {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  height: 100vh;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.section {
  width: 100vw;
  min-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  overflow: hidden;     /* Scroll AUS */
  padding-bottom: 170px;
  /* Animation wird via JS gesteuert */
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Enso Kreis Hintergrund */
.section::before {
  content: '';
  position: absolute;
  top: 48%;
  left: 41%;
  transform: translate(-50%, -50%) rotate(15deg);
  width: clamp(500px, 70vw, 990px);
  height: clamp(500px, 70vw, 990px);
  background-image: url('https://somethingblue.de/wp-content/uploads/2026/02/Enso-Kopie-e1770587705819.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  filter: brightness(0) saturate(100%) invert(73%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(90%);
  pointer-events: none;
  z-index: 0;
}

.content-container {
  display: flex;
  width: 1440px;
  max-height: 750px;
  margin: 0;
  margin-left: 50px; /* Linksbündig */
  padding: 0 40px;
  gap: 0;
  position: relative;
  align-items: center;
  justify-content: flex-start;
  z-index: 1; /* Über dem Enso-Kreis */
}

/* Fullwidth Template - ohne middle-images */
.content-fullwidth {
  gap: 60px;
}
.content-fullwidth .main-content-wide {
  flex: 1;
  max-width: 900px;
}

.left-nav {
  flex: 0 0 210px;
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  position: relative;
}
.left-nav-content {
  width: 100%;
  margin: 0px;
  text-align: left;
}
.left-nav ul, .left-nav .menu { list-style: none; }
.left-nav > .left-nav-content > ul > li, .left-nav .menu > li { margin-bottom: 1.75rem; position: relative; }
.left-nav a { display: block; text-decoration: none; color: #999; font-weight: 300; font-size: 0.9rem; padding: 0.65rem 0; border-left: 2px solid transparent; padding-left: 1rem; transition: all 0.2s ease; text-transform: uppercase; letter-spacing: 0.08em; }
.left-nav a:hover, .left-nav a.active, .left-nav .current-menu-item > a { color: var(--gold); border-left-color: var(--gold); font-weight: 400; }

/* Parent items mit Unterpunkten - Pfeil-Indikator */
.left-nav .menu-item-has-children > a::after,
.left-nav li.has-children > a::after {
  content: '›';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #666;
  transition: all 0.2s ease;
}

.left-nav .menu-item-has-children:hover > a::after,
.left-nav .menu-item-has-children.is-open > a::after,
.left-nav li.has-children:hover > a::after,
.left-nav li.has-children.is-open > a::after {
  color: var(--gold);
  transform: translateY(-50%) translateX(3px);
}

/* Flyout Sub-Menu */
.sub-nav, .left-nav .sub-menu { 
  position: absolute; 
  left: calc(100% + 10px); 
  top: -0.5rem; 
  background: rgba(26, 29, 35, 0.98); 
  border: 1px solid rgba(203, 191, 156, 0.3); 
  border-radius: 4px; 
  padding: 0.75rem 0; 
  min-width: 180px; 
  opacity: 0; 
  visibility: hidden; 
  transform: translateX(-10px); 
  transition: all 0.25s ease; 
  z-index: 1000; 
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Hover-Vorschau */
.left-nav > .left-nav-content > ul > li:hover > .sub-nav, 
.left-nav .menu > li:hover > .sub-menu { 
  opacity: 1; 
  visibility: visible; 
  transform: translateX(0); 
}

/* Klick-Fixiert (is-open Klasse) */
.left-nav > .left-nav-content > ul > li.is-open > .sub-nav,
.left-nav .menu > li.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Untermenü bleibt offen wenn aktuelle Seite ein Kind ist */
.left-nav .menu > li.current-menu-ancestor > .sub-menu,
.left-nav .menu > li.current-menu-parent > .sub-menu,
.left-nav .menu > li.has-active-child > .sub-menu,
.left-nav > .left-nav-content > ul > li.current-menu-ancestor > .sub-nav,
.left-nav > .left-nav-content > ul > li.current-menu-parent > .sub-nav,
.left-nav > .left-nav-content > ul > li.has-active-child > .sub-nav {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Aktiver Parent-Menüpunkt (wenn Kind aktiv ist) */
.left-nav .menu > li.current-menu-ancestor > a,
.left-nav .menu > li.current-menu-parent > a,
.left-nav .menu > li.has-active-child > a,
.left-nav li.has-active-child > a {
  color: var(--gold);
  border-left-color: var(--gold);
  font-weight: 400;
}

/* Aktiver Unterpunkt */
.left-nav .sub-menu .current-menu-item > a,
.left-nav .sub-menu a.active,
.left-nav .sub-nav a.active {
  color: var(--gold) !important;
  border-left-color: var(--gold);
  background: rgba(203, 191, 156, 0.1);
}

/* Sub-Menu Items */
.sub-nav li, .left-nav .sub-menu li { 
  margin-bottom: 0; 
}

.sub-nav a, .left-nav .sub-menu a { 
  font-size: 0.85rem; 
  padding: 0.6rem 1.25rem; 
  border-left: 2px solid transparent;
  margin: 0;
}

.sub-nav a:hover, .left-nav .sub-menu a:hover { 
  background: rgba(203, 191, 156, 0.1); 
  color: var(--gold);
  border-left-color: var(--gold);
}

/* Kleine Verbindungsbrücke für bessere Hover-UX */
.sub-nav::before, .left-nav .sub-menu::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 0;
  width: 15px;
  height: 100%;
}

.middle-images { flex: 0 0 520px; width: 520px; display: flex; align-items: center; justify-content: flex-start; height: 95%; margin-right: auto; }
.image-slideshow { position: relative; width: 520px; height: 770px; overflow: hidden; border-radius: 8px; }
.image-slideshow img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease-in-out; }
.image-slideshow img.active { opacity: 1; }

.main-content {
  flex: 0 0 710px;
  width: 710px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Linksbündig */
  height: 100%;
  padding-left: 0;
  overflow-y: auto;
  text-align: left;
}
.kicker { display: block; font-size: 0.85rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; }

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
  font-weight: 400;
}

h1 {
  font-size: 42px;
  color: var(--gold);
  letter-spacing: 0.05em;
    line-height: 1.2;
}

h2 {
  font-size: 40px;
  color: var(--text);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* H3 – warmes Gold */
h3 {
  font-size: 21px;
  color: #cbbf9c;
  letter-spacing: 1px;
  line-height: 1.0;
}

/* H4 – Weiß, gleiche Größe */
h4 {
  font-size: 21px;
  color: #ffffff;
  letter-spacing: 4px;
  line-height: 0.6;
  margin-bottom: 4px;
}

h5 {
  font-size: 18px;
  color: #cbbf9c;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 4px;
}

p {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.subline {
  font-size: 1.2rem;
  color: var(--gold-accent);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}


.quote-block { margin: 2rem 0; padding: 1.5rem; background: rgba(255, 255, 255, 0.05); border-left: 4px solid var(--gold); }
.quote-block p { font-style: italic; font-size: 1.1rem; margin-bottom: 0.5rem; }
.spacer { height: 2rem; }
.spacer-lg { height: 3rem; }

.cta { display: inline-block; background: var(--gold); color: var(--bg-primary); text-decoration: none; padding: 0.8rem 1.5rem; border-radius: 4px; font-weight: 500; transition: all 0.2s ease; text-transform: uppercase; letter-spacing: 0.5px; }
.cta:hover { background: var(--gold-accent); transform: translateY(-2px); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }

/* Card Minimal - Klickbar wenn Link enthalten */
.card-minimal {
  padding: 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.card-minimal:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--gold-accent);
  }
.card-minimal h4 { margin-bottom: 0.5rem; }
.card-minimal p { font-size: 0.9rem; margin: 0; }

/* Card als Link - wenn ein <a> direkt in der Karte ist */
.card-minimal a {
  text-decoration: none;
  color: inherit;
}

/* Gutenberg: wp-block-group als klickbare Karte */
.wp-block-group.card-minimal {
  cursor: pointer;
  transition: all 0.2s ease;
}
.wp-block-group.card-minimal:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--gold-accent);
  }

/* Wenn die Gruppe einen Link enthält - mache den ganzen Block klickbar */
.wp-block-group.card-minimal a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}

/* Text innerhalb der Karte über dem Link */
.wp-block-group.card-minimal h4,
.wp-block-group.card-minimal p,
.wp-block-group.card-minimal .wp-block-heading {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

/* Service Grid - 2x2 Karten wie im Design */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 1.5rem 0;
  background: transparent;
}

.service-card {
  padding: 1.2rem 1.5rem;
  background: rgba(10, 13, 18, 0.95);
  border: none;
  border-left: 3px solid var(--gold);
  transition: background 0.3s ease;
  position: relative;
}

.service-card:hover {
  background: rgba(20, 25, 32, 0.98);
}

.service-card h3,
.service-card .service-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.service-card h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.service-card p,
.service-card .service-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #999;
  margin: 0;
}

/* Responsive Service Grid */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.principles { margin: 2rem 0; }
.principle-item { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.principle-item:last-child { border-bottom: none; }
.principle-item h4 { margin-bottom: 0.3rem; }
.principle-item p { margin: 0; font-size: 0.9rem; }

.contact-info { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.contact-info h4 { margin-bottom: 0.8rem; }
.contact-info a { display: block; margin-bottom: 0.5rem; color: #999; text-decoration: none; font-size: 0.9rem; }
.contact-info a:hover { color: var(--gold); }

/* Entry Header und Slide Counter ausblenden */
.entry-header { display: none; }
.slide-counter { display: none; }

.nav-controls { position: fixed; top: 50%; transform: translateY(-50%); z-index: 1000; pointer-events: none; }
.nav-controls.left { left: 80px; }
.nav-controls.right { right: 80px; }
.nav-controls button { background: rgba(203, 191, 156, 0.9); color: var(--bg-primary); border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; pointer-events: all; backdrop-filter: blur(10px); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }
.nav-controls button:hover:not(:disabled) { background: var(--gold-accent); transform: scale(1.1); }
.nav-controls button:disabled { background: rgba(98, 98, 98, 0.5); cursor: not-allowed; }

/* Alter Footer - ausgeblendet */
.site-footer { display: none; }

/* Neuer einfacher Footer - direkt unter dem grauen Balken */
.site-footer-simple {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  /* Positioniert unter der unteren grauen Linie */
  top: calc(50vh + 375px - 15px);
  height: auto;
  padding: 15px 50px;
  z-index: 998;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.footer-simple-content {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.footer-simple-content .copyright {
  color: #888;
}

.footer-simple-content .footer-separator {
  color: #666;
  margin: 0 0.2rem;
}

.footer-simple-content a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-simple-content a:hover {
  color: var(--gold);
}

.section-fullwidth { flex-direction: column; padding: 0; overflow-y: auto; }
.top-nav { position: absolute; top: 30px; left: 50%; transform: translateX(-50%); z-index: 100; }
.top-nav ul { display: flex; list-style: none; gap: 2rem; }
.top-nav a { color: #999; text-decoration: none; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s ease; font-weight: 300; }
.top-nav a:hover, .top-nav a.active, .top-nav .current-menu-item a { color: var(--gold); }

.leistungen-hero { display: flex; align-items: center; justify-content: space-between; padding: 120px 80px 60px; min-height: 55vh; position: relative; background-image: url('https://somethingblue.de/wp-content/uploads/2025/10/origami-e1763118906815-768x756.webp'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.leistungen-hero-content { flex: 0 0 45%; max-width: 550px; position: relative; padding-left: 30px; }
.hero-accent-bar { position: absolute; left: 0; top: 0; width: 4px; height: 100px; background: var(--gold); }
.leistungen-hero-content h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.08em; }
.leistungen-hero-content h1 .italic { font-style: italic; }
.leistungen-hero-content p { font-size: 1rem; line-height: 1.7; color: #ccc; max-width: 480px; }
.leistungen-hero-image { flex: 0 0 50%; display: flex; justify-content: flex-end; align-items: center; }
.leistungen-hero-image img { max-width: 100%; max-height: 400px; object-fit: contain; border-radius: 4px; }

.leistungen-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; padding: 0 80px 150px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.pillar { padding: 2.5rem 2rem; border-right: 1px solid rgba(255, 255, 255, 0.1); cursor: pointer; transition: background 0.3s ease; display: flex; flex-direction: column; }
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(203, 191, 156, 0.05); }
.pillar-header { margin-bottom: 1.5rem; }
.pillar-label { display: block; font-size: 0.9rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 300; }
.pillar-title { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 1.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.pillar p { font-size: 0.9rem; line-height: 1.7; color: #bbb; flex-grow: 1; margin-bottom: 1.5rem; }
.pillar-link { display: inline-block; color: #999; text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; padding-bottom: 2px; border-bottom: 1px solid #666; transition: all 0.2s ease; align-self: flex-start; }
.pillar-link:hover { color: var(--gold); border-bottom-color: var(--gold); }

.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

@media (max-width: 1440px) { .content-container { width: 100%; max-width: 1400px; padding: 0 20px; } }
@media (max-width: 1200px) { .leistungen-pillars { grid-template-columns: repeat(2, 1fr); padding: 0 40px 150px; } .pillar:nth-child(2) { border-right: none; } .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); } }
@media (max-width: 900px) { .top-nav { display: none; } .leistungen-hero { flex-direction: column; padding: 100px 30px 40px; min-height: auto; } .leistungen-hero-content { flex: none; max-width: 100%; margin-bottom: 2rem; } .leistungen-hero-content h1 { font-size: 2.5rem; } .leistungen-hero-image { flex: none; width: 100%; justify-content: center; } .leistungen-pillars { grid-template-columns: 1fr; padding: 0 30px 150px; } .pillar { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .pillar:last-child { border-bottom: none; } }
/* ===========================================
   MOBILE VERSION (max-width: 768px)
   Layout wie im Screenshot: Hamburger, Logo zentriert,
   Bild als Hintergrund, Content über Bild
   =========================================== */
@media (max-width: 768px) {
  /* Body & HTML für Mobile scrollbar machen */
  html, body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    position: relative !important;
    height: auto !important;
    min-height: 100vh;
  }

  /* Hamburger Button anzeigen - links, vertikal mittig zum Logo */
  .mobile-menu-toggle {
    display: flex !important;
    top: 46px !important;   /* Logo top(20) + LogoH(82)/2 - HamburgerH(30)/2 */
    left: 20px !important;
    right: unset !important;
    z-index: 1003 !important;
  }

  /* Mobile Menu Overlay anzeigen wenn aktiv */
  .mobile-menu-overlay {
    display: block !important;
    pointer-events: none;
  }

  .mobile-menu-overlay.is-active {
    display: block !important;
    pointer-events: auto;
  }

  /* Logo oben zentriert */
  .logo {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 180px;
    z-index: 1001;
  }

  /* Horizontale Linien ausblenden auf Mobile */
  .line-top-gold,
  .line-top-gray,
  .line-bottom-gray,
  .line-bottom-gold {
    display: none;
  }

  /* Deck als normaler Container */
  .deck, #deck {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    transform: none !important;
  }

  /* Section als Vollbild mit Hintergrundbild */
  .section {
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 80px 25px 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    overflow: visible;
  }

  /* Slide-Animation auf Mobile deaktivieren (verhindert transform-Containing-Block-Problem) */
  .section,
  .content-container {
    animation: none !important;
    transform: none !important;
  }

  /* Enso-Kreis für Mobile: zentriert, 5% Abstand von den Seiten */
  .section::before {
    width: 90vw;
    height: 90vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(15deg);
    opacity: 0.2;
  }

  /* Content Container vertikal */
  .content-container {
    flex-direction: column;
    width: 100%;
    max-width: none;
    max-height: none;
    height: auto;
    margin: 0;
    margin-left: 0;
    padding: 0;
    gap: 0;
    z-index: 2;
  }

  /* Left-Nav als Hamburger-Menü (versteckt, wird via JS getoggelt) */
  .left-nav {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background: rgba(10, 13, 18, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1002;
    padding: 80px 20px 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-right: 1px solid rgba(203, 191, 156, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    pointer-events: auto;
  }

  .left-nav.is-mobile-open {
    display: flex !important;
    transform: translateX(0);
    pointer-events: auto;
  }

  .left-nav-content {
    width: 100%;
    margin: 0;
  }

  .left-nav ul,
  .left-nav .menu {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .left-nav > .left-nav-content > ul > li,
  .left-nav .menu > li {
    margin-bottom: 0.5rem;
  }

  .left-nav a {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    pointer-events: auto;
    text-decoration: none;
    cursor: pointer;
  }

  /* Untermenüs in Mobile */
  .sub-nav,
  .left-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
    min-width: auto;
    display: none;
    pointer-events: auto;
  }

  .left-nav li.is-open > .sub-menu,
  .left-nav li.is-open > .sub-nav,
  .left-nav li.has-active-child > .sub-menu,
  .left-nav li.has-active-child > .sub-nav {
    display: block;
  }

  /* Middle Images als Hintergrund - mit separatem Mobile-Bild */
  .middle-images {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 60%;
    max-height: 500px;
    z-index: 0;
  }

  /* Original Slideshow auf Mobile ausblenden */
  .image-slideshow {
    display: none;
  }

  /* Mobile-spezifisches Hintergrundbild - AUSBLENDEN */
  .middle-images::before {
    display: none;
  }

  /* Main Content über dem Bild */
  .main-content {
    width: 100%;
    flex: none;
    height: auto;
    padding: 0;
    z-index: 2;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;

  }

  /* Typografie für Mobile */
  h1 {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 0;
  }

  .subline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .kicker {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  /* CTA Button */
  .cta {
    margin-top: 1.5rem;
    padding: 0.9rem 1.8rem;
  }

  /* Grid auf Mobile */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Footer auf Mobile - permanent unten fixiert */
  .site-footer-simple {
    position: fixed;
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    padding: 12px 25px;
    background: rgba(10, 13, 18, 0.97);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(203, 191, 156, 0.15);
    z-index: 999;
  }

  /* Abstand am Ende der Seite damit Footer den Content nicht überdeckt */
  .section:last-child {
    padding-bottom: 70px;
  }

  .footer-simple-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-simple-content .footer-separator {
    display: none;
  }

  .footer-simple-content a {
    display: inline-block;
    margin: 0 0.5rem;
  }

  .footer-simple-content .copyright {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    order: 2;
  }
}

html { scroll-behavior: smooth; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.1); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-accent); }

/* ===========================================
   WORDPRESS OVERRIDES - CRITICAL FOR SLIDER
   =========================================== */

/* Ensure no WordPress styles break the layout */
html, body {
  overflow: hidden !important;
  height: 100% !important;
  width: 100% !important;
}

body.admin-bar {
  padding-top: 0 !important;
}

body.admin-bar .deck {
  top: 32px;
  height: calc(100vh - 32px);
}

body.admin-bar .section {
  height: calc(100vh - 32px);
}

body.admin-bar .nav-controls {
  top: calc(50% + 16px);
}

body.admin-bar .site-footer {
  bottom: 0;
}

/* Force horizontal layout */
#deck, .deck {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) !important;
}

.section {
  width: 100vw !important;
  min-width: 100vw !important;
  max-width: 100vw !important;
  flex: 0 0 100vw !important;
}

/* Hide any WordPress default elements that might interfere */
#wpadminbar ~ .deck {
  margin-top: 32px;
}

/* ===========================================
   PAGE TRANSITION ANIMATIONS
   Flüssiger Slide-Effekt beim Seitenwechsel
   Alte Seite geht nach links, neue kommt von rechts
   =========================================== */

/* Keyframes für Slide-Animationen */
@keyframes slideInFromRight {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100vw);
  }
  to {
    transform: translateX(0);
  }
}

/* Standard: Neue Seite kommt von rechts */
.section,
.content-container {
  animation: slideInFromRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Wenn von rechts nach links navigiert wird (zurück) */
body.page-transition-left .section,
body.page-transition-left .content-container {
  animation: slideInFromLeft 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Nav-Controls ausblenden */
.nav-controls {
  display: none !important;
}

/* Slide-Counter ausblenden */
.slide-counter {
  display: none !important;
}

/* ===========================================
   CONTENT MODAL / POPUP
   Für Seiten mit mehr Content als Platz vorhanden
   =========================================== */

/* "Mehr erfahren" Button */
.content-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.content-more-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.content-more-btn::after {
  content: '→';
  transition: transform 0.3s ease;
}

.content-more-btn:hover::after {
  transform: translateX(4px);
}

/* Modal Overlay */
.content-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 13, 18, 0.92);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.content-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.content-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 92%;
  max-width: 1300px;
  height: 70vh;
  display: flex;
  flex-direction: row;
  background: linear-gradient(135deg, rgba(26, 29, 35, 0.5) 0%, rgba(15, 18, 24, 0.5) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(203, 191, 156, 0.25);
  border-radius: 8px;
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

/* Modal Image Panel (left side) */
.modal-image-side {
  width: 250px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.modal-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(15, 18, 24, 0.85) 100%);
}

.modal-image-side.no-image {
  display: none;
}

/* Modal Content Panel (right side) */
.modal-content-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.content-modal.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* Modal Header */
.content-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(203, 191, 156, 0.15);
  background: rgba(0, 0, 0, 0.3);
}

.content-modal-header h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Close Button */
.content-modal-close {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(203, 191, 156, 0.3);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.content-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.content-modal-close::before,
.content-modal-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: background 0.3s ease;
}

.content-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.content-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.content-modal-close:hover::before,
.content-modal-close:hover::after {
  background: var(--bg-primary);
}

/* Modal Body */
.content-modal-body {
  padding: 2rem;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}

.content-modal-body h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.3;
  letter-spacing: 1px;
}

.content-modal-body h5 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 1px;
}

.content-modal-body p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.content-modal-body ul,
.content-modal-body ol {
  color: #ccc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.content-modal-body li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Service Grid im Modal - normales Layout beibehalten */
.content-modal-body .service-grid {
  display: block;
  border: none;
  margin: 0;
}

.content-modal-body .service-card {
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  border-left: 3px solid var(--gold);
  cursor: default;
  transform: none;
}

.content-modal-body .service-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: none;
}

.content-modal-body .service-card::after {
  display: none;
}

.content-modal-body .service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.content-modal-body .service-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Modal Scrollbar */
.content-modal-body::-webkit-scrollbar {
  width: 6px;
}

.content-modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.content-modal-body::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* Modal Header ausblenden wenn eigener Page-Title vorhanden */
.content-modal-header.header-hidden {
  display: none;
}

/* Großer Page-Title innerhalb des Modals */
.modal-page-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2rem 1.2rem 2rem;
  border-bottom: 1px solid rgba(203, 191, 156, 0.15);
}

.modal-page-title h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.modal-page-title h2 .gold-letter {
  color: var(--gold);
}

.modal-title-line {
  flex: 1;
  height: 16px;
  background: var(--gold);
  min-width: 60px;
  max-width: 400px;
}

/* Wenn modal-page-title vorhanden, kein extra Padding oben im Body */
.content-modal-body:has(.modal-page-title) {
  padding: 0;
}

/* Innen-Padding nach dem Page-Title */
.modal-page-body {
  padding: 1.5rem 2rem;
}

/* 2-Spalten Layout innerhalb von Modals */
.modal-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.2rem 0;
}

.modal-col h4 {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-transform: none;
  letter-spacing: 0;
}

.modal-col > em {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.modal-col ul {
  margin-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.modal-col li {
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.85);
}

.modal-col p em {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  font-size: 0.85rem;
}

.modal-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-divider {
  border: none;
  border-top: 1px dotted rgba(203, 191, 156, 0.35);
  margin: 1.5rem 0;
}

/* Modal Subsection H3 heading */
.modal-col h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #f2edd9;
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

/* Modal Subsection Subtitle tagline */
.modal-col-subtitle {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 0.8rem;
  font-family: 'Lato', sans-serif;
}

/* Bullet list with · character */
.modal-col-bullets {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0.8rem;
  padding: 0;
}

.modal-col-bullets li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.3rem;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}

.modal-col-bullets li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: #cda766;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.2;
}

/* Conclusion paragraph with left border */
.modal-col-conclusion {
  border-left: 2px solid rgba(203, 191, 156, 0.4);
  padding-left: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Centered Service Card (with icon) */
.service-card.card-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0.5rem;
  font-family: 'Lato', sans-serif;
  border-left: none;
  border-top: 3px solid var(--gold);
}

.service-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.service-card.card-centered h3 {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #ffffff;
}



.service-card.card-centered p {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .modal-col-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Versteckter Content (nur im Modal sichtbar) */
.modal-content-hidden {
  display: none;
}

/* Legal Modal Content (Impressum, Datenschutz) */
.legal-modal-content {
  font-size: 0.95rem;
  line-height: 1.6;
}

.legal-modal-content h1,
.legal-modal-content h2,
.legal-modal-content h3 {
  color: var(--gold);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.legal-modal-content h1 { font-size: 1.4rem; }
.legal-modal-content h2 { font-size: 1.2rem; }
.legal-modal-content h3 { font-size: 1.1rem; }

.legal-modal-content p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.legal-modal-content ul,
.legal-modal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-modal-content li {
  margin-bottom: 0.5rem;
}

.legal-modal-content a {
  color: var(--gold);
  text-decoration: underline;
}

.legal-modal-content a:hover {
  color: var(--gold-accent);
}

/* Mobile Modal */
@media (max-width: 768px) {
  .content-modal {
    width: 95%;
    height: 90vh;
    flex-direction: column;
  }

  .modal-image-side {
    display: none;
  }

  .content-modal-header {
    padding: 1.2rem 1.5rem;
  }

  .content-modal-header h3 {
    font-size: 1.2rem;
  }

  .content-modal-body {
    padding: 1.5rem;
  }

  .content-more-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===========================================
   GUTENBERG BLOCK OVERRIDES
   Damit Gutenberg-Blöcke das Design nicht zerstören
   =========================================== */

/* Gutenberg Absätze */
.entry-content p,
.wp-block-paragraph {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1.2rem;
}

/* Gutenberg Überschriften */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.wp-block-heading {
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
  font-weight: 400;
}

.entry-content h3,
.wp-block-heading:where(h3) {
  font-size: 21px;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1.0;
  margin-bottom: 0.8rem;
}

.entry-content h4,
.wp-block-heading:where(h4) {
  font-size: 21px;
  color: #ffffff;
  letter-spacing: 4px;
  line-height: 0.9;
  margin-bottom: 8px;
}

.entry-content h5,
.wp-block-heading:where(h5) {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 8px;
}

/* Gutenberg Listen */
.entry-content ul,
.entry-content ol,
.wp-block-list {
  color: var(--text);
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.entry-content li {
  margin-bottom: 0.4rem;
}

/* Gutenberg Gruppen */
.wp-block-group {
  margin-bottom: 1rem;
}

/* Gutenberg Spalten */
.wp-block-columns {
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.wp-block-column {
  padding: 0;
}

/* Gutenberg Buttons */
.wp-block-button__link {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.wp-block-button__link:hover {
  background: var(--gold-accent) !important;
  transform: translateY(-2px);
}

/* Gutenberg Trennlinie */
.wp-block-separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}

/* Gutenberg Zitat */
.wp-block-quote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--gold);
}

.wp-block-quote p {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.wp-block-quote cite {
  font-size: 0.85rem;
  color: #999;
  font-style: normal;
}

/* Gutenberg Bild */
.wp-block-image {
  margin-bottom: 1.5rem;
}

.wp-block-image img {
  border-radius: 4px;
  max-width: 100%;
  height: auto;
}

/* Gutenberg Spacer - kleinere Standardgrößen */
.wp-block-spacer {
  height: 1rem !important;
}

/* Content Overflow verhindern */
.entry-content {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Bilder im Content skalieren */
.entry-content img {
  max-width: 100%;
  height: auto;
}

/* Links im Content */
.entry-content a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.entry-content a:hover {
  color: var(--gold-accent);
}

/* Strong/Bold */
.entry-content strong,
.entry-content b {
  font-weight: 600;
  color: var(--gold);
}

/* Kompakte Varianten für weniger Platz */
.compact-list .principle-item {
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
}

.compact-list .principle-item p {
  font-size: 0.85rem;
  margin: 0;
}

.compact-grid .service-card {
  padding: 1rem;
}

.compact-grid .service-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.compact-grid .service-card p {
  font-size: 0.8rem;
}

/* ===========================================
   KLICKBARE SERVICE CARDS FÜR MODAL
   Ganze Karte öffnet das Modal
   =========================================== */

/* Service Card als Modal-Trigger */
.service-card[data-modal-content],
.service-card.modal-trigger {
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-card[data-modal-content]:hover,
.service-card.modal-trigger:hover {
  background: rgba(20, 25, 32, 0.98);
  border-left-color: var(--gold-accent);
}

/* Card Minimal als Modal-Trigger */
.card-minimal[data-modal-content],
.card-minimal.modal-trigger {
  cursor: pointer;
}

.card-minimal[data-modal-content]:hover,
.card-minimal.modal-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--gold-accent);
}
