/* ============================================
   PRIMO STUDIO — Apple-Style Design
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1d1d1f;
  background: #fbfbfd;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a { color: #1d1d1f; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: #e8783a; }
:focus-visible { outline: 2px solid #e8783a; outline-offset: 3px; }
::selection { background: rgba(255,120,0,.18); }
img { max-width: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001s !important; transition-duration: .001s !important; }
}

/* ============================================
   INTRO / LOGO-ANIMATION (unverändert)
   ============================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.intro__svg-wrap {
  width: clamp(220px, 40vw, 420px);
}

#intro-logo {
  width: 100%;
  height: auto;
  overflow: visible;
}

.intro-svg__word { opacity: 0; }
.intro-svg__word--left { transform: translateX(-120px); }
.intro-svg__word--right { transform: translateX(120px); }

.intro-svg__mark {
  opacity: 0;
  transform-origin: 126px 75px;
  transform: scale(0.9);
}

.intro.is-animating .intro-svg__word {
  animation: introWordIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.intro.is-animating .intro-svg__mark {
  animation: introMarkGlow 1s ease-out 1.1s forwards;
}

@keyframes introWordIn { to { opacity: 1; transform: translateX(0); } }

@keyframes introMarkGlow {
  0%   { opacity: 0; transform: scale(0.9); filter: brightness(1); }
  60%  { opacity: 1; transform: scale(1.02); filter: brightness(1.6); }
  100% { opacity: 1; transform: scale(1); filter: brightness(1); }
}

.intro.is-leaving { transform: translateY(-100%); }
body.intro-active { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(251,251,253,.72);
  backdrop-filter: saturate(1.6) blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 19.5px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: box-shadow .3s ease;
}

.nav.is-scrolled {
  box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 8px 24px -20px rgba(0,0,0,.4);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.nav__logo svg {
  height: 46px;
  width: auto;
  display: block;
  overflow: visible;
}

.nav__social {
  display: flex;
  align-items: center;
  transition: transform .2s ease;
}

.nav__social:hover {
  transform: translateY(-1px);
}

.nav__social svg,
.nav__social img {
  display: block;
  height: 39px;
  width: 39px;
  object-fit: contain;
}

.nav__cta {
  padding: 8px 18px;
  border-radius: 980px;
  background: #1d1d1f;
  color: #fff !important;
  font-weight: 600;
  transition: transform .25s ease, background-color .25s ease;
}
.nav__cta:hover {
  background-color: #e8783a;
  transform: translateY(-1px);
}

/* ============================================
   MOBILE-NAVIGATION (Burger-Menü)
   ============================================ */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #1d1d1f;
  transition: transform .25s ease, opacity .2s ease;
}

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(251,251,253,.88);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 22px;
  font-weight: 500;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu a {
  color: #1d1d1f;
}

.mobile-menu__close {
  position: absolute;
  top: 18px;
  right: clamp(20px, 5vw, 64px);
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.mobile-menu__cta {
  padding: 12px 28px;
  border-radius: 980px;
  background: #1d1d1f;
  color: #fff !important;
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav__link {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* ============================================
   REVEAL-ON-SCROLL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.btn--orange {
  background: #e8783a;
  color: #fff !important;
  border: none;
}
.btn--orange:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,120,58,.45);
}

.btn--green {
  background: #0c6f66;
  color: #fff !important;
  border: none;
}
.btn--green:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(12,111,102,.28);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
  color: #0c6f66;
}
.link-arrow__chevron {
  display: inline-block;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.link-arrow:hover .link-arrow__chevron {
  transform: translateX(6px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: clamp(72px, 12vh, 140px) clamp(20px, 5vw, 64px) 0;
  text-align: center;
}

.hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #e8783a;
}

.hero__title {
  margin: 18px 0 0;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.hero__title span { display: block; }

.hero__sub {
  max-width: 62ch;
  margin: 26px auto 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  font-weight: 400;
  color: #6e6e73;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero__figure {
  max-width: 1120px;
  margin: clamp(48px, 7vw, 88px) auto 0;
  border-radius: 0;
  background: transparent;
  aspect-ratio: 16/9;
}

.hero__figure img,
.hero__figure video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 64px) 0;
}

.services__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.services__inner > h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.services__title-light { color: #86868b; font-weight: 300; }

.service-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  margin-top: clamp(48px, 7vw, 96px);
}

.service-row--reverse .service-row__media { order: -1; }

