:root {
  --bg: #fdf9f6;
  --ink: #7a1a2a;
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 8vh, 4rem);
  gap: clamp(2rem, 6vh, 4rem);
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 36rem;
  gap: clamp(1.25rem, 3vh, 2rem);
}

.logo {
  display: block;
  width: min(72vw, 280px);
  height: auto;
}

.tagline {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
}

.status {
  margin: 0;
  font-size: clamp(0.7rem, 1.8vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink);
}

.drinks-wrap {
  width: 100%;
  max-width: min(900px, 92vw);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.drinks {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  max-height: min(38vh, 320px);
  object-fit: contain;
  object-position: bottom center;
}

@media (max-width: 480px) {
  .page {
    justify-content: flex-start;
    padding-top: clamp(2.5rem, 12vh, 4rem);
  }

  .drinks {
    max-height: none;
  }
}
