/* =============================================
   Stefan Meinking Sounddesign – Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

@font-face {
  font-family: 'MovLette';
  src: url('../fonts/MovLette.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  touch-action: pan-x pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.show-mobile { display: none; }

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

:root {
  --bg:           #f1eee9;
  --bg-light:     #e2d9cae5;
  --text:         #323030;
  --text-muted:   #7a7470;
  --gold:         #c8a020;
  --gold-light:   #e8be30;
  --border:       #c8c0b0;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --header-height: 65px;
  --footer-height: 40px;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: none;
  touch-action: pan-x pan-y;
}

@media (min-width: 769px) {
  html { scrollbar-gutter: stable; }
}

body {
  background-color: #faf8f4;
  color: var(--text);
  font-family: var(--font-serif);
  min-height: 100vh;
  line-height: 1.7;
  padding-top: var(--header-height);
  padding-bottom: 3.5rem;
}

/* ── Onepager Sections ── */
.section-wrapper {
  position: relative;
  scroll-margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.section-alt,
body.bg-alt {
  background: var(--bg-light);
}

body.bg-alt .site-header {
  background: var(--bg-light);
}


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

/* ── Site Header ── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  border-bottom: 1px solid var(--border);
  background: #faf8f4;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.site-header .logo {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: var(--text);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

/* ── Desktop Nav-Collapse: Burger statt Inline-Links ── */
.nav-title {
  display: none;
}

.nav-collapsed #mainNav .site-nav {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.15s ease;
}

.nav-collapsed .burger {
  display: block;
  margin-left: auto;
}

.nav-collapsed .nav-title {
  display: inline;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 1;
  transition: opacity 0.15s ease;
}

/* Collapsed Desktop: Overlay-Basis (versteckt) */
.nav-collapsed #mainNav {
  position: fixed;
  inset: 0;
  background: #faf8f4;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 100;
}

.nav-collapsed #mainNav.nav-open {
  transform: translateY(0);
  pointer-events: auto;
}

.nav-collapsed #mainNav.nav-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  position: static;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}

.nav-collapsed .burger.open ~ .nav-title {
  opacity: 0;
}

.site-nav a {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: color 0.8s ease, border-bottom-color 0.8s ease;
}

.site-header .logo {
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: color 0.8s ease, border-bottom-color 0.8s ease;
}

.site-nav a:hover {
  color: var(--gold);
}

.site-nav a.active,
.site-header .logo.active {
  color: var(--gold);
  border-bottom-color: rgba(200, 160, 32, 0.7);
}

/* ── Burger Button (hidden on desktop) ── */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.burger svg {
  display: block;
  color: var(--text);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.burger .close-icon {
  display: none;
}

.burger.open .burger-icon {
  display: none;
}

.burger.open .close-icon {
  display: block;
}

/* ── Hero ── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 21.2vh;
  background: #faf8f4;
}

.hero-band {
  width: 100%;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.5rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.hero-title-wrap {
  position: relative;
  display: inline-block;
}

.hero-crown-anchor {
  position: relative;
  display: inline-block;
}

/* ── Shimmer SOUND DESIGN ── */
@keyframes heroShimmer {
  from { background-position: 83% 0; }
  to   { background-position: 17% 0; }
}

/* ── Glow Audio-Buttons ── */
.play-btn.glow {
  border-color: #4caf50;
  color: #4caf50;
  box-shadow: 0 0 8px rgba(76,175,80,0.5), 0 0 18px rgba(76,175,80,0.2);
}

@keyframes stopFlash {
  0%, 25% {
    color: #e53935;
    box-shadow: 0 0 12px rgba(229,57,53,0.85), 0 0 26px rgba(229,57,53,0.4);
  }
  100% {
    color: var(--text);
    box-shadow: none;
  }
}

.play-btn.stop-flash {
  animation: stopFlash 0.8s ease-out;
}

/* ── Sektions Fade-In ── */
.page-main,
.about-editorial,
.services-section,
.video-grid,
.audio-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.page-main.fade-in,
.about-editorial.fade-in,
.services-section.fade-in,
.video-grid.fade-in,
.audio-section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes crownWiggle {
  0%   { transform: translateX(-50%) rotate(12deg); }
  15%  { transform: translateX(-50%) rotate(22deg); }
  35%  { transform: translateX(-50%) rotate(2deg);  }
  50%  { transform: translateX(-50%) rotate(18deg); }
  65%  { transform: translateX(-50%) rotate(6deg);  }
  80%  { transform: translateX(-50%) rotate(15deg); }
  100% { transform: translateX(-50%) rotate(12deg); }
}

.hero-crown.wiggle {
  animation: crownWiggle 0.6s ease-in-out;
}

@keyframes crownDrop {
  from {
    opacity: 0;
    transform: translateX(-58.7%) translateY(-100vh) rotate(12deg);
  }
  to {
    opacity: 1;
    transform: translateX(-58.7%) translateY(0) rotate(12deg);
  }
}

@keyframes crownShadow {
  from { filter: drop-shadow(2px 2px 3px rgba(0,0,0,0)); }
  to   { filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.25)); }
}