/* Auf schmalen Bildschirmen bricht das Grid auf eine Spalte um. Dort soll
   bei ALLEN drei Kacheln erst der Text, dann das Bild erscheinen (wie bei
   Kachel 1 und 3), auch bei der "reverse"-Kachel (Filmproduktion), deren
   Bild im Quellcode vor dem Text steht. */
@media (max-width: 700px) {
  .service-row--reverse .service-row__media { order: 1; }
  .service-row--reverse .service-row__text { order: 0; }
}

.service-row__index {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #e8783a;
}

.service-row__text h3 {
  margin: 14px 0 0;
  font-size: clamp(21px, 2.7vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  font-weight: 600;
}

.service-row__text p {
  margin: 16px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: #6e6e73;
  max-width: 46ch;
}

.service-row__media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #e8e8ed;
  aspect-ratio: 4/3;
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 8px 26px -20px rgba(0,0,0,.28);
  transition: box-shadow .3s ease;
}

.service-row__media:hover {
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 30px 70px -16px rgba(0,0,0,.7);
}

.service-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.service-row__media:hover img { transform: scale(1.06); }

/* Platzhalter-Kacheln (bis echtes Bild-/Videomaterial vorhanden ist):
   einfarbiger Hintergrund mit großem, in Großbuchstaben gesetztem Text,
   der beim Hover über die ganze Kachel sanft heranzoomt. */
.service-row__media--placeholder {
  background: #3a3632;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-row__placeholder-text {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 24px;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}

.service-row__media--placeholder:hover .service-row__placeholder-text {
  transform: scale(1.1);
}

/* ============================================
   ONE-HAND
   ============================================ */
.one-hand {
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 64px) 0;
  text-align: center;
}

.one-hand__headline {
  max-width: 20ch;
  margin: 0 auto;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.032em;
  font-weight: 300;
}
.one-hand__headline-bold { font-weight: 600; }

.one-hand__sub {
  max-width: 58ch;
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: #6e6e73;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 64px) 0;
}

.process__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.process__inner > h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.process__intro {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: #6e6e73;
  max-width: 52ch;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.process__card {
  border-radius: 20px;
  background: #fff;
  padding: 26px;
  box-shadow: none;
  transition: box-shadow .3s ease, opacity .9s ease, transform .9s cubic-bezier(.16,1,.3,1);
}
.process__card:hover {
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 26px 60px -20px rgba(0,0,0,.6);
}

.process__num { font-size: 15px; font-weight: 700; color: #e8783a; }

.process__card h3 {
  margin: 12px 0 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.process__card p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: #6e6e73;
}

/* ============================================
   ABOUT TEASER
   ============================================ */
.about-teaser {
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 64px) 0;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.about-teaser__media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #e8e8ed;
  aspect-ratio: 3/4;
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 8px 26px -20px rgba(0,0,0,.28);
  transition: box-shadow .3s ease;
}

.about-teaser__media:hover {
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 30px 70px -16px rgba(0,0,0,.7);
}

.about-teaser__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.about-teaser__media:hover img { transform: scale(1.05); }

.about-teaser__label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #e8783a;
}

.about-teaser__text h2 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.about-teaser__text p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: #6e6e73;
  max-width: 46ch;
}

.about-story {
  padding: clamp(60px, 9vw, 110px) clamp(20px, 5vw, 64px) 0;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

@media (max-width: 720px) {
  .about-story {
    grid-template-columns: 1fr;
  }
}

.about-story__media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #e8e8ed;
  aspect-ratio: 3/4;
  position: sticky;
  top: 100px;
}

@media (max-width: 720px) {
  .about-story__media {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}

.about-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__text p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.7;
  color: #3a3a3d;
  max-width: 62ch;
}

.about-story__text p:last-child {
  margin-bottom: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 64px) 0;
}

.contact__card {
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 28px;
  background: #1d1d1f;
  color: #f5f5f7;
  padding: clamp(36px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
}

@media (min-width: 760px) {
  .contact__card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.contact__intro h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.contact__intro > p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: #a1a1a6;
  max-width: 40ch;
}

.contact__details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-size: 17px;
}

.contact__details a,
.contact__details span {
  justify-self: start;
  color: #f5f5f7;
}
.contact__details a { transition: color .25s ease; }
.contact__details a:hover { color: #e8783a !important; }
.contact__details span { color: #a1a1a6; }

.contact__form {
  display: grid;
  gap: 14px;
}

.contact__form input,
.contact__form textarea {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: #f5f5f7;
  padding: 15px 18px;
  font: inherit;
  font-size: 16px;
  outline-offset: 3px;
  transition: border-color .2s ease, background .2s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.1);
}

.contact__form textarea { resize: vertical; }

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(245,245,247,.5);
}

