:root {
  --bg-1: #f6efe7;
  --bg-2: #fde7bf;
  --card: #fffdf8;
  --text: #1f2937;
  --muted: #5f6b7a;
  --accent: #d97706;
  --accent-soft: #fbbf24;
  --shadow: rgba(31, 41, 55, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(8px, 1.8vh, 18px);
  overflow: auto;
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background: #1b1712;
  padding-top: clamp(14px, 3vh, 28px);
  padding-right: 24px;
  padding-bottom: clamp(32px, 8svh, 96px);
  padding-left: 24px;
}

.brand-photo {
  width: min(650px, 94vw);
  height: clamp(300px, 42svh, 400px);
  background-image: url("photos/logo_fullscreen.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 16%;
  border-radius: 16px;
  opacity: 0.94;
}

.card {
  width: min(540px, 90%);
  background: var(--card);
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 45px -20px var(--shadow);
  padding: 12px 16px 14px;
  text-align: center;
  animation: fade-in 700ms ease-out both;
}

@media (max-width: 640px) {
  body {
    padding-top: clamp(10px, 2.5vh, 18px);
    padding-right: 14px;
    padding-bottom: clamp(20px, 6svh, 64px);
    padding-left: 14px;
  }

  .brand-photo {
    width: min(570px, 96vw);
    height: clamp(240px, 36svh, 320px);
    background-position: center 14%;
  }

  .card {
    width: min(520px, 92%);
    padding: 11px 14px 13px;
  }
}

.badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(217, 119, 6, 0.12);
  color: #92400e;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

h1 {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.18;
}

p {
  margin: 8px auto 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.95vw, 1rem);
  line-height: 1.4;
}

.dots {
  margin-top: 10px;
  display: inline-flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-soft);
  animation: pulse 1.2s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.15s;
}

.dot:nth-child(3) {
  animation-delay: 0.3s;
}

.small {
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.35;
  color: #7a8696;
}

@keyframes pulse {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}