/* ==========================================================================
   Chez Bruno — Stylesheet
   Alle Farben, Schriften und Abstände stehen als Variablen ganz oben.
   Wer die Farbe der Seite ändern will, ändert hier eine Zeile.
   ========================================================================== */

/* --- Schriften (liegen lokal in assets/fonts, kein Google-Request) -------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
}

/* --- Design-Variablen ---------------------------------------------------- */
:root {
  --creme:           #faf6ef;
  --creme-tief:      #f2eade;
  --weiss:           #ffffff;
  --bordeaux:        #7a2e35;
  --bordeaux-dunkel: #5c2128;
  --gold:            #b08d57;
  --tinte:           #2b2118;
  --tinte-weich:     #6b5b4e;
  --linie:           #e3d8c8;

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --breite:      1180px;
  --breite-text: 68ch;
  --rand:        clamp(1.25rem, 5vw, 3rem);
  --luft:        clamp(3.5rem, 9vw, 7rem);
  --radius:      3px;
  --schatten:    0 1px 2px rgba(43, 33, 24, .05), 0 8px 28px rgba(43, 33, 24, .07);
}

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

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

body {
  margin: 0;
  background: var(--creme);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: clamp(1rem, .97rem + .18vw, 1.0625rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--bordeaux);
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}
a:hover { color: var(--bordeaux-dunkel); }

:focus-visible {
  outline: 2px solid var(--bordeaux);
  outline-offset: 3px;
}

/* --- Typografie ---------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--tinte);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.25rem); }
h2 { font-size: clamp(1.85rem, 1.35rem + 2.1vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); }
h4 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 .5em;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.vorspann {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.05rem + .85vw, 1.65rem);
  line-height: 1.45;
  color: var(--tinte-weich);
}

.kicker {
  display: block;
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.zierlinie {
  width: 54px;
  height: 2px;
  border: 0;
  background: var(--gold);
  margin: 1.75rem 0;
}

.zentriert { text-align: center; }
.zentriert .zierlinie { margin-inline: auto; }
.zentriert .textblock { margin-inline: auto; }

/* --- Layout -------------------------------------------------------------- */
.huelle {
  width: 100%;
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: var(--rand);
}
.huelle--schmal { max-width: 820px; }

.abschnitt { padding-block: var(--luft); }
.abschnitt--getoent { background: var(--creme-tief); }
.abschnitt--weiss   { background: var(--weiss); }

.textblock { max-width: var(--breite-text); }

.duo {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 850px) {
  .duo { grid-template-columns: 1fr 1fr; }
  .duo--bildzuerst > :first-child { order: 2; }
}

.stapel > * + * { margin-top: clamp(2.5rem, 5vw, 4rem); }

/* --- Kopfbereich --------------------------------------------------------- */
.sprungmarke {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bordeaux);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 200;
}
.sprungmarke:focus {
  left: .5rem;
  top: .5rem;
  color: #fff;
}

.kopf {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linie);
}
.kopf__innen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.marke {
  display: block;
  text-decoration: none;
  color: var(--tinte);
  line-height: 1.1;
}
.marke__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.marke__zusatz {
  display: block;
  font-size: .66rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--tinte-weich);
  margin-top: .2rem;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  display: block;
  padding: .35rem 0;
  font-size: .93rem;
  font-weight: 500;
  color: var(--tinte);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
}
.nav a:hover { color: var(--bordeaux); border-bottom-color: var(--gold); }
.nav a[aria-current="page"] { color: var(--bordeaux); border-bottom-color: var(--bordeaux); }

.nav-schalter {
  display: none;
  align-items: center;
  gap: .55rem;
  background: none;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: .5rem .8rem;
  font: inherit;
  font-size: .85rem;
  color: var(--tinte);
  cursor: pointer;
}
.nav-schalter__balken {
  position: relative;
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--tinte);
}
.nav-schalter__balken::before,
.nav-schalter__balken::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--tinte);
}
.nav-schalter__balken::before { top: -5px; }
.nav-schalter__balken::after  { top: 5px; }

@media (max-width: 880px) {
  .nav-schalter { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--creme);
    border-bottom: 1px solid var(--linie);
    box-shadow: var(--schatten);
  }
  .nav.ist-offen { display: block; }
  .nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem var(--rand) 1.25rem;
  }
  .nav a {
    padding: .85rem 0;
    border-bottom: 1px solid var(--linie);
  }
  .nav li:last-child a { border-bottom: 0; }

  /* Ohne JavaScript bleibt das Menue sichtbar statt unerreichbar */
  html.kein-js .nav { display: block; position: static; box-shadow: none; }
  html.kein-js .nav-schalter { display: none; }
}

