/* Clash Display: font-display swap für sichtbaren Text während des Font-Ladens */
@font-face {
  font-family: "Clash Display";
  src:
    url("../assets/Typo/clashdisplay/WEB/fonts/ClashDisplay-Medium.woff2") format("woff2"),
    url("../assets/Typo/clashdisplay/WEB/fonts/ClashDisplay-Medium.woff") format("woff"),
    url("../assets/Typo/clashdisplay/WEB/fonts/ClashDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-white: #ffffff;
  --color-black-soft: #2d2d2d;
  --color-primary: #fe210a;
  --color-primary-dark: #e51601;
  --color-brown: #861408;
  --color-overlay: rgba(11, 11, 11, 0.3);
  --image-darken: 0.9;
  --shadow-card: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  --content-half: 720px;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

/* Inhaltsbilder (lazy): weniger Layout-Shift; Hero/Logos meist ohne lazy oder ausgenommen */
img[loading="lazy"].studio-hero-slide {
  object-fit: cover;
  aspect-ratio: 8 / 5;
}

img[loading="lazy"][src*="assets/images/preis/"],
img[loading="lazy"][src*="assets/figma/showcase"],
img[loading="lazy"][src*="assets/figma/faq-bg"],
img[loading="lazy"][src*="assets/figma/teaser-image"],
img[loading="lazy"][src*="assets/images/location"],
img[loading="lazy"][src*="Studio2_web"],
img[loading="lazy"][src*="Studio3_web"],
img[loading="lazy"][src*="Studio4_web"] {
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

body {
  background: var(--color-white);
  color: var(--color-black-soft);
  font-family: "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
}

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

.page {
  position: relative;
  width: 100%;
  min-height: 10791px;
  margin: 0;
  overflow: hidden;
}

.site-parallax-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.site-parallax-bg__track {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  transform: translateX(-50%);
  will-change: transform;
}

.site-parallax-bg__tile {
  width: 100%;
  background-image: url("../assets/images/background/Studio6_web.jpg");
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position: center top;
}

.site-parallax-bg__tile--flip {
  transform: scaleY(-1);
  margin-top: -1px;
}

.site-parallax-bg__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  mix-blend-mode: multiply;
}

.page-home,
.studio-inside-page,
.equipment-page,
.buchung-page,
.impressum-page,
.datenschutz-page {
  isolation: isolate;
}

.hero-background {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 900px;
  overflow: hidden;
  transform: translateX(-50%);
}

.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(var(--image-darken));
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--color-overlay);
}

/* index.html: großes Logo nur im Hero (unabhängig von sticky Nav) */
.hero-background .hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
}

.hero-background .hero-logo img {
  display: block;
  width: min(600px, 60vw);
  max-width: min(600px, 60vw);
  height: auto;
}

/* —— Sticky Site-Navigation (alle Seiten) —— */
#site-header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-sizing: border-box;
  background: transparent;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "logo nav cta";
  align-items: center;
  padding: 24px max(24px, calc(50vw - var(--content-half))) 24px;
  min-height: 0;
}

/* Unterseiten: Header wie im sticky-Zustand — Logo klein links, Nav mittig */
.site-body:not(.site-body--home) #site-header.site-header:not(.is-sticky) {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "logo nav cta";
  align-items: center;
  min-height: 64px;
  height: auto;
  padding: 12px max(24px, calc(50vw - var(--content-half)));
}

.site-body:not(.site-body--home) #site-header.site-header:not(.is-sticky) .site-header__logo {
  justify-self: start;
  grid-area: logo;
}

.site-body:not(.site-body--home) #site-header.site-header:not(.is-sticky) .site-header__logo img {
  height: 44px;
  max-width: min(300px, 42vw);
  max-height: none;
  transform: scale(0.65);
  transform-origin: left center;
}

.site-body:not(.site-body--home) #site-header.site-header:not(.is-sticky) .site-header__nav {
  justify-self: center;
  grid-area: nav;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.site-body:not(.site-body--home) #site-header.site-header:not(.is-sticky) .site-header__actions {
  justify-self: end;
  grid-area: cta;
}

.site-body:not(.site-body--home) #site-header.site-header:not(.is-sticky) .site-header__cta {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
}

.site-body:not(.site-body--home) #site-header.site-header:not(.is-sticky) .site-header__cta img {
  width: 28px;
  height: 28px;
}

