/* ============================================================
   COMING SOON — Variante 3 „Plain + EN-Link“
   Ein Screen, kein Scrollen, keine Sprachwahl.
   „Coming soon“ als Klartext, unten Link zur englischen Museumseite.
   ============================================================ */

:root {
  --white: #ffffff;
  --font: 'Noi Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gutter: clamp(24px, 5vw, 72px);
  --nav-safe: env(safe-area-inset-top, 0px);

  --fs-sm: clamp(17.5px, 1.5vw, 21px);
  --fs-md: clamp(23px, 2.0vw, 28px);
  --fs-lg: clamp(28px, 2.6vw, 36px);
  --fs-meta: var(--fs-sm);
  --fs-discover: clamp(24px, 2.4vw, 32px);

  --bg-zoom: 250%;
  --bg-left: -125%;
  --bg-top: -150%;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  background: #1a1a1a;
  color: #fff;
}

.hero__img {
  animation: enter-img 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__ui {
  animation: enter-ui 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.hero__logo {
  animation: enter-logo 1.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.hero__soon {
  animation:
    enter-soon 1.3s cubic-bezier(0.22, 1, 0.36, 1) 1.15s both,
    soon-bob 2.8s ease-in-out 2.45s 2;
}

@keyframes enter-img {
  from { opacity: 0; transform: scale(1.045); }
  to   { opacity: 1; transform: none; }
}

@keyframes enter-ui {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@keyframes enter-logo {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes enter-soon {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

@keyframes soon-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__img,
  .hero__ui,
  .hero__logo,
  .hero__soon { opacity: 1; transform: none; transition: none; animation: none; }
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--white);
  background: #1a1a1a;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow: hidden;
  background: #1a1a1a;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  left: var(--bg-left);
  top: var(--bg-top);
  width: var(--bg-zoom);
  height: var(--bg-zoom);
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.16) 0%, transparent 28%, transparent 64%, rgba(0,0,0,0.2) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.12) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.hero__ui {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100dvh;
  padding:
    calc(28px + var(--nav-safe))
    var(--gutter)
    36px;
}

.hero__meta {
  max-width: 22ch;
  margin-top: 0.65em;
}

.hero__meta-block {
  margin: 0;
  font-size: clamp(20px, 1.8vw, 25px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.01em;
}

.hero__meta-title { font-weight: 400; }

.hero__meta-dates {
  display: block;
  font-weight: 700;
  white-space: nowrap;
}

.hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vh, 44px);
  padding: 1vh 0;
}

.hero__logo {
  width: min(96vw, 1600px);
  height: auto;
  user-select: none;
  pointer-events: none;
}

.hero__soon {
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__link {
  justify-self: center;
  font-size: var(--fs-discover);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.12em;
  text-decoration-thickness: 3px;
  transition: opacity 0.2s ease;
  margin-bottom: 6px;
}

.hero__link:hover { opacity: 0.8; }

@media (max-width: 640px) {
  .hero__soon { font-size: var(--fs-lg); }
  .hero__link { font-size: var(--fs-md); }
}
