/* =========================
   Minimal Reset (modern)
   ========================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
p, h1, h2, h3 { overflow-wrap: break-word; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

/* =========================
   Local Fonts
   ========================= */
@font-face {
  font-family: "Alegreya SC";
  src: url("fonts/AlegreyaSC-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cardo";
  src: url("fonts/Cardo-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Base
   ========================= */
:root {
  /* bewusst schlicht – keine Farben zwingend vorgegeben */
  --content-max: 72rem;
  --gutter: clamp(1rem, 3vw, 2.5rem);
  --radius: 0.75rem;
  --border: 1px solid rgba(0,0,0,0.15);
}

body {
  font-family: "Cardo", Georgia, "Times New Roman", serif;
  font-weight: 400;
  background: #fff;
  color: #111;
}

h1, h2, h3 {
  font-family: "Alegreya SC", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.15;
}

a { 
  color: #B7410E;
}

.site-header,
.site-main,
.site-footer {
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  padding-block: clamp(1rem, 3vw, 2rem);
}

.site-main {
  max-width: var(--content-max);
  padding-block: clamp(1rem, 3vw, 2.5rem);
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.site-footer {
  max-width: var(--content-max);
  padding-block: clamp(1rem, 3vw, 2.5rem);
}
.site-footer h2{
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	margin-bottom: 0.75rem;
}
.site-footer p{
	font-size: clamp(0.8rem, 1.5vw, 1rem);
}

/* Brand */
.brand, .social-media {
  max-width: var(--content-max);
  margin-inline: auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: var(--radius);
}

.site-title { font-size: clamp(3.4rem, 4vw, 4.2rem); }
.site-subtitle { margin-top: 0.25rem; opacity: 0.8; }

.social-media {
	justify-content: end;
	padding-right: 2.5rem;
}

/* Content */
.content h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin-bottom: 0.75rem;
}

/* Multi-column prose:
   - mobile: 1 Spalte
   - große Displays: bis zu 3 Spalten
*/
.prose {
  font-size: 1.1rem;
  max-width: 68ch; /* mobile/normal: sehr gut lesbar */
}

.prose p + p { margin-top: 0.85rem; }

/* ab breiteren Viewports: Spalten aktivieren */
@media (min-width: 64rem) {
  .prose {
    max-width: none;
    column-count: 2;
    column-gap: 3rem;
  }
}

@media (min-width: 90rem) {
  .prose {
    column-count: 3;
    column-gap: 3rem;
  }
}

/* Accordion */
.accordion h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin-bottom: 0.75rem;
}

.accordion__item {
  border: var(--border);
  border-radius: var(--radius);
  overflow: clip;
  background: #fff;
}

.accordion__item + .accordion__item { margin-top: 0.75rem; }

.accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 0.9rem 1rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: "Alegreya SC", Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.accordion__trigger::after {
  content: "＋";
  flex: 0 0 auto;
  line-height: 1;
  opacity: 0.85;
}

.accordion__trigger[aria-expanded="true"]::after {
  content: "−";
}

.accordion__panel {
  padding: 0 1rem 1rem 1rem;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
}

.accordion__panel p { margin-top: 0.75rem; }