/* index: Nav links linksbündig, vertikal gestapelt */
.site-body--home #site-header.site-header:not(.is-sticky) {
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "nav . cta";
  align-items: start;
}

.site-body--home #site-header.site-header:not(.is-sticky) .site-header__nav {
  justify-self: start;
  grid-area: nav;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(12px, 2vh, 24px);
}

#site-header.site-header.is-sticky {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "logo nav cta";
  align-items: center;
  min-height: 64px;
  height: 64px;
  padding: 0 max(24px, calc(50vw - var(--content-half)));
  background: var(--color-brown);
  color: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.site-header__logo {
  grid-area: logo;
  justify-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header__logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(300px, 42vw);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* index: Nav-Logo nur in der sticky Leiste; Hero-Logo ist .hero-logo im Video-Bereich */
.site-body--home #site-header.site-header:not(.is-sticky) .site-header__logo {
  visibility: hidden;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

.site-body--home #site-header.site-header:not(.is-sticky) .site-header__logo img {
  width: 0;
  height: 0;
}

.site-body--home #site-header.site-header.is-sticky .site-header__logo {
  visibility: visible;
  pointer-events: auto;
  width: auto;
  height: auto;
  overflow: visible;
  margin: unset;
  padding: unset;
  border: unset;
  clip: auto;
  position: static;
}

#site-header.site-header.is-sticky .site-header__logo {
  justify-self: start;
  grid-area: logo;
}

#site-header.site-header.is-sticky .site-header__logo img {
  transform: scale(0.65);
  transform-origin: left center;
}

.site-header__nav {
  grid-area: nav;
  justify-self: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

#site-header.site-header.is-sticky .site-header__nav {
  justify-self: center;
  grid-area: nav;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
}

.site-header__nav a {
  position: relative;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
}

.site-header__nav a[aria-current="page"] {
  padding-right: 0.75em;
}

.site-header__nav a[aria-current="page"]::after {
  content: "●";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 0.5em;
  line-height: 1;
  pointer-events: none;
}

.site-header__nav a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

#site-header.site-header.is-sticky .site-header__nav a:focus-visible {
  outline-color: var(--color-primary);
}

.site-header__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 4px;
  transition:
    background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header__cta img {
  width: 40px;
  height: 40px;
  filter: none;
  transition: filter 0.35s ease;
}

.site-header__cta:hover {
  background: transparent;
  color: var(--color-primary);
}

.site-header__cta:hover img {
  filter: none;
}

#site-header.site-header.is-sticky .site-header__actions {
  justify-self: end;
  grid-area: cta;
}

#site-header.site-header.is-sticky .site-header__cta {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  color: var(--color-primary);
}

#site-header.site-header.is-sticky .site-header__cta img {
  width: 28px;
  height: 28px;
  filter: none;
}

#site-header.site-header.is-sticky .site-header__cta:hover img {
  filter: none;
}

.site-header__actions {
  grid-area: cta;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 18px);
}

