/* AURUMCINE — black & gold onepager */
:root {
  --black: #060606;
  --ink: #0d0d0d;
  --panel: #101010;
  --gold: #c9a45c;
  --gold-bright: #e6c87e;
  --gold-dim: #8a7442;
  --text: #d9d4c8;
  --text-dim: #8f8a7e;
  --line: rgba(201, 164, 92, 0.18);
  /* Eine Schrift fuer die ganze Seite. Vier Familien nebeneinander haben das
     Bild unruhig gemacht; Space Grotesk traegt Headline, Fliesstext und die
     gesperrten Kleinteile gleichermassen. */
  --font: "Space Grotesk", -apple-system, "Segoe UI", sans-serif;

  /* Eine Groessenleiter statt zwei Dutzend Einzelwerte. */
  --fs-xs:   .74rem;                        /* gesperrte Kleinteile: Labels, Meta, Buttons */
  --fs-sm:   .88rem;                        /* Sekundaertext */
  --fs-md:   1rem;                          /* Fliesstext, Formularfelder */
  --fs-lg:   1.2rem;                        /* Lead, kleine Ueberschrift */
  --fs-xl:   clamp(1.5rem, 2.6vw, 1.9rem);  /* h3 */
  --fs-2xl:  clamp(1.9rem, 4vw, 3rem);      /* h2 */
  --fs-3xl:  clamp(2rem, 5.2vw, 4.2rem);    /* h1 */
  --fs-lead: clamp(.88rem, 2vw, 1.25rem);   /* alle Zeilen im Intro */

  /* Zwei Sperrungen statt neun. */
  --track: .2em;
  --track-wide: .36em;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
/* Eine Grotesk hat keine echte Kursive — der Browser wuerde sie schraeg
   stellen. Betonung laeuft deshalb ueber Farbe, nicht ueber den Schnitt. */
em, i { font-style: normal; color: var(--gold); }
strong, b { font-weight: 500; }
a { color: inherit; text-decoration: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: border-color .4s ease;
  border-bottom: 1px solid transparent;
}
/* Blur/Background liegt auf einem Pseudo-Element, NICHT auf .nav selbst:
   ein backdrop-filter auf .nav wuerde einen containing block erzeugen und
   das fixed positionierte Mobile-Menue (.nav-links) auf die Navbar begrenzen. */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(6,6,6,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.nav.scrolled::before { opacity: 1; }
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center;
  line-height: 0;
}
.nav-logo-img {
  display: block; height: 32px; width: auto;
  transition: opacity .3s;
}
.nav-logo-img:hover { opacity: .85; }
.nav-links { display: flex; gap: 38px; list-style: none; align-items: center; }
.nav-links a {
  font-size: var(--fs-xs); letter-spacing: var(--track); text-transform: uppercase;
  color: var(--text-dim); transition: color .3s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-cta {
  border: 1px solid var(--gold-dim); padding: 10px 24px;
  color: var(--gold) !important; transition: background .3s, color .3s !important;
  font-weight: 500; letter-spacing: var(--track);
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 26px; height: 1.5px; background: var(--gold); margin: 6px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
/* Eine feste Einstellung fuer Intro und Hero. Fixiert: sie liegt schon unter
   dem Intro und bleibt stehen, bis die Seite darueber hinwegscrollt.
   z-index -1: sonst laege die fixierte Ebene ueber nicht positionierten
   Bloecken wie dem Footer. */
.hero-bg { position: fixed; inset: 0; z-index: -1; }
.hero-bg > * { position: absolute; inset: 0; width: 100%; height: 100%; }
/* Das Standbild (erster Frame) liegt unter dem Video. Das Video blendet erst
   ein, wenn es wirklich laeuft — ein blockiertes Autoplay laesst das Bild stehen. */
.hero-poster { display: block; }
.hero-poster img { width: 100%; height: 100%; object-fit: cover; }
.hero-video { object-fit: cover; opacity: 0; transition: opacity .6s ease-in-out; }
.hero-bg.video-on .hero-video { opacity: 1; }
/* Blackout — der einzige Helligkeitsregler. Dieser Wert ist der Endzustand,
   auf dem der Hero steht; das Intro startet dunkler (html.intro-active weiter
   unten), die Kurve dazwischen faehrt intro.js. */
.hero-blackout {
  background: #000;
  opacity: .55;
  transition-property: opacity;
  transition-timing-function: linear;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(6,6,6,.18) 0%, rgba(6,6,6,.72) 78%),
    linear-gradient(to bottom, rgba(6,6,6,.45) 0%, rgba(6,6,6,.15) 40%, var(--black) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 1080px; }
.hero-title {
  font-family: var(--font); font-weight: 500;
  font-size: var(--fs-3xl);
  line-height: 1.08; color: #efece4;
  letter-spacing: -0.02em;
  /* balance verhindert die ausgefranste Einzelwort-Zeile auf schmalen
     Displays. */
  text-wrap: balance;
}
.hero-title span { display: block; }
.br-mob { display: none; }
.hero-title .gold { color: var(--gold); font-style: normal; }

/* ---------- Hero-Sequenz ----------
   Was nach dem Intro uebrig bleibt, setzt sich Wort fuer Wort aus der
   Unschaerfe zusammen. Die Klasse .seq setzt JS; ohne JS oder bei
   reduzierter Bewegung steht der Satz einfach da. */
.hero-title.seq { display: grid; }
.hero-title.seq > span {
  grid-area: 1 / 1;
  align-self: center;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
}
.hero-title.seq .w {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(.42em);
  transition:
    opacity .75s cubic-bezier(.2,.65,.25,1),
    filter  .75s cubic-bezier(.2,.65,.25,1),
    transform .75s cubic-bezier(.2,.65,.25,1);
  transition-delay: calc(var(--i, 0) * 58ms);
}
.hero-title.seq > span.in { opacity: 1; }
.hero-title.seq > span.in .w { opacity: 1; filter: blur(0); transform: none; }
/* Das Verschwinden: nach oben weg, in Unschaerfe aufgeloest. */
.hero-title.seq > span.out { opacity: 1; }
.hero-title.seq > span.out .w {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(-.34em) scale(1.04);
  transition-duration: .85s;
  transition-delay: calc(var(--i, 0) * 52ms);
}
/* "experience." kommt einen Takt spaeter — darauf laeuft der Satz hinaus. */
.hero-title.seq > span.in .w-last { transition-delay: calc(var(--i, 0) * 58ms + 480ms); }
/* Der Scroll-Strich wartet, bis die Sequenz steht. */
.hero-title.seq ~ .hero-scroll { animation-delay: 2.8s; }

.hero-scroll { display: block; margin: 64px auto 0; width: 1px; }
.hero-scroll .line { display: block; width: 1px; height: 72px; margin: 0 auto; background: linear-gradient(to bottom, transparent, var(--gold)); animation: drop 2.4s ease-in-out infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Honeypot — abseits des Viewports statt display:none, das pruefen Bots. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(26px); animation: rise 1.1s cubic-bezier(.2,.65,.25,1) forwards; }
.d1 { animation-delay: .15s; } .d2 { animation-delay: .4s; } .d3 { animation-delay: .75s; } .d4 { animation-delay: 1.1s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Sections ---------- */
.section { padding: 130px 0; position: relative; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-head { max-width: 780px; margin-bottom: 70px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.label {
  display: inline-block; font-size: var(--fs-xs); letter-spacing: var(--track-wide); text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  font-weight: 500;
}
.label::after { content: ""; display: block; width: 42px; height: 1px; background: var(--gold-dim); margin-top: 14px; }
.center .label::after { margin-left: auto; margin-right: auto; }
h2 {
  font-family: var(--font); font-weight: 500;
  font-size: var(--fs-2xl);
  line-height: 1.1; color: #ece8df;
  letter-spacing: -0.02em;
}
.section-intro { margin-top: 26px; color: var(--text-dim); max-width: 560px; }

/* Philosophy */
.philosophy { background: linear-gradient(var(--black), var(--ink)); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.text-block p + p { margin-top: 22px; }
.text-block strong { color: #ece8df; font-weight: 500; }
.gold-text { color: var(--gold); }
.beyond-text {
  font-family: var(--font); font-weight: 500;
  font-size: var(--fs-lg); letter-spacing: .04em;
  color: #ece8df; text-transform: uppercase;
  vertical-align: middle;
}
.philosophy-img { margin-top: 100px; height: 62vh; min-height: 380px; overflow: hidden; }
.philosophy-img img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }

/* Categories */
.categories { background: var(--ink); }
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.cat-card {
  background: var(--panel); border: 1px solid var(--line);
  transition: border-color .4s, transform .4s;
}
.cat-card:hover { border-color: rgba(201,164,92,.45); transform: translateY(-4px); }
.cat-img { overflow: hidden; aspect-ratio: 4/3; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.65,.25,1); }
.cat-card:hover .cat-img img { transform: scale(1.05); }
.cat-body { padding: 46px 44px 52px; }
.cat-body h3 {
  font-family: var(--font); font-size: var(--fs-xl); font-weight: 500;
  letter-spacing: -0.02em; color: #f0ede5; margin-bottom: 14px;
}
.inline-logo {
  display: inline-block; vertical-align: middle; height: 1.2em; width: auto;
}
h3 .inline-logo { height: 1.4em; }
.cat-tag { font-size: var(--fs-xs); letter-spacing: var(--track); text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 500; }
.cat-body > p:not(.cat-tag) { color: var(--text-dim); }
.cat-close { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--text) !important; }
.cat-close strong { color: var(--gold); }
.cat-card.beyond { border-color: rgba(201,164,92,.35); background: linear-gradient(160deg, #141210, var(--panel) 55%); }
.cat-card.beyond .cat-body { padding-top: 60px; }

/* Standard */
.standard { background: linear-gradient(var(--ink), var(--black)); }
.standard-grid {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.standard-grid li { background: var(--black); padding: 38px 34px; transition: background .4s; }
.standard-grid li:hover { background: #0f0e0c; }
.std-spacer { background: var(--black) !important; pointer-events: none; }
.std-num { font-family: var(--font); font-weight: 500; font-size: var(--fs-xs); color: var(--gold-dim); letter-spacing: var(--track); }
.standard-grid h4 {
  font-family: var(--font); font-size: var(--fs-lg); font-weight: 500;
  color: #ece8df; margin: 14px 0 10px;
  letter-spacing: -0.02em;
}
.standard-grid p { font-size: var(--fs-sm); color: var(--text-dim); }

/* Gallery */
.gallery { background: var(--black); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 0 10px; max-width: 1600px; margin: 0 auto;
}
.g-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.g-large { grid-column: span 2; aspect-ratio: 16/9; }
.g-wide { grid-column: span 2; aspect-ratio: 16/9; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.2,.65,.25,1), filter .8s; filter: brightness(.92); }
.g-item:hover img { transform: scale(1.06); filter: brightness(1.05); }
.g-item figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 46px 26px 20px;
  background: linear-gradient(to top, rgba(6,6,6,.85), transparent);
  font-size: var(--fs-xs); letter-spacing: var(--track-wide); text-transform: uppercase;
  color: var(--gold-bright); opacity: 0; transform: translateY(8px);
  transition: opacity .5s, transform .5s;
}
.g-item figcaption .inline-logo { height: 1.5em; }
/* Beschreibung unter dem Titel — normal gesetzt, sonst liest sich der Satz nicht. */
.g-item figcaption .g-desc {
  display: block; margin-top: 8px; max-width: 34em;
  font-size: var(--fs-sm); line-height: 1.55;
  letter-spacing: 0; text-transform: none; color: var(--text);
}
.g-item:hover figcaption { opacity: 1; transform: none; }

/* Contact */
.contact { background: var(--ink); }
.contact::before {
  content: ""; position: absolute; inset: 0;
  background: url("../assets/img/texture.webp") center/cover;
  opacity: .05; pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; position: relative; }
.contact-info h2 { margin-bottom: 30px; }
.contact-info p { color: var(--text-dim); }
.contact-info p + p { margin-top: 18px; }
.contact-note { font-size: var(--fs-sm); }
.wa-button {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 38px; padding: 16px 34px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: var(--fs-xs); letter-spacing: var(--track); text-transform: uppercase;
  transition: background .35s, color .35s, box-shadow .35s;
}
.wa-button:hover { background: var(--gold); color: var(--black); box-shadow: 0 0 44px rgba(201,164,92,.28); }

.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label {
  font-size: var(--fs-xs); letter-spacing: var(--track); text-transform: uppercase; color: var(--text-dim);
}
.form-row .opt { letter-spacing: .1em; text-transform: none; }
.form-row input, .form-row select, .form-row textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 10px 2px; color: #ece8df; font-family: var(--font); font-size: var(--fs-md); font-weight: 300;
  transition: border-color .3s; border-radius: 0;
}
.form-row select { appearance: none; cursor: pointer; }
.form-row select option { background: var(--ink); color: var(--text); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.submit-btn {
  margin-top: 12px; align-self: flex-start;
  background: var(--gold); color: var(--black); border: 1px solid var(--gold);
  padding: 16px 46px; font-size: var(--fs-xs); letter-spacing: var(--track); text-transform: uppercase;
  font-family: var(--font); font-weight: 500; cursor: pointer;
  transition: background .35s, color .35s;
}
.submit-btn:hover { background: transparent; color: var(--gold); }
.form-status { font-size: var(--fs-sm); color: var(--gold-bright); min-height: 1.4em; }
.form-status.error { color: #d66; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 70px 0 50px; background: var(--black); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer-claim { font-size: var(--fs-lg); font-weight: 300; color: var(--text-dim); }
.footer-meta { font-size: var(--fs-xs); letter-spacing: var(--track); color: #55524b; }
.footer-meta a:hover { color: var(--gold); }

/* Fade-in on scroll */
.fade { opacity: 0; transform: translateY(34px); transition: opacity 1s cubic-bezier(.2,.65,.25,1), transform 1s cubic-bezier(.2,.65,.25,1); }
.fade.in { opacity: 1; transform: none; }

/* Scroll-Lock waehrend das Mobile-Menue offen ist */
body.nav-open { position: fixed; width: 100%; overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .two-col, .cat-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-grid { gap: 60px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-large, .g-wide { grid-column: span 2; }
}
@media (max-width: 760px) {
  .std-spacer { display: none; }
  .section { padding: 88px 0; }
  .nav-inner { padding: 16px 20px; position: relative; z-index: 102; }
  .nav-logo { position: relative; z-index: 102; }
  .nav-burger { position: relative; z-index: 102; }
  .nav-links {
    position: fixed; inset: 0; width: 100%; height: 100%; height: 100dvh;
    flex-direction: column; justify-content: center;
    background: rgba(6,6,6,.97);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    gap: 28px; opacity: 0; pointer-events: none; transition: opacity .4s;
    z-index: 101;
    padding: calc(72px + env(safe-area-inset-top)) 20px calc(40px + env(safe-area-inset-bottom));
    overflow-y: auto; overscroll-behavior: contain;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: var(--fs-md); letter-spacing: var(--track); }
  .nav-burger { display: block; }
  .nav-burger.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .nav-burger.open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .nav-logo-img { height: 32px; }
  .br-mob { display: inline; }
  /* Ein Satz, zwei Zeilen — der Umbruch ist gesetzt, nicht zufaellig. */
  .hero-title { line-height: 1.2; }
  .hero-scroll { margin-top: 46px; }
  .hero-scroll .line { height: 54px; }
  .gallery-grid { grid-template-columns: 1fr; padding: 0 10px; }
  .g-large, .g-wide { grid-column: span 1; }
  .g-item figcaption { opacity: 1; transform: none; }
  .philosophy-img { height: 44vh; }
  .cat-body { padding: 34px 26px 40px; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  /* Das Hintergrundvideo bekommt hier keine Quelle (main.js), es bleibt beim Poster. */
  /* Der Satz steht sofort still da, statt sich aufzubauen. */
  .hero-title.seq { display: block !important; }
  .hero-title.seq > span { opacity: 1 !important; }
  .hero-title.seq .w { opacity: 1 !important; filter: none !important; transform: none !important; }
  /* Ohne Bewegung gibt es auch nichts zu wiederholen. */
  .intro-replay { display: none !important; }
}

/* ---------- Intro ---------- *
   Die ersten ~22 Sekunden sind kein Website-Effekt, sondern der Beginn eines
   Films. Bewegt wird nur Opazitaet: die der Typo hier und die der Blackout-
   Ebene ueber dem Hintergrundvideo (.hero-bg). Kein Zoom, kein Blur, keine
   fliegenden Buchstaben. Das Overlay ist durchsichtig, liegt ueber der
   fertigen Seite und uebergibt am Ende an sie.
   Blenddauern kommen aus den Konstanten in intro.js; hier stehen nur
   Eigenschaft und Easing.
   Ohne JS, mit reduced-motion oder beim zweiten Besuch existiert es nicht:
   html.intro-active wird von einem Inline-Skript im <head> gesetzt.          */
.intro { display: none; }
html.intro-active { overflow: hidden; }
html.intro-active body { overflow: hidden; }
html.intro-active .nav { opacity: 0; pointer-events: none; transition: opacity 1.2s ease-in-out; }
/* Startwert der Blackout-Kurve (= BLACKOUT[0] in intro.js), schon im ersten Frame. */
html.intro-active .hero-blackout { opacity: .97; }
/* Der Hero-Satz wartet unter dem durchsichtigen Overlay auf die Uebergabe. */
.hero-content { transition-property: opacity; transition-timing-function: ease-in-out; }
html.intro-active .hero-content { opacity: 0; }

/* Layout liegt auf .intro selbst, nur die Sichtbarkeit haengt an intro-active:
   beim Uebergang faellt die Klasse weg, das Overlay soll dabei aber weiter
   fixed liegen und ausblenden (JS setzt dann display inline). */
.intro {
  position: fixed; inset: 0; z-index: 9000;
  background: transparent;
  opacity: 1;
  transition-property: opacity, background-color;
  transition-timing-function: ease-in-out;
}
html.intro-active .intro { display: block; }
.intro.gone { opacity: 0; pointer-events: none; }
/* Replay: erst ins Schwarz, damit der Sprung nach oben nicht zu sehen ist. */
.intro.cover { background: #000; }

.intro-stage {
  position: relative; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(28px, 5vh, 56px);
  padding: 0 24px; text-align: center;
}

.intro-logo {
  width: clamp(180px, 26vw, 320px); height: auto;
  opacity: 0; transition-property: opacity; transition-timing-function: ease-in-out;
}
.intro-logo.in { opacity: 1; }
.intro-logo.out { opacity: 0; }

.intro-lines { position: relative; display: grid; gap: clamp(18px, 3.4vh, 34px); }

.intro-claim {
  font-family: var(--font);
  font-weight: 500;
  font-size: var(--fs-lead);
  letter-spacing: -0.02em;
  color: #efece4;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0 .28em;
  transition-property: opacity; transition-timing-function: ease-in-out;
}
.intro-claim .w {
  opacity: 0;
  transition-property: opacity; transition-timing-function: ease-in-out;
}
.intro-claim .w.in { opacity: 1; }
.intro-claim.out { opacity: 0; }

/* Gleiche Groesse und Farbe wie der Claim — das Wort wirkt durch seinen
   eigenen Einsatz, nicht durch Groesse oder Gold. */
.intro-word {
  font-family: var(--font);
  font-weight: 500;
  font-size: var(--fs-lead);
  letter-spacing: -0.02em;
  color: #efece4;
  opacity: 0;
  transition-property: opacity; transition-timing-function: ease-in-out;
}
.intro-word.in { opacity: 1; }
.intro-word.out { opacity: 0; }

.intro-purpose {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; gap: clamp(14px, 2.6vh, 26px);
  font-family: var(--font);
  font-weight: 500;
  font-size: var(--fs-lead);
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: #efece4;
  opacity: 0; transition-property: opacity; transition-timing-function: ease-in-out;
}
.intro-purpose .gold { color: var(--gold); }
.intro-purpose.in { opacity: 1; }
.intro-purpose.out { opacity: 0; }

.intro-skip {
  position: absolute; right: 22px; bottom: 20px;
  font-family: var(--font); font-size: var(--fs-xs); font-weight: 300;
  letter-spacing: var(--track); text-transform: uppercase;
  color: var(--text-dim);
  background: none; border: 0; cursor: pointer;
  padding: 10px 4px;
  opacity: 0; transition: opacity 1.4s ease-in-out, color .3s ease-in-out;
}
.intro-skip.in { opacity: .32; }
.intro-skip:hover, .intro-skip:focus-visible { color: var(--gold); opacity: .85; }

@media (max-width: 640px) {
  /* Der Claim darf auf schmalen Displays umbrechen. */
  .intro-claim { gap: 0 .26em; }
}
@media (prefers-reduced-motion: reduce) {
  html.intro-active { overflow: auto; }
  html.intro-active .intro { display: none; }
  html.intro-active .nav { opacity: 1; }
  html.intro-active .hero-content { opacity: 1; }
  html.intro-active .hero-blackout { opacity: .55; }
}

/* Der Film laesst sich noch einmal ansehen — leise, im Footer neben dem
   Copyright, damit er die Seite nicht anbietet, sondern nur bereithaelt. */
.intro-replay {
  font: inherit; color: inherit;
  background: none; border: 0; padding: 0;
  letter-spacing: inherit; text-transform: inherit;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color .3s ease, border-color .3s ease;
}
.intro-replay:hover, .intro-replay:focus-visible {
  color: var(--gold); border-bottom-color: var(--line);
}
