/*
  Evergreen Ink Tattoo Studio
  Projekt-CSS für Layout, Bildsprache, Interaktionen und responsive Feinarbeit.
  Copyright by webcore-dresden.de
*/

html {
  background: #f5efe4;
}

:root {
  --eg-green-deep: #06100d;
  --eg-green: #123f2f;
  --eg-green-soft: #1a4e3a;
  --eg-cream: #f5efe4;
  --eg-cream-2: #ebe3d4;
  --eg-text: #18231f;
  --eg-muted: #6e746d;
  --eg-gold: #a98564;
  --eg-line: rgba(169, 133, 100, 0.28);
  --eg-shadow: 0 24px 70px rgba(6, 16, 13, 0.18);
}


/* Section-Titel nach semantischer H2-Umstellung */
.about-wrap .sec-title h2,
.evergreen-artist .sec-title h2,
.evergreen-gallery .sec-title h2,
.evergreen-faq .sec-title h2,
.contact-wrap .sec-title h2 {
  color: var(--eg-text);
}

.evergreen-services .sec-title h2 {
  color: #fff;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--eg-cream);
  color: var(--eg-text);
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

p {
  color: var(--eg-text);
}

::selection {
  background: var(--eg-gold);
  color: #fff;
}

img {
  backface-visibility: hidden;
}

/* ------------------------------
   Global Template Refinement
------------------------------ */

section {
  position: relative;
  overflow: hidden;
}

.sec-title h1,
.sec-title h2,
.billboard-wrap .billboard-bg-img .billboard-content h1,
.interview-wrap .interview-bg-img .interview-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.035em;
  text-transform: none;
}

.sec-title h1,
.sec-title h2 {
  color: var(--eg-text);
  max-width: 900px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--eg-gold);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .26em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #7e563c;
}

.section-lead {
  max-width: 780px;
  margin: -42px 0 70px;
  color: var(--eg-muted);
}

.signature {
  margin-top: 32px;
  color: var(--eg-gold);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
}

a.btn,
button.btn {
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: .08em;
}

a.btn-outline,
button.btn-outline {
  border-color: rgba(245, 239, 228, .75);
  background: rgba(18, 63, 47, .18);
  backdrop-filter: blur(12px);
}

a.btn-outline:hover,
button.btn-outline:hover {
  color: var(--eg-green-deep);
  background: var(--eg-cream);
}

button.btn-outline {
  padding-right: 40px;
  padding-left: 40px;
  cursor: pointer;
}

a.btn-black,
button.btn-black {
  border: 0;
  background: linear-gradient(135deg, var(--eg-green), var(--eg-green-soft));
  color: #fff;
}

a.btn-black:hover,
button.btn-black:hover {
  background: #0c2c22;
  color: #fff;
  transform: translateY(-2px);
}

a.btn-blank {
  color: var(--eg-green);
}

a.btn-blank:hover {
  color: var(--eg-gold);
}

/* ------------------------------
   Header / Navigation
------------------------------ */

.header-wrap.evergreen-header {
  position: sticky;
  top: 0;
  height: 118px;
  background: rgba(6, 16, 13, .92);
  box-shadow: 0 1px 0 rgba(245, 239, 228, .08);
  backdrop-filter: blur(16px);
}

.header-wrap .header-logo {
  top: 50%;
  left: 42px;
  z-index: 3;
  transform: translateY(-50%);
}

.evergreen-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.evergreen-wordmark .brand-name {
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: .06em;
  white-space: nowrap;
}

.evergreen-wordmark .brand-subline {
  margin-top: 5px;
  color: rgba(245, 239, 228, .72);
  font-family: 'Raleway', sans-serif;
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-wrap .header-nav-wrap {
  position: absolute;
  inset: 0;
  height: 100%;
}

.header-wrap .header-nav-wrap ul.header-main-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 32px;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
}

.header-wrap .header-nav-wrap .header-main-nav li {
  margin: 0;
  line-height: 1;
}

.header-wrap .header-nav-wrap .header-main-nav li a {
  position: relative;
  display: inline-block;
  padding: 14px 0;
  color: rgba(245, 239, 228, .78);
  line-height: 1;
}

.header-wrap .header-nav-wrap .header-main-nav li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 7px;
  display: block;
  width: 0;
  height: 2px;
  margin-top: 0;
  background: var(--eg-gold);
  transition: width .3s ease;
}

.header-wrap .header-nav-wrap .header-main-nav li a:hover::after,
.header-wrap .header-nav-wrap .header-main-nav li a.active::after {
  width: 100%;
}

.header-wrap .header-nav-wrap .header-main-nav li a:hover,
.header-wrap .header-nav-wrap .header-main-nav li a.active {
  color: #fff;
}

.header-wrap .header-nav-wrap .header-social {
  position: absolute;
  top: 50%;
  right: 42px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
}

.header-wrap .header-nav-wrap .header-social li {
  line-height: 1;
}

.header-wrap .header-nav-wrap .header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 239, 228, .78);
  line-height: 1;
}

.header-wrap .header-nav-wrap .header-social a:hover {
  color: var(--eg-gold);
}

.nav-cta {
  padding: 18px 22px !important;
  border: 1px solid rgba(169, 133, 100, .45);
  border-radius: 999px;
  background: rgba(169, 133, 100, .10);
  transition: border-color .3s ease, background .3s ease, color .3s ease;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  border-color: rgba(169, 133, 100, .78);
  background: rgba(169, 133, 100, .18);
}

.header-menu-toggle span,
.header-menu-toggle span::before,
.header-menu-toggle span::after {
  background-color: #fff;
}

.header-menu-toggle.is-clicked span {
  background-color: transparent;
}

.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
  background-color: #fff;
}

@media screen and (max-width: 1400px) {
  .header-wrap .header-nav-wrap ul.header-main-nav {
    gap: 24px;
  }
}

/* ------------------------------
   Hero / Billboard
------------------------------ */

.billboard-wrap .billboard-bg-img {
  min-height: 100svh;
  padding-top: 118px;
}

.billboard-wrap .billboard-bg-img .billboard-content h1 {
  max-width: 760px;
  font-size: clamp(68px, 9vw, 132px);
  line-height: .88;
  color: #fff;
}

.billboard-wrap .billboard-bg-img .billboard-content p {
  max-width: 650px;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.75;
}

.evergreen-billboard::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(0deg, var(--eg-cream), rgba(245,239,228,0));
}

/* ------------------------------
   About / Artist
------------------------------ */

.evergreen-about,
.evergreen-artist,
.evergreen-faq,
.evergreen-contact {
  background: var(--eg-cream);
}

.evergreen-about .section-image img,
.evergreen-artist .section-image img,
.evergreen-faq .article-img img {
  border-radius: 0 82px 0 82px;
  box-shadow: var(--eg-shadow);
}

.evergreen-about .short-description,
.evergreen-artist .short-description {
  padding-left: 10%;
}

.evergreen-artist {
  padding-top: 60px;
}

.evergreen-artist .artist-image img {
  max-height: 780px;
  object-fit: cover;
  object-position: center top;
}

.evergreen-artist .artist-copy {
  padding-left: 0;
  padding-right: 12%;
}

/* ------------------------------
   Gallery
------------------------------ */

.evergreen-gallery {
  background: linear-gradient(180deg, var(--eg-cream) 0%, #efe7d9 100%) !important;
}

.gallery-wrap .row div img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 20px 50px rgba(6, 16, 13, .12);
}

.gallery-wrap .row div:nth-child(2n) img:first-child,
.gallery-wrap .row div:nth-child(2n+1) img:nth-child(2) {
  aspect-ratio: 4 / 3;
}

/* ------------------------------
   Services
------------------------------ */

.evergreen-services {
  background: var(--eg-green-deep);
  color: #fff;
}

.evergreen-services .sec-title h1,
.evergreen-services .sec-title h2 {
  color: #fff;
}

.evergreen-services .service-card-row {
  row-gap: 34px;
}

