/* ============================================================
   LOOK BUSY – Audio Engineering  |  Design System
   ============================================================ */

/* ---------- Local fonts ---------- */
@import url('../fonts/poppins/poppins.css');
@import url('../fonts/inter/inter.css');

/* ---------- Tokens ---------- */
:root {
  --bg:          #09090b;
  --bg-card:     rgba(255,255,255,0.03);
  --bg-card-2:   rgba(255,255,255,0.06);
  --border:      rgba(255,255,255,0.08);
  --border-2:    rgba(255,255,255,0.14);
  --text:        #ffffff;
  --text-muted:  rgba(255,255,255,0.5);
  --purple:      #7B2FBE;
  --pink:        #F72585;
  --gradient:    linear-gradient(135deg, #7B2FBE 0%, #b92aa2 50%, #F72585 100%);
  --font-d:      'Poppins', sans-serif;
  --font-b:      'Inter', sans-serif;
  --nav-h:       72px;
  --radius:      2px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
.display { font-family: var(--font-d); }
h1, h2, h3, h4 { font-family: var(--font-d); font-weight: 900; line-height: 1.05; letter-spacing: -0.02em; }

/* ---------- Layout ---------- */
.container { width: min(var(--container-width, 1200px), 100% - 3rem); margin-inline: auto; }

section { padding-block: 5rem; }

/* ---------- Gradient Utility ---------- */
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2rem;
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  border: none;
}
.btn-primary:hover { opacity: .85; transform: scale(1.03); box-shadow: 0 0 30px rgba(247,37,133,.35); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--pink);
}
.btn-outline:hover { background: rgba(247,37,133,.1); box-shadow: 0 0 20px rgba(247,37,133,.2); }

.btn-outline-purple {
  background: transparent;
  color: #fff;
  border: 1px solid var(--purple);
}
.btn-outline-purple:hover { background: rgba(123,47,190,.15); }

/* ---------- Card ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.card:hover { border-color: var(--border-2); }

/* ---------- Scroll Animations ---------- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: none; }

.fade-in { opacity: 0; transition: opacity .7s ease; }
.fade-in.visible { opacity: 1; }

[class*="fade-"].delay-1 { transition-delay: .1s; }
[class*="fade-"].delay-2 { transition-delay: .2s; }
[class*="fade-"].delay-3 { transition-delay: .3s; }
[class*="fade-"].delay-4 { transition-delay: .4s; }
[class*="fade-"].delay-5 { transition-delay: .5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  padding-block: 1.25rem;
  transition: background var(--transition), padding var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(9,9,11,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding-block: .85rem;
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  z-index: 101;
}
.logo-img { height: 2.4rem; width: auto; }
.logo-text {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 480px) { .logo-text { display: block; } }

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: .25rem;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gradient);
  transition: width var(--transition);
  border-radius: 1px;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: #fff; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  z-index: 101;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(9,9,11,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 99;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-link {
  font-family: var(--font-d);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-link:hover, .mobile-link.active {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: var(--nav-h);
  box-sizing: border-box;
}

/* Subtle drum-kit background */
.hero-drum {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-drum img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .07;
  filter: grayscale(60%);
}

/* Ghost wordmark backdrop */
.hero-wordmark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.hero-wordmark span {
  font-family: var(--font-d);
  font-size: clamp(14vw, 18vw, 22vw);
  font-weight: 900;
  letter-spacing: -.05em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.045);
  white-space: nowrap;
  line-height: 1;
}

/* Ambient glow blobs */
.hero-glow {
  position: absolute;
  width: 60vw; height: 60vh;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(123,47,190,.13) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 40vw; height: 40vh;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(247,37,133,.09) 0%, transparent 70%);
  top: 20%; right: 5%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: 1.5rem;
  max-width: 820px;
}

/* Eyebrow rule */
.hero-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.hero-rule hr {
  width: 3rem;
  border: none;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-rule span {
  font-family: var(--font-d);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.hero-title {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.75rem;
}
.hero-title em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.38);
  line-height: 1.7;
  max-width: 32rem;
  margin: 0 auto 3rem;
}