.hero-crown {
  position: absolute;
  left: 50%;
  bottom: 100%;
  margin-bottom: clamp(-14px, -1.4vw, -5px);
  transform: translateX(-58.7%) rotate(12deg);
  transform-origin: center bottom;
  line-height: 1;
  animation:
    crownDrop   2.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s both,
    crownShadow 1.2s ease-in 3.3s both;
}

.hero-crown svg {
  width: clamp(14px, 2.8vw, 38px);
  height: auto;
  display: block;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(0.7rem, 1.6vw, 1.1rem);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.9;
  margin-bottom: 0;
  white-space: nowrap;
  display: block;
  width: 100%;
}

.hero-title {
  font-family: 'MovLette', var(--font-display);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: normal;
  line-height: 0.85;
  letter-spacing: 0.01em;
  word-spacing: -0.15em;
  margin-bottom: 0;
  background: linear-gradient(90deg,
    #323030 0%, #323030 42%,
    #a07818 47%, #c8a840 50%, #a07818 53%,
    #323030 58%, #323030 100%
  );
  background-size: 400% 100%;
  background-position: 83% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroShimmer 6.5s ease-in-out 3.0s 1 both;
}

.hero-crown-anchor {
  position: relative;
}

/* ── Nav Links (index) ── */
.hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  justify-content: center;
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.hero-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.hero-nav a:hover {
  color: var(--gold);
}

/* ── Hero Shortcuts (Mobile) ── */
.hero-shortcuts {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  z-index: 5;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-shortcuts a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.hero-shortcuts a:hover {
  color: var(--gold);
}

.hero-shortcuts-dot {
  color: var(--text-muted);
  margin: 0 0.6rem;
  opacity: 0.4;
}

/* ── Page Badge (sub-pages) ── */
.page-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--text);
  padding: 0.6rem 1.2rem;
  margin-bottom: 3rem;
  position: relative;
}

.page-badge .badge-crown {
  position: absolute;
  top: -1.1rem;
  font-size: 1.2rem;
  background: var(--bg);
  padding: 0 0.3rem;
}

.page-badge .badge-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

/* ── Sub-Page Layout ── */
.page-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  text-align: center;
}

.page-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 5rem;
}

/* ── Page Heading (Kontakt, Impressum, etc.) ── */
.page-heading {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  color: var(--text);
  text-align: center;
  overflow-wrap: break-word;
  hyphens: auto;
}

.page-heading-line {
  display: none;
}

.about-text .page-heading,
.page-centered .page-heading {
  text-align: left !important;
  width: 100%;
  max-width: 600px;
  align-self: center;
}


/* ── Über mich ── */
#ueber-mich {
  overflow: hidden;
}

