/* =========================
   GLOBAL RESET
========================= */

:root {
  --background-color: #111214;
  --background-color: #1a1a1a;
  --kleineUeber: #c7a46a;
  --newWhite: rgb(232, 226, 226);
  --newWhite2: #e5e5e5;
  --nav-height: 82px;

  /* Gemeinsame Inhaltsbreite */
  --content-max-width: 1400px;
  --content-padding-desktop: 60px;
  --content-padding-tablet: 40px;
  --content-padding-mobile: 20px;

  /* Button-Farben zentral steuern */
  --button-transition: 0.24s ease;
  --button-radius: 999px;
  --button-accent: #c7a46a;
  --button-accent-hover: #d7b77d;
  --button-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  --button-shadow-hover: 0 18px 34px rgba(0, 0, 0, 0.36);
  --button-shadow-active: 0 8px 18px rgba(0, 0, 0, 0.26);
  --button-focus-ring: 0 0 0 3px rgba(199, 164, 106, 0.22);

  /* Separate Button-Farben pro Bereich
     Alte --button-* Farben bleiben oben erhalten. */

  /* Navbar Button */
  --nav-button-border: rgba(255, 255, 255, 0.35);
  --nav-button-border-hover: rgba(199, 164, 106, 0.82);
  --nav-button-bg: transparent;
  --nav-button-bg-hover: #111214;
  --nav-button-text: white;
  --nav-button-text-hover: white;

  /* Hero Button */
  --hero-button-bg: linear-gradient(180deg, #f3eee7 0%, #ded2c2 100%);
  --hero-button-bg-hover: linear-gradient(180deg, #f3eee7 0%, #ded2c2 100%);
  --hero-button-text: #171513;
  --hero-button-text-hover: #171513;
  --hero-button-border-color: rgba(199, 164, 106, 0.46);
  --hero-button-border-color-hover: rgba(199, 164, 106, 0.92);

  /* Hero Button-Größen zentral steuern */
  --hero-button-min-width: 230px;
  --hero-button-min-height: 52px;
  --hero-button-padding: 17px 30px;
  --hero-button-font-size: 0.9rem;
  --hero-button-gap: 24px;

  --hero-button-min-width-mobile: 215px;
  --hero-button-min-height-mobile: 48px;
  --hero-button-padding-mobile: 0px 15px;
  --hero-button-font-size-mobile: 0.88rem;
  --hero-button-gap-mobile: 20px;

  /* About / Services / Galerie Buttons */
  --section-button-bg: linear-gradient(180deg, #f3eee7 0%, #ded2c2 100%);
  --section-button-bg-hover: linear-gradient(180deg, #f3eee7 0%, #ded2c2 100%);
  --section-button-text: #171513;
  --section-button-text-hover: #171513;
  --section-button-border-color: rgba(199, 164, 106, 0.46);
  --section-button-border-color-hover: rgba(199, 164, 106, 0.92);

  /* About / Services / Galerie Button-GrÃ¶ÃŸen zentral steuern */
  --section-button-min-height: 52px;
  --section-button-padding: 14px 31px;
  --section-button-font-size: 1.12rem;

  --section-button-min-height-tablet: 50px;
  --section-button-padding-tablet: 14px 25x;
  --section-button-font-size-tablet: 1.05rem;

  --section-button-min-height-mobile: 0px;
  --section-button-padding-mobile: 14px 25px;
  --section-button-font-size-mobile: 1rem;

  --section-button-min-height-small: 0px;
  --section-button-padding-small: 12px 25px;
  --section-button-font-size-small: 1.0rem;

  /* Galerie Section-Min-Height zentral steuern */
  --gallery-min-height-desktop: 0px;
  --gallery-min-height-tablet: 0px;
  --gallery-min-height-mobile: 0px;
  --gallery-min-height-small: 0px;

  /* Galerie Bild-Positionen einzeln steuern */
  --gallery-img-2-position: 0% 50%;
  --gallery-img-3-position: 0% 50%;
  --gallery-img-4-position: 40% 50%;
}

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

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #111214;
  font-family: 'Inter', sans-serif;
  min-height: 100dvh;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
  font-synthesis: none;
}

.first-screen {
  background: #111214;
}

/* =========================
   HERO / BILD
========================= */
.bild-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #141414;
}

.bild-container ,
.bild-container  img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bild-container img {
  object-fit: cover;
  object-position: center 40%;
}

.first-screen .bild-container > img {
  transform: scale(1.08) translate3d(2.4%, 0, 0);
  transform-origin: center center;
  animation: hero-camera-pan 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-camera-pan {
  from {
    transform: scale(1.08) translate3d(2.4%, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-2.4%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .first-screen .bild-container > img {
    animation: none;
    transform: scale(1.04);
  }
}

@media (max-width: 768px) {
  .first-screen .bild-container > img {
    animation: none;
    transform: none;
    will-change: auto;
  }
}

/* MOBILE / STANDARD OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(20, 20, 20, 0.95) 0px,
      rgba(20, 20, 20, 0.68) 80px,
      rgba(20, 20, 20, 0) 150px
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.48) 42%,
      rgba(0, 0, 0, 0.16) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.58) 100%
    );
  pointer-events: none;
}

/* DESKTOP */
@media (min-width: 901px) {
  .bild-container picture img {
    object-position: center 55%;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .bild-container {
    height: 100vh;
    min-height: 100vh;
  }

  .bild-container picture img {
    object-position: center 35%;
  }
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  min-height: var(--nav-height);
  padding:
    calc(16px + env(safe-area-inset-top))
    max(var(--content-padding-desktop), calc((100vw - var(--content-max-width)) / 2))
    16px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #111214;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 -3px 0 #111214,
    0 12px 26px rgba(0, 0, 0, 0.18);
}

.logo {
  color: white;
  font-size: 22px;
  font-weight: bold;
  justify-self: start;
}

/* NAV LINKS (Desktop) */
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Button */
.nav-btn {
  background: var(--nav-button-bg);
  color: var(--nav-button-text);
  padding: 11px 22px;
  border-radius: var(--button-radius);
  border: 1px solid var(--nav-button-border);
  text-decoration: none;
  justify-self: end;
  transition:
    background-color var(--button-transition),
    color var(--button-transition),
    border-color var(--button-transition),
    transform var(--button-transition),
    box-shadow var(--button-transition);
}

.nav-btn:hover {
  background: var(--nav-button-bg-hover);
  color: var(--nav-button-text-hover);
  border-color: var(--nav-button-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

/* Burger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  display: block;
  transition: 0.3s ease;
}

/* Animation zu X */
.navbar.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .bild-container {
    height: 100vh;
    min-height: 100vh;
  }

  .bild-container picture img {
    object-position: center 35%;
  }

  .overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(20, 20, 20, 0.95) 0px,
        rgba(20, 20, 20, 0.7) 60px,
        rgba(20, 20, 20, 0) 120px
      ),
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.7) 100%
      );
  }

  .navbar {
    padding: 16px var(--content-padding-tablet);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    width: auto;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 12, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links li a {
    display: block;
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .navbar.nav-open .nav-links {
    max-height: 320px;
  }
}

/* =========================
   HERO / BILD
========================= */
.bild-container {
  position: relative;
  width: 100%;

  height: calc(100dvh - var(--nav-height));
  min-height: calc(100dvh - var(--nav-height));

  overflow: hidden;
  background: #141414;
  isolation: isolate;
}

/* Bild ganz nach hinten */
.bild-container picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.bild-container picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 55%;
}

/* Overlay zwischen Bild und Text */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.28) 35%,
      rgba(0, 0, 0, 0.42) 100%
    );
}

/* =========================
   HERO / BILD
========================= */
.bild-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #141414;
  isolation: isolate;
}

/* Bild ganz nach hinten */
.bild-container picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.bild-container picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 55%;
}

/* Overlay zwischen Bild und Text */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.28) 35%,
      rgba(0, 0, 0, 0.42) 100%
    );
}

/* =========================
   HERO TEXT - MÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾NNLICHER
========================= */

.lumen-hero-content {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;

  width: 90%;
  max-width: 720px;

  text-align: center;
  color: #ffffff;

  padding: 40px 50px;
  isolation: isolate;
}

