/* Schriften ---------------------------------------------------------------
   Selbst gehostet, keine Verbindung zu Google oder anderen Servern.
   Lora und Poppins stehen unter der SIL Open Font License, die Schreibschrift
   (TeX Gyre Chorus) unter der GUST Font License – beide frei verwendbar.
   Dateien liegen in assets/fonts/, Zeichensatz auf Westeuropa reduziert.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-400.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-500.woff") format("woff");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-italic-400.woff") format("woff");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.woff") format("woff");
  font-weight: 500 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff") format("woff");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Schreibschrift";
  src: url("../fonts/schreibschrift.woff") format("woff");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ==========================================================================
   BLÆCHgold – Stylesheet
   ========================================================================== */

:root {
  --papier: #faf8f4;
  --creme: #f2ece2;
  --sand: #ece5d7;
  --grau: #c2bfb8;
  --anthrazit: #2f2e2b;
  --ink: #3d3b3a;
  --gedaempft: #8a857c;
  --gold: #b48130;

  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --script: "Schreibschrift", "Lora", Georgia, cursive;

  --breite: 1320px;
  --rand: clamp(1.5rem, 5vw, 4rem);
  --luft: clamp(4.5rem, 9vw, 7.5rem);
  --radius: 26px;
  --radius-klein: 18px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -.01em;
  margin: 0 0 .55em;
  text-wrap: balance;
}
h2 { font-size: clamp(1.95rem, 3.9vw, 3.05rem); }
h3 { font-size: 1.1rem; }

p { margin: 0 0 1.2em; max-width: 58ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gedaempft);
  margin: 0 0 1.3rem;
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--anthrazit); color: #fff; padding: .7rem 1.1rem;
  font-family: var(--sans); font-size: .8rem;
}
.skip-link:focus { top: 1rem; }

/* Layout ------------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--breite); margin-inline: auto; padding-inline: var(--rand); }
.section { padding-block: var(--luft); }
.section--creme { background: var(--creme); }
.section--dunkel { background: var(--anthrazit); color: #e9e5dd; }
.section--dunkel h2, .section--dunkel h3 { color: #fff; }
.section--dunkel .eyebrow { color: rgba(233, 229, 221, .55); }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
  padding: 1.2rem var(--rand);
  transition: background-color .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 248, 244, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(61, 59, 58, .1);
  padding-block: .6rem;
}
.site-header__logo img { height: clamp(54px, 6vw, 76px); width: auto; transition: height .35s ease; }
.site-header.is-scrolled .site-header__logo img { height: 48px; }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2.2rem); justify-self: center; }
.nav a {
  font-size: .69rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase;
  text-decoration: none; padding-bottom: .35rem; border-bottom: 1px solid transparent; white-space: nowrap;
}
.nav a:hover, .nav a:focus-visible, .nav a[aria-current] { border-bottom-color: var(--gold); color: var(--gold); }

.kopf-sozial { display: flex; gap: .55rem; justify-self: end; list-style: none; margin: 0; padding: 0; }
.kopf-sozial a {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(61, 59, 58, .22);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.kopf-sozial a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; color: inherit; justify-self: end; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 1fr auto; }
  .kopf-sozial { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--papier); padding: 6.5rem var(--rand) 2.5rem;
    box-shadow: 0 14px 34px rgba(47, 46, 43, .16);
    transform: translateY(-102%); transition: transform .34s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0; text-transform: none; padding: .7rem 0; border: 0; width: 100%; }
}

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .9rem;
  font-family: var(--sans); font-size: .7rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  padding: 1rem 1.8rem; border: 1px solid var(--gold); background: var(--gold); color: #fff;
  cursor: pointer; transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover, .btn:focus-visible { background: #9a6c25; border-color: #9a6c25; }
.btn--linie { background: transparent; color: currentColor; border-color: currentColor; }
.btn--linie:hover, .btn--linie:focus-visible { background: currentColor; }
.section--dunkel .btn--linie:hover { background: #fff; border-color: #fff; color: var(--anthrazit); }

/* Hero -------------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: start; isolation: isolate; }
.hero__bild {
  position: absolute; inset: 0; z-index: -2;
  background-color: var(--creme);
  background-size: cover;
  background-position: 50% 58%;
  background-repeat: no-repeat;
}
.hero__bild img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.hero::after {
  content: ""; position: absolute; inset: 0 0 auto; height: 56%; z-index: -1;
  background: linear-gradient(to bottom, rgba(250, 248, 244, .82) 0%, rgba(250, 248, 244, .55) 45%, rgba(250, 248, 244, 0) 100%);
}
.hero__inhalt { padding-top: clamp(6.5rem, 13vh, 9.5rem); display: flex; justify-content: flex-end; }
.hero__claim { width: min(680px, 62%); text-align: center; }
.hero h1 {
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 26px rgba(250, 248, 244, .95), 0 1px 4px rgba(250, 248, 244, .85);
}
.hero__script {
  display: block;
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  letter-spacing: .01em;
  line-height: 1.15;
}
.hero__sub {
  display: block;
  margin-top: .7em;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.9vw, 1.55rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.4;
}
.hero__regel { width: 62px; height: 1px; background: var(--gold); margin: 1.7rem auto 0; border: 0; box-shadow: 0 0 12px rgba(250, 248, 244, .9); }
.hero__scroll {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  display: grid; justify-items: center; gap: .6rem;
  font-size: .6rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.hero__scroll span { display: block; width: 1px; height: 32px; background: rgba(61, 59, 58, .5); }
@media (max-width: 820px) {
  .hero__inhalt { justify-content: center; padding-inline: var(--rand); }
  .hero__claim { width: 100%; }
  .hero__scroll { display: none; }
}

/* Intro ------------------------------------------------------------------- */
.intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.intro p { color: #56534d; }
.intro__akzent {
  font-family: var(--serif); font-style: italic; color: var(--gold);
  font-size: clamp(1.7rem, 3.3vw, 2.5rem); line-height: 1.35; text-align: center; margin: 0;
}
.intro__akzent small {
  display: block; margin-top: 1.5rem; font-family: var(--sans); font-style: normal;
  font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gedaempft);
}
@media (max-width: 860px) {
  .intro { grid-template-columns: 1fr; }
  .intro__akzent { text-align: left; }
}