.hero-background .hero-lang {
  position: absolute;
  right: calc(50% - var(--content-half) + 64px);
  bottom: 64px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-lang a {
  color: var(--color-primary);
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.hero-lang a:hover,
.hero-lang a:focus-visible {
  opacity: 1;
}

.hero-lang a[aria-current="page"] {
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.hero-lang__sep {
  color: var(--color-primary);
  opacity: 0.45;
  user-select: none;
}

.hero-subtitle {
  position: absolute;
  left: max(64px, calc(50% - var(--content-half) + 64px));
  top: 740px;
  z-index: 1;
  width: 393px;
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-primary);
}

.hero-subtitle-break {
  display: none;
}

.teaser {
  position: absolute;
  left: 0;
  top: 900px;
  width: 100%;
  height: 1436px;
  background: var(--color-white);
}

.teaser h1 {
  position: absolute;
  left: calc(50% - var(--content-half) + 96px);
  top: 152px;
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 100px;
  font-weight: 500;
  line-height: 120px;
  color: var(--color-primary);
}

.teaser .teaser-shift {
  left: calc(50% - var(--content-half) + 204px);
  top: 255px;
}

/* Home-Teaser: beide Zeilen gleiche Schriftgröße; „What is“ kleiner als früher, „flame studio?“ größer als früher */
.page-home .teaser h1 {
  font-size: 72px;
  line-height: 86px;
}

.page-home .teaser .teaser-shift {
  font-size: 72px;
  line-height: 86px;
  top: 238px;
}

.teaser p {
  position: absolute;
  left: calc(50% - var(--content-half) + 737px);
  top: 178px;
  width: 607px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
}

.teaser-image {
  position: absolute;
  left: 0;
  top: 1430px;
  width: 100%;
  height: 931px;
  overflow: hidden;
}

/* Teaser-Galerie: gleiche Slide-/Pill-Komponente wie Studio Space (Styles in studio-inside.css) */
.page-home .teaser-image .studio-hero-slide {
  filter: brightness(var(--image-darken));
}

.page-home .teaser-image .studio-hero-pagination {
  left: max(64px, calc(50% - var(--content-half) + 587px));
  bottom: 48px;
  top: auto;
}

.floorplan {
  position: absolute;
  left: 0;
  top: 2361px;
  width: 100%;
  height: 798px;
  background: transparent;
  overflow: hidden;
}

.floorplan::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: var(--color-brown);
  z-index: -1;
}

.floorplan img {
  position: absolute;
  left: calc(50% - var(--content-half) + 398px);
  top: 174px;
  width: 644px;
  height: 532px;
  object-fit: contain;
  object-position: center;
}

.floorplan p {
  position: absolute;
  left: max(64px, calc(50% - var(--content-half) + 64px));
  top: 100px;
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 105%;
  color: var(--color-white);
}

.cards-section {
  position: absolute;
  left: 0;
  top: 3159px;
  width: 100%;
  height: 1026px;
  background: transparent;
  overflow: hidden;
}

.cards-primary {
  position: absolute;
  left: max(64px, calc(50% - var(--content-half) + 64px));
  top: 240px;
  display: flex;
  gap: 44px;
  width: min(1312px, calc(100vw - 128px));
}

.card-link {
  display: block;
}

.card {
  position: relative;
  width: 408px;
  height: 554px;
  padding: 89px 34px 34px;
  border: 4px solid var(--color-white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--color-white);
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(0.9px) saturate(1.16) contrast(1.18);
  -webkit-backdrop-filter: blur(0.9px) saturate(1.16) contrast(1.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52px 52px at 0% 0%, rgba(255, 70, 70, 0.14) 0%, rgba(255, 70, 70, 0) 70%),
    radial-gradient(130% 30% at 50% 0%, rgba(130, 225, 255, 0.09) 0%, rgba(130, 225, 255, 0) 72%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.glass > * {
  position: relative;
  z-index: 1;
}

.glass::before,
.glass::after {
  animation: glassFlow 10s ease-in-out infinite alternate;
}

.card-link:hover .card,
.card-link:focus-visible .card {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38);
}

@keyframes glassFlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(0.8%, -0.6%) scale(1.01);
  }
  100% {
    transform: translate(-0.7%, 0.7%) scale(1.015);
  }
}

.card h2 {
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 105%;
  margin-bottom: 32px;
}

.card p {
  width: min(339px, 100%);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
}

.showcase {
  position: absolute;
  left: 0;
  top: 4185px;
  width: 100%;
  height: 1470px;
  background: var(--color-white);
  overflow: hidden;
}

.showcase h3 {
  position: absolute;
  left: max(64px, calc(50% - var(--content-half) + 64px));
  top: 150px;
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 90px;
  color: var(--color-primary);
}

.showcase-line-2 {
  left: calc(50% - var(--content-half) + 280px) !important;
  top: 252px !important;
}

.showcase-img {
  position: absolute;
  width: 448px;
  height: 581px;
  object-fit: cover;
  filter: brightness(var(--image-darken));
}

.showcase-img-1 {
  left: calc(50% - var(--content-half) + 64px);
  top: 507px;
}

.showcase-img-2 {
  left: calc(50% - var(--content-half) + 590px);
  top: 736px;
}

.showcase-img-3 {
  left: calc(50% - var(--content-half) + 1115px);
  top: 398px;
}

/* Bündig unter showcase (4185+1470=5655), bis FAQ (8240): keine weiße Lücke dazwischen */
.mid-background {
  position: absolute;
  left: 50%;
  top: 5655px;
  width: 100vw;
  height: 2585px;
  background: transparent;
  overflow: hidden;
  transform: translateX(-50%);
  pointer-events: none;
}

