/* Casula Sound Minimal — statische Version. Schwarz auf Weiss, reduziert. */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

:root {
  --black: #0a0a0a;
  --white: #fbfbfa;
  --gray: #8a8a8a;
  --line: #e4e4e2;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --gutter: clamp(24px, 6vw, 96px);
}

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

/* Header */
.site-header {
  padding: 48px var(--gutter) 24px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}
.site-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.01em;
}
.site-title a:hover { opacity: 0.6; }
.primary-nav ul { display: flex; gap: 28px; flex-wrap: wrap; }
.primary-nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  transition: color 0.2s ease;
}
.primary-nav a:hover,
.primary-nav .current-menu-item a { color: var(--black); }

/* Projekt-Liste */
.project-list { padding: 40px var(--gutter) 100px; }
.project-list-intro { max-width: 560px; margin: 0 0 56px; font-size: 15px; color: var(--gray); }
.project-row { display: block; padding: 34px 0; border-bottom: 1px solid var(--line); }
.project-row-inner { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; }
.project-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
  transition: text-shadow 0.4s ease, letter-spacing 0.4s ease;
}
.project-row:hover .project-title {
  text-shadow: 0 0 18px rgba(10, 10, 10, 0.35);
  letter-spacing: 0.01em;
}
.project-meta { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); white-space: nowrap; }
.project-empty { padding: 60px 0; color: var(--gray); font-size: 15px; max-width: 480px; }

/* Einzelnes Projekt */
.project-single { padding: 40px var(--gutter) 120px; }
.back-link { display: inline-block; margin-bottom: 40px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); }
.back-link:hover { color: var(--black); }
.project-single-header { margin-bottom: 40px; }
.project-single-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(32px, 6vw, 64px); line-height: 1.05; margin-bottom: 12px; }
.project-single-meta { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); }

.project-content { max-width: 780px; font-size: 17px; }
.project-content p { margin-bottom: 20px; }
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  margin-bottom: 40px;
  background: #111;
}
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.project-nav {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.project-nav a:hover { color: var(--black); }

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 32px var(--gutter) 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--gray);
}
.site-footer a:hover { color: var(--black); }

@media (max-width: 640px) {
  .site-header { flex-direction: column; align-items: flex-start; }
  .project-row-inner { flex-direction: column; gap: 6px; }
}
