/* Gesellschaft Harmonie e. V. von 1803 Bayreuth — Interimsseite
   Palette nach Design-Brief §3: Papierweiß, tiefes Anthrazit, Messing/Sepia
   als Akzent, Grau des Monogrammmusters. Würdevoll, hell, großzügig lesbar —
   Zielgruppe ab ca. 50 Jahren, Barrierearmut ist Kern, nicht Kür. */

:root {
  color-scheme: light;

  --paper:      #faf8f4;
  --paper-deep: #f2eee5;
  --ink:        #24262a;
  --ink-soft:   #565c63;
  --brass:      #8a6a35;
  --brass-deep: #6d5228;
  --line:       #e0dacd;
  --white:      #ffffff;

  --radius:  4px;
  --shadow:  0 1px 2px rgba(36, 38, 42, .04), 0 10px 30px -18px rgba(36, 38, 42, .22);
  --measure: 64ch;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
           Georgia, "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  /* Bewusst großzügig — Zielgruppe ab ca. 50 Jahren */
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.7;
}

/* Kein flächiges Monogramm-Wasserzeichen: die weißen, deckenden Inhaltsboxen
   verdecken dessen Mitte, sodass nur Rand-Fragmente stehen bleiben — das wirkt
   wie ein Fehler statt wie Ornament. Das Monogramm trägt stattdessen den Kopf
   der Seite und die Ziertrenner. */

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

a {
  color: var(--brass-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover { color: var(--brass); }

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

/* ── Layout ───────────────────────────────────────────── */

.page {
  max-width: 45rem;
  margin: 0 auto;
  padding: clamp(2rem, 1rem + 4vw, 4rem) clamp(1.15rem, .6rem + 2vw, 2rem) 3.5rem;
}

.skip { position: absolute; left: -9999px; }
.skip:focus {
  position: fixed; left: 1rem; top: 1rem; z-index: 10;
  background: var(--white); padding: .6rem 1rem; box-shadow: var(--shadow);
}

/* ── Marke ────────────────────────────────────────────── */

.brand {
  text-align: center;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
}
.brand__monogram {
  width: clamp(92px, 20vw, 128px);
  margin: 0 auto .9rem;
  opacity: .88;
}
.brand__wordmark {
  width: clamp(178px, 40vw, 240px);
  margin: 0 auto;
}

/* Messing-Ornamentlinie unter der Marke */
.rule {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line) 18%, var(--line) 82%, transparent);
  margin: clamp(1.75rem, 1.25rem + 2vw, 2.5rem) 0;
  position: relative;
}
.rule::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: .3rem; height: .3rem;
  margin: -.15rem 0 0 -.15rem;
  background: var(--brass);
  transform: rotate(45deg);
}

/* ── Karten ───────────────────────────────────────────── */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
}
.card + .card { margin-top: 1.5rem; }

/* ── Typografie ───────────────────────────────────────── */

h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.55rem, 1.15rem + 2.1vw, 2.2rem);
  line-height: 1.22;
  margin: 0 0 .85rem;
  text-wrap: balance;
}

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.1rem + .55vw, 1.5rem);
  line-height: 1.3;
  margin: 0 0 .75rem;
  text-wrap: balance;
}

h3 {
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 .3rem;
}

p { margin: 0 0 1.05rem; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--brass-deep);
  margin: 0 0 .5rem;
  letter-spacing: .01em;
}

.lead { font-size: 1.075em; }

.muted { color: var(--ink-soft); }

.small { font-size: .9rem; }

/* ── Termine ──────────────────────────────────────────── */

.dates {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  border-top: 1px solid var(--line);
}
.dates li {
  display: grid;
  gap: .1rem 1.25rem;
  padding: .85rem .2rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 32rem) {
  .dates li { grid-template-columns: 8.5rem 1fr; align-items: baseline; }
}

.dates .when {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: var(--brass-deep);
  white-space: nowrap;
}
.dates .what { font-weight: 500; }
.dates .where {
  display: block;
  font-size: .9rem;
  color: var(--ink-soft);
  font-weight: 400;
}

.notice {
  background: var(--paper-deep);
  border-left: 3px solid var(--brass);
  padding: .9rem 1.1rem;
  font-size: .925rem;
  color: var(--ink-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.notice p { max-width: none; }
.notice strong { color: var(--ink); }

/* ── Kontakt ──────────────────────────────────────────── */

.contact {
  display: grid;
  gap: 1.25rem 2rem;
  margin: 0;
}
@media (min-width: 34rem) {
  .contact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.contact > div { min-width: 0; }
.contact p { margin: 0; }
.contact .val {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  overflow-wrap: break-word;
}
.contact .val a { text-decoration: none; }
.contact .val a:hover { text-decoration: underline; }
.contact .note { font-size: .9rem; color: var(--ink-soft); margin-top: .15rem; }

.mail-cta {
  display: inline-block;
  background: var(--brass-deep);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: .7rem 1.3rem;
  border-radius: var(--radius);
  margin-top: .3rem;
}
.mail-cta:hover, .mail-cta:focus-visible { background: #58421f; color: var(--white); }

address { font-style: normal; }

.signoff {
  margin-top: 1.75rem;
  text-align: center;
  max-width: none;
  font-family: var(--serif);
  font-style: italic;
}

/* ── Rechtliches / Footer ─────────────────────────────── */

.legal { margin-top: 2.5rem; }
.legal h2 {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.legal .card { background: var(--paper-deep); box-shadow: none; }

.legal-prose { font-size: .93rem; line-height: 1.65; }
.legal-prose h3 {
  margin-top: 1.5rem;
  font-size: .97rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 650;
}
.legal-prose h3:first-of-type { margin-top: 0; }
.legal-prose p { margin-bottom: .85rem; }

.footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.25rem;
  align-items: baseline;
  justify-content: space-between;
}
.footer nav { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; }

@media print {
  .card { box-shadow: none; border-color: #ccc; }
}