/* index: nur Layout-Hülle, kein eigenes BG (Bild liegt auf .mid-background) */
.page-home-mid-stack {
  position: static;
  margin: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.service-panels {
  position: absolute;
  left: 0;
  top: 5785px;
  width: 100%;
  height: auto;
  min-height: 630px;
  background: transparent;
  overflow: hidden;
}

.service-panel {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 44px 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--color-white);
}

.service-panel__toggle {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: inherit;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-shrink: 0;
}

.service-panel:not(.is-open) .service-panel__toggle {
  width: 100%;
}

.service-panel.is-open .service-panel__toggle {
  width: 420px;
}

.service-panel__titles {
  flex: 0 1 auto;
}

.service-panel__body {
  display: grid;
  grid-template-rows: 0fr;
  width: 0;
  min-width: 0;
  flex-shrink: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-panel__body-inner {
  overflow: hidden;
  min-height: 0;
}

.service-panel.is-open .service-panel__body {
  grid-template-rows: 1fr;
  width: 512px;
  opacity: 1;
}

.service-panel:not(.is-open) {
  min-height: 210px;
}

.service-panel.is-open {
  min-height: 210px;
}

.tone-1 { --panel-bg: var(--color-primary); }
.tone-2 { --panel-bg: var(--color-primary-dark); }
.tone-3 { --panel-bg: var(--color-brown); }

.service-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: var(--panel-bg);
  z-index: -1;
}

.service-panel h4 {
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 105%;
}

.service-panel .label {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-panel p {
  width: 512px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
}

.faq {
  position: absolute;
  left: 0;
  top: 8240px;
  width: 100%;
  height: 1355px;
  background: transparent;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: var(--color-brown);
  z-index: -1;
}

.faq img {
  display: none;
}

.faq h4 {
  position: absolute;
  left: max(64px, calc(50% - var(--content-half) + 64px));
  top: 130px;
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 105%;
  color: var(--color-primary);
}

.between-faq-footer-bg,
.legal-before-footer-bg {
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 576px;
  background: transparent;
  overflow: hidden;
  transform: translateX(-50%);
  pointer-events: none;
}

.legal-before-footer-bg {
  background-image: url("../assets/images/background/Studio6_web.jpg");
  background-repeat: no-repeat;
  background-size: 200% auto;
  background-position: center bottom;
}

.legal-before-footer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.16);
  mix-blend-mode: multiply;
}

.between-faq-footer-bg {
  top: 9595px;
}

.tags {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #9b1409;
  padding: 0 64px;
  width: min(100%, 1440px);
  left: 50%;
  transform: translateX(-50%);
}

.tags h4 {
  width: 100%;
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 105%;
  margin-bottom: 4px;
}

.tags-film h4 {
  color: var(--color-brown);
}

.tags-fashion h4,
.tags-business h4 {
  color: var(--color-primary);
}

.tags p {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 20px;
  padding: 10px 24px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}

.tags-film p {
  background: var(--color-brown);
}

.tags-film {
  top: 6924px;
  background: transparent;
  overflow: hidden;
  min-height: 390px;
  align-content: flex-start;
  padding-top: 72px;
}

.tags-fashion {
  top: 7338px;
  justify-content: flex-end;
  background: transparent;
  overflow: hidden;
  min-height: 390px;
  align-content: flex-start;
  padding-top: 96px;
}

.tags-business {
  top: 7751px;
  background: transparent;
  overflow: hidden;
  min-height: 489px;
  align-content: flex-start;
  padding-top: 96px;
}

.tags-fashion h4 {
  text-align: right;
}

.faq-list {
  position: absolute;
  left: max(64px, calc(50% - var(--content-half) + 64px));
  top: 290px;
  width: min(1312px, calc(100vw - 128px));
}

.faq-entry {
  border-top: 4px solid var(--color-primary);
}

.faq-question {
  width: 100%;
  min-height: 149px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 97px;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  font-size: 32px;
  font-weight: 400;
  line-height: 105%;
  color: var(--color-white);
}

