/* ── Schriften (lokal, kein Google) ──────────────────── */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/bodoni-moda-latin-wght-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/bodoni-moda-latin-ext-wght-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/bodoni-moda-latin-wght-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('/assets/fonts/bodoni-moda-latin-ext-wght-italic.woff2') format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/instrument-sans-latin-wght-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/instrument-sans-latin-ext-wght-normal.woff2') format('woff2');
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* ── Tokens ──────────────────────────────────────────── */
:root {
  --soot:       #14100f;
  --char:       #1e1614;
  --edge:       #3a2a26;
  --flame:      #c4442b;
  --flame-deep: #7d2418;
  --glow:       #e6a15e;
  --skin:       #ede2d9;
  --ash:        #9c8a82;

  --display: "Bodoni Moda", Georgia, serif;
  --body:    "Instrument Sans", system-ui, sans-serif;

  --w: 30rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { overflow-x: hidden; }

body {
  background: var(--soot);
  color: var(--skin);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;

  background-image:
    radial-gradient(120% 60% at 50% 0%, rgba(196,68,43,.10), transparent 70%);
  background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
  body { background-attachment: scroll; }
}

.page {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

/* ── Das Mal des Bundes ──────────────────────────────── */
.crest {
  position: relative;
  display: grid;
  place-items: center;
  height: 8rem;
  margin-bottom: 1.75rem;
}

.crest__ember {
  position: absolute;
  width: 13rem;
  height: 13rem;
  max-width: 100vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,161,94,.20) 0%, rgba(196,68,43,.11) 40%, transparent 68%);
  filter: blur(16px);
  animation: breathe 7s ease-in-out infinite;
  pointer-events: none;
}

.crest__sigil {
  position: relative;
  width: 7rem;
  height: auto;
  animation: sear 7s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: .55; transform: scale(.94); }
  50%      { opacity: 1;   transform: scale(1.06); }
}

@keyframes sear {
  0%, 100% {
    filter: drop-shadow(0 0 3px rgba(196,68,43,.40)) brightness(.88);
  }
  50% {
    filter: drop-shadow(0 0 9px rgba(196,68,43,.75))
            drop-shadow(0 0 24px rgba(230,161,94,.32))
            brightness(1.12);
  }
}

/* ── Kopf ────────────────────────────────────────────── */
.eyebrow {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--glow);
  margin-bottom: .875rem;
}

.name {
  font-family: var(--display);
  font-size: clamp(1.75rem, 8vw, 2.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .01em;
  overflow-wrap: break-word;
}

.hook {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(.9375rem, 4vw, 1.0625rem);
  line-height: 1.55;
  color: var(--ash);
  margin-top: 1.125rem;
  text-wrap: balance;
}

.hook__cite {
  display: block;
  font-family: var(--body);
  font-style: normal;
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--edge);
  margin-top: .875rem;
}

.scar {
  border: 0;
  height: 1px;
  margin: 2.25rem 0;
  background: linear-gradient(90deg, transparent, var(--edge) 22%, var(--flame) 50%, var(--edge) 78%, transparent);
  opacity: .7;
}

/* ── Buch ────────────────────────────────────────────── */
.book {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 2.25rem;
}

.book__cover {
  flex: 0 0 auto;
  width: 5.5rem;
  max-width: 40%;
  height: auto;
  border-radius: 2px;
  transform: rotate(-2.5deg);
  box-shadow:
    -1px 0 0 rgba(230,161,94,.35),
    6px 10px 26px rgba(0,0,0,.55);
  background: var(--char);
}

.book__meta { min-width: 0; }

.book__title {
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.3;
}

.book__sub {
  font-size: .8125rem;
  color: var(--ash);
  margin-top: .375rem;
}

.book__note {
  font-size: .8125rem;
  line-height: 1.45;
  color: var(--glow);
  margin-top: .625rem;
  padding-left: .625rem;
  border-left: 1px solid var(--flame-deep);
}

/* ── Links ───────────────────────────────────────────── */
.links {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.link {
  position: relative;
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .9375rem 1rem .9375rem .875rem;
  background: var(--char);
  border: 1px solid var(--edge);
  border-radius: 2px;
  color: var(--skin);
  text-decoration: none;
  text-align: left;
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease, transform .15s ease;
}

.link__bar {
  flex: 0 0 auto;
  width: 2px;
  align-self: stretch;
  background: var(--edge);
  transition: background .25s ease, box-shadow .25s ease;
}

.link__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.link__label {
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.35;
}

.link__meta {
  font-size: .75rem;
  color: var(--ash);
  line-height: 1.35;
}

.link__meta--mail {
  color: var(--glow);
  margin-top: .125rem;
}

.link__arrow {
  flex: 0 0 auto;
  color: var(--ash);
  font-size: .875rem;
  transition: color .25s ease, transform .25s ease;
}

.link:hover,
.link:focus-visible {
  background: #241a18;
  border-color: var(--flame-deep);
  transform: translateY(-1px);
}

.link:hover .link__bar,
.link:focus-visible .link__bar {
  background: var(--flame);
  box-shadow: 0 0 14px 1px rgba(196,68,43,.55);
}

.link:hover .link__arrow,
.link:focus-visible .link__arrow {
  color: var(--glow);
  transform: translateX(3px);
}

.link:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 2px;
}