.evergreen-services .service-card {
  position: relative;
  height: 100%;
  padding: 8px;
  overflow: hidden;
  border: 0;
  border-radius: 34px 72px 34px 34px;
  background: linear-gradient(180deg, rgba(112, 138, 103, .18), rgba(112, 138, 103, .06));
  box-shadow: 0 24px 54px rgba(0, 0, 0, .22);
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.evergreen-services .service-card::before {
  content: '';
  position: absolute;
  inset: -35%;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(149, 173, 132, .10) 42%,
    rgba(232, 214, 172, .72) 50%,
    rgba(149, 173, 132, .14) 58%,
    transparent 70%
  );
  opacity: .72;
  transform: translateX(-78%) rotate(0.001deg);
  animation: evergreenServiceFrameSweep 7.6s cubic-bezier(.45, 0, .2, 1) infinite;
  pointer-events: none;
}

.evergreen-services .service-card-row > div:nth-child(1) .service-card::before {
  animation-delay: 0s;
}

.evergreen-services .service-card-row > div:nth-child(2) .service-card::before {
  animation-delay: .55s;
}

.evergreen-services .service-card-row > div:nth-child(3) .service-card::before {
  animation-delay: 1.1s;
}

.evergreen-services .service-card-row > div:nth-child(4) .service-card::before {
  animation-delay: 1.65s;
}


.evergreen-services .service-card::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 26px 62px 26px 26px;
  border: 1px solid rgba(245, 239, 228, .10);
  pointer-events: none;
  z-index: 3;
}

.evergreen-services .service-card-media {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(93, 118, 83, .46);
  border-radius: 26px 62px 26px 26px;
  background: rgba(245, 239, 228, .05);
  transition: border-color .35s ease, box-shadow .35s ease;
}

.evergreen-services .service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,16,13,.02), rgba(6,16,13,.70));
  pointer-events: none;
}

.evergreen-services .service-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: evergreenServiceImageDrift 12s ease-in-out infinite alternate;
  will-change: transform;
  transition: transform .45s ease, filter .45s ease;
}

.evergreen-services .service-card:nth-child(2n) .service-card-media img,
.evergreen-services .service-card-row > div:nth-child(2n) .service-card-media img {
  animation-duration: 14s;
  animation-delay: -2.5s;
}

.evergreen-services .service-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
}

.evergreen-services .service-card-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(245, 239, 228, .74);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .35s ease;
}

.evergreen-services .service-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .95;
  text-transform: none;
}

.evergreen-services .service-card p {
  max-width: 280px;
  margin: 0;
  color: rgba(245, 239, 228, .74);
  font-size: 15px;
  line-height: 1.65;
  transition: color .35s ease;
}

.evergreen-services .service-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(112, 138, 103, .24), rgba(112, 138, 103, .08));
  box-shadow: 0 32px 70px rgba(0, 0, 0, .30);
}


.evergreen-services .service-card:hover::before {
  opacity: 1;
  animation-duration: 2.8s;
}

.evergreen-services .service-card:hover .service-card-media {
  border-color: rgba(232, 214, 172, .42);
  box-shadow: inset 0 0 0 1px rgba(245, 239, 228, .08);
}

.evergreen-services .service-card:hover .service-card-media img {
  transform: scale(1.11);
  filter: saturate(1.05) contrast(1.03);
}

.evergreen-services .service-card:hover .service-card-kicker {
  color: rgba(232, 214, 172, .92);
}

.evergreen-services .service-card:hover p {
  color: rgba(245, 239, 228, .86);
}


@keyframes evergreenServiceFrameSweep {
  0%,
  18% {
    transform: translateX(-78%) rotate(0.001deg);
  }

  46%,
  100% {
    transform: translateX(78%) rotate(0.001deg);
  }
}

@keyframes evergreenServiceImageDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.11) translate3d(-2.5%, -1.5%, 0);
  }
}

@media screen and (max-width: 1200px) {
  .evergreen-footer .widgets-section .row {
    grid-template-columns: minmax(200px, 1.2fr) minmax(0, .8fr) minmax(0, .8fr) minmax(210px, 1.25fr);
    column-gap: clamp(24px, 3vw, 38px);
  }

  .evergreen-footer .footer-social-legal-column {
    grid-column: auto;
  }

  .evergreen-footer .footer-social-legal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }
}

@media screen and (max-width: 1200px) {
  .evergreen-services .service-card-media img {
    aspect-ratio: 16 / 11;
  }
}

@media screen and (max-width: 768px) {
  .evergreen-services .service-card {
    border-radius: 28px 54px 28px 28px;
  }

  .evergreen-services .service-card::after {
    border-radius: 22px 46px 22px 22px;
  }

  .evergreen-services .service-card-media {
    border-width: 4px;
    border-radius: 20px 44px 20px 20px;
  }

  .evergreen-services .service-card-media img {
    aspect-ratio: 16 / 10;
  }

  .evergreen-services .service-card-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .evergreen-services .service-card p {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .evergreen-services .service-card::before,
  .evergreen-services .service-card-media img {
    animation: none;
  }

  .evergreen-services .service-card,
  .evergreen-services .service-card-media img {
    transition: none;
  }

  .evergreen-services .service-card:hover {
    transform: none;
  }

  .evergreen-services .service-card:hover .service-card-media img {
    transform: none;
  }
}


/* ------------------------------
   Testimonials / Google Reviews
------------------------------ */

.evergreen-testimonials {
  background: #f0e8da;
}

.google-reviews-section .google-review-panel {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 54px;
  align-items: stretch;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(126, 86, 60, .18);
  border-radius: 0 92px 0 92px;
  background: linear-gradient(135deg, rgba(255,255,255,.38), rgba(112,138,103,.08));
  box-shadow: 0 28px 70px rgba(6, 16, 13, .08);
}

.google-reviews-section .google-review-summary {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.google-reviews-section .google-stars {
  margin: 8px 0 18px;
  color: #b1845d;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: .12em;
  line-height: 1;
}

.google-reviews-section .google-review-summary h2 {
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--eg-text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .92;
  text-transform: none;
}

.google-reviews-section .google-review-summary p {
  max-width: 560px;
  margin: 0 0 34px;
  color: var(--eg-muted);
  font-size: 18px;
  line-height: 1.8;
}

.google-reviews-section .google-review-btn {
  width: fit-content;
  margin: 0;
  border-color: rgba(126, 86, 60, .30);
  color: var(--eg-text);
}

.google-reviews-section .google-review-btn:hover {
  border-color: var(--eg-green);
  background: var(--eg-green);
  color: #fff;
}

.google-reviews-section .google-review-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
}

.google-reviews-section .google-review-card {
  position: relative;
  padding: 24px 26px;
  overflow: hidden;
  border: 4px solid rgba(93, 118, 83, .32);
  border-radius: 28px 58px 28px 28px;
  background: rgba(245, 239, 228, .52);
  box-shadow: 0 20px 42px rgba(6, 16, 13, .07);
}

.google-reviews-section .google-review-card-wide {
  grid-column: 1 / -1;
}

.google-reviews-section .google-review-card::before {
  content: '';
  position: absolute;
  inset: -70% -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(232, 214, 172, .40) 50%, transparent 65%);
  opacity: 0;
  transform: translateX(-48%);
  transition: opacity .35s ease, transform .65s ease;
  pointer-events: none;
}

.google-reviews-section .google-review-card:hover::before {
  opacity: 1;
  transform: translateX(48%);
}

.google-reviews-section .google-review-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.google-reviews-section .google-review-name {
  color: var(--eg-text);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.google-reviews-section .google-review-stars {
  color: #b1845d;
  font-size: 15px;
  letter-spacing: .08em;
  line-height: 1;
}

.google-reviews-section .google-review-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--eg-muted);
  font-size: 16px;
  line-height: 1.75;
}

.evergreen-interview .interview-bg-img {
  min-height: 720px;
}

@media screen and (max-width: 992px) {
  .google-reviews-section .google-review-panel {
    grid-template-columns: 1fr;
    border-radius: 0 70px 0 70px;
  }
}

@media screen and (max-width: 700px) {
  .google-reviews-section .google-review-notes {
    grid-template-columns: 1fr;
  }

  .google-reviews-section .google-review-card-wide {
    grid-column: auto;
  }
}