.contact__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
  color: #a1a1a6;
}
.contact__consent input { margin-top: 3px; accent-color: #e8783a; }

.contact__form .btn {
  justify-self: start;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.contact__sent {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: #e8783a;
}
.contact__sent.is-visible {
  display: inline-block;
  animation: floatUp 3s ease-in-out infinite;
}

.contact__error {
  display: none;
  font-size: 14px;
  font-weight: 600;
  color: #d64545;
}
.contact__error.is-visible {
  display: inline-block;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ============================================
   KUNDEN & PARTNER
   ============================================ */
.clients {
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 64px) 0;
}

.clients__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.clients__inner > h2 {
  margin: 0 0 clamp(40px, 6vw, 72px);
  text-align: center;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
}

/* Glas-Leiste (Frosted Glass): hebt sich klar vom weißen Seitenhintergrund
   ab, mit halbtransparenter, verschwommener Fläche, feinem hellem Rand
   und einem dauerhaften, spürbaren Schatten (nicht nur bei Hover). */
.clients__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 6vw, 72px);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: clamp(18px, 2.8vw, 28px) clamp(24px, 5vw, 56px);
}

.clients__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.clients__logo {
  height: clamp(45px, 6.25vw, 60px);
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* Nadja Will und Think Pink Club sind reine Text-Logos ohne eigenen
   Kreis/Rahmen wie Mercedes-Benz/LOUCO - etwas größer skaliert und
   zueinander vereinheitlicht, damit sie in der Reihe gleichwertig wirken. */
.clients__logo--text {
  height: clamp(37px, 5.25vw, 50px);
}

.clients__name {
  font-size: 12px;
  color: #6e6e73;
  letter-spacing: 0.02em;
}

/* ============================================
   WEBDESIGN (Zusatzangebot)
   ============================================ */
.webdesign {
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 64px) 0;
}

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

.webdesign__label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0c6f66;
  margin: 0 0 14px;
}

.webdesign__inner h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.webdesign__intro {
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: #6e6e73;
  max-width: 52ch;
}

.webdesign__compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 44px;
  text-align: left;
}

.webdesign__col {
  border-radius: 20px;
  padding: 26px 28px;
}

.webdesign__col--before {
  background: #f5f5f7;
}

.webdesign__col--after {
  background: rgba(12, 111, 102, 0.08);
  border: 1px solid rgba(12, 111, 102, 0.25);
}

.webdesign__col-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: #86868b;
}

.webdesign__col--after .webdesign__col-label {
  color: #0c6f66;
}

.webdesign__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.webdesign__col li {
  font-size: 15px;
  line-height: 1.5;
  color: #444448;
  padding-left: 24px;
  position: relative;
}

.webdesign__col--before li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #b0b0b5;
  font-weight: 600;
}

.webdesign__col--after li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0c6f66;
  font-weight: 600;
}

.webdesign__cta {
  margin-top: 40px;
}

/* ============================================
   TRENNLINIE (dezente Sektions-Abgrenzung)
   ============================================ */
.section-divider {
  max-width: 1120px;
  margin: clamp(60px, 9vw, 110px) auto 0;
  padding: 0 clamp(20px, 5vw, 64px);
}

.section-divider::before {
  content: "";
  display: block;
  height: 1px;
  background: rgba(0,0,0,.45);
}

/* ============================================
   DISZIPLIN-DETAILSEITEN (Grafikdesign/Filmproduktion/Fotografie)
   ============================================ */
.discipline-hero {
  padding: clamp(140px, 16vw, 200px) clamp(20px, 5vw, 64px) 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.discipline-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: #6e6e73;
  margin-bottom: 28px;
}
.discipline-hero__back:hover { color: #1d1d1f; }

.discipline-hero__label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #e8783a;
  margin-bottom: 14px;
}

.discipline-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 18px;
}

.discipline-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #6e6e73;
  max-width: 56ch;
  margin: 0 auto;
}

.discipline-gallery {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 48px);
}

.discipline-gallery__item {
  margin: 0;
}

.discipline-gallery__media {
  border-radius: 22px;
  overflow: hidden;
  background: #e8e8ed;
  aspect-ratio: 4/3;
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 8px 26px -20px rgba(0,0,0,.28);
  transition: box-shadow .3s ease;
}
.discipline-gallery__media:hover {
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 30px 70px -16px rgba(0,0,0,.7);
}