.faq-entry:first-child {
  border-top: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 164px;
  color: var(--color-white);
  box-sizing: border-box;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-entry.is-open .faq-answer {
  max-height: 500px;
  padding: 56px 164px 56px 164px;
}

.faq-answer p {
  width: 456px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
}

.faq-answer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.footer {
  position: absolute;
  left: 0;
  top: 10171px;
  width: 100%;
  height: 620px;
  background: var(--color-brown);
  color: var(--color-white);
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: var(--color-brown);
  z-index: -1;
}

.footer-contact {
  position: absolute;
  left: max(64px, calc(50% - var(--content-half) + 64px));
  top: 64px;
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.social p {
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 105%;
  letter-spacing: -0.035em;
}

.social-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.social-instagram img {
  width: 24px;
  height: 24px;
}

.social-instagram span {
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
}

.address-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--color-white);
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
}

.footer-touch {
  position: absolute;
  left: calc(50% - var(--content-half) + 968px);
  top: 64px;
  width: min(449px, calc(100vw - 991px));
  text-align: right;
}

.footer-touch h4 {
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 105%;
  color: var(--color-primary);
}

.footer-touch img {
  width: 24px;
  height: 18px;
  margin: 16px 0 12px auto;
}

.footer-touch p {
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
}

.footer-touch > p {
  margin-top: 29px;
}

.touch-links {
  margin-top: 7px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-left: auto;
}

.touch-links img {
  width: 24px;
  height: 18px;
  margin: 0;
}

.touch-links a {
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
  color: var(--color-white);
}