.first-screen .overlay {
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.24) 18%,
      rgba(0, 0, 0, 0) 42%
    ),
    linear-gradient(
      to bottom,
      rgba(20, 20, 20, 0.72) 0px,
      rgba(20, 20, 20, 0.38) 80px,
      rgba(20, 20, 20, 0) 150px
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.22) 24%,
      rgba(0, 0, 0, 0.04) 50%,
      rgba(0, 0, 0, 0.22) 76%,
      rgba(0, 0, 0, 0.62) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.03) 0%,
      rgba(0, 0, 0, 0.28) 100%
    );
}

.lumen-hero-subtitle {
  display: block;
  margin-bottom: 18px;

  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a46b;
}

.lumen-hero-content h1 {
  margin: 0;

  font-family: 'Inter', sans-serif;
  font-size: 3.3rem;
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -2px;

  color: #ffffff;
}

.lumen-hero-content p {
  max-width: 560px;
  margin: 24px auto 34px;

  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  line-height: 1.65;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.9);
}

.lumen-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--hero-button-gap);

  min-width: var(--hero-button-min-width);
  min-height: var(--hero-button-min-height);
  padding: var(--hero-button-padding);

  background: var(--hero-button-bg);
  color: var(--hero-button-text);
  border: 1px solid var(--hero-button-border-color);

  font-family: 'Inter', sans-serif;
  font-size: var(--hero-button-font-size);
  font-weight: 750;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;

  border-radius: var(--button-radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    var(--button-shadow);

  transform: translate3d(0, 0, 0);
  transition:
    background var(--button-transition),
    color var(--button-transition),
    border-color var(--button-transition),
    transform var(--button-transition),
    box-shadow var(--button-transition);
}

.lumen-hero-btn:hover {
  background: var(--hero-button-bg-hover);
  color: var(--hero-button-text-hover);
  border-color: var(--hero-button-border-color-hover);
  transform: translate3d(0, -2px, 0);
  box-shadow:
    inset 0 0 0 1px rgba(199, 164, 106, 0.20),
    var(--button-shadow-hover);
}

.lumen-hero-btn:active {
  transform: translate3d(0, 0, 0);
  box-shadow: var(--button-shadow-active);
}

.lumen-hero-btn:focus-visible {
  outline: none;
  box-shadow:
    var(--button-focus-ring),
    var(--button-shadow-hover);
}



.lumen-hero-btn span {
  color: inherit;
}

.lumen-hero-btn span {
  font-size: 1.2rem;
  line-height: 1;
}

.lumen-hero-content::before {
  content: "";
  position: absolute;
  inset: -30px -40px;
  z-index: -1;

  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.42) 45%,
    rgba(0, 0, 0, 0.18) 72%,
    rgba(0, 0, 0, 0) 100%
  );

  filter: blur(10px);
  border-radius: 20px;
}



/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .bild-container picture img {
    object-position: center 35%;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px var(--content-padding-mobile);
  }

  .first-screen .overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(20, 20, 20, 0.72) 0px,
        rgba(20, 20, 20, 0.34) 82px,
        rgba(20, 20, 20, 0.08) 170px
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.38) 0%,
        rgba(0, 0, 0, 0.18) 45%,
        rgba(0, 0, 0, 0.08) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.12) 58%,
        rgba(0, 0, 0, 0.44) 100%
      );
  }

  .lumen-hero-content {
    width: 88%;
    top: 52%;
  }

  .lumen-hero-content::before {
    inset: -18px -16px;
    background: radial-gradient(
      circle,
      rgba(0, 0, 0, 0.34) 0%,
      rgba(0, 0, 0, 0.22) 44%,
      rgba(0, 0, 0, 0.08) 72%,
      rgba(0, 0, 0, 0) 100%
    );
    filter: blur(8px);
  }

  .lumen-hero-subtitle {
    font-size: 0.78rem;
    letter-spacing: 2.2px;
    margin-bottom: 14px;
  }

  .lumen-hero-content h1 {
    font-size: 2.9rem;
  }

  .lumen-hero-content p {
    font-size: 1rem;
    margin: 20px auto 28px;
  }

  .lumen-hero-btn {
    min-width: var(--hero-button-min-width-mobile);
    min-height: var(--hero-button-min-height-mobile);
    padding: var(--hero-button-padding-mobile);
    font-size: var(--hero-button-font-size-mobile);
    gap: var(--hero-button-gap-mobile);
  }
}

/* =========================
   iPad 13 inch Hero Text hÃƒÆ’Ã‚Â¶her schieben
========================= */

/* =========================
   iPad / Tablet Landscape
   Hero Text hÃƒÆ’Ã‚Â¶her schieben
========================= */

/* =========================
   iPad / Tablet Landscape
   Hero Text hÃƒÆ’Ã‚Â¶her schieben
========================= */