@media screen and (max-width: 560px) {
  .eg-lightbox {
    padding: 64px 18px 78px;
  }

  .eg-lightbox-stage {
    height: calc(100dvh - 150px);
    max-height: 680px;
    gap: 14px;
  }

  .eg-lightbox-image {
    width: auto;
    height: auto;
    max-width: calc(100vw - 36px);
    max-height: calc(100dvh - 250px);
    border-radius: 22px 0 22px 0;
  }

  .eg-lightbox-meta {
    width: min(100%, 320px);
    min-height: 54px;
    padding: 10px 16px 11px;
    border-radius: 18px;
  }

  .eg-lightbox-caption {
    font-size: 15px;
  }

  .eg-lightbox-count {
    font-size: 13px;
  }

  .eg-lightbox-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .eg-lightbox-arrow {
    top: 50%;
    bottom: auto;
    width: 48px;
    height: 48px;
    font-size: 36px;
    transform: translateY(-50%);
  }

  .eg-lightbox-arrow:hover {
    transform: translateY(-50%);
  }

  .eg-lightbox-prev {
    left: 18px;
  }

  .eg-lightbox-next {
    right: 18px;
  }

  .contact-toast {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
    border-radius: 20px 0 20px 0;
  }


  .google-reviews-section .google-review-panel {
    padding: 28px 20px;
    border-radius: 0 46px 0 46px;
  }

  .google-reviews-section .google-review-card {
    padding: 24px 22px;
    border-radius: 24px 42px 24px 24px;
  }
}


/* ------------------------------
   FAQ / Articles
------------------------------ */

.evergreen-faq .article-post-item h4,
.evergreen-faq .article-post-item .article-step {
  color: #7e563c;
}

.evergreen-faq .lower-content h3 {
  color: var(--eg-text);
}

.evergreen-faq .lower-content span {
  display: block;
  color: var(--eg-muted);
  line-height: 1.7;
}

.evergreen-accordion {
  max-width: 980px;
  margin: 80px auto 0;
  border-top: 1px solid var(--eg-line);
}

.faq-item {
  border-bottom: 1px solid var(--eg-line);
}

.faq-question {
  width: 100%;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--eg-text);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(21px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: .04em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  float: right;
  color: var(--eg-gold);
  transition: transform .25s ease;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height .32s ease;
  will-change: height;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 30px;
  color: var(--eg-muted);
}

/* ------------------------------
   Contact / Map / Form
------------------------------ */

.evergreen-contact {
  background: #f7f2ea !important;
}

.evergreen-contact .contact-info-list li a {
  display: flex;
  align-items: flex-start;
  color: var(--eg-text);
}

.evergreen-contact .contact-info-list li a:hover {
  color: var(--eg-green);
}

.map-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 34px;
  background: #e7dfd1;
  box-shadow: 0 22px 50px rgba(6, 16, 13, .18);
}

.map-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
}

.map-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(6, 16, 13, .91);
  color: #fff;
  box-shadow: 0 12px 30px rgba(6, 16, 13, .24);
}

.map-label span,
.map-label strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}

.contact-wrap .contact-form {
  padding: 60px;
  border-radius: 58px 0 58px 0;
  background: #fff;
  box-shadow: var(--eg-shadow);
}

.contact-wrap .contact-form .form-group input,
.contact-wrap .contact-form .form-group textarea,
.contact-wrap .contact-form .form-group select {
  width: 100%;
  min-height: 54px;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(6, 16, 13, .36);
  background: transparent;
  color: var(--eg-text);
  font-size: 16px;
}

.contact-wrap .contact-form .form-group select {
  appearance: auto;
}

.contact-wrap .contact-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-wrap .contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-wrap .contact-form button.btn {
  margin-top: 18px;
  padding: 20px 42px;
}

.form-note {
  margin: 24px 0 0;
  color: var(--eg-muted);
  font-size: 15px;
  line-height: 1.7;
}

.form-trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  color: var(--eg-muted);
  font-size: 14px;
  line-height: 1.55;
}

.privacy-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--eg-green);
}

.privacy-check a {
  color: var(--eg-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: 18px 0 18px 0;
  background: rgba(111, 134, 101, .13);
  color: var(--eg-green-deep);
  font-size: 15px;
  line-height: 1.55;
}

.form-status.is-error {
  background: rgba(169, 87, 72, .12);
  color: #8b2e24;
}

.contact-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: min(360px, calc(100vw - 40px));
  padding: 18px 20px;
  border: 1px solid rgba(245, 239, 228, .14);
  border-radius: 24px 0 24px 0;
  background: rgba(6, 16, 13, .94);
  color: #fff;
  box-shadow: 0 18px 44px rgba(6, 16, 13, .28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .24s ease, transform .24s ease;
}

.contact-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-toast.is-error {
  background: rgba(42, 13, 10, .95);
}

.contact-toast strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: var(--eg-font-condensed);
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-toast span {
  display: block;
  color: rgba(245, 239, 228, .86);
  font-size: 14px;
  line-height: 1.55;
}

.contact-wrap .contact-form button.btn.is-loading {
  opacity: .72;
  pointer-events: none;
}


/* ------------------------------
   Galerie Lightbox
------------------------------ */

.eg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 72px 88px;
  background: rgba(3, 10, 8, .94);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.eg-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.eg-lightbox-open {
  overflow: hidden;
}

.eg-lightbox-stage {
  position: relative;
  width: min(100%, 1180px);
  height: calc(100dvh - 180px);
  max-height: 820px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.eg-lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, calc(100vw - 176px));
  max-height: calc(100dvh - 260px);
  border-radius: 28px 0 28px 0;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

.eg-lightbox-meta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: min(100%, 440px);
  min-height: 58px;
  padding: 11px 20px 12px;
  border: 1px solid rgba(245, 239, 228, .12);
  border-radius: 22px;
  background: rgba(18, 31, 25, .82);
  color: rgba(245, 239, 228, .84);
  text-align: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .24);
}

.eg-lightbox-caption {
  display: block;
  color: rgba(245, 239, 228, .84);
  font-size: 15px;
  line-height: 1.35;
}

.eg-lightbox-count {
  display: block;
  margin-top: 3px;
  color: rgba(245, 239, 228, .72);
  font-family: var(--eg-font-condensed);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .16em;
}

.eg-lightbox-close,
.eg-lightbox-arrow {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(245, 239, 228, .28);
  background: rgba(18, 31, 25, .88);
  color: #fff;
  cursor: pointer;
  font-family: var(--eg-font-condensed);
  line-height: 1;
  text-align: center;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.eg-lightbox-close:hover,
.eg-lightbox-arrow:hover {
  border-color: rgba(169, 133, 100, .7);
  background: rgba(45, 68, 54, .92);
  transform: translateY(-1px);
}

.eg-lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
}

.eg-lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 42px;
  transform: translateY(-50%);
}

.eg-lightbox-arrow:hover {
  transform: translateY(calc(-50% - 1px));
}

.eg-lightbox-prev {
  left: 28px;
}

.eg-lightbox-next {
  right: 28px;
}

/* ------------------------------
   Footer
------------------------------ */

.evergreen-footer {
  background: var(--eg-green-deep) !important;
}

.evergreen-footer .footer-bottom {
  border-top-color: rgba(245, 239, 228, .11);
}

.evergreen-footer .widgets-section .row {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(0, .85fr) minmax(0, .85fr) minmax(220px, 1.35fr);
  column-gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

.evergreen-footer .widgets-section .footer-column {
  width: auto;
  max-width: none;
  min-width: 0;
  padding-right: 0;
  padding-left: 0;
}

.evergreen-footer .footer-social-legal-column {
  grid-column: auto;
  min-width: 0;
}

.evergreen-footer .footer-social-legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(22px, 3vw, 44px);
  align-items: start;
  min-width: 0;
}

.evergreen-footer .footer-link-group,
.evergreen-footer .footer-social-legal .list {
  min-width: 0;
}

.evergreen-footer .footer-social-legal .list {
  display: grid;
  gap: 8px;
}

.evergreen-footer .footer-social-legal h4 {
  white-space: nowrap;
}

/* ------------------------------
   Motion Enhancements
------------------------------ */

