/* Lokale Schriften – keine externen Font-Server */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/fraunces-400.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/fraunces-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/fraunces-600.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/fraunces-700.woff2") format("woff2");
}

/* Varieté-Plakat, eine Schrift, Gold + Bordeaux + Mitternacht */

:root {
  --paper: #f4e4c3;
  --paper-2: #fff6de;
  --ink: #24160f;
  --night: #2a1636;
  --gold: #d7a21b;
  --gold-2: #f0c75a;
  --rose: #c4334a;
  --line: #e2c888;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Fraunces", "Palatino Linotype", "Book Antiqua", serif;
  font-optical-sizing: auto;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0 18px,
      rgba(215, 162, 27, 0.07) 18px 19px
    ),
    radial-gradient(circle at 8% -10%, #ffe7a8 0%, transparent 34%),
    radial-gradient(circle at 110% 0%, #e8b7c0 0%, transparent 28%);
}

a { color: #7a1f33; }
a:hover { color: var(--rose); }

.page-frame {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.15rem 1.2rem 2.2rem;
}

body.katalog-page .page-frame {
  max-width: none;
  width: 100%;
  padding: 0.75rem 12px 2rem;
}

.deco-sunburst {
  height: 14px;
  margin: 0 0 0.9rem;
  background:
    repeating-linear-gradient(
      90deg,
      var(--night) 0 28px,
      var(--gold) 28px 40px,
      var(--rose) 40px 52px,
      var(--paper) 52px 64px
    );
  clip-path: polygon(
    0 40%, 3% 0, 6% 40%, 9% 0, 12% 40%, 15% 0, 18% 40%, 21% 0,
    24% 40%, 27% 0, 30% 40%, 33% 0, 36% 40%, 39% 0, 42% 40%, 45% 0,
    48% 40%, 51% 0, 54% 40%, 57% 0, 60% 40%, 63% 0, 66% 40%, 69% 0,
    72% 40%, 75% 0, 78% 40%, 81% 0, 84% 40%, 87% 0, 90% 40%, 93% 0,
    96% 40%, 100% 0, 100% 100%, 0 100%
  );
}

.site-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  padding: 0.15rem 0 0.7rem;
  border-bottom: 3px double var(--gold);
  background: transparent;
}

.header-ornament {
  display: block;
  height: 10px;
  width: 120px;
  margin: 0 auto 0.2rem 0;
  background:
    conic-gradient(from 180deg at 50% 0%, var(--gold) 0 20%, transparent 20% 80%, var(--rose) 80% 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.footer-ornament { display: none; }

.brand {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.55rem 1.1rem;
}
.brand-link { display: inline-block; }
.brand-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 300px;
  background: transparent;
  padding: 0;
  border: 0;
  filter: drop-shadow(0 1px 0 rgba(255,246,222,0.9));
}
.brand-tag {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--night);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  border: 2px solid var(--night);
  background: var(--gold);
  color: var(--night);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.1rem;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  font-style: italic;
  text-decoration: none;
  color: var(--ink);
  padding: 0.22rem 0.55rem 0.32rem;
  border-bottom: 2px solid transparent;
}
.nav-link:hover {
  color: var(--rose);
  border-bottom-color: var(--gold);
  text-decoration: none;
}
.nav-link.is-active {
  color: var(--night);
  border-bottom-color: var(--rose);
  background: transparent;
}

.site-main { padding: 1.5rem 0 2rem; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.8rem;
  align-items: center;
  margin-bottom: 1.7rem;
}
.hero-copy h1,
.page-title {
  margin: 0 0 0.4rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.08;
  color: var(--night);
}
.kicker {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}
.lede { font-size: 1.15rem; }

.hero-photo {
  margin: 0;
  padding: 0.7rem;
  background: var(--paper-2);
  border: 1px solid var(--gold);
  box-shadow: 8px 8px 0 var(--night);
  transform: rotate(-1.2deg);
}
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.ornament-line {
  width: 5.5rem;
  height: 8px;
  margin: 0.4rem 0 1rem;
  background:
    linear-gradient(90deg, var(--rose), var(--gold) 55%, var(--night));
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--paper-2);
  border: 1px solid var(--gold);
  padding: 1.05rem 1.05rem 1.15rem;
  box-shadow: 5px 5px 0 var(--night);
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--night));
}
.card h2 {
  font-size: 1.28rem;
  font-weight: 700;
  font-style: italic;
  margin: 0.15rem 0 0.45rem;
  color: var(--night);
}
.card-title {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
}
.card-title:hover {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

.btn {
  display: inline-block;
  margin: 0.7rem 0.3rem 0 0;
  padding: 0.4rem 0.9rem 0.45rem;
  border: 2px solid var(--night);
  background: var(--gold);
  color: var(--night);
  text-decoration: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
}
.btn:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--night);
  text-decoration: none;
}

.prose { max-width: 42rem; }
.prose.wide, .legal { max-width: none; }
.prose h1, .prose h2, .prose h3 {
  font-weight: 700;
  font-style: italic;
  color: var(--night);
}
.prose p { margin: 0 0 0.9rem; }

