/* =========================================================================
   Kölsche Jecke neV – Stylesheet
   Warmes, kölsches Erscheinungsbild (rut un wieß), modern & responsiv.
   Keine externen Schriften/Dienste -> datenschutzfreundlich.
   ========================================================================= */

:root {
  --red:        #c5172e;
  --red-dark:   #9c1023;
  --red-soft:   #f7e4e6;
  --gold:       #c0902f;
  --ink:        #2a2521;
  --ink-soft:   #5d554c;
  --paper:      #faf6f0;
  --paper-2:    #f3ece1;
  --card:       #ffffff;
  --line:       #e7dccd;
  --shadow:     0 1px 2px rgba(42,37,33,.06), 0 8px 24px rgba(42,37,33,.07);
  --shadow-sm:  0 1px 2px rgba(42,37,33,.08), 0 4px 12px rgba(42,37,33,.06);
  --radius:     12px;
  --maxw:       1000px;
  --serif:      Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
  --sans:       system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 760px; }

.section { padding: 56px 0; }
.section + .section { padding-top: 8px; }
.section-alt { background: var(--paper-2); border-block: 1px solid var(--line); }

.divider {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 6px 0 30px; color: var(--gold); letter-spacing: 2px; font-size: 14px;
}
.divider::before, .divider::after {
  content: ""; height: 1px; width: 56px; background: var(--line);
}

/* ---------- Top stripe + Header ---------- */
.topstripe { height: 5px; background: linear-gradient(90deg, var(--red) 0 50%, #fff 50% 100%); }

.site-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 22px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: inherit; }
.brand-badge {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 20px;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.28rem; color: var(--ink); letter-spacing: .2px; }
.brand-tag  { font-size: .76rem; color: var(--red-dark); letter-spacing: .14em; text-transform: uppercase; }

/* ---------- Navigation ---------- */
.nav-toggle { display: none; }
.nav-burger {
  display: none; cursor: pointer; border: 1px solid var(--line);
  border-radius: 9px; padding: 8px 12px; font-size: 18px; line-height: 1; color: var(--ink);
  background: #fff; user-select: none;
}
.nav { display: flex; flex-wrap: wrap; gap: 2px; align-items: center; }
.nav a {
  display: inline-block; padding: 8px 12px; border-radius: 8px;
  color: var(--ink-soft); text-decoration: none; font-size: .95rem; font-weight: 500;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--ink); background: var(--paper-2); }
.nav a.active { color: var(--red-dark); border-bottom-color: var(--red); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 380px at 80% -120px, rgba(197,23,46,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
  padding: 64px 0 56px;
}
.hero-eyebrow { color: var(--red-dark); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: .8rem; margin: 0 0 14px; }
.hero h1 {
  font-family: var(--serif); font-weight: 700; line-height: 1.08;
  font-size: clamp(2rem, 5.2vw, 3.3rem); margin: 0 0 18px; color: var(--ink); letter-spacing: -.5px;
}
.hero h1 .accent { color: var(--red); }
.hero-lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 640px; margin: 0 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform .04s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--red); color: var(--red-dark); }

/* ---------- Page title (interior pages) ---------- */
.page-head { padding: 50px 0 8px; }
.page-head .eyebrow { color: var(--red-dark); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .78rem; margin: 0 0 10px; }
.page-head h1 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.12; margin: 0; color: var(--ink); }
.page-head p.sub { color: var(--ink-soft); font-size: 1.08rem; margin: 14px 0 0; max-width: 720px; }

/* ---------- Prose ---------- */
.prose { font-size: 1.06rem; }
.prose p { margin: 0 0 1.1em; }
.prose h2 { font-family: var(--serif); font-size: 1.5rem; margin: 1.8em 0 .5em; color: var(--ink); }
.prose h3 { font-size: 1.15rem; margin: 1.5em 0 .4em; color: var(--ink); }
.prose ul { padding-left: 1.2em; margin: 0 0 1.1em; }
.prose li { margin: .3em 0; }
.prose a { font-weight: 500; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.signoff { color: var(--ink-soft); font-style: italic; margin-top: 1.6em; }
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }

/* ---------- Two-column text + media ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; }
@media (min-width: 760px) {
  .split.cols-2 { grid-template-columns: 1.1fr .9fr; }
  .split.media-left { grid-template-columns: .9fr 1.1fr; }
}

/* ---------- Figures & galleries ---------- */
figure { margin: 0; }
.photo {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.photo img { width: 100%; }
.photo figcaption { padding: 10px 14px; font-size: .9rem; color: var(--ink-soft); line-height: 1.45; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.gallery.tight { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.stack > * + * { margin-top: 18px; }

/* ---------- Cards (overview pages) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.card {
  display: block; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 22px 20px; text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm); transition: border-color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: var(--shadow); }
.card .kicker { color: var(--red-dark); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.card h3 { font-family: var(--serif); font-size: 1.25rem; margin: 8px 0 6px; color: var(--ink); }
.card p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.card .go { display: inline-block; margin-top: 14px; color: var(--red-dark); font-weight: 600; font-size: .92rem; }

/* ---------- Highlight / donation box ---------- */
.callout {
  background: linear-gradient(180deg, #fff, var(--red-soft));
  border: 1px solid #efc9ce; border-left: 5px solid var(--red);
  border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm);
}
.callout h2, .callout h3 { margin-top: 0; }
.bank {
  background: var(--card); border: 1px dashed var(--gold); border-radius: 10px;
  padding: 14px 18px; margin-top: 14px; font-size: 1rem;
}
.bank strong { color: var(--ink); }

.note {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 8px; padding: 14px 18px; font-size: .95rem; color: var(--ink-soft);
}

/* ---------- Press list ---------- */
.press-list { list-style: none; padding: 0; margin: 0; }
.press-list li {
  padding: 12px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap;
}
.press-list .outlet { font-weight: 600; color: var(--ink); }
.press-list .date { color: var(--ink-soft); font-size: .92rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.contact-card .label { color: var(--red-dark); font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 8px; }
.contact-card a { font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #e9e1d6; margin-top: 60px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 44px 22px 30px;
  display: grid; grid-template-columns: 1fr; gap: 26px;
}
@media (min-width: 720px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h4 { font-family: var(--serif); color: #fff; font-size: 1.1rem; margin: 0 0 12px; }
.site-footer a { color: #f0c9ce; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 6px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); margin-top: 8px;
  padding: 16px 22px; text-align: center; font-size: .85rem; color: #bcae9d;
  max-width: var(--maxw); margin-inline: auto;
}
.footer-bottom a { color: #d9c6b3; }

/* ---------- Misc ---------- */
.backlink { display: inline-block; margin-top: 30px; font-weight: 600; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Responsive nav ---------- */
@media (max-width: 860px) {
  .nav-burger { display: inline-block; }
  .nav {
    display: none; position: absolute; top: 100%; right: 14px; left: 14px;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 8px; box-shadow: var(--shadow); margin-top: 8px;
  }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav a { padding: 11px 12px; border-bottom: none; border-radius: 8px; }
  .nav a.active { background: var(--red-soft); }
  .header-inner { position: relative; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
