/* Briloner Bierbande — static landing page. Monochrome, matches the
   badge artwork. Display stack = bold system sans (no webfonts, per
   IronLog engineering principles); body = system serif. */

:root {
  --ink: #000;
  --paper: #fff;
}

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

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

body {
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
}

h1, h2, .slogan, .scroll-hint {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', 'Franklin Gothic Bold', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--ink);
}

.hero-logo {
  width: min(78vw, 360px);
}

.slogan {
  font-size: clamp(1.4rem, 6vw, 2.2rem);
  line-height: 1.25;
}

.scroll-hint {
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--paper);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

section {
  padding: 4rem 1.5rem;
  text-align: center;
}

section.light {
  background: var(--paper);
  color: var(--ink);
}

section.dark {
  background: var(--ink);
  color: var(--paper);
}

.section-mark {
  width: min(50vw, 180px);
  margin: 0 auto 1.5rem;
}

.section-mark.badge {
  width: min(40vw, 150px);
}

.section-mark.wordmark {
  width: min(70vw, 260px);
}

section h2 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: 1.5rem;
}

section p {
  max-width: 42ch;
  margin: 0 auto 1rem;
  font-size: 1.05rem;
}

section p:last-child { margin-bottom: 0; }

section.contact p {
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: none;
  letter-spacing: normal;
}

/* Live-mode banner — inverted strip (white on the black hero) so it
   reads as "special" without leaving the monochrome language. Sticky,
   so the gallery entrance stays reachable while scrolling. */
.live-banner {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 3px solid var(--ink);
}

.live-text {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', 'Franklin Gothic Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

.live-cta {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', 'Franklin Gothic Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  padding: 0.45rem 1rem;
}

footer {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

@media (min-width: 640px) {
  section p { max-width: 56ch; }
}