/* Faderport desk view (Desktop only) */
.about-faderport {
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: clamp(550px, 65vw, 950px);
  max-width: calc(50vw - 2rem);
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-10deg);
}

.about-editorial {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.about-photo-float {
  float: left;
  display: block;
  width: 200px;
  max-width: 200px;
  height: auto;
  margin: 0.3rem 2rem 1rem 0;
  filter: grayscale(20%) drop-shadow(3px 4px 8px rgba(0,0,0,0.18));
  transform: scaleX(-1) rotate(3deg);
  transform-origin: center center;
  shape-outside: margin-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

.about-editorial p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.2rem;
  text-align: justify;
  text-align-last: left;
  line-height: 1.8;
}

.about-lead::first-letter {
  font-family: inherit;
  font-size: inherit;
  float: none;
  line-height: inherit;
  margin: 0;
  color: inherit;
}

.about-editorial em {
  color: var(--gold);
  font-style: normal;
}

.about-page--secondary {
  display: none;
}

.about-toggle-btn {
  display: block;
  margin-top: 0.5rem;
  margin-left: auto;
  padding: 0.45rem 0;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s;
}

.about-toggle-btn:hover {
  opacity: 0.7;
}

/* ── Services / Leistungen ── */
.services-section {
  margin-top: clamp(2rem, 6vh, 5rem);
  position: relative;
}

.services-label {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  font-style: italic;
  border: 1px solid var(--text);
  padding: 0.3rem 1rem;
  margin-bottom: 2.5rem;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 70px;
  gap: 1.875rem 9rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 70px;
  overflow: visible;
}

.service-item-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 70px;
}

.service-desc {
  display: none;
}

.service-preview {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 2rem);
  padding: 1.5rem 2rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  text-align: center;
}

.service-preview.active {
  opacity: 1;
}

.service-item:hover .service-icon {
  filter: grayscale(0%);
  box-shadow: 0 0 8px rgba(200,160,32,0.28), 0 0 18px rgba(200,160,32,0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  background: #faf8f4;
  filter: grayscale(100%);
  box-shadow: 0 0 0 rgba(200,160,32,0);
  transition: box-shadow 0.5s ease, filter 0.5s ease;
  backface-visibility: hidden;
}

.service-icon--xl {
  font-size: 2.75rem;
}

.service-icon__glyph {
  display: inline-block;
  transform: translateX(-1.5px);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  color: var(--text);
  opacity: 0.8;
  white-space: nowrap;
}

.service-name small {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  font-weight: 300;
  margin-left: 0.4rem;
  white-space: nowrap;
}

/* ── Film Grid ── */
.film-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.film-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--text);
  padding: 0.4rem 0.8rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  position: relative;
}

.film-badge .badge-icon {
  font-size: 1.6rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.8rem, 2.5vh, 2.5rem);
  margin-top: clamp(1rem, 4vh, 4rem);
}

.film-page {
  display: contents;
}

/* Desktop: Card-Stil */
.video-item {
  display: flex;
}

.film-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden;
  text-align: center;
}

.film-card .video-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  max-height: none;
  background: #222;
  overflow: hidden;
  margin-bottom: 0;
}

.video-thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.crossfade {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.crossfade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}

.crossfade img.cf-hidden {
  opacity: 0;
}

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

.corner-banner {
  position: absolute;
  bottom: 22px;
  left: -36px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.975rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 50px;
  transform: rotate(45deg);
  border-top: 2px solid #999;
  border-bottom: 2px solid #999;
  pointer-events: none;
  z-index: 2;
}

.video-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease, background 0.8s ease;
}

.video-overlay.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.92);
}

.overlay-content {
  width: 90vw;
  max-width: 1200px;
  aspect-ratio: 16/9;
  position: fixed;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 0.3s ease 0.4s;
}

.video-overlay.active .overlay-content iframe {
  opacity: 1;
}

.overlay-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10000;
}

