@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700;900&display=swap");

/* ── Tokens ── */
:root {
  --dark: #292220;
  --accent: #f53c08;
  --cream: #f4f1ee;
  --white: #ffffff;
  --gray: #f4f4f4;
  --font: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  /* --max: 1120px; */
  --pad: 40px;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font);
  background: #f4f1ee;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ── Container ── */
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  width: 100%;
  box-sizing: border-box;
}

.menu-sections {
  max-width: 930px;
  margin-inline: auto;
  background: #f4f1ee;
  padding: 48px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  align-items: center;
}

/* ================================================================
   PAGE: ドリンク (menu-drink.html)
   ================================================================ */
.drink-sections {
  background: #f4f1ee;
  padding: 48px 0 80px;
}
.drink-grid {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.drink-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}
.drink-card.full {
  grid-column: 1 / -1;
}
.drink-card__header {
  padding: 22px 28px 18px;
  background-color: #292220;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.drink-card__header h3 {
  font-family: var(--font);
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.drink-card__body {
  padding: 20px 28px 24px;
}
.drink-card__body .item-list li {
  font-size: 15px;
  color: #292220;
}
.drink-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 2px;
}
.drink-card.full .drink-card__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
}

/* ── ビール：2ボトル並列 ── */
.bottle-pair {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 0 24px;
}
.bottle-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}
.bottle-item img {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
}
.bottle-item__name {
  font-family: var(--font);
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}
.bottle-item__price {
  font-family: var(--font);
  font-weight: 900;
  font-size: 16px;
}
.bottle-divider {
  width: 2px;
  background: #292220;
  align-self: stretch;
  flex-shrink: 0;
}

.inote {
  font-family: var(--font);
  font-size: 12px;
  color: #292220;
  line-height: 1.8;
  margin-top: 8px;
  grid-column: 1 / -1;
}

/* ── Item list ── */
.item-list {
  font-size: 1rem;
  font-weight: 300;
}
.item-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font);
  font-weight: 900;
  font-size: 17px;
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid rgba(41, 34, 32, 0.4);
  line-height: 1.4;
}
.item-list li:last-child {
  border-bottom: none;
}
.item-list .iname {
  font-size: 1rem; /* price-nameから */
  font-weight: 300; /* price-nameから */
  flex: 1;
}
.item-list .iprice {
  font-size: 1rem; /* price-valueから */
  font-weight: 400; /* price-valueから */
}
.item-note {
  font-family: var(--font);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-top: 4px;
}
/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ≤ 1120px: margins disappear, padding takes over */
@media (max-width: 1120px) {
  :root {
    --pad: 32px;
  }
}

/* ≤ 900px: tablet layout */
@media (max-width: 900px) {
  .drink-grid {
    grid-template-columns: 1fr;
  }
  .drink-card.full .drink-card__body {
    grid-template-columns: 1fr;
  }
}
