/* ====================================================================
   TOKENS
   ==================================================================== */
:root {
  --bg:        #fbfaf7;
  --bg-alt:    #f1ece3;
  --ink:       #1a1a1a;
  --ink-2:     #3d3a35;
  --ink-mute:  #6d675e;
  --line:      #d9d2c5;
  --on-dark:   #ffffff;
  --on-dark-m: rgba(255,255,255,0.72);
  --accent:    #1a1a1a;
  --overlay:   rgba(0,0,0,0.42);
  --max:       1240px;
  --gutter:    clamp(20px, 4vw, 56px);
  --ease:      cubic-bezier(.2,.7,.2,1);
  --font-head: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

/* ====================================================================
   RESET & BASE
   ==================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0;
}
h1 { font-size: clamp(40px, 5.5vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ====================================================================
   ANNOUNCEMENT BAR
   ==================================================================== */
.announcement {
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 10px var(--gutter);
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.announcement a {
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.announcement a:hover { border-bottom-color: #fff; }
.announcement .dot { color: rgba(255,255,255,0.4); }

/* ====================================================================
   HEADER
   ==================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #1a3f7a;
  border-bottom: 1px solid transparent;
  transition: border-color .4s, box-shadow .4s;
}
.site-header.stuck {
  border-bottom-color: rgba(255,255,255,0.15);
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 44px;
  width: auto;
}
.nav {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0; margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav a {
  padding: 6px 0;
  position: relative;
  color: rgba(255,255,255,0.82);
  transition: color .3s;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 0;
  height: 1px;
  background: #fff;
  transition: left .3s var(--ease), right .3s var(--ease);
}
.nav a:hover::after { left: 0; right: 0; }

.burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 22px; height: 1px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 40;
  padding: 100px var(--gutter) 40px;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

/* ====================================================================
   SECTION: image-background (full bleed)
   ==================================================================== */
.section-image {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark);
  overflow: hidden;
  padding: 120px var(--gutter);
}
.section-image .bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.section-image .bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.section-image .bg::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--overlay);
}
.section-image .inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.section-image h1, .section-image h2, .section-image h3 { color: var(--on-dark); }
.section-image .eyebrow { color: var(--on-dark-m); }

/* ====================================================================
   SECTION: plain light
   ==================================================================== */
.section-light {
  padding: clamp(72px, 10vw, 140px) var(--gutter);
}
.section-light.alt { background: var(--bg-alt); }
.section-light .inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  min-height: 100vh;
}
.hero-inner {
  text-align: center;
  padding-top: 80px;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  max-width: 18ch;
  margin: 0 auto 28px;
}
.hero-sub {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--on-dark-m);
  font-weight: 400;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-m);
  z-index: 2;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: var(--on-dark-m);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ====================================================================
   SERVICES
   ==================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
  margin-top: 60px;
}
.service {
  text-align: center;
}
.service h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  margin-bottom: 20px;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--bg);
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service:hover .service-img img { transform: scale(1.04); }
.service ul {
  list-style: none;
  padding: 0; margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.75;
  text-align: left;
  display: inline-block;
}
.service ul li {
  padding: 2px 0;
}
.service p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0;
  text-align: left;
}

/* ====================================================================
   DREAM TEAM
   ==================================================================== */
.team-head {
  text-align: center;
  margin: 120px 0 60px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}