/* ── Weitere Shops ───────────────────────────────────── */
.shops {
  margin-top: 1rem;
  font-size: .75rem;
  line-height: 1.7;
  color: var(--ash);
}

.shops__link {
  color: var(--ash);
  text-decoration: none;
  border-bottom: 1px solid var(--edge);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}

.shops__link:hover,
.shops__link:focus-visible {
  color: var(--glow);
  border-color: var(--flame-deep);
}

.shops__sep { margin: 0 .375rem; opacity: .5; }

/* ── Nächste Lesung ──────────────────────────────────── */
.reading {
  margin-top: 2.25rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--edge);
  border-top: 1px solid var(--flame-deep);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(196,68,43,.07), transparent 60%),
    var(--char);
}

.reading__eyebrow {
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--glow);
  margin-bottom: .75rem;
}

.reading__date {
  font-family: var(--display);
  font-size: 1.375rem;
  line-height: 1.2;
}

.reading__time {
  font-family: var(--display);
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--ash);
}

.reading__place {
  font-size: .8125rem;
  color: var(--ash);
  margin-top: .75rem;
  line-height: 1.5;
}

/* ── Für Veranstalter ────────────────────────────────── */
.venue {
  margin-top: 2.25rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--edge);
  border-radius: 2px;
  background: var(--char);
  text-align: left;
}

.venue__eyebrow {
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: .875rem;
}

.venue__lead {
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.45;
  color: var(--skin);
  margin-bottom: 1.125rem;
}

.venue__facts {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  padding-top: 1rem;
  border-top: 1px solid var(--edge);
}

.venue__row {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
}

.venue__row dt {
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ash);
  padding-top: .125rem;
}

.venue__row dd {
  font-size: .8125rem;
  line-height: 1.45;
  color: var(--skin);
}

.venue__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  min-height: 44px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--glow);
  text-decoration: none;
  border-bottom: 1px solid var(--flame-deep);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}

.venue__arrow { transition: transform .25s ease; }

.venue__cta:hover,
.venue__cta:focus-visible {
  color: var(--flame);
  border-color: var(--flame);
}

.venue__cta:hover .venue__arrow,
.venue__cta:focus-visible .venue__arrow {
  transform: translateX(3px);
}

/* ── Fuß ─────────────────────────────────────────────── */
.foot {
  margin-top: 2.5rem;
  font-size: .75rem;
  line-height: 2;
  color: var(--ash);
}

.foot__link {
  color: var(--ash);
  text-decoration: none;
  transition: color .2s ease;
}

.foot__link:hover,
.foot__link:focus-visible {
  color: var(--glow);
}

.foot__sep { margin: 0 .5rem; opacity: .5; }

/* ── Härtung ─────────────────────────────────────────── */
.link__label,
.link__meta,
.book__title,
.book__note,
.reading__place,
.venue__row dd {
  overflow-wrap: anywhere;
  hyphens: auto;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .crest__ember { filter: blur(8px); }
  .crest__sigil { filter: drop-shadow(0 0 6px rgba(196,68,43,.55)); }
}

@media (max-height: 40rem) {
  .page   { padding-top: 2rem; padding-bottom: 2rem; }
  .crest  { height: 6rem; margin-bottom: 1.25rem; }
  .crest__sigil { width: 5.25rem; }
  .crest__ember { width: 9.5rem; height: 9.5rem; }
  .scar   { margin: 1.5rem 0; }
}

@media (max-width: 22.5rem) {
  .page { padding-left: 1.125rem; padding-right: 1.125rem; }

  .book { gap: .875rem; }
  .book__cover { width: 4.5rem; }
  .book__title { font-size: 1rem; }

  .link { gap: .625rem; padding: .875rem .75rem .875rem .625rem; }
  .link__label { font-size: .875rem; }

  .reading { padding: 1.25rem 1rem; }
  .venue   { padding: 1.25rem 1rem; }
  .venue__row { grid-template-columns: 1fr; gap: .25rem; }
}

@media (min-width: 48rem) and (min-height: 50rem) {
  .page { padding-top: 6rem; }
}