.reveal-ready .evergreen-artist,
.reveal-ready .evergreen-gallery,
.reveal-ready .evergreen-services,
.reveal-ready .evergreen-testimonials,
.reveal-ready .evergreen-interview,
.reveal-ready .evergreen-faq,
.reveal-ready .evergreen-contact {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-ready .is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ------------------------------
   Tablet / Mobile
------------------------------ */

@media screen and (max-width: 1200px) {
  .header-wrap .header-nav-wrap ul.header-main-nav {
    gap: 20px;
  }
}

@media screen and (max-width: 1000px) {
  body {
    padding-top: 96px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .header-wrap.evergreen-header {
    position: fixed;
    height: 96px;
    text-align: left;
  }

  .header-wrap .header-logo {
    top: 20px;
    left: 20px;
    transform: none;
  }

  .evergreen-wordmark .brand-name {
    font-size: clamp(32px, 9vw, 48px);
  }

  .evergreen-wordmark .brand-subline {
    font-size: clamp(11px, 3vw, 15px);
  }

  .header-wrap .header-menu-toggle {
    display: block;
    top: 26px;
    right: 22px;
  }

  .header-wrap .header-nav-wrap {
    position: fixed;
    inset: auto 0 0 0;
    top: 96px;
    display: block;
    width: 100%;
    height: calc(100svh - 96px);
    padding: 26px 20px 38px;
    background: rgba(6, 16, 13, .97);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .26s ease, transform .26s ease, visibility .26s ease;
  }

  .header-wrap .header-nav-wrap.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-wrap .header-nav-wrap .header-main-nav,
  .header-wrap .header-nav-wrap ul.header-main-nav {
    position: static;
    top: auto;
    left: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: none;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: 0;
    transform: none;
    box-sizing: border-box;
  }

  .header-wrap .header-nav-wrap .header-main-nav li {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
  }

  .header-wrap .header-nav-wrap .header-main-nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    min-height: 68px;
    padding: 0 24px;
    border: 1px solid rgba(245, 239, 228, .13);
    border-radius: 24px;
    background: rgba(245, 239, 228, .035);
    color: rgba(245, 239, 228, .9);
    font-size: 24px;
    line-height: 1.2;
    box-sizing: border-box;
  }

  .header-wrap .header-nav-wrap .header-main-nav li a::after {
    display: none;
  }

  .header-wrap .header-nav-wrap .header-main-nav li a:hover,
  .header-wrap .header-nav-wrap .header-main-nav li a:focus-visible,
  .header-wrap .header-nav-wrap .header-main-nav li a.active {
    border-color: rgba(169, 133, 100, .52);
    background: rgba(169, 133, 100, .16);
    color: #fff;
  }

  .header-wrap .header-nav-wrap .header-main-nav li a.nav-cta {
    justify-content: center;
    width: 100%;
    min-height: 62px;
    margin-top: 12px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--eg-green), var(--eg-green-soft));
    color: #fff;
    box-sizing: border-box;
  }

  .header-wrap .header-nav-wrap .header-main-nav li a.nav-cta:hover,
  .header-wrap .header-nav-wrap .header-main-nav li a.nav-cta:focus-visible,
  .header-wrap .header-nav-wrap .header-main-nav li a.nav-cta.active {
    border: 0;
    background: linear-gradient(135deg, var(--eg-green), var(--eg-green-soft));
    color: #fff;
  }

  .header-wrap .header-nav-wrap .header-main-nav li a.nav-cta::after {
    display: none;
  }

  .header-wrap .header-nav-wrap .header-social {
    position: static;
    display: flex;
    gap: 0;
    margin: 28px 0 0;
    padding: 0;
    transform: none;
    width: 100%;
    justify-items: center;
  }

  .billboard-wrap .billboard-bg-img {
    min-height: calc(100svh - 96px);
    padding-top: 0;
  }

  section {
    padding: 96px 0;
  }

  .sec-title h1,
.sec-title h2 {
    font-size: clamp(48px, 12vw, 78px);
    margin-bottom: 44px;
  }

  .section-lead {
    margin: -20px 0 44px;
  }

  .contact-wrap .contact-form {
    margin-top: 0;
    margin-left: 0;
  }
}

@media screen and (max-width: 800px) {
  .about-wrap .section-image,
  .evergreen-artist .section-image {
    display: block;
    margin-bottom: 42px;
  }

  .about-wrap .row .about-me-content,
  .evergreen-artist .artist-content,
  .evergreen-artist .artist-image {
    flex: 100%;
    max-width: 100%;
  }

  .evergreen-artist .row {
    flex-direction: column-reverse;
  }

  .evergreen-about .short-description,
  .evergreen-artist .short-description,
  .evergreen-artist .artist-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-wrap .row div {
    padding: 0 14px;
  }

  .evergreen-services .service-detail {
    margin-top: 34px;
  }

  .evergreen-interview .interview-bg-img {
    min-height: 640px;
  }

  .contact-wrap .contact-form {
    padding: 38px 26px;
    border-radius: 38px 0 38px 0;
  }

  .map-column {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 560px) {
  body {
    padding-top: 86px;
  }

  .header-wrap.evergreen-header {
    height: 86px;
  }

  .header-wrap .header-logo {
    top: 17px;
    left: 18px;
    transform: none;
  }

  .header-wrap .header-menu-toggle {
    top: 22px;
    right: 18px;
  }

  .header-wrap .header-nav-wrap {
    top: 86px;
    height: calc(100svh - 86px);
    padding: 22px 16px 34px;
  }

  .header-wrap .header-nav-wrap .header-main-nav li a {
    min-height: 62px;
    padding: 0 20px;
    border-radius: 20px;
    font-size: 21px;
  }

  .billboard-wrap .billboard-bg-img {
    min-height: calc(100svh - 86px);
  }

  .billboard-wrap .billboard-bg-img .billboard-content h1 {
    font-size: clamp(54px, 18vw, 76px);
  }

  .billboard-wrap .billboard-bg-img .billboard-content p {
    font-size: 17px;
  }

  section,
  .gallery-wrap,
  .contact-wrap {
    padding: 78px 0;
  }

  .container,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-wrap .row div img {
    border-radius: 24px;
  }

  .services-wrap .chart {
    width: 240px;
    height: 240px;
  }

  .services-wrap .chart:before {
    width: 210px;
    height: 210px;
  }

  .services-wrap .chart .percent {
    font-size: 58px;
    line-height: 244px;
  }

  .testimonials-wrap .testimonial-slider .item-paragraph {
    font-size: 27px;
  }

  .item-content .testimonial-author .author-name span {
    display: block;
    margin-top: 5px;
  }

  .item-content .testimonial-author .author-name span::before {
    content: '';
    margin: 0;
  }

  .contact-wrap .contact-form .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 18px;
  }

  .map-label span,
  .map-label strong {
    font-size: 13px;
  }
}

/* ------------------------------
   V2 Polish: Mobile spacing, contact, slider, footer
   Copyright by webcore-dresden.de
------------------------------ */

.billboard-wrap .billboard-bg-img .billboard-content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.evergreen-about .section-image {
  margin-left: 0;
  padding-right: 29px;
}

.evergreen-about .section-image img,
.evergreen-artist .section-image img {
  display: block;
  width: 100%;
  margin-inline: auto;
}

/* Bewertungen: mehr Luft, klare Bedienhinweise, sichtbare Slider-Steuerung */
.evergreen-testimonials {
  padding-top: clamp(86px, 10vw, 140px);
  padding-bottom: clamp(88px, 10vw, 150px);
}

.evergreen-testimonials .testimonial-slider {
  position: relative;
}

.testimonial-slider-btn {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 34px;
  margin-right: 8%;
}

.slide-button-next,
.slide-button-prev {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 16, 13, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
  font-size: 34px;
}

.slide-button-next a,
.slide-button-prev a {
  display: inline-flex;
  color: var(--eg-green-deep);
}

.testimonial-dots.swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.testimonial-dots .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  opacity: .35;
  background: var(--eg-green-deep);
}

.testimonial-dots .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--eg-gold);
}

.testimonial-swipe-hint {
  margin: 14px 0 0;
  color: var(--eg-muted);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

/* Kontakt: Button, Select und Kartenbereich optisch zusammenführen */
.contact-route-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px !important;
  border: 1px solid rgba(18, 63, 47, .34) !important;
  border-radius: 999px;
  background: rgba(18, 63, 47, .08);
  color: var(--eg-green) !important;
  font-family: 'Oswald', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  box-shadow: none;
}

.contact-route-btn:hover {
  background: var(--eg-green);
  color: #fff !important;
}

