/* strona tymczasowa OmVibra - przestrzeń w budowie */
:root {
  --gold: #B8A46A;
  --cta: #A9704F;
  --text: #30302A;
  --muted: #77736C;
  --bg: #F1E9DF;
  --ink: #30302A;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
}

body {
  min-height: 100dvh;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: grid;
  min-height: 100dvh;
  min-height: 100svh;
}

.visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #1c1814;
  min-height: 52vh;
}

.visual__film,
.visual__still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.visual__still {
  display: none;
}

.panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 28px 52px;
}

.panel__inner {
  width: min(100%, 28rem);
  text-align: center;
}

.logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
  margin: 0 auto 32px;
}

h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.65rem, 4.2vw, 2.15rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.motto {
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.panel p.close {
  margin-top: 28px;
  margin-bottom: 0;
  color: var(--cta);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
}

@media (min-width: 900px) {
  .page {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .visual {
    min-height: 100dvh;
    min-height: 100svh;
  }

  .panel {
    padding: 64px 56px;
  }

  .logo {
    width: min(100%, 360px);
    margin-bottom: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual__film {
    display: none;
  }

  .visual__still {
    display: block;
  }
}
