:root {
  --bg: #E4EFEB;
  --bg-soft: #CCDCD6;
  --panel: rgba(255, 255, 255, 0.82);
  --text: #374151;
  --muted: #6b7280;
  --accent: #bf4040;
  --accent-bright: #fd0101;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --content: min(980px, calc(100vw - 40px));
  --narrow: min(760px, calc(100vw - 40px));
  --font-body: "Proxima Nova", "Segoe UI", Arial, sans-serif;
  --font-display: "Century Gothic", "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

[id] {
  scroll-margin-top: 92px;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 18, 10, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.site-nav__inner {
  width: var(--content);
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
}

.site-nav__brand {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__links {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav__links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-nav__brand:hover,
.site-nav__brand:focus-visible {
  color: var(--text);
  outline: none;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  border-color: rgba(253, 1, 1, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.hero,
.intro__media,
.feature-band,
.contact-band,
.subpage-hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero,
.feature-band,
.contact-band,
.subpage-hero {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.64)),
    var(--image);
}

.hero {
  --image: url("images/hero.png");
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 72px 20px 60px;
  background-color: #484848;
  background-position: 48.7% 5.1%;
  text-align: center;
}

.hero__inner {
  width: min(1100px, 92vw);
  padding: 34px 0;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 92px);
  font-weight: 400;
  line-height: 1.12;
}

.hero p {
  margin: 18px 0 0;
  color: var(--text),
  font-size: clamp(18px, 2.5vw, 25px);
}

.subpage-hero {
  --image: url("images/hero.png");
  min-height: 42vh;
  display: grid;
  align-items: end;
  padding: clamp(58px, 10vw, 120px) 20px clamp(44px, 7vw, 76px);
  background-color: #484848;
  background-position: 48.7% 18%;
}

.subpage-hero__inner {
  width: var(--content);
  margin: 0 auto;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.35);
}

.subpage-hero p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
}

.subpage-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 400;
  line-height: 1.1;
}

.section {
  position: relative;
  background: var(--bg);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  min-height: 520px;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

.intro--reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.intro__media {
  min-height: 420px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.28)),
    var(--image);
}

.intro__content {
  display: grid;
  align-content: center;
  padding: clamp(36px, 7vw, 92px);
  background: var(--bg);
}

.bg-webauftritte {
  --image: url("images/webauftritte.jpg");
  background-position: 31% 50%;
}

.bg-rausdiemaus {
  --image: url("images/rausdiemaus.jpg");
}

.bg-roadshow {
  --image: url("images/roadshow.png");
}

.bg-tour {
  --image: url("images/tour.png");
}

.bg-imagefilm {
  --image: url("images/imagefilm.png");
}

.bg-kontakt {
  --image: url("images/kontakt.jpg");
}

.text-block {
  width: var(--narrow);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 0;
  text-align: left;
}

.text-block--center,
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

h2,
h3 {
  margin: 0;
  color: var(--accent);
  font-family: "Neo Sans Std", var(--font-body);
  font-size: clamp(30px, 5vw, 45px);
  font-weight: 400;
  line-height: 1.25;
}

h4 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(22px, 3vw, 29px);
  line-height: 1.35;
}

p {
  margin: 0;
  color: var(--text);
}

p + p,
p + h4,
h2 + h2,
h2 + p,
h3 + p,
h4 + p,
blockquote + p,
blockquote + h4,
.button-row + p {
  margin-top: 2rem;
}

blockquote {
  position: relative;
  margin: 0;
  padding: 0.35em 0 0.35em 1.1em;
  border-left: 5px solid rgba(191, 64, 64, 0.92);
  color: var(--text);
  font-family: "Neo Sans Std", var(--font-body);
  font-size: clamp(19px, 2.6vw, 25px);
  line-height: 1.5;
}

.tagline {
  padding: clamp(48px, 8vw, 92px) 20px;
  background: var(--bg-soft);
  box-shadow: inset 0 22px 40px rgba(0, 0, 0, 0.18), inset 0 -22px 40px rgba(0, 0, 0, 0.16);
  text-align: center;
}