.contact-wrap .contact-form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  min-height: 54px;
  padding-right: 42px;
  border-radius: 0;
  background-image: linear-gradient(45deg, transparent 50%, var(--eg-green-deep) 50%), linear-gradient(135deg, var(--eg-green-deep) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 10px) 21px;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.contact-wrap .contact-form .form-group select:focus,
.contact-wrap .contact-form .form-group input:focus,
.contact-wrap .contact-form .form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--eg-gold);
}

.map-column h4 {
  margin-bottom: 24px;
}

.map-card {
  isolation: isolate;
}

.map-label {
  min-height: 78px;
}


.evergreen-footer .footer-heading {
  padding: 0;
  color: #fff;
  font-family: var(--eg-font-condensed);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .09em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Footer kompakter und mobile nicht mehr als endlose Ein-Spalten-Wand */
.evergreen-footer .widgets-section {
  padding-top: 88px;
  padding-bottom: 74px;
}

.evergreen-footer .footer-widget h4,
.evergreen-footer .footer-widget .footer-heading {
  margin-bottom: 18px;
}

.evergreen-footer .footer-widget p,
.evergreen-footer .footer-widget a {
  font-size: 16px;
  line-height: 1.65;
}

.evergreen-footer .widgets-section .footer-widget a {
  margin-bottom: 12px;
}

.evergreen-footer .footer-bottom {
  padding: 24px 0;
}

@media screen and (min-width: 1001px) {
  .contact-wrap .row {
    align-items: flex-start;
  }

  .map-card img {
    aspect-ratio: 1 / 1.05;
  }
}

@media screen and (max-width: 1000px) {
  .billboard-wrap .billboard-bg-img .billboard-content {
    text-align: left;
  }

  .billboard-wrap .billboard-bg-img .billboard-content a.btn.btn-outline {
    display: flex;
    width: min(100%, 340px);
    margin: 35px auto 0;
  }

  .evergreen-about .section-image,
  .evergreen-artist .section-image {
    padding-left: 12px;
    padding-right: 12px;
  }

  .evergreen-about .section-image img,
  .evergreen-artist .section-image img {
    max-width: min(100%, 720px);
  }

  .contact-wrap .contact-info {
    margin-bottom: 38px;
  }

  .map-column {
    margin-bottom: 46px;
  }
}

@media screen and (max-width: 1024px) {
  .evergreen-footer .widgets-section .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(28px, 5vw, 44px);
    row-gap: 36px;
  }

  .evergreen-footer .footer-social-legal-column {
    grid-column: 1 / -1;
  }

  .evergreen-footer .footer-social-legal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(28px, 5vw, 44px);
  }
}

@media screen and (max-width: 768px) {
  .evergreen-testimonials {
    padding-top: 104px;
  }

  .testimonials-wrap .testimonial-slider .item-content {
    padding-left: 0;
    padding-top: 0;
  }

  .testimonials-wrap .testimonial-slider .item-paragraph {
    font-size: clamp(30px, 9.2vw, 48px);
    line-height: 1.35;
  }

  .testimonial-slider-btn {
    justify-content: center;
    margin-right: 0;
    margin-top: 30px;
  }

  .slide-button-next,
  .slide-button-prev {
    width: 52px;
    height: 52px;
    font-size: 30px;
  }

  .evergreen-footer .widgets-section {
    padding-top: 58px;
    padding-bottom: 42px;
  }

  .evergreen-footer .widgets-section .row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 30px;
    row-gap: 34px;
    align-items: start;
  }

  .evergreen-footer .widgets-section .footer-column {
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }

  .evergreen-footer .widgets-section .footer-column:first-child,
  .evergreen-footer .widgets-section .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .evergreen-footer .widgets-section .footer-column:first-child {
    padding-bottom: 2px;
  }

  .evergreen-footer .widgets-section .footer-column:last-child {
    padding-top: 2px;
  }

  .evergreen-footer .widgets-section .footer-column .footer-widget.links-widget {
    padding-left: 0;
  }

  .evergreen-footer .footer-widget h4,
.evergreen-footer .footer-widget .footer-heading {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .18em;
  }

  .evergreen-footer .footer-widget p,
  .evergreen-footer .footer-widget a {
    font-size: 15px;
    line-height: 1.62;
  }

  .evergreen-footer .widgets-section .footer-widget a {
    margin-bottom: 8px;
  }

  .evergreen-footer .contact-info-list {
    display: grid;
    gap: 8px;
    margin-top: 18px;
  }

  .evergreen-footer .footer-social-legal {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 30px;
    align-items: start;
  }

  .evergreen-footer .footer-social-legal .list {
    display: grid;
    gap: 8px;
  }

  .evergreen-footer .footer-bottom {
    font-size: 14px;
    line-height: 1.55;
  }
}

