:root {
  color-scheme: light;
  --navy: #141b4d;
  --navy-deep: #0b102f;
  --gold: #f2c400;
  --red: #c81d25;
  --ink: #20243a;
  --muted: #61667a;
  --paper: #fffdf8;
  --line: #ddd8c9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  min-width: 20rem;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, rgb(242 196 0 / 12%), transparent 18rem), var(--paper);
}

.site-header {
  padding: clamp(1.25rem, 4vw, 2.5rem) max(1.25rem, calc((100vw - 74rem) / 2));
  color: white;
  background: var(--navy);
  border-bottom: 0.4rem solid var(--gold);
}

.brand {
  display: inline-flex;
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand__crest { width: clamp(4.5rem, 14vw, 6.75rem); height: auto; }
.brand__words { display: grid; gap: 0.15rem; }

.brand__club {
  color: var(--gold);
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.menu-page {
  width: min(74rem, calc(100% - 2.5rem));
  min-height: 55vh;
  margin: clamp(2rem, 6vw, 4.5rem) auto;
}

.menu-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.menu-section {
  padding: clamp(1.25rem, 4vw, 2rem);
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  box-shadow: 0 0.7rem 2rem rgb(20 27 77 / 8%);
}

.menu-section:only-child { width: 100%; max-width: 42rem; justify-self: center; }

.menu-section h2 {
  margin: 0 0 1.25rem;
  padding-bottom: 0.65rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 5vw, 2.25rem);
  border-bottom: 0.2rem solid var(--gold);
}

.menu-items { display: grid; gap: 1.05rem; margin: 0; padding: 0; }

.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: baseline;
  font-size: clamp(1.05rem, 2.7vw, 1.25rem);
}

.menu-item__name { min-width: 0; font-weight: 650; }
.menu-item__leader { min-width: 1rem; border-bottom: 1px dotted var(--line); }

.menu-item__price {
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.sold-out {
  grid-column: 1 / -1;
  width: max-content;
  padding: 0.2rem 0.45rem;
  color: white;
  background: var(--red);
  border-radius: 0.2rem;
  font-size: 0.72em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-item--sold-out .menu-item__name,
.menu-item--sold-out .menu-item__price {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 0.1em;
}

.empty-menu {
  max-width: 42rem;
  margin: clamp(3rem, 10vw, 8rem) auto;
  padding: clamp(2rem, 6vw, 4rem);
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.empty-menu h2 {
  margin-top: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
}

.empty-menu p { margin-bottom: 0; color: var(--muted); font-size: 1.1rem; line-height: 1.6; }

.site-footer {
  padding: 1.5rem;
  color: white;
  text-align: center;
  background: var(--navy-deep);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

@media (max-width: 32rem) {
  .menu-item { grid-template-columns: 1fr auto; }
  .menu-item__leader { display: none; }
}
