/* =========================
   Base
========================= */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;

  /* DARK MODE */
  background: #0b0f14;   /* deep dark blue-black */
  color: #e5e7eb;        /* soft white */
}

/* center content */
.container {
  max-width: 980px;
  margin: auto;
  padding: 28px;
}

/* =========================
   Header
========================= */

.site-header {
  border-bottom: 1px solid #1f2937;
  background: #0b0f14;
}

.brand__name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand__tagline {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-top: 4px;
}

/* =========================
   Hero
========================= */

.hero h1 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.hero p {
  color: #9ca3af;
}

/* =========================
   Cards (menu items)
========================= */

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.card {
  grid-column: span 6;

  background: #111827;              /* dark card */
  border: 1px solid #1f2937;
  border-radius: 14px;

  padding: 20px;

  text-decoration: none;
  color: inherit;

  transition: 0.15s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #3b82f6;
  box-shadow: 0