@media screen and (max-width: 560px) {
  .billboard-wrap .billboard-bg-img .billboard-content a.btn.btn-outline {
    width: min(100%, 340px);
    margin: 35px auto 0;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
  }

  .evergreen-about .section-image,
  .evergreen-artist .section-image {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 52px;
  }

  .evergreen-about .section-image img,
  .evergreen-artist .section-image img {
    width: 100%;
    border-radius: 0 56px 0 56px;
  }

  .contact-wrap .sec-title h1,
.sec-title h2 {
    font-size: clamp(46px, 16vw, 66px);
    line-height: .95;
  }

  .contact-route-btn {
    min-height: 44px;
    padding: 0 20px !important;
    font-size: 14px;
  }

  .map-card {
    border-radius: 28px;
  }

  .map-card img {
    aspect-ratio: 1 / .78;
  }

  .map-label {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 66px;
    padding: 12px 16px;
    gap: 10px;
  }

  .map-label span,
  .map-label strong {
    font-size: 12px;
  }

  .contact-wrap .contact-form .form-group input,
  .contact-wrap .contact-form .form-group textarea,
  .contact-wrap .contact-form .form-group select {
    font-size: 17px;
  }

  .contact-wrap .contact-form .form-group select {
    background-position: calc(100% - 18px) 23px, calc(100% - 10px) 23px;
  }

  .contact-wrap .contact-form button.btn {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .evergreen-footer .widgets-section .row {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
    padding: 20px;
  }
}

/* ------------------------------
   Evergreen Ink – visuelle Detailarbeit
   Copyright by webcore-dresden.de
   Fokus: Desktop-Hero, Button-Hover, Formularabstände und sichtbare Slider-Steuerung.
------------------------------ */

/* Desktop-Hero: Textblock sauber zentrieren, ohne rechts aus dem Raster zu laufen. */
@media screen and (min-width: 1001px) {
  .evergreen-billboard .billboard-content > .row {
    justify-content: center;
  }

  .evergreen-billboard .billboard-content .col-lg-5 {
    display: none;
  }

  .evergreen-billboard .billboard-content .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .billboard-wrap .billboard-bg-img .billboard-content h1 {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(76px, 7.4vw, 118px);
    line-height: .9;
    text-wrap: balance;
  }

  .billboard-wrap .billboard-bg-img .billboard-content p {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .billboard-wrap .billboard-bg-img .billboard-content .btn {
    margin-right: auto;
    margin-left: auto;
  }
}

/* Einheitliche, ruhige Button-Mechanik für alle CTA-Varianten. */
a.btn,
button.btn,
.contact-route-btn,
.evergreen-cta-line .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  line-height: 1 !important;
  transform: translateY(0);
  transition: background-color .24s ease, color .24s ease, border-color .24s ease, transform .24s ease, box-shadow .24s ease;
  will-change: transform;
}

a.btn:hover,
button.btn:hover,
.contact-route-btn:hover,
.evergreen-cta-line .btn:hover {
  transform: translateY(-2px);
}

.gallery-wrap .text-center a.btn.btn-black,
.evergreen-cta-line .btn,
.contact-wrap .contact-form button.btn,
.contact-route-btn {
  position: relative;
  overflow: hidden;
}

a.btn-black,
button.btn-black,
.gallery-wrap .text-center a.btn.btn-black {
  border: 1px solid rgba(18, 63, 47, .18) !important;
  background: linear-gradient(135deg, var(--eg-green), var(--eg-green-soft)) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(6, 16, 13, .14);
}

a.btn-black:hover,
button.btn-black:hover,
.gallery-wrap .text-center a.btn.btn-black:hover {
  border-color: rgba(169, 133, 100, .38) !important;
  background: linear-gradient(135deg, #0b2b22, #1d5a43) !important;
  color: #fff !important;
  box-shadow: 0 18px 42px rgba(6, 16, 13, .22);
}

.evergreen-cta-line .btn {
  min-height: 58px;
  padding-right: 34px;
  padding-left: 34px;
}

.contact-route-btn {
  min-height: 48px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1 !important;
}

.contact-route-btn:hover {
  box-shadow: 0 12px 28px rgba(6, 16, 13, .16);
}

.contact-wrap .contact-form button.btn {
  min-height: 62px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Bewertungen: Pfeile ohne Icon-Abhängigkeit sichtbar machen. */
.testimonial-slider-btn {
  position: relative;
  z-index: 5;
}

.slide-button-next,
.slide-button-prev {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background: rgba(6, 16, 13, .92) !important;
  border-color: rgba(169, 133, 100, .38) !important;
  box-shadow: 0 14px 34px rgba(6, 16, 13, .16);
}

.slide-button-next a,
.slide-button-prev a {
  width: 100%;
  height: 100%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
}

.slide-button-next a .iconify,
.slide-button-prev a .iconify {
  display: none;
}

.slide-button-prev a::before,
.slide-button-next a::before {
  display: block;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.slide-button-prev a::before {
  content: '‹';
}

.slide-button-next a::before {
  content: '›';
}

.slide-button-next:not(.swiper-button-disabled):hover,
.slide-button-prev:not(.swiper-button-disabled):hover {
  background: var(--eg-green) !important;
  transform: translateY(-2px);
}

.slide-button-next.swiper-button-disabled,
.slide-button-prev.swiper-button-disabled {
  opacity: .45 !important;
}

/* Formular: iPhone-Abstände im kombinierten Größe/Stil-Feld angleichen. */
@media screen and (max-width: 560px) {
  .contact-wrap .contact-form .form-grid {
    gap: 26px;
  }

  .contact-wrap .contact-form .form-grid select {
    margin-top: 2px;
  }

  .contact-route-btn {
    min-height: 46px;
  }

  .testimonial-slider-btn {
    gap: 14px;
  }

  .slide-button-next,
  .slide-button-prev {
    width: 54px;
    height: 54px;
  }

  .slide-button-prev a::before,
  .slide-button-next a::before {
    font-size: 32px;
  }
}


/*/* ------------------------------
   Gallery Labels / Motif Cards
   Copyright by webcore-dresden.de
------------------------------ */

.gallery-wrap .gallery-tile {
  position: relative;
  display: block;
  margin-bottom: 28px;
  padding: 0;
  overflow: hidden;
  border: 5px solid rgba(93, 118, 83, .34);
  border-radius: 34px 72px 34px 34px;
  background: linear-gradient(180deg, rgba(112, 138, 103, .13), rgba(93, 118, 83, .24));
  box-shadow: 0 20px 40px rgba(6, 16, 13, .10);
  cursor: pointer;
}

.gallery-wrap .gallery-tile img {
  display: block;
  width: 100%;
  margin-bottom: 0;
  border-radius: 28px 66px 28px 28px;
  cursor: pointer;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-wrap .gallery-tile::after {
  content: none;
}

.gallery-wrap .gallery-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

.gallery-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 10px 15px;
  border: 1px solid rgba(245, 239, 228, .28);
  border-radius: 999px;
  background: rgba(6, 16, 13, .66);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

@media screen and (max-width: 560px) {
  .gallery-wrap .gallery-tile {
    border-width: 4px;
    border-radius: 28px 54px 28px 28px;
  }

  .gallery-wrap .gallery-tile img {
    border-radius: 24px 50px 24px 24px;
  }

  .gallery-label {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    font-size: 12px;
  }
}


/* ------------------------------
   Hero Slideshow Erweiterung
   Fokus: gleiche Hero-Optik mit weicher Überblendung und langsamem Reinzoomen.
------------------------------ */

.evergreen-hero-slider {
  position: relative;
  overflow: hidden;
  background-color: #07110e;
}

.evergreen-hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.12);
  transition: opacity 1.15s ease;
  will-change: transform, opacity;
}

.evergreen-hero-slider .hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,15,12,.82), rgba(5,15,12,.32));
}

.evergreen-hero-slider .hero-slide.is-active {
  opacity: 1;
  animation: evergreenHeroZoom 6.8s ease forwards;
}

.evergreen-hero-slider .billboard-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

@keyframes evergreenHeroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .evergreen-hero-slider .hero-slide,
  .evergreen-hero-slider .hero-slide.is-active {
    animation: none;
    transition: none;
    transform: none;
  }
}


/* ------------------------------
   Studio-Collage im About-Bereich
   Freiere, überlappende Collage mit mehr Eigencharakter und besserer Tiefenwirkung.
------------------------------ */

.evergreen-about .studio-collage {
  position: relative;
  min-height: 520px;
  padding: 36px 86px 34px 24px;
}

.evergreen-about .studio-collage::before {
  content: '';
  position: absolute;
  inset: 52px 24px 20px 56px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(112, 138, 103, .12), rgba(112, 138, 103, .04));
  pointer-events: none;
}

.evergreen-about .studio-collage-item {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: rgba(111, 134, 101, .10);
  border: 6px solid rgba(93, 118, 83, .34);
  box-shadow: 0 22px 44px rgba(6, 16, 13, .11);
}

.evergreen-about .studio-collage-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evergreen-about .studio-collage-item-large {
  left: 0;
  top: 88px;
  width: min(68%, 385px);
  aspect-ratio: 4 / 5;
  border-radius: 0 74px 0 42px;
  z-index: 1;
}

.evergreen-about .studio-collage-item-top {
  right: 10px;
  top: 0;
  width: min(44%, 255px);
  aspect-ratio: 1 / 1;
  border-radius: 0 52px 0 26px;
  transform: rotate(3.6deg);
  z-index: 3;
}

.evergreen-about .studio-collage-item-bottom {
  right: 34px;
  bottom: 0;
  width: min(47%, 270px);
  aspect-ratio: 1 / 1;
  border-radius: 36px 0 36px 0;
  transform: rotate(-4deg);
  z-index: 2;
}

@media (max-width: 1200px) {
  .evergreen-about .studio-collage {
    min-height: 480px;
    padding-right: 64px;
  }

  .evergreen-about .studio-collage-item-large {
    width: min(67%, 350px);
  }

  .evergreen-about .studio-collage-item-top {
    width: min(42%, 220px);
  }

  .evergreen-about .studio-collage-item-bottom {
    width: min(45%, 240px);
  }
}

@media (max-width: 1000px) {
  .evergreen-about .studio-collage {
    min-height: 440px;
    padding: 28px 50px 28px 12px;
  }

  .evergreen-about .studio-collage::before {
    inset: 44px 14px 14px 32px;
  }

  .evergreen-about .studio-collage-item {
    border-width: 5px;
  }

  .evergreen-about .studio-collage-item-large {
    width: min(66%, 340px);
    top: 72px;
  }

  .evergreen-about .studio-collage-item-top {
    right: 0;
    width: min(42%, 212px);
  }

  .evergreen-about .studio-collage-item-bottom {
    right: 20px;
    width: min(44%, 225px);
  }
}

@media (max-width: 767px) {
  .evergreen-about .studio-collage {
    min-height: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .evergreen-about .studio-collage::before {
    display: none;
  }

  .evergreen-about .studio-collage-item {
    position: relative;
    inset: auto;
    width: 100%;
    overflow: hidden;
    transform: none;
    border-width: 4px;
    background: rgba(111, 134, 101, .10);
    box-shadow: 0 18px 36px rgba(6, 16, 13, .10);
    box-sizing: border-box;
  }

  .evergreen-about .studio-collage-item-large {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
    border-radius: 0 56px 0 38px;
  }

  .evergreen-about .studio-collage-item-top {
    grid-column: 1 / 2;
    aspect-ratio: 1 / 1;
    border-radius: 0 38px 0 24px;
  }

  .evergreen-about .studio-collage-item-bottom {
    grid-column: 2 / 3;
    aspect-ratio: 1 / 1;
    border-radius: 30px 0 30px 0;
  }
}



/* ------------------------------
   Artist-Collage im Ely-Bereich
   Portrait als Hauptmotiv, ergänzt durch eine kleinere Arbeitsszene mit leichter Überlagerung.
------------------------------ */

.evergreen-artist .artist-collage {
  position: relative;
  min-height: 520px;
  padding: 46px 16px 20px 38px;
}

.evergreen-artist .artist-collage::before {
  content: '';
  position: absolute;
  inset: 92px 0 0 84px;
  border-radius: 0 86px 0 86px;
  background: linear-gradient(180deg, rgba(112, 138, 103, .10), rgba(112, 138, 103, .03));
  pointer-events: none;
}

.evergreen-artist .artist-collage-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: rgba(111, 134, 101, .10);
  border: 6px solid rgba(93, 118, 83, .34);
  box-shadow: 0 22px 46px rgba(6, 16, 13, .12);
}