.overlay-close:hover {
  color: #ccc;
}

.video-tag {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 0.9vw, 0.75rem);
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0.6rem 1rem 0.2rem;
  text-align: center;
}

.video-title {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  font-weight: normal;
  letter-spacing: 0.06em;
  margin: 0 1rem 0.3rem;
  text-decoration: none;
  text-align: center;
  text-decoration-color: var(--gold);
}

.video-meta {
  font-size: clamp(0.6rem, 0.85vw, 0.8rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 1rem;
  padding-bottom: 0.8rem;
  text-align: center;
}

/* ── Audio ── */
.audio-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 4rem 2rem;
  text-align: center;
}

/* Hidden YouTube player (audio only) */
.audio-yt-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Category tag above title */
.audio-tag-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: normal;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.8rem;
  height: 1.4em;
  width: 100%;
  white-space: nowrap;
  transition: opacity 0.6s ease;
}

.audio-tag-label.fade-out {
  opacity: 0;
}

.audio-tag-label::before,
.audio-tag-label::after {
  content: '';
  width: 3rem;
  flex-shrink: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* Large editorial track title */
.audio-big-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--text);
  opacity: 0.8;
  margin: 0 0 0.6rem;
  height: calc(clamp(2.5rem, 6vw, 4.5rem) * 1.1);
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.audio-big-title.fade-out {
  opacity: 0;
}

/* Waveform visualization */
.audio-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 32px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.audio-waveform.active {
  opacity: 1;
}

.wf-bar {
  width: 2.5px;
  height: 4px;
  background: var(--gold);
  border-radius: 1px;
  opacity: 0.5;
  transition: height 0.15s ease;
}

/* Each bar gets its own animation + timing for organic movement */
.wf-bar:nth-child(1)  { animation: wfA 1.1s ease-in-out infinite alternate 0s; }
.wf-bar:nth-child(2)  { animation: wfB 0.8s ease-in-out infinite alternate 0.1s; }
.wf-bar:nth-child(3)  { animation: wfC 1.3s ease-in-out infinite alternate 0.05s; }
.wf-bar:nth-child(4)  { animation: wfA 0.9s ease-in-out infinite alternate 0.2s; }
.wf-bar:nth-child(5)  { animation: wfD 1.0s ease-in-out infinite alternate 0.15s; }
.wf-bar:nth-child(6)  { animation: wfB 1.2s ease-in-out infinite alternate 0.08s; }
.wf-bar:nth-child(7)  { animation: wfC 0.7s ease-in-out infinite alternate 0.3s; }
.wf-bar:nth-child(8)  { animation: wfD 1.1s ease-in-out infinite alternate 0.12s; }
.wf-bar:nth-child(9)  { animation: wfA 0.85s ease-in-out infinite alternate 0.25s; }
.wf-bar:nth-child(10) { animation: wfC 1.15s ease-in-out infinite alternate 0.02s; }
.wf-bar:nth-child(11) { animation: wfB 0.95s ease-in-out infinite alternate 0.18s; }
.wf-bar:nth-child(12) { animation: wfD 1.25s ease-in-out infinite alternate 0.07s; }
.wf-bar:nth-child(13) { animation: wfA 0.75s ease-in-out infinite alternate 0.22s; }
.wf-bar:nth-child(14) { animation: wfC 1.05s ease-in-out infinite alternate 0.14s; }
.wf-bar:nth-child(15) { animation: wfB 0.9s ease-in-out infinite alternate 0.28s; }
.wf-bar:nth-child(16) { animation: wfD 1.2s ease-in-out infinite alternate 0.04s; }
.wf-bar:nth-child(17) { animation: wfA 1.0s ease-in-out infinite alternate 0.2s; }
.wf-bar:nth-child(18) { animation: wfC 0.8s ease-in-out infinite alternate 0.1s; }
.wf-bar:nth-child(19) { animation: wfB 1.15s ease-in-out infinite alternate 0.16s; }
.wf-bar:nth-child(20) { animation: wfD 0.85s ease-in-out infinite alternate 0.06s; }
.wf-bar:nth-child(21) { animation: wfA 1.1s ease-in-out infinite alternate 0.12s; }