.discipline-gallery__media img,
.discipline-gallery__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.discipline-gallery__media:hover img,
.discipline-gallery__media:hover video {
  transform: scale(1.06);
}

.discipline-gallery__caption {
  margin-top: 14px;
  font-size: 15px;
  color: #6e6e73;
}

/* ============================================
   COVERFLOW-KARUSSELL
   ============================================ */
.coverflow {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px) 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.coverflow__track {
  position: relative;
  flex: 1;
  height: clamp(380px, 56vw, 620px);
  perspective: 1200px;
  container-type: size;
}

.coverflow__item {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Größe ergibt sich aus dem individuellen Seitenverhältnis des
     Mediums (--ratio). Über Container-Query-Einheiten (cqh/cqw, bezogen
     auf die tatsächliche Größe des .coverflow__track-Containers, nicht
     auf das Browserfenster) wird die Höhe so berechnet, dass weder ein
     hohes Hochformat- noch ein breites Querformat-Medium über den
     verfügbaren Platz hinausragt, bei exakt korrektem Seitenverhältnis. */
  height: min(100cqh, 92cqw / var(--ratio, 1.33));
  aspect-ratio: var(--ratio, 1.33);
  margin: 0;
  cursor: pointer;
  transform-origin: center;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .5s ease, z-index 0s;
}

.coverflow__item.is-active {
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  z-index: 3;
  cursor: default;
  opacity: 1;
}

.coverflow__item.is-prev {
  transform: translateX(-92%) translateY(-50%) translateZ(-160px) scale(.68) rotateY(20deg);
  z-index: 2;
  opacity: .8;
}

.coverflow__item.is-next {
  transform: translateX(-8%) translateY(-50%) translateZ(-160px) scale(.68) rotateY(-20deg);
  z-index: 2;
  opacity: .8;
}

.coverflow__item.is-far {
  transform: translateX(calc(-50% + var(--offset, 0) * 55%)) translateY(-50%) translateZ(-280px) scale(.55);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.coverflow__media {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #e8e8ed;
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 8px 26px -20px rgba(0,0,0,.28);
}

.coverflow__item.is-active .coverflow__media {
  box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 30px 70px -16px rgba(0,0,0,.5);
}

.coverflow__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coverflow__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coverflow__caption {
  margin-top: 14px;
  font-size: 15px;
  color: #6e6e73;
  text-align: center;
  opacity: 0;
  transition: opacity .3s ease;
}

.coverflow__item.is-active .coverflow__caption {
  opacity: 1;
}

.coverflow__arrow {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 980px;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.coverflow__arrow--prev {
  background: #e8783a;
}

.coverflow__arrow--next {
  background: #0c6f66;
}

.coverflow__arrow:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 22px -6px rgba(0,0,0,.4);
}

.coverflow__arrow:disabled {
  opacity: .35;
  cursor: default;
}

.coverflow__arrow:disabled:hover {
  transform: none;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.35);
}

@media (max-width: 640px) {
  .coverflow {
    padding-left: 12px;
    padding-right: 12px;
    gap: 4px;
  }
  .coverflow__arrow {
    width: 36px;
    height: 36px;
  }
}

.discipline-cta {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 64px) clamp(90px, 12vw, 150px);
  text-align: center;
}

.discipline-cta h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  margin-top: clamp(64px, 9vw, 120px);
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 28px clamp(20px, 5vw, 64px) 48px;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #86868b;
}

.footer__logo {
  height: 46px;
  width: auto;
  display: block;
  overflow: visible;
}

.footer__links, .footer__social {
  display: flex;
  gap: 24px;
}

.footer__links a, .footer__social a { color: #86868b; }
.footer__links a:hover, .footer__social a:hover { color: #e8783a; }

/* ============================================
   COOKIE-CONSENT-BANNER
   ============================================ */
.consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: none;
  padding: 16px clamp(16px, 4vw, 32px);
}

.consent.is-visible { display: flex; justify-content: center; }

.consent__box {
  max-width: 760px;
  width: 100%;
  background: #1d1d1f;
  color: #f5f5f7;
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.45);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}

.consent__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #d2d2d7;
  flex: 1 1 320px;
}

.consent__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.consent .btn { padding: 10px 20px; font-size: 14px; }

.btn--outline-dark {
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  color: #f5f5f7;
}
.btn--outline-dark:hover {
  border-color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .consent__box { flex-direction: column; align-items: stretch; }
  .consent__actions { justify-content: stretch; }
  .consent__actions .btn { flex: 1; text-align: center; }
}
