:root {
  --card-width: clamp(260px, 22vw, 415px);
  --card-padding: clamp(22px, 2vw, 34px);
  --shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  --text: #333333;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -26px;
  z-index: -2;
  background: url("background.png") center / cover no-repeat;
  filter: grayscale(1) blur(7px) contrast(0.82) brightness(1.24);
  transform: scale(1.04);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.18);
}

.page {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.menu-card {
  width: var(--card-width);
  aspect-ratio: 0.92 / 1;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: var(--card-padding);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(70, 70, 70, 0.28);
  box-shadow: var(--shadow);
}

.menu-card h1 {
  margin: 0 0 clamp(24px, 2.4vw, 42px);
  font-size: clamp(44px, 4vw, 78px);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.logo {
  width: min(82%, 295px);
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

@media (max-width: 640px) {
  body::before {
    inset: -18px;
    filter: grayscale(1) blur(5px) contrast(0.82) brightness(1.2);
  }

  .page {
    padding: 18px;
  }

  .menu-card {
    width: min(82vw, 340px);
    min-height: 300px;
  }
}
