/* ==========================================================================
   NoMoreBoring — Stylesheet
   Die Startseite trägt ihre Gestaltung weiterhin in Inline-Styles.
   Diese Datei ergänzt, was Inline-Styles nicht können: Schrift, Hover,
   Media Queries, Cookie-Banner und die Rechtsseiten.
   ========================================================================== */

/* --- Schrift ---------------------------------------------------------------
   Archivo wird lokal ausgeliefert. Beim Seitenaufruf geht dadurch keine
   Anfrage an Google-Server, es wird keine IP an Dritte übertragen.
   Eine Variable Font deckt alle Schnitte von 100 bis 900 ab.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/archivo-latin.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: 'Archivo';
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/archivo-latin-ext.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;
}

/* --- Grundlagen ----------------------------------------------------------- */
html { background: #0E0E0E; }
body {
  margin: 0;
  background: #0E0E0E;
  color: #F4F1EC;
  font-family: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
}
a { color: #FF6A3D; text-decoration: none; }
a:hover { color: #F4F1EC; }
/* Die Kopfzeile klebt oben. Ohne diesen Abstand verschwinden Sprungziele darunter. */
section[id] { scroll-margin-top: 88px; }
::selection { background: #FF6A3D; color: #0E0E0E; }
:focus-visible { outline: 2px solid #FF6A3D; outline-offset: 2px; }

/* --- Hover-Zustände --------------------------------------------------------
   Die Elemente tragen ihre Gestaltung inline. Inline-Styles schlagen jede
   Regel aus dem Stylesheet, deshalb ist !important hier notwendig.
   -------------------------------------------------------------------------- */
.nav-link:hover { opacity: 1 !important; color: #FF6A3D !important; }
.btn-solid:hover { background: #F4F1EC !important; color: #0E0E0E !important; }
.btn-outline:hover { border-color: #FF6A3D !important; color: #FF6A3D !important; }
.link-underline:hover { border-color: #FF6A3D !important; color: #F4F1EC !important; }
.footer-link:hover { color: #FF6A3D !important; }

/* --- Bildplatzhalter -------------------------------------------------------
   Ersetzt das frühere <image-slot>. Ein <img> hier hinein hängen genügt,
   um einen Platzhalter durch ein echtes Bild zu tauschen.
   -------------------------------------------------------------------------- */
.shot-slot {
  position: absolute;
  inset: 0;
  background-color: #161412;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(244, 241, 236, 0.035) 0 1px,
    transparent 1px 9px
  );
}
.shot-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Ausgeblendete Kurzfassungen der Navigation --------------------------- */
[data-cta-short] { display: none; }

@media (max-width: 900px) {
  [data-nav] { display: none !important; }
}

@media (max-width: 760px) {
  [data-labelgrid], [data-rowgrid] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  [data-herobtn] { min-width: 0 !important; width: 100% !important; }
  [data-bleedgrid] { margin-left: 0 !important; margin-right: 0 !important; }
  [data-bleedgrid] > div {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-right: 0 !important;
  }
  [data-shotgrid] { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 520px) {
  [data-cta-long] { display: none; }
  [data-cta-short] { display: inline; }
  [data-cta-arrow] { display: none; }
  [data-header] {
    padding-left: 14px !important;
    padding-right: 14px !important;
    gap: 12px !important;
  }
  [data-brand] { font-size: 16px !important; }
  [data-brand] [data-brand-mark] { width: 18px !important; height: 18px !important; }
  [data-cta] { padding: 11px 14px !important; font-size: 12px !important; }
}

/* --- Cookie-Banner ---------------------------------------------------------
   Beide Schaltflächen sind gleich groß, gleich gefüllt und gleich weit
   entfernt. Ablehnen darf nicht schwerer erreichbar sein als Akzeptieren.
   -------------------------------------------------------------------------- */
.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: #161412;
  border-top: 2px solid #FF6A3D;
  transform: translateY(100%);
  transition: transform 420ms cubic-bezier(0.16, 0.84, 0.44, 1);
}
.consent[data-open='1'] { transform: translateY(0); }
.consent[hidden] { display: none; }

.consent__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(20px, 2.5vw, 28px) clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
}

.consent__text {
  margin: 0;
  flex: 1 1 320px;
  min-width: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.72);
  max-width: 68ch;
}
.consent__text a {
  color: #F4F1EC;
  border-bottom: 2px solid #3A3630;
  padding-bottom: 1px;
}
.consent__text a:hover { border-color: #FF6A3D; }

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

.consent__btn {
  appearance: none;
  border: 2px solid transparent;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 15px 26px;
  min-width: 148px;
  cursor: pointer;
  border-radius: 0;
  transition: background 180ms ease, color 180ms ease;
}
.consent__btn--accept { background: #FF6A3D; color: #0E0E0E; }
.consent__btn--accept:hover { background: #F4F1EC; }
.consent__btn--decline { background: #F4F1EC; color: #0E0E0E; }
.consent__btn--decline:hover { background: #FF6A3D; }

@media (max-width: 560px) {
  .consent__actions { width: 100%; }
  .consent__btn { flex: 1 1 140px; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .consent { transition: none; }
}

/* --- Rechtsseiten ---------------------------------------------------------- */
.legal {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 104px) clamp(20px, 4vw, 64px) clamp(72px, 9vw, 140px);
}
.legal__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #FF6A3D;
}
.legal__eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: #FF6A3D;
  display: block;
}
.legal h1 {
  font-weight: 800;
  font-size: clamp(38px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: clamp(20px, 3vw, 36px) 0 0;
  text-wrap: balance;
}
.legal h2 {
  font-weight: 800;
  font-size: clamp(21px, 2.2vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding-top: 24px;
  border-top: 2px solid #26231F;
}
.legal h3 {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin: 28px 0 0;
}
.legal p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244, 241, 236, 0.72);
  text-wrap: pretty;
}
.legal address {
  font-style: normal;
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244, 241, 236, 0.72);
}
.legal a {
  color: #F4F1EC;
  border-bottom: 2px solid #3A3630;
  padding-bottom: 1px;
}
.legal a:hover { border-color: #FF6A3D; }
.legal__meta {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 241, 236, 0.42);
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(48px, 6vw, 72px);
  border: 2px solid #3A3630;
  color: #F4F1EC;
  font-weight: 800;
  font-size: 15px;
  padding: 16px 24px;
  border-bottom-width: 2px;
}
.legal__back:hover { border-color: #FF6A3D !important; color: #FF6A3D !important; }

/* --- Fußzeile -------------------------------------------------------------- */
.site-footer {
  border-top: 2px solid #26231F;
}
.site-footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 26px clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(244, 241, 236, 0.45);
}
.site-footer a {
  color: rgba(244, 241, 236, 0.45);
  border: 0;
}
.site-footer a:hover { color: #FF6A3D; }
.site-footer__brand {
  color: #F4F1EC;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: none;
  font-size: 17px;
}
.site-footer__spacer { margin-left: auto; }

.consent-reopen {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: rgba(244, 241, 236, 0.45);
  cursor: pointer;
}
.consent-reopen:hover { color: #FF6A3D; }
