@font-face {
  font-family: "EK Baumer Uniwidth";
  src: url("../assets/fonts/EKBaumerUniwidth-Bold.woff2") format("woff2"),
       url("../assets/fonts/EKBaumerUniwidth-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #2b2b2a;
}

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

html, body {
  height: 100%;
  overflow: hidden;
  background: #f3eef7;
  color: var(--ink);
  font-family: "EK Baumer Uniwidth", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

/* ---------- background ---------- */

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(180, 225, 255, 0.85) 0%, rgba(180, 225, 255, 0) 50%),
    radial-gradient(circle at 20% 80%, rgba(220, 200, 255, 0.75) 0%, rgba(220, 200, 255, 0) 55%),
    linear-gradient(160deg, #f1e9ff 0%, #eaf5ff 45%, #fdecf5 100%);
}

/* ---------- stage / single screen ---------- */

.stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
}

/* ---------- ciao wordmark, full width ---------- */

.brand {
  position: absolute;
  top: clamp(16px, 3vh, 40px);
  left: 0;
  width: 100vw;
}

.brand svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- panther + hours, two 50%-wide frames, content left-aligned in each ---------- */

.mid {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100vw;
  display: flex;
  align-items: center;
}

.col {
  flex: 0 0 50%;
}

.col:first-child {
  padding-left: clamp(20px, 3vw, 48px);
}

.panther {
  height: clamp(34px, 4.9vw, 82px);
  width: auto;
  display: block;
}

.info {
  font-size: clamp(13px, 1.1vw, 19px);
  line-height: 1.2;
}

.hours .row {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
}

.hours .row span:first-child {
  width: 3.6em;
}

address {
  font-style: normal;
  margin-top: 0;
}

/* ---------- imprint, bottom-left ---------- */

a {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

a:active {
  text-decoration: none;
  background: transparent;
}

.imprint-link {
  position: absolute;
  left: clamp(20px, 3vw, 48px);
  bottom: clamp(20px, 4vh, 52px);
  font-size: clamp(12px, 0.95vw, 16px);
  color: var(--ink);
  text-decoration: none;
}

.imprint-link:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .mid { top: 44%; }
}