/* --- Schaltflaechen ------------------------------------------------------ */
.knopf {
  display: inline-block;
  padding: .8rem 1.6rem;
  border: 1px solid var(--bordeaux);
  border-radius: var(--radius);
  background: var(--bordeaux);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.knopf:hover {
  background: var(--bordeaux-dunkel);
  border-color: var(--bordeaux-dunkel);
  color: #fff;
}
.knopf--offen { background: transparent; color: var(--bordeaux); }
.knopf--offen:hover { background: var(--bordeaux); color: #fff; }
.knopf--hell { background: transparent; border-color: rgba(255, 255, 255, .65); color: #fff; }
.knopf--hell:hover { background: #fff; border-color: #fff; color: var(--bordeaux); }

.knopfreihe {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.zentriert .knopfreihe { justify-content: center; }

/* --- Buehne (Kopfbild) --------------------------------------------------- */
.buehne {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(430px, 74vh, 720px);
  padding-block: var(--luft);
  background: var(--tinte);
  overflow: hidden;
}
.buehne__bild {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
.buehne__inhalt {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 46rem;
  padding-inline: var(--rand);
}
.buehne__inhalt h1 { color: #fff; }
.buehne__inhalt .kicker { color: rgba(255, 255, 255, .8); }
.buehne__inhalt .vorspann { color: rgba(255, 255, 255, .9); }
.buehne__inhalt .zierlinie { margin-inline: auto; }

.buehne--klein { min-height: clamp(260px, 40vh, 380px); }

/* --- Zitatband ----------------------------------------------------------- */
.zitatband {
  background: var(--bordeaux);
  color: #fff;
  padding-block: var(--luft);
}
.zitatband__gitter {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4rem);
}
@media (min-width: 780px) {
  .zitatband__gitter { grid-template-columns: 1fr 1fr; }
}
.zitat { margin: 0; }
.zitat p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  line-height: 1.45;
  margin-bottom: .9rem;
}
.zitat footer {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

/* --- Karten (Winzer) ----------------------------------------------------- */
.kartengitter {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.karte {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.karte:hover { transform: translateY(-3px); box-shadow: var(--schatten); }
.karte__bild {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--creme-tief);
}
.karte__text {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.5rem 1.75rem;
}
.karte__ort {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.karte h3 { font-size: 1.4rem; margin-bottom: .55rem; }
.karte h3 a { color: inherit; text-decoration: none; }
.karte h3 a::after { content: ""; position: absolute; inset: 0; }
.karte p {
  font-size: .95rem;
  color: var(--tinte-weich);
  margin-bottom: 1.15rem;
}
.karte__mehr {
  margin-top: auto;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bordeaux);
}
.karte--ohne-link { background: var(--creme-tief); }
.karte--ohne-link:hover { transform: none; box-shadow: none; }
.karte--ohne-link .karte__mehr { color: var(--tinte-weich); }

/* --- Galerie ------------------------------------------------------------- */
.galerie {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.galerie img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--creme-tief);
}
figure { margin: 0; }
figcaption {
  font-size: .85rem;
  color: var(--tinte-weich);
  margin-top: .5rem;
}

/* --- Infokasten ---------------------------------------------------------- */
.infokasten {
  background: var(--weiss);
  border: 1px solid var(--linie);
  border-left: 3px solid var(--bordeaux);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.infokasten h3 { margin-bottom: .9rem; }
.infokasten + .infokasten { margin-top: 1.5rem; }

.zeiten {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .45rem 1.5rem;
  font-size: .98rem;
}
.zeiten dt { color: var(--tinte-weich); }
.zeiten dd { margin: 0; font-weight: 500; }

.kontaktliste {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.02rem;
}
.kontaktliste li { margin-bottom: .85rem; }
.kontaktliste li:last-child { margin-bottom: 0; }
.kontaktliste .etikett {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .15rem;
}

/* --- Fliesstext ---------------------------------------------------------- */
.prosa { max-width: var(--breite-text); }
.prosa > h2 { margin-top: 2.2em; }
.prosa > h2:first-child { margin-top: 0; }
.prosa > h3 { margin-top: 1.9em; }
.prosa ul, .prosa ol { padding-left: 1.3em; margin: 0 0 1.15em; }
.prosa li { margin-bottom: .35em; }
.prosa address { font-style: normal; margin-bottom: 1.15em; }

/* --- Termine ------------------------------------------------------------- */
.termin {
  border-top: 1px solid var(--linie);
  padding-block: clamp(1.75rem, 4vw, 2.5rem);
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 760px) {
  .termin { grid-template-columns: 200px 1fr; gap: 2.5rem; }
}
.termin:last-of-type { border-bottom: 1px solid var(--linie); }
.termin__datum {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--bordeaux);
  line-height: 1.3;
}
.termin__datum span {
  display: block;
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tinte-weich);
  margin-top: .3rem;
}
.termin h3 { margin-bottom: .6rem; }

.hinweis {
  background: var(--creme-tief);
  border: 1px dashed var(--linie);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  color: var(--tinte-weich);
}

/* --- Fussbereich --------------------------------------------------------- */
.fuss {
  background: var(--tinte);
  color: rgba(255, 255, 255, .72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .93rem;
}
.fuss a { color: rgba(255, 255, 255, .9); }
.fuss a:hover { color: #fff; }
.fuss h4 {
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.fuss__gitter {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.fuss .marke__name { color: #fff; }
.fuss .marke__zusatz { color: rgba(255, 255, 255, .6); }
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { margin-bottom: .5rem; }
.fuss address { font-style: normal; }
.fuss__unten {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
}
.fuss__unten ul { display: flex; flex-wrap: wrap; gap: 1.5rem; }

/* --- Bewegung reduzieren ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --- Druck --------------------------------------------------------------- */
@media print {
  .kopf, .fuss, .knopfreihe, .galerie, .sprungmarke { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .buehne { min-height: auto; background: none; }
  .buehne__bild { display: none; }
  .buehne__inhalt, .buehne__inhalt h1 { color: #000; }
}