@media (min-width: 901px) and (max-width: 1366px) {

 .lumen-hero-content {
  top: 40%;
}
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
  min-height: auto;
  width: 100%;
  background: var(--background-color);
  padding: 118px 60px 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-container {
  max-width: var(--content-max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* =========================
   LEFT SIDE
========================= */
.about-left {
  flex: 1;
  max-width: 600px;
}

.about-subtitle {
  display: inline-block;
  color: var(--kleineUeber);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.about-left h2 {
  color: #ffffff;
  font-size: 4rem;
  margin: 0 0 20px;
  line-height: 1.1;
}

.about-left p {
  color: #e5e5e5;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 30px;
  max-width: 520px;
}

/* =========================
   BUTTON
========================= */
.about-btn,
.services-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: var(--section-button-min-height);
  padding: var(--section-button-padding);
line-height: 1;
  background: var(--section-button-bg);
  color: var(--section-button-text);
  border: 1px solid var(--section-button-border-color);
  text-decoration: none;

  font-size: var(--section-button-font-size);
  font-weight: 750;
  letter-spacing: 0.25px;

  border-radius: var(--button-radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    var(--button-shadow);

  transform: translate3d(0, 0, 0);
  transition:
    background var(--button-transition),
    color var(--button-transition),
    border-color var(--button-transition),
    transform var(--button-transition),
    box-shadow var(--button-transition);
}

.about-btn:hover,
.services-btn:hover {
  background: var(--section-button-bg-hover);
  color: var(--section-button-text-hover);
  border-color: var(--section-button-border-color-hover);
  transform: translate3d(0, -2px, 0);
  box-shadow:
    inset 0 0 0 1px rgba(199, 164, 106, 0.20),
    var(--button-shadow-hover);
}

.about-btn:active,
.services-btn:active {
  transform: translate3d(0, 0, 0);
  box-shadow: var(--button-shadow-active);
}

.about-btn:focus-visible,
.services-btn:focus-visible {
  outline: none;
  box-shadow:
    var(--button-focus-ring),
    var(--button-shadow-hover);
}

/* =========================
   RIGHT SIDE (IMAGE)
========================= */
.about-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.about-right img {
  width: 100%;
  max-width: 550px;
  height: 650px;
  object-fit: cover;
  display: block;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .about-section {
    padding: 48px 40px 36px;
  }

  .about-container {
    gap: 50px;
  }

  .about-left h2 {
    font-size: 3rem;
  }

  .about-left p {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 100%;
  }

  .about-btn,
  .services-btn {
    min-height: var(--section-button-min-height-tablet);
    font-size: var(--section-button-font-size-tablet);
    padding: var(--section-button-padding-tablet);
  }

  .about-right img {
    max-width: 420px;
    height: 520px;
  }
}

@media (min-width: 769px) and (max-width: 1366px) {
  .about-section {
    min-height: auto;
    padding: 58px 42px 48px;
    justify-content: flex-start;
  }

  .about-container {
    max-width: 1120px;
    gap: 70px;
  }

  .about-right img {
    max-width: 520px;
    height: 560px;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .about-section {
    min-height: auto;
    padding: 54px 40px 44px;
  }

  .about-container {
    max-width: 760px;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 46px;
  }

  .about-left {
    max-width: 680px;
  }

  .about-left p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-right {
    width: 100%;
    justify-content: center;
  }

  .about-right img {
    width: 100%;
    max-width: 680px;
    height: 480px;
    object-fit: cover;
    object-position: center 35%;
  }
}

/* =========================
   SMARTPHONE
========================= */
@media (max-width: 768px) {
  .about-section {
    min-height: auto;
    padding: 75px 20px;
  }

  .about-container{
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .about-left {
    max-width: 100%;
  }

  .about-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }

  .about-left h2 {
    font-size: 2.1rem;
    margin-bottom: 16px;
  }

  .about-left p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 480px;
  }

  .about-btn,
  .services-btn {
    min-height: var(--section-button-min-height-mobile);
    font-size: var(--section-button-font-size-mobile);
    padding: var(--section-button-padding-mobile);
  }

  .about-right {
    width: 100%;
    justify-content: center;
  }

  .about-right img {
    width: 100%;
    max-width: 100%;
    height: 420px;
  }
}

/* =========================
   KLEINE SMARTPHONES
========================= */
@media (max-width: 480px) {
  .about-section {
    padding: 75px 20px;
  }

  .about-container {
    gap: 32px;
  }

  .about-subtitle {
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
  }

  .about-left h2 {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .about-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .about-btn,
  .services-btn {
    min-height: var(--section-button-min-height-small);
    font-size: var(--section-button-font-size-small);
    padding: var(--section-button-padding-small);
  }

  .about-right img {
    height: 340px;
  }
}

/* =========================
   SERVICES OVERVIEW SECTION
========================= */
.services-section.services-overview {
  width: 100%;
  min-height: 100vh;
  padding: 110px 60px;
  background: #252525;

  display: flex;
  align-items: center;
  justify-content: center;
}

.services-overview-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================
   SERVICES HEADER
========================= */
.services-heading {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}

.services-kicker {
  display: block;
  margin-bottom: 16px;

  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;

  color: #c7a46a;
}

.services-heading h2 {
  margin: 0 0 20px;

  font-family: Inter, Arial, sans-serif;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: -1px;

  color: #ffffff;
}

.services-heading p {
  max-width: 640px;
  margin: 0 auto;

  font-family: Inter, Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1.75;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.78);
}

/* =========================
   SERVICES SPLIDE SLIDER
========================= */
.services-card-slider {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.services-card-slider .splide__track {
  padding: 0;
}

.services-card-slider .splide__list {
  align-items: stretch;
  will-change: auto;
}

.services-card-slider .splide__slide {
  height: auto;
  padding: 18px 13px 82px;
}

/* =========================
   CARD SHADOW SHELL
   Shadow auÃƒÆ’Ã…Â¸en, Card innen
========================= */
.service-card-shell {
  width: 100%;
  height: 540px;
  border-radius: 24px;

  box-shadow:
    0 34px 42px -34px rgba(0, 0, 0, 0.9),
    0 16px 26px -26px rgba(0, 0, 0, 0.65);

  transition: transform 0.35s ease;
  transform: none;
}

/* =========================
   CARD
========================= */
.service-card {
  width: 100%;
  height: 100%;

  background: #1d1d1d;
  border: none;
  border-radius: 24px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  box-shadow: inset 0 0 0 1px rgba(199, 164, 106, 0.10);
}

/* Desktop Hover */
.service-card-shell:hover {
  transform: translate3d(0, -8px, 0);
}

.service-card-shell:hover .service-card {
  box-shadow: inset 0 0 0 1px rgba(199, 164, 106, 0.18);
}

/* =========================
   CARD IMAGE
========================= */
.service-card-image {
  width: 100%;
  height: 315px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #111;
  background-position: center;
  background-size: cover;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  -webkit-user-drag: none;
  opacity: 1;

  transition: transform 0.45s ease;
  transform: none;
}

.service-card-shell:hover .service-card-image img {
  transform: scale(1.06);
}

/* =========================
   CARD BODY
========================= */
.service-card-body {
  flex: 1;
  padding: 30px 26px 34px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transform: none;
  will-change: auto;
}

.service-card-body h3 {
  margin: 0 0 16px;

  font-family: Inter, Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 700;

  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.service-card-body p {
  margin: 0;

  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.74);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* =========================
   SLIDER PERFORMANCE
========================= */
.services-card-slider.is-services-moving .service-card-shell {
  transition: none !important;
  transform: none !important;
}

.services-card-slider.is-services-moving .service-card-shell:hover {
  transform: none !important;
}

.services-card-slider.is-services-moving .service-card-image img {
  transition: none !important;
  transform: none !important;
}

.services-card-slider.is-services-moving .service-card-body,
.services-card-slider.is-services-moving .service-card-body h3,
.services-card-slider.is-services-moving .service-card-body p {
  transform: none !important;
  filter: none !important;
  text-shadow: none !important;
}

/* =========================
   SPLIDE ARROWS
========================= */
.services-card-slider .splide__arrow {
  width: 48px;
  height: 48px;

  background: rgba(20, 20, 20, 0.74);
  border: 1px solid rgba(199, 164, 106, 0.38);
  border-radius: var(--button-radius);
  opacity: 1;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);

  transition:
    background var(--button-transition),
    border-color var(--button-transition),
    transform var(--button-transition),
    box-shadow var(--button-transition);
}

.services-card-slider .splide__arrow:hover {
  background: rgba(20, 20, 20, 0.74);
  border-color: rgba(199, 164, 106, 0.72);
  transform: translateY(-50%);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.services-card-slider .splide__arrow svg {
  fill: #f3eee7;
  width: 15px;
  height: 15px;
  transition: fill var(--button-transition);
}

.services-card-slider .splide__arrow:hover svg {
  fill: #f3eee7;
}

.services-card-slider .splide__arrow--prev {
  left: -56px;
}

.services-card-slider .splide__arrow--next {
  right: -56px;
}

/* =========================
   PAGINATION
========================= */
.services-card-slider .splide__pagination {
  bottom: 24px;
}

.services-card-slider .splide__pagination__page {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.services-card-slider .splide__pagination__page.is-active {
  background: var(--button-accent);
  transform: scale(1.25);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1100px) {
  .services-section.services-overview {
    padding: 90px 40px;
  }

  .services-card-slider {
    max-width: 820px;
  }

  .services-card-slider .splide__slide {
    padding: 18px 12px 78px;
  }

  .service-card-shell {
    height: 440px;
    border-radius: 24px;

    box-shadow:
      0 36px 44px -36px rgba(0, 0, 0, 0.9),
      0 18px 28px -28px rgba(0, 0, 0, 0.65);

    transform: none;
  }

  .service-card-shell:hover {
    transform: none;
  }

  .service-card {
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(199, 164, 106, 0.10);
  }

  .service-card-image {
    height: 280px;
  }

  .service-card-image img {
    transition: none;
  }

  .service-card-shell:hover .service-card-image img {
    transform: none;
  }

  .services-card-slider .splide__arrow--prev {
    left: -20px;
  }

  .services-card-slider .splide__arrow--next {
    right: -20px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .services-section.services-overview {
    min-height: auto;
    padding: 75px 20px;
  }

  .services-card-slider .splide__list {
    will-change: auto;
  }

  .services-heading {
    margin-bottom: 44px;
  }

  .services-heading h2 {
    font-size: 2.8rem;
  }

  .services-heading p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .services-card-slider {
    max-width: 100%;
  }

  .services-card-slider .splide__slide {
    padding: 18px 18px 80px;
  }

  .services-card-slider .splide__arrow {
    display: none;
  }

  .service-card-shell {
    height: 430px;
    border-radius: 20px;

    box-shadow:
      0 38px 44px -38px rgba(0, 0, 0, 0.95),
      0 18px 28px -30px rgba(0, 0, 0, 0.7);

    transition: none;
    transform: none;
  }

  .service-card-shell:hover {
    transform: none;
  }

  .service-card {
    border-radius: 20px;
    border: none;
    box-shadow: inset 0 0 0 1px rgba(199, 164, 106, 0.09);
    transform: none;
  }

  .service-card-image {
    height: 220px;
  }

  .service-card-image img {
    transition: none;
    transform: none;
  }

  .service-card-shell:hover .service-card-image img {
    transform: none;
  }

  .service-card-body {
    padding: 24px 22px 26px;
  }

  .service-card-body h3 {
    font-size: 1.38rem;
  }

  .service-card-body p {
    font-size: 0.98rem;
    line-height: 1.6;
  }
}


/* =========================
   SERVICES CTA
========================= */
.services-cta {
  max-width: 1140px;
  margin: -44px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
}

.services-cta-text span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.services-cta-btn {
  background: var(--section-button-bg);
  color: var(--section-button-text);
}

.services-cta-btn:hover {
  background: var(--section-button-bg-hover);
  color: var(--section-button-text-hover);
}

@media (max-width: 768px) {
  .services-cta {
    margin: -42px auto 0;
    flex-direction: column;
    gap: 14px;
  }
}

/* =========================
   GALLERY
========================= */
.gallery-section {
  min-height: var(--gallery-min-height-desktop);
  padding: 90px 20px;
  background: var(--background-color);
  text-align: center;
}

/* SUBTITLE */
.gallery-section > .gallery-subtitle {
  display: inline-block;
  color: var(--kleineUeber);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* HEADING */
.gallery-section > h2 {
  color: #ffffff;
  font-size: 3.3rem;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1px;
  margin: 0 0 40px;
}

/* SLIDER DESKTOP */
.gallery-splide {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-splide .splide__track {
  overflow: hidden;
}

.gallery-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* BILDER */
.gallery-item,
.item {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1 / 1;
}

.gallery-item img,
.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

/* Einzelne Galerie-Bilder ausrichten */
.gallery-item img[src="gal2.webp"] {
  object-position: var(--gallery-img-2-position);
}

.gallery-item img[src="gal3.webp"] {
  object-position: var(--gallery-img-3-position);
}

.gallery-item img[src="gal4.png"] {
  object-position: var(--gallery-img-4-position);
}

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

/* SLIDER ARROWS */
.gallery-splide .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: transparent !important;
  border: none;
  box-shadow: none;
  opacity: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.gallery-splide .splide__arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

.gallery-splide .splide__arrow svg {
  width: 28px;
  height: 28px;
  fill: var(--button-accent);
  stroke: none;
  stroke-width: 1.8;
  transition: 0.3s ease;
}

.gallery-splide .splide__arrow:hover svg {
  stroke: var(--button-accent-hover);
}

.gallery-splide .splide__arrow--prev {
  left: -10px;
}

.gallery-splide .splide__arrow--next {
  right: -10px;
}

.gallery-splide .splide__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* BUTTON */
/* Der Style kommt komplett von .about-btn */
.gallery-section .about-btn.gallery-btn {
  margin-top: 45px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .gallery-section {
    min-height: var(--gallery-min-height-tablet);
    padding: 80px 24px;
  }

  .gallery-section > h2 {
    font-size: 2.7rem;
    margin-bottom: 34px;
  }

  .gallery-splide .splide__arrow {
    width: 42px;
    height: 42px;
  }

  .gallery-item,
  .item {
    border-radius: 14px;
  }

  .gallery-item img,
  .item img {
    border-radius: 14px;
  }

  .gallery-section .about-btn.gallery-btn {
    margin-top: 30px;
  }
}

/* =========================
   SMARTPHONE
   2 SPALTEN / 2x2
========================= */
@media (max-width: 768px) {
  .gallery-section {
    min-height: var(--gallery-min-height-mobile);
    padding: 55px 16px;
  }

  .gallery-section > .gallery-subtitle {
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .gallery-section > h2 {
    font-size: 2.1rem;
    margin-bottom: 24px;
  }

  .gallery-splide {
    visibility: visible !important;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .gallery-splide .splide__track {
    overflow: visible;
  }

  .gallery-splide .splide__arrows {
    display: none;
  }

  .gallery-grid {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    transform: none !important;
  }

  .gallery-grid .gallery-item {
    width: auto !important;
  }

  .gallery-item,
  .item {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  .gallery-item img,
  .item img {
    border-radius: 12px;
  }

  .gallery-section .about-btn.gallery-btn {
    margin-top: 28px;
  }

 


}

/* =========================
   KLEINE SMARTPHONES
========================= */
@media (max-width: 480px) {
  .gallery-section {
    min-height: var(--gallery-min-height-small);
    padding: 48px 16px;
  }

  .gallery-section > .gallery-subtitle {
    font-size: 0.68rem;
    letter-spacing: 1.2px;
  }

  .gallery-section > h2 {
    font-size: 1.85rem;
    margin-bottom: 20px;
  }

  .gallery-grid {
    display: grid !important;
    gap: 10px;
    transform: none !important;
  }

  .gallery-item,
  .item {
    border-radius: 10px;
  }

  .gallery-item img,
  .item img {
    border-radius: 10px;
  }

  .gallery-section .about-btn.gallery-btn {
    margin-top: 24px;
  }

  .gallery-section .about-btn.gallery-btn {
  margin-top: 45px;
}


}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  transform: scale(0.9);
  transition: 0.3s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  user-select: none;
}

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

/* =========================
   INSTAGRAM
========================= */
.instagram-section {
  padding: 90px 20px;
  background-color: var(--background-color);
  text-align: center;
}

.instagram-subtitle {
  display: inline-block;
  color: var(--kleineUeber);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.instagram-section h2 {
  color: white;
  font-size: 3.3rem;
  margin: 0 0 40px !important;
}

.instagram-splide {
  max-width: 1400px;
  margin: 0 auto;
}

.instagram-splide .splide__track {
  overflow: hidden;
}

.instagram-splide .splide__slide {
  border-radius: 18px;
  overflow: hidden;
}

.instagram-splide .splide__slide a {
  display: block;
}

.instagram-splide .splide__slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 10% !important;
  display: block;
}

.instagram-splide .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: transparent !important;
  border: none;
  box-shadow: none;
  opacity: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

/* Hover Effekt */
.instagram-splide .splide__arrow:hover {
  transform: translateY(-50%) scale(1.08);
}

/* SVG Pfeil */
.instagram-splide .splide__arrow svg {
  width: 28px;
  height: 28px;
  fill: var(--button-accent);
  stroke: none;
  stroke-width: 1.8;
  transition: 0.3s ease;
}

/* Hover Farbe */
.instagram-splide .splide__arrow:hover svg {
  stroke: var(--button-accent-hover);
}

/* Position links */
.instagram-splide .splide__arrow--prev {
  left: -10px;
}

/* Position rechts */
.instagram-splide .splide__arrow--next {
  right: -10px;
}

/* Disabled */
.instagram-splide .splide__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* =========================
   TABLET
========================= */
@media (max-width: 900px) {
  .instagram-section {
    padding: 70px 20px;
  }

  .instagram-section h2 {
    font-size: 2.7rem;
    margin-bottom: 30px;
  }

  .instagram-splide .splide__slide img {
    height: 360px;
  }

  .instagram-splide .splide__arrow {
    width: 42px;
    height: 42px;
  }
}

/* =========================
   SMARTPHONE
========================= */
@media (max-width: 768px) {
  .instagram-section {
    padding: 55px 20px;
  }

  .instagram-section h2 {
    font-size: 2.1rem;
    margin-bottom: 24px;
  }

  .instagram-splide .splide__slide img {
    height: 320px;
  }

  .instagram-splide .splide__arrow--prev {
    left: 0;
  }

  .instagram-splide .splide__arrow--next {
    right: 0;
  }
}

/* =========================
   KLEINE SMARTPHONES
========================= */
@media (max-width: 480px) {
  .instagram-section {
    padding: 45px 16px;
  }

  .instagram-section h2 {
    font-size: 1.85rem;
    margin-bottom: 20px;
  }
}

/* =========================
   FOOTER
========================= */
.footer {
  position: relative;
  padding: 84px max(24px, env(safe-area-inset-left)) 0 max(24px, env(safe-area-inset-right));
  overflow: hidden;
  background: #111214;
  color: #e8e2de;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.35fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.footer-brand {
  max-width: 520px;
}

.footer-brand span {
  display: block;
  margin-bottom: 18px;
  color: var(--kleineUeber);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-brand h2 {
  margin: 0;
  max-width: 18ch;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.8vw, 3.35rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 13px 26px;
  border: 1px solid var(--section-button-border-color);
  border-radius: var(--button-radius);
  background: var(--section-button-bg);
  color: var(--section-button-text);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: var(--button-shadow);
  transition:
    border-color var(--button-transition),
    transform var(--button-transition),
    box-shadow var(--button-transition);
}

.footer-btn:hover {
  border-color: var(--section-button-border-color-hover);
  transform: translateY(-2px);
  box-shadow: var(--button-shadow-hover);
}

/* =========================
   MODERN CTA BUTTONS
========================= */
.lumen-hero-btn,
.about-btn,
.services-btn,
.footer-btn {
  position: relative;
  overflow: hidden;
  gap: 16px;
  background: rgba(17, 18, 20, 0.72);
  color: #f3eee7;
  border: 1px solid rgba(243, 238, 231, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 18px 36px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  letter-spacing: 0.08em;
  transition:
    background var(--button-transition),
    color var(--button-transition),
    border-color var(--button-transition),
    transform var(--button-transition),
    box-shadow var(--button-transition);
}

.lumen-hero-btn::after,
.about-btn::after,
.services-btn::after,
.footer-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--button-transition);
}

.lumen-hero-btn:hover,
.about-btn:hover,
.services-btn:hover,
.footer-btn:hover {
  background: #f3eee7;
  color: #171513;
  border-color: rgba(199, 164, 106, 0.78);
  transform: translate3d(0, -2px, 0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 44px rgba(0, 0, 0, 0.36);
}

.lumen-hero-btn:hover::after,
.about-btn:hover::after,
.services-btn:hover::after,
.footer-btn:hover::after {
  transform: translateX(3px) rotate(45deg);
}

.lumen-hero-btn:active,
.about-btn:active,
.services-btn:active,
.footer-btn:active {
  transform: translate3d(0, 0, 0);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.16),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 56px;
  padding-top: 8px;
}

.footer-column {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-column h3 {
  position: relative;
  margin: 0 0 18px;
  color: var(--kleineUeber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column p {
  margin: 7px 0;
  color: rgba(232, 226, 222, 0.76);
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: rgba(232, 226, 222, 0.76);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.55;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-column a:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateX(4px);
}

/* Footer unten: Copyright + Datenschutz + Impressum */
.footer-bottom {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 70px auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  color: rgba(232, 226, 222, 0.52);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

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

.footer-legal a {
  color: rgba(232, 226, 222, 0.62);
  text-decoration: none;
  transition: color 0.22s ease;
}

.footer-legal a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(199, 164, 106, 0.7);
  text-underline-offset: 5px;
}

/* Tablet + Smartphone */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-brand h2 {
    max-width: 18ch;
  }

  .footer-info {
    gap: 34px;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 58px 20px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand h2 {
    max-width: 17ch;
    font-size: clamp(1.85rem, 10vw, 2.75rem);
  }

  .footer-btn {
    width: 100%;
    max-width: 260px;
    margin-top: 28px;
  }

  .footer-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column h3 {
    font-size: 0.78rem;
  }

  .footer-column p,
  .footer-column a {
    font-size: 0.96rem;
  }

  .footer-bottom {
    margin-top: 44px;
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* =========================
   BUTTON TEXT VARIABLE FIX
   Textfarbe zentral ÃƒÂ¼ber Variable steuerbar
========================= */

/* .nav-btn,
.lumen-hero-btn,
.about-btn,
.services-btn,
.gallery-btn {
  color: var(--button-text);
}

.nav-btn:hover,
.lumen-hero-btn:hover,
.about-btn:hover,
.services-btn:hover,
.gallery-btn:hover {
  color: var(--button-text-hover);
}

.nav-btn *,
.lumen-hero-btn *,
.about-btn *,
.services-btn *,
.gallery-btn * {
  color: inherit;
}
 */
/* =========================
   UEBER.HTML / HALF HERO
========================= */
.half-hero {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 360px;
  overflow: hidden;
  background: #141414;
  isolation: isolate;
  z-index: 10;
}

.half-hero img {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 55%;
  display: block;
}

.overlay2 {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: rgba(0, 0, 0, 0.5);
}

.hero-title {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 0 20px;
}

.hero-title h1 {
  color: white;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  margin-top: 70px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .half-hero {
    height: 40vh;
    min-height: 320px;
  }

  .half-hero img {
    object-position: center 38%;
  }

  .overlay2 {
    background: rgba(0, 0, 0, 0.52);
  }

  .hero-title h1 {
    font-size: clamp(28px, 6vw, 52px);
    letter-spacing: 1.5px;
  }
}

/* =========================
   FIX MOBILE MENU POSITION
   alte MenÃ¼grÃ¶ÃŸe bleibt erhalten
========================= */

@media (max-width: 900px) {
  .half-hero {
    overflow: visible;
  }

  .navbar {
    position: relative;
    z-index: 99999;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    z-index: 99998;

    width: auto;
  }

  .navbar.nav-open .nav-links {
    max-height: 320px;
  }

  .menu-toggle {
    position: relative;
    z-index: 100000;
  }
}


/* =========================
   SMARTPHONE
========================= */
@media (max-width: 768px) {
  .half-hero {
    height: 34vh;
    min-height: 260px;
  }

  .half-hero img {
    object-position: center 88%;
  }

  .hero-title {
    padding: 0 20px;
    transform: none;
  }

  .hero-title h1 {
    font-size: 3rem;
    line-height: 1.05;
  }
}

/* =========================
   KLEINE SMARTPHONES
========================= */
@media (max-width: 480px) {
  .half-hero {
    height: 30vh;
    min-height: 230px;
  }

  .hero-title h1 {
    font-size: 2.3rem;
    letter-spacing: 0.8px;
  }
}

/* =========================
   NEW STAFF SECTION
========================= */

.staff-section {
  width: 100%;
  padding: 110px 24px;
  background:
    linear-gradient(180deg, #141414 0%, var(--background-color) 100%);
}

.staff-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.staff-heading {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.staff-heading span {
  display: block;
  margin-bottom: 14px;
  color: var(--kleineUeber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.staff-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1.5px;
}

.staff-heading p {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(232, 226, 226, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Grid */

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Card */

.staff-card {
  height: 100%;
  min-height: 100%;

  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);

  display: flex;
  flex-direction: column;

  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.staff-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.38);
}

/* Image */

.staff-image {
  width: 100%;
  height: 380px;
  overflow: hidden;
  background: #0f0f0f;
  flex-shrink: 0;
}

.staff-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.staff-card:hover .staff-image img {
  transform: scale(1.06);
}

/* Content */

.staff-content {
  flex: 1;
  padding: 26px 24px 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.018)),
    #161616;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  flex-direction: column;
}

.staff-role {
  margin: 0 0 10px;
  color: var(--kleineUeber);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.staff-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 600;
}

.staff-text {
  margin: 16px auto 22px;
  min-height: 52px;

  color: rgba(232, 226, 226, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
}

.staff-tags {
  margin-top: auto;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.staff-tags span {
  padding: 7px 12px;
  border: 1px solid rgba(232, 226, 226, 0.18);
  border-radius: 999px;
  color: rgba(232, 226, 226, 0.86);
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.22);
}


/* =========================
   TABLET / iPad
========================= */

@media (max-width: 1024px) {
  .staff-section {
    padding: 90px 24px;
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch;
  }

  .staff-card {
    height: 100%;
  }

  .staff-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 28px) / 2);
    max-width: none;
    margin: 0 auto;
  }

  .staff-image {
    height: 300px;
  }

  .staff-content {
    min-height: 210px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .staff-section {
    padding: 72px 20px;
  }

  .staff-heading {
    margin-bottom: 44px;
  }

  .staff-heading span {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .staff-heading h2 {
    font-size: 2.7rem;
    letter-spacing: -1px;
  }

  .staff-heading p {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .staff-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .staff-card:last-child {
    grid-column: auto;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .staff-image {
    height: 330px;
  }

  .staff-content {
    min-height: auto;
    padding: 24px 22px 26px;
  }

  .staff-text {
    min-height: auto;
  }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .staff-section {
    padding: 64px 16px;
  }

  .staff-heading h2 {
    font-size: 2.35rem;
  }

  .staff-image {
    height: 300px;
  }

  .staff-content h3 {
    font-size: 1.4rem;
  }

  .staff-text {
    font-size: 0.95rem;
  }
}

/* =========================
   iPad Mini / kleine Tablets
   Team Cards 2 pro Reihe
========================= */

@media (min-width: 700px) and (max-width: 900px) {
  .staff-section {
    padding: 80px 24px;
  }

  .staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .staff-card {
    width: 100%;
    height: 100%;
  }

  .staff-card:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 26px) / 2);
    max-width: none;
    margin: 0 auto;
  }

  .staff-image {
    height: 280px;
  }

  .staff-content {
    min-height: 210px;
  }
}

/* =========================
   REVIEWS SECTION
========================= */

.reviews-section {
  width: 100%;
  padding: 110px 24px;
  background: #151515;
}

.reviews-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

/* Ãœberschrift */

.reviews-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.reviews-heading span {
  display: block;
  margin-bottom: 14px;
  color: var(--kleineUeber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.reviews-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1.4px;
}

.reviews-heading p {
  max-width: 640px;
  margin: 22px auto 0;
  color: rgba(232, 226, 226, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* Google Box */

.reviews-summary {
  max-width: 920px;
  margin: 0 auto 42px;
  padding: 22px 26px;
  background: #111214;
  border: 1px solid rgba(199, 164, 106, 0.16);
  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 18px;
}

.google-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #111214;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.45rem;
  font-weight: 800;
}

.google-info strong {
  display: block;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 5px;
}

.stars {
  color: var(--kleineUeber);
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1;
}

.google-info p {
  margin: 8px 0 0;
  color: rgba(232, 226, 226, 0.6);
  font-size: 0.92rem;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 20px;
  border: 1px solid rgba(199, 164, 106, 0.55);
  color: var(--kleineUeber);
  text-decoration: none;

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;

  transition: 0.3s ease;
}

.reviews-link:hover {
  background: var(--kleineUeber);
  color: #111214;
}

/* Reviews Splide Slider */

.reviews-splide {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.reviews-splide .splide__track {
  order: 1;
  width: 100%;
  padding: 8px 0 12px;
}

.reviews-splide .splide__list {
  align-items: stretch;
  will-change: auto;
}

.review-card {
  height: auto;
  min-height: 280px;
  padding: 28px;

  background: #111214;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 26px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);

  transition: border-color 0.25s ease;
}

.review-card:hover {
  transform: none;
  border-color: rgba(199, 164, 106, 0.35);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: rgba(199, 164, 106, 0.14);
  border: 1px solid rgba(199, 164, 106, 0.32);
  color: var(--kleineUeber);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1rem;
  font-weight: 700;
}

.review-card h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
}

.review-card p {
  margin: 0;
  color: rgba(232, 226, 226, 0.74);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* Reviews slider controls */

.reviews-splide .splide__arrows {
  order: 2;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.reviews-splide .splide__arrow {
  position: static;
  transform: none;

  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(199, 164, 106, 0.28);
  background: var(--kleineUeber);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  opacity: 1;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.reviews-splide .splide__arrow svg {
  width: 15px;
  height: 15px;
  fill: #111214;
}

.reviews-splide .splide__arrow--prev {
  left: auto;
}

.reviews-splide .splide__arrow--next {
  right: auto;
}

.reviews-splide .splide__pagination {
  display: none;
}

.reviews-splide .splide__arrow:hover {
  background: var(--kleineUeber);
  border-color: var(--kleineUeber);
}

/* TABLET */

@media (max-width: 1024px) {
  .reviews-section {
    padding: 90px 24px;
  }

  .reviews-splide .splide__arrows {
    margin-top: 20px;
  }
}

/* MOBILE */

/* =========================
   MOBILE REVIEWS
========================= */

/* =========================
   MOBILE REVIEWS
========================= */

@media (max-width: 768px) {
  .reviews-section {
    padding: 72px 20px;
  }

  .reviews-heading {
    margin-bottom: 42px;
  }

  .reviews-heading span {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

  .reviews-heading h2 {
    font-size: 2.45rem;
    letter-spacing: -1px;
  }

  .reviews-heading p {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 22px;
  }

  .reviews-link {
    width: 100%;
  }

  .reviews-splide .splide__track {
    padding: 8px 0 12px;
  }

  .review-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .review-top {
    gap: 14px;
    margin-bottom: 22px;
  }

  .review-avatar {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .review-card h3 {
    font-size: 1.05rem;
  }

  .review-card p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .reviews-splide .splide__arrows {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
  }

  .reviews-splide .splide__arrow {
    position: static;
    transform: none;

    width: 44px;
    height: 44px;
    margin: 0;

    border-radius: 12px;
    border: 1px solid rgba(199, 164, 106, 0.32);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  }

  .reviews-splide .splide__arrow:hover,
  .reviews-splide .splide__arrow:active {
    background: var(--kleineUeber);
    border-color: var(--kleineUeber);
  }
}


/* SMALL MOBILE */

@media (max-width: 480px) {
  .reviews-section {
    padding: 64px 16px;
  }

  .reviews-heading h2 {
    font-size: 2.2rem;
  }

  .google-logo {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

  .google-info strong {
    font-size: 1.6rem;
  }

  .review-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .reviews-splide .splide__arrow {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }
}

/* =========================
   GLOBAL CONTAINER
========================= */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================
   PRICE SECTION
========================= */
.price-section {
  padding: 90px 0;
  background: var(--background-color);
}

.price-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 200px;
  align-items: start;
}

.price-wrap.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.price-list {
  color: white;
}

.price-title {
  font-size: 42px;
  margin: 0 0 10px;
}

.price-sub {
  margin: 0 0 30px;
  color: #cbb89a;
  line-height: 1.6;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 230, 200, 0.18);
}

.price-left h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  letter-spacing: 0px;
  font-weight: 400;
}

.price-left p {
  margin: 0;
  color: #cbb89a;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 52ch;
}

.price-right {
  font-size: 1.3rem;
  color: #f5e6c8;
  white-space: nowrap;
  align-self: center;
  font-weight: 400;
  letter-spacing: 0px;
}

.price-photo {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
  border: 0;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.price-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.22) 100%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.14), transparent 30%);
}

.price-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  filter: saturate(0.92) contrast(1.07) brightness(0.94);
  transform: scale(1.008);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.price-photo:hover img {
  filter: saturate(0.98) contrast(1.08) brightness(0.98);
  transform: scale(1.035);
}

.price-image-damen {
  object-position: center 22%;
}

.price-image-herren {
  object-position: center 22%;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .section-container {
    padding: 0 32px;
  }

  .price-wrap,
  .price-wrap.reverse {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
  }

  .price-title {
    font-size: 36px;
  }

  .price-sub {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .price-item {
    gap: 18px;
    padding: 16px 0;
  }

  .price-left h3 {
    font-size: 1.25rem;
  }

  .price-left p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .price-right {
    font-size: 1.15rem;
  }

  .price-photo img {
    height: 430px;
  }
}

/* =========================
   SMARTPHONE
========================= */
@media (max-width: 768px) {
  .section-container {
    padding: 0 20px;
  }

  .price-section {
    padding: 60px 0;
  }

  .price-wrap,
  .price-wrap.reverse {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .price-photo {
    order: 1;
  }

  .price-list {
    order: 2;
  }

  .price-photo {
    border-radius: 14px;
  }

  .price-photo img {
    width: 100%;
    height: 320px;
    border-radius: inherit;
  }

  .price-photo::after {
    inset: 0;
    border-radius: inherit;
  }

  .price-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .price-sub {
    margin-bottom: 22px;
    font-size: 0.95rem;
  }

  .price-item {
    gap: 14px;
    padding: 14px 0;
  }

  .price-left h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .price-left p {
    font-size: 0.92rem;
    line-height: 1.45;
    max-width: 100%;
  }

  .price-right {
    font-size: 1rem;
    align-self: flex-start;
  }

  .price-list {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .price-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .price-left {
    text-align: left;
  }

  .price-right {
    text-align: right;
    align-self: center;
  }
}

/* =========================
   KLEINE SMARTPHONES
========================= */
@media (max-width: 480px) {
  .section-container {
    padding: 0 16px;
  }

  .price-section {
    padding: 50px 0;
  }

  .price-wrap,
  .price-wrap.reverse {
    gap: 24px;
  }

  .price-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
  }

  .price-title {
    font-size: 24px;
  }

  .price-sub {
    margin-bottom: 18px;
    font-size: 0.9rem;
  }

  .price-item {
    padding: 12px 0;
  }

  .price-left h3 {
    font-size: 1rem;
  }

  .price-left p {
    font-size: 0.88rem;
  }

  .price-right {
    font-size: 0.95rem;
  }
}

/* =========================
   LEISTUNGEN PREISMENUE
========================= */
.price-menu-section {
  padding: 110px 0 120px;
  background:
    linear-gradient(180deg, #141414 0%, var(--background-color) 100%);
}

.price-menu-header {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.price-menu-header span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--kleineUeber);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-menu-header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

.price-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.price-menu-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: none;
  border-radius: 8px;
  background: #1d1d1d;
  box-shadow:
    inset 0 0 0 1px rgba(199, 164, 106, 0.10),
    0 24px 55px rgba(0, 0, 0, 0.22);
}

.price-menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 34%);
  opacity: 0.50;
}

.price-menu-card-featured {
  background: #1d1d1d;
}

.price-card-head {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(245, 230, 200, 0.13);
}

.price-menu-card .price-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 650;
  line-height: 1;
}

.price-menu-card .price-sub {
  margin: 0;
  color: rgba(232, 226, 222, 0.68);
  font-size: 1rem;
  line-height: 1.6;
}

.price-list-group {
  position: relative;
  z-index: 1;
  margin: 28px 0 4px;
}

.price-card-head + .price-list-group {
  margin-top: 0;
}

.price-group-label {
  display: block;
  color: rgba(232, 226, 222, 0.46);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-menu-card .price-item {
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(245, 230, 200, 0.10);
}

.price-menu-card .price-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.price-menu-card .price-left h3 {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 600;
}

.price-menu-card .price-left p {
  color: rgba(232, 226, 222, 0.58);
  font-size: 0.95rem;
}

.price-menu-card .price-right {
  min-width: 72px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #f3eee7;
  background: rgba(255, 255, 255, 0.035);
  font-size: 1rem;
  font-weight: 650;
  text-align: center;
}

.price-menu-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

@media (max-width: 900px) {
  .price-menu-section {
    padding: 78px 0 90px;
  }

  .price-menu-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .price-menu-header {
    margin-bottom: 34px;
    text-align: left;
  }

  .price-menu-card {
    padding: 24px 20px;
  }

  .price-card-head {
    margin-bottom: 22px;
    padding-bottom: 22px;
  }

  .price-menu-card .price-item {
    align-items: flex-start;
    padding: 18px 0;
  }

  .price-menu-card .price-right {
    min-width: 64px;
    padding: 7px 11px;
  }
}

/* =========================
   CONTACT STRIP
========================= */
.contact-strip {
  padding: 90px 0;
  background: var(--background-color);
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  text-align: center;
}

.contact-item {
  flex: 1;
  color: #f5e6c8;
}

.contact-item a {
  color: white;
  text-decoration: none;
}

.icon-badge {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border: 1.4px solid var(--kleineUeber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: 0 0 10px rgba(200, 169, 106, 0.35);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.icon-badge svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--kleineUeber);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item h3 {
  margin: 6px 0 8px;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
}

.contact-item p {
  margin: 0;
  color: white;
  font-size: 1.3rem;
  line-height: 1.6;
}

.divider {
  width: 1px;
  height: 84px;
  background: rgba(200, 169, 106, 0.25);
}

.icon-badge:hover {
  box-shadow: 0 0 16px rgba(200, 169, 106, 0.6);
  transform: scale(1.05);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .contact-strip {
    padding: 70px 0;
  }

  .contact-row {
    gap: 28px;
  }

  .icon-badge {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
  }

  .icon-badge svg {
    width: 22px;
    height: 22px;
  }

  .contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .contact-item p {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .divider {
    height: 70px;
  }
}

/* =========================
   SMARTPHONE
========================= */
@media (max-width: 768px) {
  .contact-strip {
    padding: 55px 0;
  }

  .contact-row {
    flex-direction: column;
    gap: 26px;
  }

  .contact-item {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .icon-badge {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

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

  .contact-item h3 {
    font-size: 1.1rem;
    margin: 4px 0 8px;
  }

  .contact-item p {
    font-size: 1.1rem;
    line-height: 1.55;
  }

  .divider {
    width: 70%;
    max-width: 260px;
    height: 1px;
  }
}

/* =========================
   KLEINE SMARTPHONES
========================= */
@media (max-width: 480px) {
  .contact-strip {
    padding: 45px 0;
  }

  .contact-row {
    gap: 22px;
  }

  .contact-item h3 {
    font-size: 1.1rem;
    letter-spacing: 0.8px;
  }

  .contact-item p {
    font-size: 1.1rem;
  }

  .divider {
    width: 80%;
  }


}

/* =========================
   CONTACT FORM
========================= */
.contact-form-section {
  padding: 100px 0;
  background: var(--background-color);
  text-align: center;
}

.contact-form-section h2 {
  color: white;
  font-size: 2.6rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.form-subtitle {
  color: var(--kleineUeber);
  margin-bottom: 40px;
  font-size: 1.3rem;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(200, 169, 106, 0.35);
  border-radius: 6px;
  color: #f5e6c8;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--kleineUeber);
  box-shadow: 0 0 10px rgba(200, 169, 106, 0.35);
}

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

.contact-form ::placeholder {
  color: rgba(245, 230, 200, 0.45);
}

.contact-form button {
  margin-top: 10px;
  width: 100%;
  padding: 14px;
  background: #efe0c9;
  border: 1px solid #efe0c9;
  border-radius: 6px;
  color: #241d17;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #f5eadb;
  color: #241d17;
  box-shadow: 0 0 14px rgba(239, 224, 201, 0.28);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .contact-form-section {
    padding: 80px 0;
  }

  .contact-form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .form-subtitle {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }

  .contact-form {
    max-width: 600px;
  }

  .form-row {
    margin-bottom: 16px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 15px;
  }
}

/* =========================
   SMARTPHONE
========================= */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 70px 20px;
  }

  .contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .form-subtitle {
    font-size: 1rem;
    margin-bottom: 26px;
  }

  .contact-form {
    max-width: 100%;
  }

  .form-row {
    margin-bottom: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 13px 14px;
    font-size: 14px;
  }

  .contact-form textarea {
    min-height: 130px;
  }

  .contact-form button {
    padding: 13px;
    font-size: 13px;
  }
}

/* =========================
   KLEINE SMARTPHONES
========================= */
@media (max-width: 480px) {
  .contact-form-section {
    padding: 55px 16px;
  }

  .contact-form-section h2 {
    font-size: 1.7rem;
  }

  .form-subtitle {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }

  .form-row {
    margin-bottom: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 13px;
    font-size: 13px;
    border-radius: 5px;
  }

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

  .contact-form button {
    padding: 12px;
    font-size: 12px;
    letter-spacing: 0.8px;
  }
}

/* =========================
   NUR: ABOUT / SERVICES / GALERIE / INSTAGRAM TITEL GLEICH
========================= */
.about-left h2,
.services-heading h2,
.content h2,
.instagram-section h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", Arial, sans-serif;
  font-size: 4rem;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -1px;
  color: #ffffff;
  font-synthesis: none;
  transform: none;
  -webkit-transform: none;
  filter: none;
  text-shadow: none;
  will-change: auto;
}

/* TABLET */
@media (max-width: 1024px) {
  .about-left h2,
  .services-heading h2,
  .content h2,
  .instagram-section h2 {
    font-size: 3rem;
    line-height: 1.08;
    letter-spacing: -0.8px;
  }
}

/* HANDY */
@media (max-width: 768px) {
  .about-left h2,
  .services-heading h2,
  .content h2,
  .instagram-section h2 {
    font-size: 2.4rem;
    line-height: 1.08;
    letter-spacing: -0.5px;
  }



}

/* KLEINE HANDYS */
@media (max-width: 480px) {
  .about-left h2,
  .services-heading h2,
  .content h2,
  .instagram-section h2 {
    font-size: 2rem;
    line-height: 1.08;
    letter-spacing: -0.3px;
  }


}

/* =========================
   NUR INDEX.HTML: Smartphone erste Seite exakt
========================= */
@media (max-width: 900px) {

  .first-screen {
    height: auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: #111214;
  }

  .first-screen .navbar {
    position: relative;
    z-index: 9999;
    flex-shrink: 0;
  }

  .first-screen .bild-container {
    position: relative !important;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible;
    background: #141414;
    isolation: isolate;
    display: flex;
    flex-direction: column;
  }

  .first-screen .bild-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 42svh;
    min-height: 260px;
    max-height: 390px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.24) 55%,
      rgba(0, 0, 0, 0.54) 100%
    );
  }

  .first-screen .bild-container img {
    position: relative;
    inset: auto;
    z-index: 0;

    width: 100%;
    height: 42svh;
    min-height: 260px;
    max-height: 390px;

    display: block;
    object-fit: cover;
    object-position: center 55%;
  }

  .first-screen .overlay {
    display: none;
  }

  .first-screen .lumen-hero-content {
    position: relative;
    z-index: 2;

    top: auto;
    left: auto;
    transform: none;

    width: 100%;
    max-width: none;
    padding: 34px 22px 44px;
    background: #141414;
  }

  .first-screen .lumen-hero-content::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .bild-container img {
    object-position: 48% center;
  }
}
  
.about-text-only .about-lead {
  margin-top: 22px;
  max-width: 620px;
  font-size: 24px;
  line-height: 1.55;
  font-weight: 500;
  color: #ffffff;
}

.about-text-only .about-left p:not(.about-lead) {
  margin-top: 20px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
  color: #cfcfcf;
}

.about-text-only .about-btn {
  margin-top: 34px;
}

.services-cta {
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 170, 110, 0.22);
  border-radius: 18px;
}

.services-cta-text span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #d4aa6e;
}

.services-cta-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #cfcfcf;
}

.services-cta-btn {
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .services-cta {
    width: auto;
    margin: 24px 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .services-cta {
    margin-top: 110px;
    margin-left: 22px;
    margin-right: 22px;
    padding: 28px 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .services-cta-text {
    width: 100%;
    text-align: center;
  }

  .services-cta-text span {
    text-align: center;
  }

  .services-cta-btn {
    margin: 0 auto;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-mobile-hide {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-text-only .about-left {
    text-align: center;
    align-items: center;
  }

  .about-text-only .about-subtitle,
  .about-text-only h2 {
    text-align: center;
  }

  .about-text-only .about-lead {
    max-width: 340px;
    margin: 24px auto 0;
    font-size: 21px;
    line-height: 1.55;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
  }

  .about-text-only .about-left p:not(.about-lead) {
    max-width: 340px;
    margin: 28px auto 0;
    font-size: 16.5px;
    line-height: 1.85;
    font-weight: 400;
    color: #cfcfcf;
    text-align: center;
  }

  .about-text-only .about-btn {
    margin: 34px auto 0;
  }

  .about-mobile-hide {
    display: none;
  }
}

/* Final override: modern buttons with original spacing */
.lumen-hero-btn {
  padding: var(--hero-button-padding);
}

.about-btn,
.services-btn,
.gallery-btn,
.services-cta-btn,
.price-booking-btn {
  padding: var(--section-button-padding);
}

.footer-btn {
  padding: 13px 26px;
}

.lumen-hero-btn,
.about-btn,
.services-btn,
.gallery-btn,
.services-cta-btn,
.price-booking-btn,
.footer-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(17, 18, 20, 0.72);
  color: #f3eee7;
  border: 1px solid rgba(243, 238, 231, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 18px 36px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  letter-spacing: 0.08em;
}

.services-cta-btn {
  min-height: var(--section-button-min-height);
  line-height: 1;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-size: var(--section-button-font-size);
  font-weight: 750;
  transition:
    background var(--button-transition),
    color var(--button-transition),
    border-color var(--button-transition),
    transform var(--button-transition),
    box-shadow var(--button-transition);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.18);
}

.price-booking-btn {
  min-height: var(--section-button-min-height);
  min-width: 210px;
  line-height: 1;
  border-radius: var(--button-radius);
  text-decoration: none;
  font-size: var(--section-button-font-size);
  font-weight: 750;
  text-transform: uppercase;
  transition:
    background var(--button-transition),
    color var(--button-transition),
    border-color var(--button-transition),
    transform var(--button-transition),
    box-shadow var(--button-transition);
}

.lumen-hero-btn::after,
.about-btn::after,
.services-btn::after,
.gallery-btn::after,
.services-cta-btn::after,
.price-booking-btn::after,
.footer-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--button-transition);
}

.lumen-hero-btn:hover,
.about-btn:hover,
.services-btn:hover,
.gallery-btn:hover,
.services-cta-btn:hover,
.price-booking-btn:hover,
.footer-btn:hover {
  background: rgba(24, 25, 27, 0.86);
  color: #ffffff;
  border-color: rgba(199, 164, 106, 0.74);
  transform: translate3d(0, -2px, 0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 0 1px rgba(199, 164, 106, 0.18),
    0 22px 44px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(199, 164, 106, 0.12);
}

.services-cta-btn:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(199, 164, 106, 0.14),
    0 10px 20px rgba(0, 0, 0, 0.20);
}

.lumen-hero-btn:hover::after,
.about-btn:hover::after,
.services-btn:hover::after,
.gallery-btn:hover::after,
.services-cta-btn:hover::after,
.price-booking-btn:hover::after,
.footer-btn:hover::after {
  transform: translateX(5px) rotate(45deg);
}

@media (max-width: 768px) {
  .lumen-hero-btn {
    padding: var(--hero-button-padding-mobile);
  }

  .about-btn,
  .services-btn,
  .gallery-btn,
  .services-cta-btn,
  .price-booking-btn {
    min-height: var(--section-button-min-height-mobile);
    font-size: var(--section-button-font-size-mobile);
    padding: var(--section-button-padding-mobile);
  }
}

/* =========================
   PREMIUM CONTACT FORM
========================= */
.contact-form-section {
  padding: 112px 0 120px;
  background:
    linear-gradient(180deg, #141414 0%, #171717 100%);
  text-align: left;
}

.contact-form-shell {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  border: none;
  border-radius: 22px;
  background: #1d1d1d;
  box-shadow:
    inset 0 0 0 1px rgba(199, 164, 106, 0.10),
    0 28px 70px rgba(0, 0, 0, 0.30);
}

.contact-form-heading {
  max-width: 680px;
  margin: 0 auto 30px;
}

.contact-form-heading span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--kleineUeber);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form-heading h2 {
  margin: 0;
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.04;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.contact-form .form-row {
  margin: 0;
}

.contact-form label {
  display: block;
  margin-bottom: 9px;
  color: rgba(232, 226, 222, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.030);
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.030);
  transition:
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

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

.contact-form ::placeholder {
  color: rgba(232, 226, 222, 0.34);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(232, 226, 222, 0.30);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 0 0 3px rgba(255, 255, 255, 0.045);
}

.contact-form button {
  width: 100%;
  min-height: var(--section-button-min-height);
  margin-top: 6px;
  padding: var(--section-button-padding);
  border: 1px solid rgba(243, 238, 231, 0.34);
  border-radius: var(--button-radius);
  background: rgba(12, 13, 15, 0.86);
  color: #f3eee7;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    0 18px 36px rgba(0, 0, 0, 0.30);
  transition:
    background var(--button-transition),
    color var(--button-transition),
    border-color var(--button-transition),
    transform var(--button-transition),
    box-shadow var(--button-transition);
}

.contact-form button:hover {
  background: rgba(18, 19, 21, 0.94);
  color: #ffffff;
  border-color: rgba(232, 226, 222, 0.54);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 22px 44px rgba(0, 0, 0, 0.36);
}

@media (max-width: 640px) {
  .contact-form-section {
    padding: 76px 0 86px;
  }

  .contact-form-shell {
    padding: 26px 20px;
  }

  .contact-form-heading {
    margin-bottom: 28px;
  }

  .contact-form {
    gap: 16px;
  }
}

.contact-page {
  background: linear-gradient(180deg, #141414 0%, #171717 100%);
}

.contact-page .contact-strip,
.contact-page .contact-form-section {
  background: transparent;
}