.member {
  text-align: center;
}
.member-img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--bg);
}
.member-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 1s var(--ease), filter .5s;
}
.member:hover .member-img img { transform: scale(1.04); filter: saturate(1.1); }
.member-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.member-name em {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 17px;
}
.member ul {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.9;
}
.btn-ghost {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  transition: background .3s, color .3s;
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ====================================================================
   MUSIC (Hörprobe)
   ==================================================================== */
.music .inner {
  text-align: center;
}
.music h3 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  font-style: italic;
  max-width: 20ch;
  margin: 0 auto 60px;
}
.tracks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}
.track {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  transition: background .3s, border-color .3s;
}
.track:hover {
  background: rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.35);
}
.track.playing {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.track-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s;
}
.track:hover .track-btn,
.track.playing .track-btn { background: #fff; color: #111; }
.track-btn svg { width: 14px; height: 14px; }
.track-info { min-width: 0; flex: 1; }
.track-title {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-author {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 13px;
  color: var(--on-dark-m);
}

/* ====================================================================
   INSTAGRAM
   ==================================================================== */
.ig-head {
  text-align: center;
  margin-bottom: 12px;
}
.ig-head h1 {
  font-weight: 400;
  margin-bottom: 16px;
}
.ig-head h1 .handle {
  font-style: italic;
  color: var(--ink-mute);
}
.ig-intro {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 50px;
  color: var(--ink-2);
  font-size: 15px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
}
.ig-tile {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
  display: block;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s;
}
.ig-tile:hover::after { background: rgba(0,0,0,0.2); }
.ig-tile .play-ind {
  position: absolute;
  top: 10px; right: 10px;
  width: 20px; height: 20px;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
  z-index: 2;
}
.ig-follow {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ====================================================================
   VIDEOS
   ==================================================================== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.video-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
  background: #000;
}
.video-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), opacity .3s;
}
.video-card:hover img { transform: scale(1.03); opacity: 0.88; }
.video-card .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .3s, transform .3s var(--ease);
}
.video-card:hover .play {
  background: rgba(255,255,255,0.95);
  color: #111;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ====================================================================
   KONTAKT
   ==================================================================== */
.kontakt-head {
  text-align: center;
  margin-bottom: 60px;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-field {
  margin-bottom: 26px;
}
.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.form-field .hint {
  font-size: 12px;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 4px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  border-radius: 0;
  transition: border-color .3s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--ink);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-submit {
  display: inline-block;
  padding: 16px 40px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background .3s, transform .2s;
}
.form-submit:hover { background: #333; }
.form-submit:active { transform: translateY(1px); }
.form-submit:disabled { opacity: 0.6; cursor: wait; }

.form-msg {
  padding: 20px;
  margin-top: 16px;
  font-size: 14px;
  display: none;
}
.form-msg.visible { display: block; }
.form-msg.success { background: #eef5ec; border-left: 3px solid #4a7a3f; color: #2d4a27; }
.form-msg.error   { background: #f5ecec; border-left: 3px solid #7a3f3f; color: #4a2727; }

.kontakt-side {
  text-align: center;
}
.kontakt-side-img {
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 24px;
}
.kontakt-side-img img { width: 100%; height: 100%; object-fit: cover; }
.kontakt-side p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.kontakt-logo {
  max-width: 180px;
  margin: 24px auto 20px;
  opacity: 0.85;
}
.ig-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  transition: background .3s, color .3s;
}
.ig-circle:hover { background: var(--ink); color: var(--bg); }

/* ====================================================================
   REZENSIONEN (Slideshow)
   ==================================================================== */
.reviews .inner { text-align: center; }
.reviews h1 { color: var(--on-dark); margin-bottom: 40px; }
.slideshow {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.slideshow-track {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.15);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #fff;
}
.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background .3s, transform .3s;
}
.slideshow-btn:hover {
  background: rgba(255,255,255,0.95);
  color: #111;
  transform: translateY(-50%) scale(1.05);
}
.slideshow-prev { left: -24px; }
.slideshow-next { right: -24px; }
.slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.slideshow-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background .3s, transform .3s;
}
.slideshow-dots button.active {
  background: #fff;
  transform: scale(1.3);
}
.copyright {
  text-align: center;
  font-size: 12px;
  color: var(--on-dark-m);
  margin-top: 50px;
  letter-spacing: 0.1em;
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.footer {
  background: #111;
  color: #c6c0b5;
  padding: 60px var(--gutter) 40px;
  font-size: 13px;
}
.footer .inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.back-top {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c6c0b5;
  border-bottom: 1px solid #3a342b;
  padding-bottom: 4px;
  transition: color .3s, border-color .3s;
}
.back-top:hover { color: #fff; border-color: #fff; }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a241c;
}
.footer-nav a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c6c0b5;
  transition: color .3s;
}
.footer-nav a:hover { color: #fff; }
.footer-info {
  text-align: center;
  font-size: 12px;
  line-height: 1.9;
  margin-bottom: 32px;
  color: #a59e92;
}
.footer-info a { color: #c6c0b5; }
.footer-info a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid #2a241c;
}
.footer-grid div:first-child { text-align: right; }
.footer-grid p {
  margin: 0;
  line-height: 1.9;
  color: #a59e92;
}

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 960px) {
  .nav { display: none; }
  .burger { display: flex; }
  .services-grid, .team-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .tracks { grid-template-columns: repeat(2, 1fr); }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-side { text-align: center; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid div:first-child { text-align: center; }
  .slideshow-prev { left: 8px; }
  .slideshow-next { right: 8px; }
}
@media (max-width: 560px) {
  .announcement { gap: 14px; font-size: 11px; padding: 8px 16px; }
  .announcement .dot { display: none; }
  .services-grid, .team-grid, .videos-grid { grid-template-columns: 1fr; gap: 40px; }
  .tracks { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .brand img { height: 38px; }
  .section-image { padding: 100px var(--gutter); min-height: 80vh; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