/* Split (Text + Bild) ----------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split__text {
  padding-block: var(--luft);
  padding-inline: clamp(2rem, 5vw, 4.5rem);
  padding-left: max(var(--rand), calc((100vw - var(--breite)) / 2));
  align-self: center;
}
.split__bild { position: relative; min-height: 340px; }
.split__bild img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split__text { padding-inline: var(--rand); }
  .split__bild { min-height: 280px; }
}

.formate {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
}
.formate li {
  border-top: 1px solid rgba(233, 229, 221, .22);
  padding: .8rem 0;
  font-size: .95rem;
}
@media (max-width: 560px) { .formate { grid-template-columns: 1fr; } }

.hero__bild--fallback {
  position: absolute; inset: 0; z-index: -2;
  background-image: url("../img/hero-3.jpg");
}

/* Musiker ----------------------------------------------------------------- */
.musiker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: min(23vw, 302px);
  gap: 8px;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.mitglied {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--creme);
}
.mitglied--breit { grid-column: span 2; }
.mitglied--gross { grid-column: span 2; grid-row: span 2; }

.mitglied img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--fx, 50%) var(--fy, 30%);
  transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}
.mitglied:hover img, .mitglied:focus-within img { transform: scale(1.045); }

.mitglied figcaption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(.9rem, 1.6vw, 1.6rem);
  color: #fff;
  background: linear-gradient(165deg,
      rgba(var(--rgb), .15) 0%,
      rgba(var(--rgb), .62) 55%,
      rgba(var(--rgb), .92) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.mitglied:hover figcaption, .mitglied:focus-within figcaption { opacity: 1; }

.mitglied figcaption b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: .01em;
}
.mitglied figcaption span {
  margin-top: .45rem;
  font-size: clamp(.6rem, .78vw, .7rem);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

@media (hover: none) {
  .mitglied figcaption {
    opacity: 1;
    background: linear-gradient(to top, rgba(var(--rgb), .88) 0%, rgba(var(--rgb), .35) 45%, rgba(var(--rgb), 0) 75%);
  }
}

@media (max-width: 900px) {
  .musiker { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 58vw; gap: 6px; }
  .mitglied--breit, .mitglied--gross { grid-column: span 1; }
  .mitglied--gross { grid-row: span 1; }
}

/* Termine ----------------------------------------------------------------- */
.termine { margin-top: .5rem; }
.termin {
  display: grid; grid-template-columns: 12rem 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem); align-items: baseline;
  padding: 1.3rem .25rem; border-bottom: 1px solid rgba(61, 59, 58, .15);
}
.termin:first-child { border-top: 1px solid rgba(61, 59, 58, .15); }
.termin__datum { font-size: .86rem; letter-spacing: .06em; color: var(--gold); font-weight: 600; margin: 0; }
.termin__titel { font-family: var(--serif); font-size: 1.05rem; margin: 0; }
.termin__ort { margin: 0; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gedaempft); white-space: nowrap; }
@media (max-width: 660px) {
  .termin { grid-template-columns: 1fr; gap: .25rem; }
  .termin__ort { white-space: normal; }
}
.termine__leer {
  border-top: 1px solid rgba(61, 59, 58, .15);
  border-bottom: 1px solid rgba(61, 59, 58, .15);
  padding: clamp(2rem, 4vw, 3rem) 0;
  max-width: 60ch;
}
.termine__leer p { margin: 0 0 .6rem; }
.termine__leer p:last-child { margin: 1.6rem 0 0; }
.termine__leer strong { font-weight: 600; }

