/* === Nahraďte barvy / mezery podle brandu === */
:root {
  --bg: rgb(0, 0, 0);
  --bg-elevated: rgb(0, 0, 0);
  --text: #f4f4f2;
  --text-muted: #9a9a95;
  --text-soft: #6b6b66;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #c9c9c4;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) clamp(2.5rem, 8vw, 5rem);
  max-width: 52rem;
  margin: 0 auto;
}

/* --- Hero --- */
.hero {
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.hero-visual {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.hero-mark {
  width: min(13.5rem, 52vw);
  max-width: 280px;
  margin: 0 auto;
  border-radius: 2px;
  background: #000000;
  overflow: hidden;
  line-height: 0;
}

.hero-logo {
  width: 100%;
  height: auto;
  display: block;
}

.hero-mark .hero-logo {
  opacity: 0;
  animation: logo-fade 1.05s var(--ease-out) 0.2s forwards;
}

@keyframes logo-fade {
  to {
    opacity: 1;
  }
}

.hero-title {
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.75rem, 8vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-subtitle {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* --- Notice --- */
.content {
  text-align: center;
}

.notice {
  padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.notice-highlight {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.02em;
}

.notice-body {
  margin: 0 auto;
  max-width: 28rem;
  font-size: clamp(0.9375rem, 2vw, 1rem);
  color: var(--text-muted);
}

/* --- Contact --- */
.contact-heading {
  margin: 0 0 1.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-address {
  margin: 0;
  color: var(--text);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
}

.contact-link {
  position: relative;
  color: var(--text);
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  letter-spacing: 0.02em;
  padding: 0.15rem 0;
  transition:
    color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
  opacity: 0.5;
}

.contact-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.contact-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-link:focus-visible {
  outline: 1px solid var(--text-muted);
  outline-offset: 4px;
}

/* --- Load animations --- */
.anim-in {
  opacity: 0;
  transform: translateY(14px);
  animation: rise-in 0.9s var(--ease-out) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-mark {
  opacity: 0;
  animation: rise-in 1s var(--ease-out) forwards;
  animation-delay: 40ms;
}


/* --- Responsive --- */
@media (min-width: 900px) {
  .page {
    max-width: 56rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .anim-in,
  .hero-mark {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-mark .hero-logo {
    animation: none;
    opacity: 1;
  }

  .contact-link {
    transition: color 0.2s ease;
  }

  .contact-link:hover {
    transform: none;
  }
}
