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

html {
  font-size: 100%;
  font-family: "Roboto", sans-serif;
  scroll-padding-top: 65px;
}

body {
  overflow-x: hidden;
}

li {
  list-style: none;
}

h1 {
  font-size: 2.2rem;
  color: var(--textColor);
  margin-bottom: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1rem;
  color: var(--textColor);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.impressum-content h2,
.datenschutz-content h2 {
  margin-top: 3.2rem;
}

h3 {
  font-size: 0.88rem;
  color: var(--textColor);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.nav-logo {
  transition: all 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo-img {
  width: 50px;
  transition: all 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0.2rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: var(--whiteBackground);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

:root {
  --textColor: #282828;
  --grayColor: #585858;
  --whiteColor: #f5f5dc;
  --whiteBackground: #fff;
  --orangeColor: #a66326;
  --lightBrownColor: #6f4e37;
  --darkBrownColor: #653b10;
  --secondary--color-1: #32271f;

  /* Spacing Scale */
  --spacing-xs: 0.4rem;
  --spacing-sm: 0.6rem;
  --spacing-md: 0.8rem;
  --spacing-lg: 1.2rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 2.4rem;
  --spacing-3xl: 3.2rem;
  --spacing-4xl: 4rem;

  /* Typography Scale */
  --font-h1: 2.8rem;
  --font-h2: 1.4rem;
  --font-h3: 1.2rem;
  --font-body: 0.88rem;
  --font-small: 0.72rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: var(--spacing-xl);
  margin-right: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
  padding-top: var(--spacing-md);
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition:
    transform 0.24s ease,
    opacity 0.18s ease;
  transition:
    transform 0.24s ease,
    opacity 0.18s ease;
  transform-origin: center;
  will-change: transform, opacity;
  backface-visibility: hidden;
  background-color: var(--textColor);
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 1rem;
}

.nav-item {
  margin-left: 0;
}

.nav-actions {
  margin-left: auto;
}

.nav-mobile-only {
  display: none;
}

.nav-link {
  font-family:
    DM Sans,
    sans-serif;
  font-size: 0.8rem;
  font-weight: 550;
  color: var(--textColor);
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--orangeColor);
  transform: translateY(-2px);
}

@media only screen and (max-width: 768px) {
  .dark-section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-link,
  .nav-link:hover,
  .nav-link:active {
    transform: none;
  }

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

  .button1,
  .button1:hover,
  .button1:active {
    transform: none;
  }

  .nav-link,
  .button1 {
    touch-action: manipulation;
  }

  .nav-menu {
    position: fixed;
    left: 0;
    top: 3.5rem;
    z-index: 30;
    flex-direction: column;
    background-color: var(--whiteBackground);
    transform: translate3d(-105%, 0, 0);
    will-change: transform;
    pointer-events: none;
    width: 100%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
    transition: transform 0.28s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

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

  .nav-menu.active {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .nav-item {
    margin: 1rem 0;
  }

  .nav-actions {
    display: none;
  }

  .nav-mobile-only {
    display: list-item;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

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

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .products {
    border-radius: 0;
  }

  .dark-section {
    border-radius: 0;
  }

  .light-section {
    border-radius: 0;
  }
}

.button1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.24rem;
  padding: 0.48rem 1.2rem;
  font-size: 0.8rem;
  border-radius: 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: none;
  background-color: transparent;
  color: var(--secondary--color-1);
  border: 2px solid var(--secondary--color-1);
}

.nav-mobile-only .button1 {
  background-color: transparent;
  color: var(--secondary--color-1);
  border: 2px solid var(--secondary--color-1);
}

.nav-mobile-only .button1:hover {
  background-color: var(--secondary--color-1);
  color: var(--whiteBackground);
  opacity: 1;
}

.button1 .material-symbols-outlined {
  font-size: 0.56rem;
  line-height: 1;
  vertical-align: middle;
}

.home-section {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 2rem;
  background-color: var(--secondary--color-1);
  background: linear-gradient(
    135deg,
    var(--secondary--color-1) 0%,
    #3d2817 100%
  );
}

.überMich-content,
.products-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  position: relative;
  margin-top: 6.8rem;
}

.home-section h1 {
  font-size: 2.8em;
  color: var(--whiteColor);
  padding-top: 3.2rem;
  padding-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
p {
  text-align: left;
  max-width: 16rem;
  font-size: 0.88rem;
  margin: 0.8rem auto 2rem auto;
  color: var(--grayColor);
  line-height: 1.6;
  font-weight: 400;
  padding: 0;
}

.home-section button {
  margin: 0;
  background-color: var(--whiteColor);
  color: var(--secondary--color-1);
  margin-top: 4rem;
  margin-bottom: 8rem;
}

.home-image {
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-radius: 0.2rem;
}

h2 {
  font-size: 1.4rem;
  color: var(--textColor);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.products-content h2 {
  margin-bottom: 2rem;
}
p {
  color: var(--grayColor);
}
.products {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.6rem 1.2rem;
  transition: all 0.3s ease;
  border-radius: 0rem;
}

.products h3 {
  font-size: 1.2rem;
  margin-top: 3.2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: inherit;
}
.products img {
  max-width: 50%;
  height: auto;
  border-radius: 0.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.products img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.light-section {
  background-color: var(--whiteBackground);
  color: var(--textColor);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.32rem;
}

.impressum-section,
.datenschutz-section {
  padding-top: 4rem;
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section p {
  color: var(--whiteColor);
}
.dark-section {
  background-color: var(--secondary--color-1);
  background: linear-gradient(
    135deg,
    var(--secondary--color-1) 0%,
    #3d2817 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dark-section .button1 {
  background-color: transparent;
  color: var(--whiteColor);
  border: 2px solid var(--whiteColor);
}

.dark-section .button1:hover {
  background-color: var(--whiteColor);
  color: var(--secondary--color-1);
  opacity: 1;
}

.light-section .button1 {
  background-color: transparent;
  color: var(--secondary--color-1);
  border: 2px solid var(--secondary--color-1);
}

.light-section .button1:hover {
  background-color: var(--secondary--color-1);
  color: var(--whiteBackground);
  opacity: 1;
}

.nav-actions .button1 {
  background-color: transparent !important;
  color: var(--secondary--color-1) !important;
  border: 2px solid var(--secondary--color-1) !important;
}

.nav-actions .button1:hover {
  background-color: var(--secondary--color-1) !important;
  color: var(--whiteBackground) !important;
  opacity: 1 !important;
}

.products-content .button1 {
  margin: 2rem;
}

.contact-section,
.überMich-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.überMich-content {
  text-align: left;
}

.beratung-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.beratung-content {
  width: 100%;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  gap: 0.8rem;
  margin-top: 6.8rem;
}

.beratung-content h2 {
  text-align: center;
}

.beratung-content p {
  width: 100%;
  margin: 0;
  line-height: 1.75;
}

.beratung-gallery {
  width: 100%;
  max-width: 36rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.beratung-gallery img {
  width: 100%;
  max-width: 62%;
  margin: 0 auto;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0.6rem;
  object-fit: initial;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.vorher-nachher-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.vorher-nachher-content {
  width: 100%;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  margin-top: 6.8rem;
}

.vorher-nachher-content p {
  max-width: clamp(16rem, 56vw, 24rem);
  text-align: center;
  margin: 0 auto;
  line-height: 1.75;
}

.vorher-nachher-grid {
  width: 100%;
  max-width: 36rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.vorher-nachher-card {
  width: 100%;
  padding: 1.2rem;
  border-radius: 0;
  background-color: #ffffff;
  border: none;
  box-shadow: none;
}

.vorher-nachher-card.light-section {
  background-color: var(--whiteBackground);
  color: var(--textColor);
}

.vorher-nachher-card.dark-section {
  color: var(--whiteColor);
}

.vorher-nachher-grid > .dark-section {
  background-color: var(--secondary--color-1);
  background: linear-gradient(
    135deg,
    var(--secondary--color-1) 0%,
    #3d2817 100%
  );
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: clamp(1rem, 3vw, 2.5rem);
  padding-right: clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vorher-nachher-card > h3,
.vorher-nachher-card > .vorher-nachher-images {
  width: 100%;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.vorher-nachher-grid > .dark-section .vorher-nachher-card {
  background-color: transparent;
  padding: 0;
  width: 100%;
}

.vorher-nachher-card.dark-section h3,
.vorher-nachher-card.dark-section p,
.vorher-nachher-card.dark-section figcaption {
  color: var(--whiteColor);
}

.vorher-nachher-card.light-section .divider {
  background-color: rgba(0, 0, 0, 0.3);
}

.vorher-nachher-card.dark-section .divider {
  background-color: rgba(255, 255, 255, 0.35);
}

.vorher-nachher-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: center;
}

.vorher-nachher-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.vorher-nachher-images figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vorher-nachher-images img {
  width: 100%;
  border-radius: 0.5rem;
  aspect-ratio: auto;
  object-fit: contain;
  box-shadow: none;
}

.vorher-nachher-images figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--grayColor);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.überMich-section img {
  width: 100%;
  height: auto;
}

.überMich-section img.about-product-image {
  width: 100%;
  max-width: 75%;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  border-radius: 0.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.überMich-section img.about-product-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.contact-content {
  margin-top: 6.8rem;
  padding: 0 0.8rem;
}

.contact-section h2 {
  margin-bottom: 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-content ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-top: 1.2rem;
  width: 100%;
  max-width: 600px;
}

.contact-content li {
  font-size: 1rem;
  color: var(--whiteBackground);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  padding: 0.8rem 1rem;
  width: 100%;
}

.contact-content li:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(12px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.contact-content li svg {
  width: 40px;
  height: 40px;
  min-width: 40px;
  flex-shrink: 0;
}

.contact-content li a {
  text-decoration: none;
  color: var(--whiteBackground);
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-content li a:hover {
  opacity: 1;
  color: var(--whiteColor);
}

.contact-content li .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 0.8rem;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}
iframe {
  margin-top: 2.8rem;
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 0.4rem;
  margin-bottom: 5.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.footer {
  background-color: #ffffff;
  padding: var(--spacing-lg) var(--spacing-sm);
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 2rem;
}

.footer-main {
  width: 100%;
}

.footer-main .container {
  width: 100%;
  padding: 0;
  margin: 0;
}

.footer-divider {
  width: 100%;
  max-width: 16rem;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.3);
}

.footer-grid {
  width: 100%;
  max-width: 16rem;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  margin: 0;
}

.footer-column {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.footer-column:last-child {
  padding-bottom: var(--spacing-xl);
  border-bottom: none;
}

.footer-company {
  width: 100%;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-bottom: var(--spacing-md);
}

.footer-company h3 {
  font-size: 1.6rem;
  color: #282828;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-company-desc {
  font-size: 0.88rem;
  color: #555555;
  margin: 0;
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
  font-weight: 400;
  max-width: 40rem;
}

.footer-contact-quick {
  display: none;
}

.footer-column h4 {
  font-size: 0.8rem;
  color: #282828;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-column li {
  font-size: 0.72rem;
  color: #555555;
}

.footer-column a {
  color: #555555;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-column a:hover {
  color: var(--orangeColor);
}

.footer-bottom {
  width: 100%;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}

.footer-bottom p {
  font-size: 0.64rem;
  color: #777777;
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

.footer-column h4 {
  font-size: 0.96rem;
}

.footer-column li {
  font-size: 0.84rem;
}

.footer-column a {
  font-size: 0.84rem;
}

.divider {
  display: block;
  width: 100%;
  max-width: 16rem;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 1.2rem auto;
}

.light-section .divider {
  background-color: rgba(0, 0, 0, 0.4);
}

.dark-section .divider {
  background-color: rgba(255, 255, 255, 0.4);
}

.products .divider {
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.products > .divider {
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.products a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  text-decoration: none;
}

.products a .divider {
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.dark-section .divider {
  background-color: rgba(255, 255, 255, 0.3);
}

.column-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  max-width: 16rem;
  margin: 0 auto;
  width: 100%;
}

.column-item p {
  text-align: left;
  margin: 0.5rem 0;
  max-width: 100%;
}

.dark-section .column-item {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.column-item:last-child {
  padding-bottom: var(--spacing-xl);
  border-bottom: none;
}
.column-grid {
  width: 100%;
  max-width: 16rem;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  margin: 0 auto;
  gap: 0;
}

/* ===== LOADING BAR ===== */
.loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--orangeColor),
    var(--lightBrownColor),
    var(--orangeColor)
  );
  transition:
    width 0.25s ease,
    opacity 0.2s ease;
  z-index: 999;
  box-shadow: 0 0 10px rgba(166, 99, 38, 0.5);
}

@keyframes loadingBarAnimation {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

/* ===== LIGHTBOX STYLES ===== */

.gallery-image {
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-image:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(4px);
}

.lightbox-modal.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  animation: slideUpFade 0.4s ease;
  border-radius: 0.4rem;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 1001;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--orangeColor);
  transform: scale(1.2);
}

.lightbox-nav {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 2rem;
  z-index: 1001;
}

.lightbox-prev,
.lightbox-next {
  padding: 12px 18px;
  font-size: 24px;
  color: #f1f1f1;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid #f1f1f1;
  cursor: pointer;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--orangeColor);
  border-color: var(--orangeColor);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(166, 99, 38, 0.4);
}

/* Skeleton Loading */
@keyframes skeletonLoading {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: skeletonLoading 2s infinite;
  border-radius: 0.4rem;
}

/* Responsive Lightbox */
@media only screen and (max-width: 900px) {
  .vorher-nachher-grid {
    gap: 1.2rem;
  }

  .vorher-nachher-card {
    padding: 1.6rem 1.2rem;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .vorher-nachher-card.light-section {
    background-color: var(--whiteBackground);
    color: var(--textColor);
  }

  .vorher-nachher-grid > .dark-section {
    background-color: var(--secondary--color-1);
    background: linear-gradient(
      135deg,
      var(--secondary--color-1) 0%,
      #3d2817 100%
    );
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: clamp(1rem, 3vw, 2.5rem);
    padding-right: clamp(1rem, 3vw, 2.5rem);
    padding-top: 1.6rem;
    padding-bottom: 2rem;
  }

  .vorher-nachher-card.dark-section {
    color: var(--whiteColor);
    border: none;
  }

  .vorher-nachher-card h3 {
    margin-top: 2.8rem;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    color: inherit;
  }

  .vorher-nachher-card .divider {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .vorher-nachher-card.light-section .divider {
    background-color: rgba(0, 0, 0, 0.3);
  }

  .vorher-nachher-card.dark-section .divider {
    background-color: rgba(255, 255, 255, 0.3);
  }

  .vorher-nachher-images {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vorher-nachher-images figure {
    align-items: center;
    gap: 0.6rem;
  }

  .vorher-nachher-images img {
    width: 100%;
    max-width: 62%;
    margin: 0 auto;
    border-radius: 0.5rem;
    box-shadow: none;
  }

  .vorher-nachher-card.light-section .vorher-nachher-images figcaption {
    color: var(--grayColor);
  }

  .vorher-nachher-card.dark-section .vorher-nachher-images figcaption {
    color: var(--whiteColor);
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 30px;
  }

  .lightbox-image {
    max-width: 95%;
    max-height: 80vh;
  }

  .lightbox-nav {
    bottom: 20px;
    gap: 1rem;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 10px 15px;
    font-size: 20px;
  }
}

/* ===== ANIMATIONEN ===== */

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide-up Animation */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide-in von links */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide-in von rechts */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale und Fade Animation */
@keyframes scaleInFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulse Animation für subtile Aufmerksamkeit */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Smooth Glow für Buttons */
@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(166, 99, 38, 0);
  }
  50% {
    box-shadow: 0 0 15px rgba(166, 99, 38, 0.3);
  }
}

/* Body Animationen auf Load */
body {
  animation: none;
}

/* Header Animation */
.header {
  animation: none;
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Home Section Animationen */
.home-section {
  animation: none;
}

.home-section h1 {
  animation: none;
}

.home-section > p {
  animation: none;
}

.home-image {
  animation: none;
}

.home-section .button1 {
  animation: none;
}

/* Divider Animation */
.divider {
  animation: none;
}

.products img {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Enhanced Hover Effects */

/* Button Animationen */
.button1 {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.button1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
  pointer-events: none;
}

.button1:hover::before {
  width: 300px;
  height: 300px;
}

.button1:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Link Animationen */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background-color: var(--orangeColor);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-actions .nav-link:hover::after {
  width: 0;
}

/* Contact Links Animation */
.contact-content li {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-content li:hover {
  transform: translateX(12px);
  background-color: rgba(255, 255, 255, 0.15);
}

/* Smooth Scroll Verhalten */
html {
  scroll-behavior: smooth;
}

@media (hover: none), (pointer: coarse) {
  html {
    scroll-behavior: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================
   DESKTOP LAYOUT FINAL CLEAN
   ========================= */
@media (min-width: 1024px) {
  /* GLOBAL */
  .container {
    width: min(100%, 1120px);
    margin-left: auto;
    margin-right: auto;
  }

  section.container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  h1,
  h2,
  h3 {
    line-height: 1.2;
  }

  h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 620px;
  }

  /* HOME */
  .home-section {
    width: 100%;
    max-width: none;
    min-height: 90vh;
    padding: 6rem max(3rem, calc((100vw - 1120px) / 2 + 2rem));
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    text-align: left;
  }

  .home-content {
    max-width: 430px;
    align-items: flex-start;
  }

  .home-section h1 {
    font-size: clamp(3.2rem, 4.5vw, 4.6rem);
    line-height: 1;
    padding: 0;
  }

  .home-content .divider,
  .home-content p {
    margin-left: 0;
    margin-right: 0;
  }

  .home-section button {
    margin-top: 2rem;
    margin-bottom: 0;
  }

  .home-image {
    width: 560px;
    max-width: 50vw;
    height: auto;
    object-fit: contain;
  }

  /* PRODUKTE */
  .products-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .products-content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    max-width: 900px;
  }

  .products-content > .light-section:first-child {
    grid-column: 1 / -1;
    padding-bottom: 4rem;
    background: transparent;
  }

  .products-content > .light-section:first-child p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .products {
    width: 100%;
    max-width: 420px;
    justify-self: center;
    padding: 2.2rem 1.8rem;
    border-radius: 0.4rem;
    background: linear-gradient(135deg, var(--secondary--color-1), #3d2817);
    color: var(--whiteColor);
    justify-content: flex-start;
    gap: 1.4rem;
  }

  .products h3 {
    color: var(--whiteColor);
    text-align: center;
    margin: 0;
    min-height: auto;
  }

  .products .divider {
    background-color: rgba(255, 255, 255, 0.35);
    margin: 1rem auto;
  }

  .products img {
    width: 100%;
    max-width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0.5rem;
  }

  .products .button1,
  .products.light-section .button1 {
    color: var(--whiteColor);
    border-color: var(--whiteColor);
    margin: 1rem 0 0;
  }

  .products .button1:hover,
  .products.light-section .button1:hover {
    background-color: var(--whiteColor);
    color: var(--secondary--color-1);
  }

  .product-centered-desktop {
    grid-column: 1 / -1;
    width: 420px;
    max-width: 420px;
    justify-self: center;
  }

  /* ÜBER MICH */
  .überMich-section {
    width: 100%;
    max-width: none;
    padding-top: 3rem;
    padding-bottom: 6rem;
  }

  .überMich-content {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .überMich-content h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0;
  }

  .überMich-content .divider {
    display: none;
  }

  .überMich-section img.about-product-image {
    width: 100%;
    max-width: 540px;
    justify-self: end;
  }

  .überMich-content p {
    max-width: 560px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
  }

  /* BERATUNG / PLANUNG */
  .beratung-section {
    width: 100%;
    max-width: none;
    padding: 7rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .beratung-content {
    margin-top: 0;
    max-width: 720px;
    align-items: center;
    text-align: center;
  }

  .beratung-content h2 {
    text-align: center;
    font-size: 2.2rem;
  }

  .beratung-content p {
    max-width: 720px;
    text-align: left;
  }

  .beratung-gallery {
    width: min(100%, 680px);
    max-width: 680px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin: 0 auto;
  }

  .beratung-gallery img,
  .beratung-gallery img:nth-child(2),
  .beratung-gallery img:nth-child(3) {
    grid-column: auto;
    width: 100%;
    object-fit: cover;
    padding: 0;
    background: none;
    border-radius: 0.5rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  }

  .beratung-gallery img:nth-child(1) {
    object-fit: contain;
    background: var(--whiteBackground);
  }

  .beratung-gallery img:hover {
    transform: scale(1.02);
  }

  /* VORHER / NACHHER */
  .vorher-nachher-section {
    width: 100%;
    max-width: none;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .vorher-nachher-content {
    margin-top: 0;
  }

  .vorher-nachher-grid {
    width: min(100%, 780px);
    max-width: 780px;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .vorher-nachher-grid > .dark-section,
  .vorher-nachher-grid > .light-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, var(--secondary--color-1), #3d2817);
  }

  .vorher-nachher-card,
  .vorher-nachher-card.light-section,
  .vorher-nachher-card.dark-section {
    width: 100%;
    min-height: 620px;
    background: transparent;
    color: var(--whiteColor);
    padding: 4rem 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.6rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  }

  .vorher-nachher-card h3,
  .vorher-nachher-card.light-section h3,
  .vorher-nachher-card.dark-section h3 {
    color: var(--whiteColor);
    text-align: center;
    font-size: 1.35rem;
    margin-bottom: 2rem;
  }

  .vorher-nachher-card figcaption,
  .vorher-nachher-card.light-section figcaption,
  .vorher-nachher-card.dark-section figcaption {
    color: var(--whiteColor);
    text-align: center;
    font-size: 1rem;
    margin-top: 0.6rem;
  }

  .vorher-nachher-card .divider {
    display: none;
  }

  .vorher-nachher-images {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .vorher-nachher-images figure {
    align-items: center;
  }

  .vorher-nachher-images img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 0.5rem;
  }

  /* KONTAKT */
  .contact-section {
    width: 100%;
    max-width: none;
    padding: 7rem 2rem;
  }

  .contact-content {
    margin-top: 0;
    width: min(100%, 760px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-content h2 {
    text-align: center;
  }

  .contact-content ul {
    width: 100%;
    max-width: 420px;
    align-items: center;
  }

  .contact-content li {
    width: 100%;
    justify-content: center;
    text-align: center;
    transform: none;
  }

  .contact-content li:hover {
    transform: none;
  }

  iframe {
    width: 100%;
    max-width: 760px;
    height: 430px;
  }

  /* FOOTER */
  .footer {
    margin-left: 0;
    padding: 4rem 2rem 2rem;
  }

  .footer-grid {
    max-width: 1120px;
    margin: 0 auto;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }

  .footer-column,
  .footer-company {
    border-bottom: none;
  }
}
