:root{
  --bg:#0f1115;
  --text:#e9edf5;
  --muted:#a8b0c2;

  /* subtle UI lines */
  --line: rgba(255,255,255,.07);

  --card: rgba(255,255,255,.03);
  --card2: rgba(255,255,255,.02);

  --accent:#ff7b6e;
  --accent2:#ff9a90;

  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --shadowSoft: 0 10px 30px rgba(0,0,0,.18);

  --radius: 18px;
  --radiusSm: 14px;

  --max: 1440px;
  --padX: 40px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  line-height: 1.6;

  background: var(--bg);

  position: relative;
  overflow-x: hidden;

  min-height: 100vh;
  display:flex;
  flex-direction: column;
}

/* --- Ambient glow (top only, Safari-safe) --- */
body::before{
  content:"";
  position: fixed;
  inset: -30vmax;
  pointer-events: none;
  z-index: -1;

  background:
    radial-gradient(70vmax 55vmax at 18% -10%, rgba(255,123,110,.11), transparent 78%),
    radial-gradient(65vmax 50vmax at 92% 0%,  rgba(255,154,144,.08), transparent 80%);

  filter: blur(160px);
  opacity: .9;
  transform: translateZ(0);

  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 30%, transparent 56%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 30%, transparent 56%);
}

main{ flex:1; }

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
}

/* ---------- LAYOUT ---------- */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--padX);
}

@media (max-width: 700px){
  :root{ --padX: 22px; }
}

/* ---------- NAV ---------- */
.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(15,17,21,.60);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 16px 0;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: .3px;
}

.badge{
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 24px rgba(255,123,110,.22);
}

.menu{
  display:flex;
  align-items:center;
  gap: 18px;
}

.menu a{
  font-size: 14px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  transition: .2s;
}

.menu a:hover{
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.menu a.active{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.cta{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Mobile menu button */
.menu-btn{
  display:none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}
.menu-btn:hover{ background: rgba(255,255,255,.05); }

@media (max-width: 860px){
  .menu-btn{
    display:inline-flex;
    align-items:center;
    gap: 10px;
  }

  .menu{
    position: absolute;
    right: 0;
    top: 62px;
    background: rgba(15,17,21,.92);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    display: none;
    flex-direction: column;
    min-width: 220px;
    box-shadow: var(--shadow);
  }

  .menu[data-open="1"]{ display:flex; }
}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight: 720;
  font-size: 14px;
  transition: .18s ease;
  cursor: pointer;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.05);
}

.btn.primary{
  border: none;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #1a1010;
  box-shadow: 0 18px 40px rgba(255,123,110,.16);
}
.btn.primary:hover{ filter: saturate(1.06); }

/* ---------- HERO ---------- */
.hero{
  padding: 92px 0 22px; /* bottom is compact by default (inner pages) */
}

/* Home gets the “bigger breath” (it’s the only hero containing .hero-layout) */
.hero:has(.hero-layout){
  padding-bottom: 54px;
}

@media (max-width: 1100px){
  .hero{ padding: 56px 0 18px; }
  .hero:has(.hero-layout){ padding-bottom: 36px; }
}
@media (max-width: 700px){
  .hero{ padding: 44px 0 16px; }
  .hero:has(.hero-layout){ padding-bottom: 28px; }
}

.kicker{
  color: var(--muted);
  font-weight: 650;
  letter-spacing: .3px;
  font-size: 13px;
  display:flex;
  gap: 10px;
  align-items:center;
}

.kicker .dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,123,110,.10);
}

.h1{
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.03;
  margin: 18px 0 22px;
  letter-spacing: -0.8px;
}

.sub{
  color: var(--muted);
  font-size: 16px;
  max-width: 62ch;
  margin: 0 0 18px; /* slightly tighter base */
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
}

.hero-layout{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 920px){
  .hero-layout{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* First block closer to header */
main > .hero:first-child,
main > .section:first-child{
  padding-top: 48px;
}
@media (max-width: 1200px){
  main > .hero:first-child,
  main > .section:first-child{
    padding-top: 36px;
  }
}
@media (max-width: 700px){
  main > .hero:first-child,
  main > .section:first-child{
    padding-top: 28px;
  }
}

/* Pull first content section closer to hero on inner pages */
main > .hero + .section{
  padding-top: 12px;
}
@media (max-width: 1200px){
  main > .hero + .section{ padding-top: 10px; }
}
@media (max-width: 700px){
  main > .hero + .section{ padding-top: 8px; }
}

/* ---------- CARDS / PANEL ---------- */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadowSoft);
}