.legal-links {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.legal-links a {
  font-size: 20px;
  line-height: 150%;
  font-weight: 300;
  color: var(--color-white);
}

.footer-logo {
  position: absolute;
  left: max(64px, calc(50% - var(--content-half) + 64px));
  top: 376px;
  width: min(1313px, calc(100vw - 127px));
  height: auto;
}

/* Cookie-Banner (DSGVO-hinweis, Zustimmung/Ablehnung) */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 16px;
  background: var(--color-brown);
  color: var(--color-white);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner__text {
  flex: 1 1 280px;
  margin: 0;
  font-weight: 400;
}

.cookie-banner__text a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-banner__btn {
  cursor: pointer;
  border: 2px solid var(--color-white);
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  color: var(--color-white);
  background: transparent;
}

.cookie-banner__btn--accept {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.cookie-banner__btn:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* —— Site-wide keyboard focus indicator (accessibility) ——
   :where() keeps specificity at zero so existing per-element focus-visible
   styles (nav links, hero pips, cookie buttons …) remain authoritative.
   The language switcher (.hero-lang a) is intentionally excluded. */
:where(
  a:not(.hero-lang a),
  button,
  .site-header__cta,
  .site-header__menu-toggle,
  .site-header__menu-close,
  input,
  select,
  textarea
):focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* —— Page transitions (transitions.js) —— */
body.page-enter {
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.page-enter.page-enter--visible {
  opacity: 1;
}

body.page-exit {
  opacity: 0 !important;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* —— Scroll reveals (animations.js) —— */
.js-reveal {
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.js-reveal--headline {
  transform: translateY(30px);
  transition-duration: 0.6s;
}

.js-reveal--card,
.js-reveal--feature {
  transform: translateY(20px);
  transition-duration: 0.6s;
}

.js-reveal--collage {
  transform: scale(1.05);
  transition-duration: 0.8s;
}

.js-reveal--faq {
  transform: translateX(-20px);
  transition-duration: 0.6s;
}

.js-reveal--footerlogo {
  transform: scale(0.9);
  transition-duration: 0.6s;
}

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

.card.js-reveal:not(.is-revealed) {
  transition-property: opacity, transform, box-shadow;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.card.js-reveal.is-revealed {
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-reveal-delay--1 {
  transition-delay: 0.1s;
}
.js-reveal-delay--2 {
  transition-delay: 0.2s;
}
.js-reveal-delay--3 {
  transition-delay: 0.3s;
}
.js-reveal-delay--4 {
  transition-delay: 0.4s;
}
.js-reveal-delay--5 {
  transition-delay: 0.5s;
}
.js-reveal-delay--6 {
  transition-delay: 0.6s;
}
.js-reveal-delay--7 {
  transition-delay: 0.7s;
}
.js-reveal-delay--8 {
  transition-delay: 0.8s;
}
.js-reveal-delay--9 {
  transition-delay: 0.9s;
}
.js-reveal-delay--10 {
  transition-delay: 1s;
}
.js-reveal-delay--11 {
  transition-delay: 1.1s;
}
.js-reveal-delay--12 {
  transition-delay: 1.2s;
}

/* —— Collage & image hovers —— */
.u-collage-cell {
  position: relative;
  overflow: hidden;
}

.u-collage-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.u-collage-cell img {
  position: relative;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.u-collage-cell:hover img,
.u-collage-cell:focus-within img {
  transform: scale(1.03);
}

.u-collage-cell:hover::after,
.u-collage-cell:focus-within::after {
  opacity: 0.2;
}

.buchung-gallery > div {
  position: relative;
}

.buchung-gallery > div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.buchung-gallery > div img {
  position: relative;
  z-index: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.buchung-gallery > div:hover img,
.buchung-gallery > div:focus-within img {
  transform: scale(1.03);
}

.buchung-gallery > div:hover::after,
.buchung-gallery > div:focus-within::after {
  opacity: 0.2;
}

.equipment-collage-left::after,
.equipment-collage-mid::after,
.equipment-collage-right::after,
.equipment-service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}

.equipment-collage-left img,
.equipment-collage-mid img,
.equipment-collage-right img,
.equipment-service-image img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-collage-left:hover img,
.equipment-collage-mid:hover img,
.equipment-collage-right:hover img,
.equipment-service-image:hover img {
  transform: scale(1.03);
}

.equipment-collage-left:hover::after,
.equipment-collage-mid:hover::after,
.equipment-collage-right:hover::after,
.equipment-service-image:hover::after {
  opacity: 0.2;
}

.showcase-img {
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-img:hover {
  transform: scale(1.03);
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.2);
}

.buchung-side-image img {
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.buchung-side-image:hover img {
  transform: scale(1.2);
  box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.2);
}

/* —— Service panels: Hintergrund-Zoom —— */
.service-panel::before {
  transform-origin: center top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-panel:hover::before {
  transform: translateX(-50%) scale(1.03);
}

/* —— Parallax-Hintergrundbilder (Klasse via animations.js gesetzt) —— */
.has-parallax {
  background-attachment: scroll;
  will-change: background-position;
}

/* —— Vollbild-Ladescreen (loader.js, sessionStorage) —— */
#flame-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.flame-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: min(280px, 72vw);
}

.flame-loader__count {
  font-family: "Clash Display", Arial, sans-serif;
  font-size: clamp(4rem, 18vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}

.flame-loader__count::after {
  content: "%";
  font-size: 0.45em;
  margin-left: 0.08em;
  opacity: 0.85;
}

.flame-loader__track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.flame-loader__bar {
  height: 100%;
  width: 0;
  background: var(--color-primary);
  transition: width 0.1s linear;
}

#flame-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* =============================================================================
   Responsive base (desktop hides mobile UI)
   ============================================================================= */

html {
  overflow-x: hidden;
}

.site-header__menu-toggle,
.site-header__menu-close {
  display: none;
}

/* ---- Header einheitlich: Home = Unterseiten (Desktop ≥1280px) ---- */
@media (min-width: 1280px) {
  .site-body--home #site-header.site-header:not(.is-sticky) {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "logo nav cta";
    align-items: center;
    min-height: 64px;
    height: auto;
    padding: 12px max(24px, calc(50vw - var(--content-half)));
  }

  .site-body--home #site-header.site-header:not(.is-sticky) .site-header__logo {
    visibility: visible;
    pointer-events: auto;
    width: auto;
    height: auto;
    overflow: visible;
    margin: unset;
    padding: unset;
    border: unset;
    clip: auto;
    position: static;
    justify-self: start;
    grid-area: logo;
  }

  .site-body--home #site-header.site-header:not(.is-sticky) .site-header__logo img {
    width: auto;
    height: 44px;
    max-width: min(300px, 42vw);
    transform: scale(0.65);
    transform-origin: left center;
  }

  .site-body--home #site-header.site-header:not(.is-sticky) .site-header__nav {
    justify-self: center;
    grid-area: nav;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 3vw, 36px);
  }

  .site-body--home #site-header.site-header:not(.is-sticky) .site-header__actions {
    justify-self: end;
    grid-area: cta;
  }

  .site-body--home #site-header.site-header:not(.is-sticky) .site-header__cta {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
  }

  .site-body--home #site-header.site-header:not(.is-sticky) .site-header__cta img {
    width: 28px;
    height: 28px;
  }
}