.tagline h2 {
  font-size: clamp(34px, 7vw, 58px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2rem;
}

.button-row--center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 26px;
  border: 1px solid var(--accent-bright);
  border-radius: 999px;
  color: var(--accent);
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: #fe4c4c;
  color: #d27979;
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.gallery-wrap {
  width: var(--content);
  margin: 0 auto;
  padding: 0 0 clamp(50px, 8vw, 96px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery a {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: linear-gradient(135deg, #123321, #361b1b);
  text-decoration: none;
}

.gallery a:nth-child(2),
.gallery a:nth-child(3) {
  grid-row: span 2;
  min-height: 434px;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery a:hover img,
.gallery a:focus-visible img {
  transform: scale(1.04);
}

.gallery--directions {
  grid-template-columns: 1fr 1fr 1.5fr;
}

.gallery--directions a:nth-child(2),
.gallery--directions a:nth-child(3) {
  grid-row: span 1;
  min-height: 310px;
}

.gallery-caption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  text-align: center;
}

.feature-band,
.contact-band {
  min-height: 600px;
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 84px) clamp(20px, 5vw, 80px);
  box-shadow: inset 0 26px 44px rgba(0, 0, 0, 0.24), inset 0 -26px 44px rgba(0, 0, 0, 0.24);
}

.overlay-card {
  width: min(580px, 100%);
  padding: clamp(28px, 4vw, 56px) clamp(24px, 4vw, 38px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.overlay-card h3,
.overlay-card p {
  text-align: center;
}

.directions {
  padding-top: clamp(44px, 7vw, 84px);
  text-align: center;
}

.directions h3 {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.logo-section {
  width: var(--narrow);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 0;
}

.logo-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.legal-content {
  width: var(--narrow);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 0;
}

.legal-content h2 {
  margin-top: 3rem;
  font-size: clamp(27px, 4vw, 38px);
}

.legal-content h3 {
  margin-top: 2.5rem;
  font-size: clamp(22px, 3vw, 29px);
}

.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content h2 + p,
.legal-content h3 + p,
.legal-content p + p {
  margin-top: 1rem;
}

.legal-content a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.author,
.credits,
.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.author__inner,
.credits__inner {
  width: var(--content);
  margin: 0 auto;
  padding: 24px 0;
}

.author__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.author strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.site-footer {
  background: #05120a;
}

.site-footer nav {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  padding: 24px 0;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
  outline: none;
}

@media (max-width: 900px) {
  body {
    font-size: 18px;
  }

  [id] {
    scroll-margin-top: 126px;
  }

  .site-nav__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-height: auto;
    padding: 12px 0;
  }

  .site-nav__links {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }

  .intro,
  .intro--reverse {
    grid-template-columns: 1fr;
  }

  .intro--reverse .intro__media {
    order: -1;
  }

  .intro__content {
    padding: 42px 24px;
  }

  .gallery,
  .gallery--directions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery a:nth-child(2),
  .gallery a:nth-child(3),
  .gallery--directions a:nth-child(2),
  .gallery--directions a:nth-child(3) {
    grid-row: span 1;
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  :root {
    --content: calc(100vw - 28px);
    --narrow: calc(100vw - 28px);
  }

  [id] {
    scroll-margin-top: 152px;
  }

  .site-nav__brand {
    font-size: 19px;
  }

  .site-nav__links a {
    min-height: 32px;
    padding: 6px 9px;
    font-size: 14px;
  }

  .hero {
    min-height: 90vh;
    padding: 48px 14px;
  }

  .intro__media {
    min-height: 300px;
  }

  .gallery,
  .gallery--directions {
    grid-template-columns: 1fr;
  }

  .gallery a,
  .gallery a:nth-child(2),
  .gallery a:nth-child(3),
  .gallery--directions a:nth-child(2),
  .gallery--directions a:nth-child(3) {
    min-height: 260px;
  }

  .feature-band,
  .contact-band {
    min-height: 520px;
    padding: 28px 14px;
  }

  .author__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.hero .hero__inner .hero-subline {
  color: #ffffff !important;
}