/* Hero entrance animation */
.hero-content { animation: heroIn .9s ease both; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Sub-hero page header */
.page-hero {
  position: relative;
  height: clamp(320px, 45vh, 520px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: grayscale(10%);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(9,9,11,.55) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding-inline: 1.5rem;
}

.page-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-inline: auto;
  letter-spacing: .03em;
}

/* Inner page header (no hero image) */
.inner-header {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 1rem;
  text-align: center;
}
.inner-header .page-title { margin-bottom: 1rem; }
.inner-header .page-subtitle { margin-bottom: 0; }

/* ============================================================
   HOME – SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-color: rgba(255,255,255,.05);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: rgba(247,37,133,.5);
  transform: translateY(-8px);
  box-shadow: 0 0 25px 5px rgba(247,37,133,.15), 0 0 45px 5px rgba(123,47,190,.1);
}

.service-icon {
  width: 3.5rem; height: 3.5rem;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--purple);
  transition: color var(--transition), transform var(--transition);
}
.service-card:hover .service-icon { color: var(--pink); transform: scale(1.1); }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: .6rem;
  text-transform: uppercase;
}
.service-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   HOME – STUDIO TEASER
   ============================================================ */
.studio-teaser {
  position: relative;
  overflow: hidden;
}
.studio-teaser-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.studio-teaser-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .32;
  mix-blend-mode: luminosity;
}
.studio-teaser-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,.90);
  backdrop-filter: blur(2px);
}
.studio-teaser .container { position: relative; z-index: 1; }

.teaser-box {
  max-width: 768px;
  margin-inline: auto;
  text-align: center;
  padding: 4rem 3rem;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
}
.teaser-box h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); text-transform: uppercase; margin-bottom: 1rem; }
.teaser-box p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }

/* ============================================================
   HOME – WELCOME
   ============================================================ */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) { .welcome-grid { grid-template-columns: 1fr 1fr; } }

.welcome-img-wrap {
  position: relative;
}
.welcome-img-wrap .img-glow {
  position: absolute;
  inset: -1rem;
  background: var(--gradient);
  opacity: .20;
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}
.welcome-img-wrap img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  display: block;
}

.welcome-text h2 { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; margin-bottom: 1rem; }
.welcome-text .accent-bar {
  width: 3rem; height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.welcome-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }

/* ============================================================
   STUDIO – TABS
   ============================================================ */
/* ============================================================
   STUDIO – PHOTO CARDS (D layout)
   ============================================================ */
.studio-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.studio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: 380px;
  transition: border-color var(--transition);
}
.studio-card:hover { border-color: rgba(247,37,133,.25); }

.studio-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(.45) saturate(1.1);
  transition: transform .6s, filter .4s;
}
.studio-card:hover > img {
  transform: scale(1.03);
  filter: brightness(.38) saturate(1.2);
}

.studio-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(9,9,11,.95) 0%,
    rgba(9,9,11,.6) 45%,
    rgba(9,9,11,.1) 100%);
}

.studio-card-content {
  position: absolute; left: 0; top: 0; bottom: 0;
  z-index: 2;
  padding: 2.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 580px;
}

.studio-card-eyebrow {
  font-family: var(--font-d);
  font-size: .58rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: .75rem;
  display: flex; align-items: center; gap: .6rem;
}
.studio-card-eyebrow::before {
  content: ''; display: block;
  width: 1.25rem; height: 1px;
  background: var(--gradient);
}

.studio-card-title {
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -.02em; line-height: 1;
  margin-bottom: 1.4rem;
}

.studio-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: .5rem;
}
.studio-bullets li {
  display: flex; align-items: baseline; gap: .65rem;
  font-size: .85rem; color: var(--text-muted); line-height: 1.5;
}
.studio-bullets li::before {
  content: ''; display: block; flex-shrink: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gradient);
  margin-top: .4em;
}

.studio-card-badge {
  position: absolute; right: 2rem; bottom: 2rem;
  z-index: 2; display: flex; gap: 1.5rem;
}
.studio-badge-item {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: .1rem;
}
.studio-badge-num {
  font-family: var(--font-d);
  font-size: 1.4rem; font-weight: 900; line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.studio-badge-label {
  font-family: var(--font-d);
  font-size: .52rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.25);
}

@media (max-width: 640px) {
  .studio-card { height: 320px; }
  .studio-card-content { padding: 1.75rem; max-width: 100%; }
  .studio-card-badge { right: 1.25rem; bottom: 1.25rem; }
}

/* ============================================================
   STUDIO – EQUIPMENT
   ============================================================ */
.divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.10), transparent);
}

.equipment-section { background: rgba(255,255,255,.015); }

.equipment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin-inline: auto;
}
@media (min-width: 640px) { .equipment-grid { grid-template-columns: 1fr 1fr; } }

