@import url("assets/fonts/fonts.css");

:root {
  --bg: #F5F4F2;
  --ink: #262625;
  --white: #FFFFFF;
  --line: #E2E0DC;
  --accent: #EE8F12;
  --accent-dark: #D97F0A;
  --graphite: #2E2E2D;
  --muted: #77766F;
  --serif: 'Source Serif 4', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --pad-x: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Saira', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent-dark); }
input, textarea, select, button { font: inherit; }
img { max-width: 100%; }

.page { min-height: 100vh; display: flex; flex-direction: column; }
.container { max-width: 1240px; margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { scroll-margin-top: 80px; }
.section-pad { padding-top: clamp(72px, 10vw, 140px); padding-bottom: clamp(72px, 10vw, 140px); }
.section-white { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-dark { background: var(--graphite); color: var(--bg); }
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

/* Dreieck aus dem Logo */
.tri { display: block; width: 0; height: 0; border-left-style: solid; border-right-style: solid; border-top-style: solid; border-left-color: transparent; border-right-color: transparent; border-top-color: var(--accent); }
.tri-sm { border-left-width: 11px; border-right-width: 11px; border-top-width: 19px; }
.tri-md { border-left-width: 14px; border-right-width: 14px; border-top-width: 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(245, 244, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { padding-top: 18px; padding-bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-top { font-weight: 300; font-size: 11px; letter-spacing: 0.42em; }
.brand-bottom { font-weight: 800; font-size: 13px; letter-spacing: 0.3em; margin-top: 3px; }
.main-nav { display: flex; gap: clamp(16px, 3vw, 36px); flex-wrap: wrap; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }
.main-nav .accent { color: var(--accent-dark); }

/* Hero */
.hero { background: var(--white); border-bottom: 1px solid var(--line); }
.hero-inner {
  padding-top: clamp(48px, 8vw, 110px); padding-bottom: clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-logo { width: min(100%, 720px); height: auto; display: block; margin: -6% 0 -4%; }
.hero-claim {
  margin: 28px 0 0; max-width: 560px;
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px); line-height: 1.5; color: #55544F; text-wrap: pretty;
}
.btn-row { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; justify-content: center; }

/* Buttons */
.btn {
  display: inline-block; padding: 16px 30px; border: 1px solid transparent; cursor: pointer;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  transition: background .15s, color .15s;
}
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--accent); color: var(--white); }
.btn-outline { border-color: var(--ink); }
.btn-accent { background: var(--accent); color: #1F1F1E; padding: 17px 34px; }
.btn-accent:hover { background: var(--bg); color: #1F1F1E; }
.btn[disabled] { opacity: .6; cursor: wait; }

/* Typo */
.eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent-dark); font-weight: 500; }
.eyebrow-light { color: var(--accent); }
.h2 { margin: 20px 0 0; font-weight: 300; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance; }
.h2 strong { font-weight: 700; }
.mb-56 { margin-bottom: 56px; }
.mb-48 { margin-bottom: 48px; }
.prose { font-family: var(--serif); font-size: 19px; line-height: 1.7; color: #43423F; font-weight: 300; display: flex; flex-direction: column; gap: 22px; text-wrap: pretty; }
.prose p { margin: 0; }

/* Platzhalter für Fotos */
.placeholder {
  display: flex; align-items: flex-end; padding: 20px;
  background: repeating-linear-gradient(135deg, #E8E6E2 0 10px, #EFEDE9 10px 20px);
}
.placeholder span { font-family: var(--mono); font-size: 12px; color: #8A8985; }
.placeholder-wide { width: 100%; aspect-ratio: 21 / 9; min-height: 260px; }
@media (max-width: 640px) { .placeholder-wide { aspect-ratio: auto; height: 260px; } }
.portrait { aspect-ratio: 3 / 4; padding: 14px; background: repeating-linear-gradient(135deg, #ECEAE6 0 10px, #F3F1EE 10px 20px); }
.portrait span { font-size: 11px; }

/* Besetzung */
.members { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: 32px 24px; }
.member { display: flex; flex-direction: column; gap: 16px; }
.member-meta { border-top: 1px solid var(--ink); padding-top: 14px; display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.member-name { font-size: 18px; font-weight: 500; }
.member-instr { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

/* Termine */
.gigs { display: flex; flex-direction: column; border-top: 1px solid var(--ink); }
.gig { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 8px 32px; padding: 28px 0; border-bottom: 1px solid #D9D7D2; align-items: baseline; }
.gig-date { display: flex; gap: 14px; align-items: baseline; }
.gig-day { font-size: 40px; font-weight: 200; line-height: 1; }
.gig-month { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.gig-title { font-size: 20px; font-weight: 500; }
.gig-place { font-family: var(--serif); font-size: 17px; color: #55544F; }
.gig-time { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* Kontakt / Anfrage */
.contact-lead { margin: 28px 0 0; max-width: 420px; font-family: var(--serif); font-weight: 300; font-size: 19px; line-height: 1.65; color: #C9C7C2; text-wrap: pretty; }
.contact-facts { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; color: #C9C7C2; }
.contact-facts li::before { content: ""; display: inline-block; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 9px solid var(--accent); margin-right: 12px; }
.contact-mail { margin-top: 36px; font-size: 16px; }
.contact-mail a { color: var(--bg); }
.contact-mail a:hover { color: var(--accent); }

.request-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 28px 24px; }
.field { display: flex; flex-direction: column; gap: 10px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: #A9A7A2; }
.field-full { grid-column: 1 / -1; }
.field input, .field textarea, .field select {
  background: transparent; border: 0; border-bottom: 1px solid #6A6964; border-radius: 0;
  color: var(--bg); padding: 10px 0; font-size: 17px; letter-spacing: 0; text-transform: none; outline: none;
}
.field select { background: var(--graphite); }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--accent); }
.field .dark-scheme { color-scheme: dark; }
.field input.invalid, .field textarea.invalid { border-bottom-color: #E0654F; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: #C9C7C2; }
.consent input { margin-top: 3px; accent-color: var(--accent); width: 18px; height: 18px; flex: none; }
.consent a { color: var(--accent); text-decoration: underline; }
.consent.invalid span { color: #F0A090; }

.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.form-footer { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.form-error { margin: 0; color: #F0A090; font-size: 15px; }

.sent-box { border: 1px solid #55544F; padding: 40px; display: flex; flex-direction: column; gap: 14px; justify-content: center; outline: none; }
.sent-box[hidden] { display: none; }
.sent-title { font-size: 26px; font-weight: 500; }
.sent-text { font-family: var(--serif); font-size: 18px; color: #C9C7C2; }
.link-btn { align-self: flex-start; margin-top: 12px; background: none; border: 0; padding: 0; color: var(--accent); cursor: pointer; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }

/* Footer */
.site-footer { background: var(--ink); color: #8A8985; border-top: 1px solid #3A3A39; margin-top: auto; }
.footer-inner { padding-top: 32px; padding-bottom: 32px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; letter-spacing: 0.12em; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: #8A8985; }
.footer-links a:hover { color: var(--accent); }

/* Rechtstexte */
.legal { max-width: 820px; }
.legal h1 { font-weight: 300; font-size: clamp(34px, 4.4vw, 52px); margin: 0 0 32px; }
.legal h2 { font-weight: 500; font-size: 20px; margin: 36px 0 12px; }
.legal p, .legal li { font-family: var(--serif); font-size: 18px; line-height: 1.65; color: #43423F; }
.legal .todo { background: #FFF1DC; padding: 2px 6px; }
