:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #16202a;
  --muted: #66768a;
  --accent: #3f7cac;
  --accent-soft: #eaf3fb;
  --border: #e6ebf2;
  --shadow: 0 14px 35px rgba(16, 24, 40, 0.08);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, #eef5fb 0%, #f6f8fb 42%, #f6f8fb 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px 72px;
}

.hero {
  text-align: center;
  margin-bottom: 40px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.subtitle {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.menu-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 650;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  backdrop-filter: blur(10px);
}

.menu-card:hover {
  transform: translateY(-4px);
  border-color: #d5e3ef;
  background: var(--accent-soft);
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.11);
}

.back-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.back-link:hover {
  color: var(--accent);
}

.center {
  text-align: center;
}

@media (max-width: 640px) {
  .container {
    padding: 40px 16px 56px;
  }

  .menu-card {
    min-height: 108px;
    border-radius: 18px;
  }
}