/* Paused: no animation */
.wf-bar { animation: none; }
.audio-waveform.active .wf-bar { animation-play-state: running; }

@keyframes wfA {
  0%   { height: 3px; opacity: 0.25; }
  35%  { height: 22px; opacity: 0.6; }
  70%  { height: 10px; opacity: 0.4; }
  100% { height: 30px; opacity: 0.7; }
}

@keyframes wfB {
  0%   { height: 6px; opacity: 0.3; }
  25%  { height: 28px; opacity: 0.65; }
  55%  { height: 5px; opacity: 0.25; }
  80%  { height: 18px; opacity: 0.55; }
  100% { height: 8px; opacity: 0.35; }
}

@keyframes wfC {
  0%   { height: 4px; opacity: 0.2; }
  40%  { height: 16px; opacity: 0.5; }
  65%  { height: 26px; opacity: 0.7; }
  85%  { height: 7px; opacity: 0.3; }
  100% { height: 20px; opacity: 0.6; }
}

@keyframes wfD {
  0%   { height: 8px; opacity: 0.35; }
  30%  { height: 32px; opacity: 0.75; }
  50%  { height: 12px; opacity: 0.4; }
  75%  { height: 24px; opacity: 0.6; }
  100% { height: 4px; opacity: 0.25; }
}

/* Player frame container */
.audio-player-frame {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(200, 160, 32, 0.15);
  border-radius: 12px;
  padding: 2.5rem 3rem 2rem;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Progress bar – outer clickable area */
.audio-progress {
  position: relative;
  width: 80%;
  max-width: 300px;
  height: 14px;
  margin-bottom: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Visible track line */
.audio-progress::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  border-radius: 1px;
}

.audio-progress-bar {
  position: relative;
  height: 2px;
  width: 0%;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.15s linear;
}

/* Track counter */
.audio-counter {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Track list pills */
.audio-tracklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 650px;
  margin-top: 2.5rem;
}

.audio-pill {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border);
  padding: 0.35rem 1rem;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.audio-pill:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.audio-pill.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(200, 160, 32, 0.08);
}

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

.audio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #faf8f4;
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, color 0.2s, border-color 0.2s;
  padding: 0;
}

.audio-btn:hover {
  box-shadow: 0 0 8px rgba(200,160,32,0.28), 0 0 18px rgba(200,160,32,0.1);
}

.audio-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.audio-btn--main {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.audio-btn--play {
  width: 54px;
  height: 54px;
}

.audio-btn--play svg {
  width: 22px;
  height: 22px;
}

.audio-btn--stop svg {
  width: 16px;
  height: 16px;
}

/* Glow: Play = grün beim Abspielen */
#playBtn.audio-btn--pause {
  border-color: #4caf50;
  color: #4caf50;
  box-shadow: 0 0 8px rgba(76,175,80,0.5), 0 0 18px rgba(76,175,80,0.2);
}

/* Glow: Stop = rot pulsierend beim Klick */
@keyframes stopGlow {
  0%   { border-color: #e53935; color: #e53935; box-shadow: 0 0 12px rgba(229,57,53,0.85), 0 0 26px rgba(229,57,53,0.4); }
  100% { border-color: var(--gold); color: var(--gold); box-shadow: none; }
}

.audio-btn--stop.flash {
  animation: stopGlow 0.8s ease-out;
}


.custom-player {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #faf8f4;
  border: 1px solid var(--text);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem 0.6rem 1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}


.btn-icon-wrap {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-label-wrap {
  position: relative;
  display: inline-grid;
}

.btn-label-wrap span {
  grid-area: 1 / 1;
}

.play-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.8rem;
  color: var(--text-muted);
}

.volume-mute-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.volume-mute-btn:hover {
  color: var(--gold);
}

.volume-mute-btn.muted {
  color: var(--gold);
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 8px;
  height: 18px;
  background: var(--text);
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.2s;
}

.volume-slider::-moz-range-thumb {
  width: 8px;
  height: 18px;
  background: var(--text);
  border: none;
  border-radius: 1px;
  cursor: pointer;
}

.volume-slider:hover::-webkit-slider-thumb { background: var(--gold); }
.volume-slider:hover::-moz-range-thumb     { background: var(--gold); }

.audio-section-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
  margin-bottom: 1.2rem;
}