.evergreen-artist .artist-collage-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
}

.evergreen-artist .artist-collage-card-main {
  right: 0;
  bottom: 0;
  width: min(82%, 620px);
  aspect-ratio: 16 / 11;
  border-radius: 0 88px 0 52px;
  z-index: 2;
}

.evergreen-artist .artist-collage-card-detail {
  left: 0;
  top: 0;
  width: min(50%, 300px);
  aspect-ratio: 4 / 5;
  border-radius: 0 38px 0 38px;
  transform: rotate(-4deg);
  z-index: 3;
}

@media (max-width: 1200px) {
  .evergreen-artist .artist-collage {
    min-height: 490px;
    padding-left: 24px;
  }

  .evergreen-artist .artist-collage::before {
    inset: 80px 0 0 58px;
  }

  .evergreen-artist .artist-collage-card-main {
    width: min(84%, 560px);
  }

  .evergreen-artist .artist-collage-card-detail {
    width: min(44%, 255px);
  }
}

@media (max-width: 1000px) {
  .evergreen-artist .artist-collage {
    min-height: 440px;
    padding: 36px 10px 14px 16px;
  }

  .evergreen-artist .artist-collage::before {
    inset: 70px 0 0 42px;
  }

  .evergreen-artist .artist-collage-card {
    border-width: 5px;
  }

  .evergreen-artist .artist-collage-card-main {
    width: min(84%, 500px);
  }

  .evergreen-artist .artist-collage-card-detail {
    width: min(42%, 225px);
  }
}

@media (max-width: 767px) {
  .evergreen-artist .artist-collage {
    min-height: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .evergreen-artist .artist-collage::before {
    display: none;
  }

  .evergreen-artist .artist-collage-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    border-width: 0;
    box-shadow: var(--eg-shadow);
  }

  .evergreen-artist .artist-collage-card-detail {
    order: 1;
    aspect-ratio: 4 / 3;
    border-radius: 0 42px 0 42px;
  }

  .evergreen-artist .artist-collage-card-main {
    order: 2;
    aspect-ratio: 16 / 11;
    border-radius: 0 56px 0 56px;
  }
}


/* ------------------------------
   FAQ / Ablauf Karten – veredelter Bildrahmen
------------------------------ */

.evergreen-faq .faq-card-row {
  margin-top: 8px;
}

.evergreen-faq .article-post-item {
  padding-right: 34px;
  padding-left: 34px;
}

.evergreen-faq .article-post-item h4,
.evergreen-faq .article-post-item .article-step {
  margin-left: 0;
  margin-bottom: 18px;
}

.evergreen-faq .article-post-item .article-img {
  position: relative;
  padding: 10px;
  overflow: visible;
  border: 5px solid rgba(93, 118, 83, .34);
  border-radius: 34px 72px 34px 34px;
  background: linear-gradient(180deg, rgba(112, 138, 103, .10), rgba(112, 138, 103, .03));
  box-shadow: 0 20px 40px rgba(6, 16, 13, .10);
}

.evergreen-faq .article-post-item .article-img img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
  border-radius: 24px 56px 24px 24px;
}

.evergreen-faq .article-post-item:nth-child(1) .article-img img {
  object-position: center 24%;
}

.evergreen-faq .article-post-item .lower-content h3 {
  margin-top: 26px;
}

@media screen and (max-width:1100px) {
  .evergreen-faq .article-post-item {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width:768px) {
  .evergreen-faq .article-post-item {
    margin-bottom: 42px;
    padding-right: 15px;
    padding-left: 15px;
  }

  .evergreen-faq .article-post-item .article-img {
    padding: 8px;
    border-width: 4px;
    border-radius: 28px 54px 28px 28px;
  }

  .evergreen-faq .article-post-item .article-img img {
    border-radius: 20px 44px 20px 20px;
  }
}


/* ------------------------------
   Unified Card Hover System
   Copyright by webcore-dresden.de
------------------------------ */

.gallery-wrap .gallery-tile,
.evergreen-about .studio-collage-item,
.evergreen-artist .artist-collage-card,
.evergreen-faq .article-post-item .article-img,
.google-reviews-section .google-review-card,
.evergreen-services .service-card {
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease, background .38s ease;
}

.gallery-wrap .gallery-tile:hover,
.evergreen-about .studio-collage-item:hover,
.evergreen-artist .artist-collage-card:hover,
.evergreen-faq .article-post-item:hover .article-img,
.google-reviews-section .google-review-card:hover,
.evergreen-services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(6, 16, 13, .18);
  border-color: rgba(177, 132, 93, .42);
}

.gallery-wrap .gallery-tile img,
.evergreen-about .studio-collage-item img,
.evergreen-artist .artist-collage-card img,
.evergreen-faq .article-post-item .article-img img {
  transition: transform .45s ease, filter .45s ease;
}

.gallery-wrap .gallery-tile:hover img,
.evergreen-about .studio-collage-item:hover img,
.evergreen-artist .artist-collage-card:hover img,
.evergreen-faq .article-post-item:hover .article-img img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

.google-reviews-section .google-review-card:hover {
  background: rgba(245, 239, 228, .68);
}

.gallery-wrap .gallery-label,
.google-reviews-section .google-review-card p,
.google-reviews-section .google-review-name,
.google-reviews-section .google-review-stars,
.evergreen-faq .article-post-item .lower-content h3,
.evergreen-faq .article-post-item .lower-content p {
  transition: color .35s ease;
}

.google-reviews-section .google-review-card:hover p,
.evergreen-faq .article-post-item:hover .lower-content p {
  color: var(--eg-text);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-wrap .gallery-tile,
  .evergreen-about .studio-collage-item,
  .evergreen-artist .artist-collage-card,
  .evergreen-faq .article-post-item .article-img,
  .google-reviews-section .google-review-card,
  .evergreen-services .service-card,
  .gallery-wrap .gallery-tile img,
  .evergreen-about .studio-collage-item img,
  .evergreen-artist .artist-collage-card img,
  .evergreen-faq .article-post-item .article-img img {
    transition: none;
  }

  .gallery-wrap .gallery-tile:hover,
  .evergreen-about .studio-collage-item:hover,
  .evergreen-artist .artist-collage-card:hover,
  .evergreen-faq .article-post-item:hover .article-img,
  .google-reviews-section .google-review-card:hover,
  .evergreen-services .service-card:hover {
    transform: none;
  }

  .gallery-wrap .gallery-tile:hover img,
  .evergreen-about .studio-collage-item:hover img,
  .evergreen-artist .artist-collage-card:hover img,
  .evergreen-faq .article-post-item:hover .article-img img {
    transform: none;
    filter: none;
  }
}




/* ------------------------------
   Navigation Active State / Back To Top
   Copyright by webcore-dresden.de
------------------------------ */