.equipment-card {
  padding: 2rem;
  border-color: rgba(255,255,255,.05);
}
.equipment-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--purple);
}
.equipment-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #fff;
  text-transform: uppercase;
}
.equipment-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 2;
}

/* Studio CTA gradient overlay */
.studio-cta {
  position: relative;
}
.studio-cta-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: .10;
  pointer-events: none;
}

/* ============================================================
   REFERENZEN – CARDS + BADGES
   ============================================================ */

/* ── Reference act cards ─────────────────────────── */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 860px) { .ref-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px)  { .ref-grid { grid-template-columns: 1fr; } }

.ref-card {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.ref-card:hover { border-color: rgba(247,37,133,.5); transform: translateY(-4px); }

.ref-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: brightness(.8);
}
.ref-card:hover .ref-card-img { transform: scale(1.05); filter: brightness(.65); }

.ref-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem .9rem;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.ref-card-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ref-card-name {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.ref-card-name svg { opacity: 0; transition: opacity var(--transition); flex-shrink: 0; }
.ref-card:hover .ref-card-name svg { opacity: 1; }

/* ── Reference name badges ───────────────────────── */
.ref-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}
.ref-tag {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .45rem 1rem;
  text-decoration: none;
  transition: color var(--transition), border-color var(--transition);
}
.ref-tag:hover { color: #fff; border-color: rgba(123,47,190,.5); }

/* ============================================================
   PREISE
   ============================================================ */
.preise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 960px;
  margin-inline: auto;
}
@media (min-width: 768px) { .preise-grid { grid-template-columns: 1fr 1fr; } }

.preise-card { padding: 2.5rem; }
.preise-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.preise-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.preise-icon.purple { background: rgba(123,47,190,.2); color: var(--purple); }
.preise-icon.pink   { background: rgba(247,37,133,.2); color: var(--pink); }
.preise-card h2 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.price-row {
  display: flex;
  flex-direction: column;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.price-row:last-child { border-bottom: none; padding-bottom: 0; }
.price-row:first-child { padding-top: 0; }

.price-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: .35rem;
}
.price-row h3 { font-weight: 700; font-size: 1rem; letter-spacing: .04em; }
.price-row:hover h3 { color: var(--purple); }
.price-value {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink);
  white-space: nowrap;
}
.price-unit { font-size: .75rem; font-family: var(--font-b); color: var(--text-muted); font-weight: 400; }
.price-row p { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }
.preise-note {
  font-size: .875rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-info { padding: 2rem; }
.kontakt-info h2 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 1.5rem; }
.info-row {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.info-row-icon { color: var(--purple); margin-top: .05rem; flex-shrink: 0; }
.info-row a { color: var(--purple); transition: color var(--transition); }
.info-row a:hover { color: var(--pink); }

/* ============================================================
   IMPRESSUM
   ============================================================ */
.prose {
  max-width: 720px;
  margin-inline: auto;
  color: var(--text-muted);
  line-height: 1.8;
}
.prose h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: .75rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: .9rem; }
.prose a { color: var(--purple); transition: color var(--transition); }
.prose a:hover { color: var(--pink); }
.prose strong { color: #fff; font-weight: 600; }

/* ============================================================
   QUOTE / CTA BLOCK
   ============================================================ */
.quote-block {
  text-align: center;
  padding: 4rem 2.5rem;
  max-width: 800px;
  margin-inline: auto;
  backdrop-filter: blur(8px);
}
.quote-block p { font-size: clamp(1.1rem, 2.5vw, 1.5rem); line-height: 1.6; margin-bottom: 2rem; font-family: var(--font-d); font-weight: 700; letter-spacing: .04em; color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #08080a;
  border-top: 1px solid var(--border);
  position: relative;
  padding-top: 3rem;
}
.footer-gradient {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: .25;
}

/* Centered brand row */
.footer-brand-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding-bottom: 3rem;
}
.footer-brand-text {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
}
.footer-brand-sub {
  font-family: var(--font-d);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-top: .2rem;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 480px) {
  section { padding-block: 3.5rem; }
  .hero-title { font-size: 2.8rem; }
  .tabs-bar { grid-template-columns: 1fr; }
  .tab-btn { border-right: none; border-bottom: 1px solid var(--border); }
  .tab-btn:last-child { border-bottom: none; }
  .video-grid { grid-template-columns: 1fr; }
}