/* ── Page Body (Textsektionen) ── */
.page-body {
  text-align: left;
  width: 100%;
  max-width: 600px;
  line-height: 1.8;
  font-weight: 300;
  overflow-wrap: break-word;
  word-break: break-word;
}

.page-body p {
  margin-bottom: 1rem;
}

/* ── Kontakt E-Mail Toggle ── */
.kontakt-email-link {
  color: var(--gold) !important;
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.kontakt-email-link:hover {
  color: var(--gold-light) !important;
  border-bottom-color: var(--gold-light);
}

#film {
  justify-content: flex-start;
}

@media (min-width: 769px) {
  #film .page-main {
    padding: clamp(1.5rem, 4vh, 3.5rem) 2rem;
  }

  #film .video-grid {
    margin-top: clamp(0.5rem, 1.5vh, 2rem);
  }

  #film .video-thumb {
    max-height: clamp(100px, 20vh, 300px);
  }
}

.film-dots {
  display: none;
}

#kontakt {
  justify-content: flex-start;
  padding-top: 12vh;
}

.kontakt-inline-form {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  margin-top: 0;
}
.kontakt-inline-form.kf-open {
  max-height: 400px;
  opacity: 1;
  margin-top: 1.4rem;
}

.kf-row {
  margin-bottom: 0.9rem;
}
.kf-label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.kf-input {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.3rem 0;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.kf-input:focus {
  border-bottom-color: var(--gold);
}
.kf-textarea {
  resize: none;
  min-height: 80px;
  overflow-y: auto;
}
.kf-textarea::placeholder {
  font-size: 0.7rem;
  line-height: 1.5;
  opacity: 0.35;
  color: var(--text);
  transition: opacity 0.3s ease;
}
.kf-textarea.typing::placeholder {
  opacity: 0;
}
.kf-send-btn {
  margin-top: 0.4rem;
  background: none;
  border: 1px solid var(--text);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.kf-send-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Kontakt / Impressum ── */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 2rem;
}

.kontakt-block {
  margin-bottom: 2.5rem;
}

.kontakt-block h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.kontakt-block p,
.kontakt-block address {
  font-size: 1rem;
  font-weight: 300;
  font-style: normal;
  line-height: 1.8;
  color: var(--text);
}

.kontakt-block a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
  margin-top: 2rem;
}

.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
  color: var(--text-muted);
}

.legal-section p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── Footer ── */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid var(--border);
  padding: 0.8rem 3rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  background: var(--bg);
  letter-spacing: 0.1em;
}