@media screen and (min-width: 1001px) {
  .header-wrap .header-nav-wrap .header-main-nav li a.nav-link:not(.nav-cta) {
    position: relative;
  }

  .header-wrap .header-nav-wrap .header-main-nav li a.nav-link:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 7px;
    display: block;
    width: 0;
    height: 2px;
    margin-top: 0;
    background: var(--eg-gold);
    transition: width .3s ease;
  }

  .header-wrap .header-nav-wrap .header-main-nav li a.nav-link:not(.nav-cta):hover::after,
  .header-wrap .header-nav-wrap .header-main-nav li a.nav-link:not(.nav-cta).active::after {
    width: 100%;
  }
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 20;
  display: grid;
  place-items: center;
  width: 30px;
  height: 45px;
  padding: 0;
  border: 1px solid rgba(169, 133, 100, .36);
  border-radius: 999px;
  background: rgba(6, 16, 13, .58);
  color: rgba(255, 255, 255, .82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 18px 42px rgba(6, 16, 13, .18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease, background .28s ease, border-color .28s ease, color .28s ease, box-shadow .28s ease;
}

.back-to-top::before {
  content: '\\2191';
  display: block;
  width: 1em;
  height: 1em;
  font-size: clamp(23px, 2vw, 23px);
  line-height: 1;
  text-align: center;
  transform: translateY(3px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .back-to-top:hover {
    border-color: rgba(169, 133, 100, .82);
    background: rgba(6, 16, 13, .95);
    color: #fff;
    box-shadow: 0 22px 48px rgba(6, 16, 13, .28);
    transform: translateY(-3px);
  }
}

@media screen and (max-width: 560px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 30px;
    height:36px;
    background: rgba(6, 16, 13, .70);
  }

  .back-to-top::before {
    font-size: 23px;
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: none;
  }

  .back-to-top:hover {
    transform: none;
  }
}



.contact-info-list a[href^="tel:"] {
  font-weight: 600;
}

/* ------------------------------
   Legal Pages: Impressum / Datenschutz
   Copyright by webcore-dresden.de
------------------------------ */

.legal-page {
  background: var(--eg-cream);
}

.legal-main {
  min-height: 70vh;
  background: linear-gradient(180deg, rgba(6, 16, 13, .04), rgba(245, 239, 228, 1) 38%);
}

.legal-hero {
  padding: clamp(150px, 16vw, 210px) 0 clamp(58px, 8vw, 96px);
  background:
    radial-gradient(circle at 18% 22%, rgba(169, 133, 100, .18), transparent 34%),
    linear-gradient(135deg, rgba(6, 16, 13, .96), rgba(18, 63, 47, .92));
  color: #fff;
  overflow: hidden;
}

.legal-hero::after {
  content: '';
  position: absolute;
  right: -10vw;
  bottom: -16vw;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(245, 239, 228, .12);
  border-radius: 50%;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(54px, 8vw, 116px);
  line-height: .92;
  letter-spacing: -.045em;
  text-transform: none;
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(245, 239, 228, .82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.legal-content-section {
  padding: clamp(64px, 8vw, 110px) 0;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid rgba(169, 133, 100, .24);
  border-radius: 28px;
  background: rgba(255, 251, 244, .74);
  box-shadow: 0 26px 80px rgba(6, 16, 13, .10);
}

.legal-card h2 {
  margin: 42px 0 14px;
  color: var(--eg-green-deep);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.035em;
  text-transform: none;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 0 0 12px;
  color: var(--eg-green-deep);
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-card p,
.legal-card li {
  color: var(--eg-text);
  font-size: 16px;
  line-height: 1.82;
}

.legal-card a {
  color: #7e563c;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-card a:hover {
  color: var(--eg-green);
}

.legal-note-box {
  margin-top: 46px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(169, 133, 100, .34);
  border-radius: 22px;
  background: rgba(18, 63, 47, .07);
}

.legal-note-box p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .legal-hero {
    padding-top: 128px;
  }

  .legal-card {
    border-radius: 20px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 15.5px;
  }
}


/* ------------------------------
   Elumy Arts Logo Add-on v2
   - nutzt die ursprüngliche Logoform als freigestellte Grafik
   - Hauptteil sitzt im Header, botanische Blätter hängen bewusst in den Content
   - Headerhöhe bleibt unverändert
------------------------------ */

.header-wrap.evergreen-header {
  overflow: visible;
  isolation: isolate;
  z-index: 999;
}

.header-wrap .header-logo.header-logo--elumy {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  transform: none;
  z-index: 1001;
  pointer-events: auto;
}

.elumy-logo-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.elumy-nav-logo-img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 118px;
  max-width: none;
  object-fit: contain;
  object-position: top left;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .30));
}

@media screen and (min-width: 1001px) and (max-width: 1360px) {
  .header-wrap .header-nav-wrap ul.header-main-nav {
    gap: 26px;
  }
}

@media screen and (max-width: 1000px) {
  .header-wrap .header-logo.header-logo--elumy {
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
  }

  .elumy-logo-link {
    height: 100%;
  }

  .elumy-nav-logo-img {
    top: 0;
    width: auto;
    height: 100%;
  }
}

@media screen and (max-width: 560px) {
  .header-wrap .header-logo.header-logo--elumy {
    left: 0;
    height: 100%;
  }

  .elumy-logo-link {
    height: 100%;
  }

  .elumy-nav-logo-img {
    width: auto;
    height: 100%;
  }
}


/* ------------------------------
   Gallery Style Stacks
   - jede Stil-Kachel öffnet einen eigenen Lightbox-Stapel
------------------------------ */

.gallery-stack-link { cursor: zoom-in; }
.gallery-stack-hidden { display: none !important; }
.gallery-tile .gallery-count {
  position: absolute; right: 18px; bottom: 16px; z-index: 3; display: inline-flex; align-items: center; justify-content: center; min-height: 30px; padding: 7px 12px 6px; border-radius: 999px; background: rgba(14, 31, 26, .82); color: rgba(245, 239, 228, .78); font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 500; line-height: 1; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(5px); transition: opacity .25s ease, transform .25s ease; pointer-events: none;
}
.gallery-tile:hover .gallery-count, .gallery-tile:focus-visible .gallery-count { opacity: 1; transform: translateY(0); }
@media screen and (max-width: 760px) { .gallery-tile .gallery-count { opacity: 1; transform: none; } }

/* ------------------------------
   Gallery Clean Symmetry Patch
   - Hauptcollage bleibt in der ursprünglichen 4-Spalten-Komposition
   - Zusatzstile erscheinen als dezente, zentrierte Chips statt als asymmetrische Bildkarten
   - Lightbox-Stapel bleiben vollständig erhalten
------------------------------ */

.gallery-stack-grid {
  justify-content: center;
}

.gallery-stack-column {
  display: flex;
  flex-direction: column;
}

.gallery-stack-chip-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 16px auto 38px;
  text-align: center;
}

.gallery-stack-chip-intro {
  color: rgba(14, 31, 26, .62);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  line-height: 1;
}

.gallery-stack-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 9px 14px 8px;
  border: 1px solid rgba(88, 111, 84, .38);
  border-radius: 999px;
  background: rgba(245, 239, 228, .72);
  color: var(--eg-green-deep);
  box-shadow: 0 10px 24px rgba(14, 31, 26, .06);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease, color .25s ease;
}

.gallery-stack-chip:hover,
.gallery-stack-chip:focus-visible {
  border-color: rgba(169, 133, 100, .72);
  background: rgba(14, 31, 26, .88);
  color: var(--eg-cream);
  transform: translateY(-2px);
}

.gallery-stack-chip-count {
  color: currentColor;
  opacity: .62;
  font-size: 10px;
  letter-spacing: .06em;
}

@media screen and (max-width: 560px) {
  .gallery-stack-chip-list {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .gallery-stack-chip-intro {
    width: 100%;
    text-align: left;
  }

  .gallery-stack-chip {
    min-height: 32px;
    padding: 8px 12px 7px;
  }
}


/* ------------------------------
   Micro Patch: Lightbox / Zusatzstile / Back-to-top
   - nur Positions-/Darstellungsfixes, keine Gallery-Logik
------------------------------ */

.chocolat-wrapper .chocolat-top {
  overflow: visible;
}

.chocolat-wrapper .chocolat-close {
  position: fixed;
  top: calc(118px + 14px);
  right: clamp(16px, 2.4vw, 34px);
  z-index: 30;
  border-radius: 999px;
  background-color: rgba(6, 16, 13, .78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.gallery-stack-chip-list {
  max-width: 520px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.gallery-stack-chip-intro {
  flex: 0 0 100%;
  text-align: center;
}

.back-to-top::before {
  content: '\2191';
}

@media screen and (max-width: 1000px) {
  .chocolat-wrapper .chocolat-close {
    top: calc(118px + 12px);
  }
}

@media screen and (max-width: 560px) {
  .chocolat-wrapper .chocolat-close {
    top: calc(92px + 12px);
    right: 14px;
  }
}

.evergreen-services .sec-title h2 {
  color: #fff;
}
