/* Ash & Anchor — menu page styles */

/* ============== PAGE HEADER ============== */

.menu-header {
  background:
    radial-gradient(ellipse at center top, var(--lake-soft) 0%, var(--lake-deep) 80%),
    var(--lake-deep);
  padding: 28px 24px 32px;
  text-align: center;
  border-bottom: 2px solid var(--gold);
  position: relative;
}

.menu-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(177,159,116,0.025) 0,
      rgba(177,159,116,0.025) 1px,
      transparent 1px,
      transparent 12px
    );
  pointer-events: none;
}

.menu-header-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.menu-nav {
  margin-bottom: 20px;
}

.menu-nav a {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(177,159,116,0.8);
  text-decoration: none;
  transition: color 0.15s;
}
.menu-nav a:hover { color: var(--gold-light); }

.menu-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(177,159,116,0.2));
}

.menu-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--cream);
  margin: 16px 0 4px;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.menu-subtitle {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}

/* ============== MENU BODY ============== */

.menu-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 0;
}

/* ============== TIER HEADINGS ============== */

.tier-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 36px 0 6px;
}
.tier-heading:first-child { margin-top: 0; }

.tier-badge {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tier-rule {
  flex: 1;
  height: 1px;
}

.tier-mild    .tier-badge { background: #e8f5ee; color: #276b42; border: 1px solid #a8d8b8; }
.tier-mild    .tier-rule  { background: #a8d8b8; }
.tier-medium  .tier-badge { background: #fef3e2; color: #9a5a10; border: 1px solid #f0c98a; }
.tier-medium  .tier-rule  { background: #f0c98a; }
.tier-full    .tier-badge { background: #fdecea; color: #7a2e2a; border: 1px solid #e8b4b0; }
.tier-full    .tier-rule  { background: #e8b4b0; }
.tier-nub     .tier-badge { background: #eeeaf6; color: #4a3570; border: 1px solid #c0b0d8; }
.tier-nub     .tier-rule  { background: #c0b0d8; }
.tier-reserve .tier-badge { background: var(--lake-deep); color: var(--cream-warm); border: 1px solid var(--lake); }
.tier-reserve .tier-rule  { background: var(--gold); }
.tier-accessories .tier-badge { background: var(--sand); color: var(--ink); border: 1px solid rgba(43,29,24,0.2); }
.tier-accessories .tier-rule  { background: rgba(43,29,24,0.15); }

/* ============== MENU ITEMS ============== */

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(43,29,24,0.07);
  gap: 12px;
}
.menu-item:last-child { border-bottom: none; }

.menu-item-info {
  flex: 1;
  min-width: 0;
}

.menu-item-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.menu-item-note {
  font-family: var(--sans);
  font-size: 0.76rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 1px;
  line-height: 1.4;
}

.menu-item-price {
  display: none;
}

.tier-reserve .menu-item-name  { font-weight: 600; }

/* ============== ACCESSORIES ============== */

.accessories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

@media (max-width: 480px) {
  .accessories-grid { grid-template-columns: 1fr; }
}

/* ============== FINE PRINT ============== */

.menu-fine-print {
  margin: 36px 0 0;
  padding: 20px 0 48px;
  border-top: 1px solid rgba(43,29,24,0.1);
  font-family: var(--sans);
  font-size: 0.76rem;
  color: rgba(43,29,24,0.45);
  line-height: 1.7;
  text-align: center;
}

/* ============== RESPONSIVE ============== */

@media (max-width: 600px) {
  .menu-header { padding: 22px 20px 26px; }
  .menu-body { padding: 28px 20px 0; }
  .menu-logo { max-width: 160px; }
  .menu-item-note { display: none; }
}