/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-text {
    transform: scale(1.2);
  }

  .hero-crown {
    margin-bottom: clamp(-8px, -0.8vw, -3px);
  }

  :root {
    --header-height: 55px;
  }

  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.5rem;
  }

  .site-header .logo {
    display: none;
  }

  .section-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .burger {
    display: block;
    margin-left: auto;
    z-index: 101;
  }

  #mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #faf8f4;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
  }

  #mainNav.nav-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .burger.open ~ .section-title {
    visibility: hidden;
  }

  .site-nav {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .site-nav a.active {
    opacity: 0.3;
  }

  .about-photo-float {
    width: 120px;
    margin: 0.2rem 1.2rem 0.6rem 0;
  }

  .about-editorial p {
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
    line-height: 1.6;
  }

  .about-editorial em {
    color: #9a7a10;
  }

  .about-lead::first-letter {
    font-family: inherit;
    font-size: inherit;
    float: none;
    line-height: inherit;
    margin-right: 0;
    margin-top: 0;
    color: inherit;
  }

  .kontakt-layout { grid-template-columns: 1fr; gap: 2rem; }

  .services-section { margin-top: 2rem; }

  .services-grid { grid-template-columns: 1fr; gap: 1rem; grid-auto-rows: 50px; }

  .service-item { height: 50px; position: relative; overflow: visible; transition: opacity 0.3s ease; }

  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    cursor: pointer;
  }

  .service-icon--xl { font-size: 2rem; }

  .service-icon svg {
    width: 20px;
    height: 20px;
  }

  .service-item-top { gap: 1rem; height: 50px; }

  .service-name {
    font-size: 1.3rem;
    transition: opacity 0.3s ease;
  }

  .service-name small {
    display: none;
  }

  .service-preview { display: none; }

  /* Mobile: Hover-Glow deaktivieren (bleibt sonst nach Touch kleben) */
  .service-item:hover .service-icon {
    filter: grayscale(100%);
    box-shadow: none;
  }

  /* Mobile: Tap-Interaktion */
  .service-item.svc-dimmed {
    opacity: 0.3;
    pointer-events: none;
  }

  .service-item.svc-dimmed .service-icon {
    pointer-events: auto;
  }

  .service-item.svc-dimmed .service-name {
    opacity: 0;
    height: 0;
    overflow: hidden;
  }

  .service-item.svc-active .service-icon,
  .service-item.svc-last .service-icon {
    filter: grayscale(0%);
    box-shadow: 0 0 8px rgba(200,160,32,0.28), 0 0 18px rgba(200,160,32,0.1);
  }

  .service-item.svc-active .service-desc {
    display: block;
    position: absolute;
    top: 100%;
    left: 66px;
    right: 0;
    z-index: 2;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text);
    padding-top: 0.3rem;
    opacity: 0;
    animation: svcDescIn 0.35s ease forwards;
  }

  @keyframes svcDescIn {
    to { opacity: 1; }
  }

  .audio-big-title {
    font-size: clamp(1.1rem, 4.2vw, 1.8rem);
    height: calc(clamp(1.1rem, 4.2vw, 1.8rem) * 1.1);
  }

  .audio-controls { flex-wrap: wrap; justify-content: center; }

  .volume-control { display: none; }

  .audio-tracklist {
    max-width: 100%;
    gap: 0.4rem;
  }

  .audio-section {
    min-height: 0;
    padding: 1.5rem 1rem;
  }

  .audio-player-frame {
    padding: 1.5rem 1.2rem 1.2rem;
  }

  .audio-big-title {
    margin-bottom: 0.3rem;
  }

  .audio-tag-label {
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    gap: 0.8rem;
  }

  .audio-tag-label::before,
  .audio-tag-label::after {
    width: 2rem;
  }

  .audio-counter {
    margin-bottom: 1rem;
  }

  .audio-waveform {
    margin-bottom: 0.8rem;
  }

  .audio-tracklist {
    margin-top: 1.2rem;
  }

  .audio-pill {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }

  /* ── Film Carousel ── */
  .video-grid {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    margin-top: 0;
    gap: 0;
  }

  .video-grid::-webkit-scrollbar {
    display: none;
  }

  .video-item {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 2.5rem;
  }

  /* Card-Stil für jedes Film-Item */
  .film-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    width: 100%;
    max-width: 300px;
  }

  .film-card .video-thumb {
    max-height: none;
    margin-bottom: 0;
    width: 100%;
    aspect-ratio: 16/9;
  }

  .film-card .video-tag {
    display: block;
    font-size: 0.7rem;
    margin: 0.7rem 1rem 0.2rem;
    letter-spacing: 0.18em;
  }

  .film-card .video-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    font-weight: normal;
    margin: 0 1rem 0.3rem;
    text-decoration: none;
    color: var(--text);
  }

  .film-card .video-meta {
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0 1rem;
    padding-bottom: 0.9rem;
    color: var(--text-muted);
    text-align: center;
  }

  #film {
    position: relative;
  }

  #film .page-main {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .film-page {
    display: contents;
  }

  .film-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 10;
  }

  .film-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: var(--text-muted);
    opacity: 0.3;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s ease, border-color 0.3s ease;
  }

  .film-dot.active {
    opacity: 0.6;
    border-color: var(--gold);
    background: transparent;
  }

  .corner-banner {
    font-size: 0.55rem;
    padding: 3px 30px;
    bottom: 12px;
    left: -24px;
    border-width: 1px;
  }

  .page-main { padding: 2.5rem 1.5rem 4rem; }

  #leistungen { padding-bottom: 2.5rem; }
  #leistungen .page-main { padding-top: 0; padding-bottom: 5rem; }

  :root {
    --footer-height: 28px;
  }

  /* Sektionen: exakte Viewport-Höhe minus Header UND Footer */
  .section-wrapper {
    height: calc(100dvh - var(--header-height) - var(--footer-height));
    min-height: 0;
    max-height: calc(100dvh - var(--header-height) - var(--footer-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }

  #film,
  #audio,
  #impressum {
    overflow-y: hidden;
  }

  #kontakt {
    padding-top: 2rem;
  }

  #datenschutz {
    overflow-y: auto;
    justify-content: flex-start;
  }

  .site-footer {
    padding: 0.35rem 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }
}