@media (min-width: 1400px){
  .card{ padding: 26px; }
}

.card h3{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.card p{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}
.card p:last-child{ margin-bottom: 0; }

.card.hover:hover{
  transform: translateY(-2px);
  transition: .18s ease;
  background: rgba(255,255,255,.04);
}

/* Home aside panel */
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1400px){
  .panel{ padding: 28px; }
}

.panel::before{
  content:"";
  position:absolute;
  inset: -60px -120px auto auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 30% 30%, rgba(255,123,110,.20), transparent 60%);
  transform: rotate(15deg);
}

.panel h3{
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: -0.2px;
}

/* ---------- LIST ---------- */
.list{
  margin: 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 11px;
}

.list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  color: var(--muted);
  font-size: 14px;
}

.check{
  width:18px;
  height:18px;
  border-radius: 8px;
  background: rgba(255,123,110,.14);
  border: 1px solid rgba(255,123,110,.24);
  flex: 0 0 auto;
  margin-top: 2px;
  position: relative;
}

.check:after{
  content:"";
  position:absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(40deg);
}

/* ---------- SECTIONS / GRIDS ---------- */
.section{
  padding: 56px 0;
}

@media (max-width: 1200px){
  .section{ padding: 32px 0; }
}
@media (max-width: 900px){
  .section{ padding: 28px 0; }
}
@media (min-width: 1400px){
  .section{ padding: 64px 0; }
}

.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 22px;
  margin-bottom: 18px;
}

@media (max-width: 1100px){
  .section-title{ margin-bottom: 10px; }
}

.section-title h2{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.35px;
}

.section-title p{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 72ch;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 920px){
  .grid-3{ grid-template-columns: 1fr; gap: 14px; }
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch; /* important for equal-height cards */
}

@media (max-width: 920px){
  .split{ grid-template-columns: 1fr; gap: 14px; }
}

/* ✅ ABOUT FIX / GENERAL FIX:
   When split cards stretch, media should fill the card (no “image only at top”). */
.split > .card{
  display:flex;
  flex-direction: column;
}
.split > .card .media{
  flex: 1;
  min-height: 0;
}
.split > .card .media img,
.split > .card .media iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display:block;
}

/* ---------- PILLS ---------- */
.pills{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill{
  border: 1px solid var(--line);
  background: var(--card2);
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
}

/* Pills bewusst tiefer platzieren (About/Sound cards) */
.pills-offset{ margin-top: 28px; }
@media (min-width: 1200px){
  .pills-offset{ margin-top: 36px; }
}

/* ---------- MEDIA ---------- */
.media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: var(--card2);
}

/* ---------- AUDIO ---------- */
.audio{
  width:100%;
  margin-top: 10px;
  filter: saturate(.95);
}

/* ---------- FORMS ---------- */
.form{ display:grid; gap: 12px; }
.field{ display:grid; gap: 7px; }

label{
  color: var(--muted);
  font-size: 13px;
}

input, textarea{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}

textarea{
  min-height: 150px;
  resize: vertical;
}

input:focus, textarea:focus{
  border-color: rgba(255,123,110,.45);
  box-shadow: 0 0 0 4px rgba(255,123,110,.10);
}

.form-status{
  display:none;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-size: 14px;
}

.notice{
  font-size: 13px;
  color: var(--muted);
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.02);
  padding: 12px 14px;
  border-radius: var(--radius);
}

/* ---------- FOOTER ---------- */
.footer{
  margin-top: 30px;
  padding: 22px 0 38px;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); }

/* ---------- Studio photo (B/W -> color on hover) ---------- */
.studio-shot{
  max-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card2);
}

.studio-shot img{
  width: 100% !important;
  height: 420px !important;
  object-fit: cover !important;
  object-position: center 75% !important;

  filter: grayscale(100%) contrast(1.05) brightness(0.95);
  transition: filter 0.6s ease;

  display:block;
}

.studio-shot:hover img{
  filter: grayscale(0%) contrast(1) brightness(1);
}

@media (min-width: 1400px){
  .studio-shot img{ height: 480px !important; }
}
@media (max-width: 700px){
  .studio-shot img{ height: 300px !important; }
}

/* ---------- Google Maps embed (calm -> color on hover) ---------- */
.media iframe{
  width:100%;
  display:block;
  filter: grayscale(100%) contrast(1.05) brightness(0.9);
  transition: filter .4s ease;
}

.media:hover iframe{
  filter: grayscale(0%) contrast(1) brightness(1);
}

audio::-webkit-media-controls-download-button { display: none; }
audio::-webkit-media-controls-enclosure { overflow: hidden; }