.portrait {
  float: left;
  width: 220px;
  max-width: 42%;
  margin: 0 1.15rem 0.7rem 0;
  padding: 6px;
  background: var(--paper-2);
  border: 1px solid var(--gold);
  box-shadow: 4px 4px 0 var(--night);
}
.portrait img { display: block; width: 100%; height: auto; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.media-card {
  background: var(--paper-2);
  border: 1px solid var(--gold);
  padding: 0.55rem;
  text-align: center;
  box-shadow: 4px 4px 0 var(--night);
}
.media-card img { width: 100%; height: auto; display: block; }
.media-card p { margin: 0.55rem 0 0; }

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}
.toc-list a {
  display: block;
  text-decoration: none;
  background: var(--paper-2);
  border: 1px solid var(--gold);
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  font-weight: 600;
}
.toc-list a:hover {
  background: #fff0c4;
  color: var(--rose);
}

.toc-bi { display: grid; gap: 0.35rem; margin: 1rem 0 1.4rem; }
.toc-bi-head,
.toc-bi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}
.toc-bi-head span {
  font-weight: 700;
  font-style: italic;
  color: var(--night);
  padding: 0.15rem 0.2rem 0.4rem;
  border-bottom: 2px solid var(--gold);
}
.toc-bi-row a {
  display: block;
  text-decoration: none;
  background: var(--paper-2);
  border: 1px solid var(--gold);
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  font-weight: 600;
}
.toc-bi-row a:hover { background: #fff0c4; color: var(--rose); }

.note {
  background: #fff0c4;
  border-left: 8px solid var(--rose);
  padding: 0.85rem 1rem;
  margin: 1rem 0;
}

.katalog-wrap {
  background: var(--paper-2);
  border: 1px solid var(--gold);
  padding: 8px 6px;
  overflow-x: auto;
}
.katalog,
.katalog * {
  font-family: "Fraunces", "Palatino Linotype", serif !important;
  font-size: 16px !important;
  line-height: 1.42;
  color: var(--ink);
}
.katalog table {
  border-collapse: collapse;
  width: 100% !important;
  table-layout: auto;
}
.katalog colgroup,
.katalog col { width: auto !important; }
.katalog td, .katalog th {
  padding: 4px 8px;
  vertical-align: top;
}
.katalog a { color: #7a1f33; }

.legal {
  max-width: 48rem;
  background: var(--paper-2);
  border: 1px solid var(--gold);
  padding: 1.1rem 1.2rem 1.3rem;
}
.legal,
.legal * {
  font-size: 1.05rem !important;
  line-height: 1.5;
  color: var(--ink);
}
.legal h2 {
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  margin: 1.3rem 0 0.45rem;
  color: var(--night);
}
.legal h2:first-child { margin-top: 0; }
.legal p { margin: 0 0 0.75rem; }

.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
.mail-address {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  margin: 0.3rem 0 0.75rem;
}
.mail-address a {
  color: var(--night);
  text-decoration: none;
  border-bottom: 3px solid var(--gold);
}
.mail-address a:hover { color: var(--rose); }

.site-footer {
  margin-top: 0.5rem;
  padding: 1.2rem 1.1rem 0.8rem;
  background: var(--night);
  color: #f4e4c3;
  font-size: 1rem;
}
.site-footer a { color: var(--gold-2); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.footer-name {
  font-weight: 700;
  font-style: italic;
  color: var(--gold-2);
}
.muted { color: #d9c7a1; font-size: 0.95rem; }
.haftung { color: #2a2218; font-size: 1rem; font-weight: 600; }

@media (max-width: 860px) {
  .hero, .card-row, .contact-block, .footer-grid,
  .toc-bi-head, .toc-bi-row {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: inline-block; justify-self: end; }
  .site-nav {
    display: none;
    flex-direction: column;
    background: var(--paper-2);
    border: 1px solid var(--gold);
    padding: 0.35rem;
  }
  .site-nav.is-open { display: flex; }
  .portrait { float: none; width: 220px; }
  .hero-photo { transform: none; }
  .katalog, .katalog * { font-size: 15px !important; }
  .brand-tag { white-space: normal; }
}


.shop-photo {
  margin: 0 0 1.1rem;
  padding: 6px;
  background: var(--paper-2);
  border: 1px solid var(--gold);
  box-shadow: 4px 4px 0 var(--night);
}
.shop-photo img { display: block; width: 100%; height: auto; }


.label-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.7rem;
  margin: 1rem 0 1.4rem;
}
.label-card {
  display: block;
  background: var(--paper-2);
  border: 1px solid var(--gold);
  padding: 0.35rem;
  box-shadow: 4px 4px 0 var(--night);
}
.label-card img {
  display: block;
  width: 100%;
  height: auto;
}
.label-shot {
  margin: 0.8rem 0 1.2rem;
  text-align: center;
}
.label-shot img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--gold);
  background: #fff;
}
.label-nav { margin: 0.4rem 0 0.8rem; }