/* ── Querformat (Handy): Snap aus, freies Scrollen ── */
@media (orientation: landscape) and (max-height: 500px) {
  .section-wrapper {
    height: auto;
    min-height: calc(100dvh - var(--header-height) - var(--footer-height));
    max-height: none;
    overflow-y: visible;
  }

  /* Footer im Landscape: relativ statt fixed, immer sichtbar */
  .site-footer {
    position: relative;
    z-index: 1;
  }

  /* Video-Overlay: Vollbild im Querformat */
  .video-overlay.active .overlay-content {
    width: 100vw !important;
    height: 100vh !important;
    left: 0 !important;
    top: 0 !important;
    aspect-ratio: auto !important;
    background: #000;
  }

  .overlay-close {
    top: 8px;
    right: 12px;
    font-size: 2rem;
  }

  /* Landscape: Carousel deaktivieren, Grid wiederherstellen */
  .video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow-x: visible;
    scroll-snap-type: none;
    gap: 0.8rem;
  }

  .video-item {
    flex: unset;
    min-width: unset;
    scroll-snap-align: unset;
    padding: 0;
    display: block;
  }

  .film-card {
    display: contents;
  }

  .film-dots {
    display: none;
  }
}

/* ── Desktop: kleinere Fenster (Überschriften-Schutz) ── */
@media (min-width: 769px) and (max-width: 1100px) {
  .services-grid {
    gap: 1.5rem 3rem;
  }

  .service-name {
    font-size: 1.4rem;
  }

  .hero-nav {
    gap: 0.8rem 2rem;
  }

  .hero-nav a {
    font-size: 1.3rem;
  }

}

@media (min-width: 769px) and (max-height: 700px) {
  /* Kleine Desktop-Fenster: Sektionen passen sich an */
  .section-wrapper {
    min-height: auto;
  }

  .hero {
    padding-bottom: 10vh;
  }

  .hero-band {
    padding: 2.5rem 2rem 3rem;
  }

  .audio-section {
    min-height: 40vh;
    padding: 2rem 2rem;
  }
}

/* ── Desktop-only: Hintergrund-Textur (Mobile deaktiviert) ── */
@media (max-width: 768px) {
  .hero-band::before {
    display: none;
  }
}