/* Kontakt ----------------------------------------------------------------- */
.section--bild {
  position: relative; isolation: isolate;
  background-image: url("../img/kontakt-bg.jpg");
  background-size: cover; background-position: center;
  color: #e9e5dd;
}
.section--bild::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(150deg, rgba(47, 46, 43, .93) 0%, rgba(61, 59, 58, .88) 55%, rgba(47, 46, 43, .92) 100%);
}
.section--bild h2 { color: #fff; }
.section--bild .eyebrow { color: rgba(233, 229, 221, .55); }

.kontakt { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); }
@media (max-width: 860px) { .kontakt { grid-template-columns: 1fr; } }

.kontakt__direkt { list-style: none; margin: 2rem 0 0; padding: 0; }
.kontakt__direkt li { margin-bottom: .85rem; }
.kontakt__direkt a { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; font-size: .9rem; border-bottom: 1px solid transparent; }
.kontakt__direkt a:hover { border-bottom-color: var(--gold); }
.kontakt__direkt svg { flex: none; color: var(--gold); }

form .feld { margin-bottom: 1.1rem; }
form label { display: block; font-size: .63rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-bottom: .5rem; color: rgba(233, 229, 221, .75); }
form input, form textarea {
  width: 100%; font: inherit; font-size: .95rem; color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(233, 229, 221, .28); border-radius: 12px; padding: .8rem 1rem;
}
form input::placeholder, form textarea::placeholder { color: rgba(233, 229, 221, .4); }
form input:focus, form textarea:focus { border-color: var(--gold); outline: none; background: rgba(255, 255, 255, .1); }
form textarea { min-height: 140px; resize: vertical; }
.feld--doppelt { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .feld--doppelt { grid-template-columns: 1fr; } }
.honig { position: absolute; left: -9999px; }
.form__hinweis { font-size: .77rem; line-height: 1.7; color: rgba(233, 229, 221, .6); max-width: 46ch; }
.form__hinweis a { color: rgba(233, 229, 221, .9); }
.form__status { margin-top: 1rem; font-size: .85rem; padding: .8rem 1rem; border-left: 2px solid var(--gold); background: rgba(180, 129, 48, .18); }
.form__status[hidden] { display: none; }
.btn--voll { border-radius: 999px; }

/* Footer ------------------------------------------------------------------ */
.site-footer {
  background: var(--papier);
  border-top: 1px solid rgba(61, 59, 58, .14);
  padding-block: 2.2rem;
  color: var(--ink);
}
.site-footer__inhalt {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.site-footer img.footer-logo { width: 130px; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-self: start; }
.footer-links a {
  font-size: .66rem; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; color: var(--gedaempft);
}
.footer-links a:hover { color: var(--gold); }
.sozial { display: flex; gap: .7rem; list-style: none; margin: 0; padding: 0; }
.sozial a {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(61, 59, 58, .2); color: var(--ink);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.sozial a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.site-footer__claim {
  margin: 0; padding-left: clamp(1rem, 3vw, 2rem);
  text-align: right;
  border-left: 1px solid rgba(61, 59, 58, .18);
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gedaempft);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .site-footer__inhalt { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-links { justify-self: center; }
  .site-footer__claim { border-left: 0; padding-left: 0; white-space: normal; }
}

/* Unterseiten ------------------------------------------------------------- */
.seiten-kopf { padding-top: clamp(9rem, 20vh, 13rem); padding-bottom: clamp(2.5rem, 6vw, 4rem); background: var(--creme); }
.seiten-kopf p { margin-bottom: 0; color: #56534d; }

.download-liste { list-style: none; margin: 0; padding: 0; }
.download { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; padding: 1.7rem .25rem; border-bottom: 1px solid rgba(61, 59, 58, .15); }
.download:first-child { border-top: 1px solid rgba(61, 59, 58, .15); }
.download h3 { margin-bottom: .2rem; }
.download p { margin: 0; font-size: .88rem; color: var(--gedaempft); }
@media (max-width: 620px) { .download { grid-template-columns: 1fr; justify-items: start; } }

.seiten-hinweis { margin-top: 2.5rem; font-size: .85rem; line-height: 1.7; color: var(--gedaempft); max-width: 60ch; }
.seiten-hinweis a { color: var(--gold); }

.rechtstext { max-width: 66ch; }
.rechtstext h2 { font-size: 1.35rem; margin-top: 2.6rem; }
.rechtstext h2:first-of-type { margin-top: 0; }
.rechtstext p { font-size: .95rem; }
.platzhalter { background: rgba(180, 129, 48, .12); border-left: 2px solid var(--gold); padding: 1rem 1.2rem; font-size: .9rem; }
