:root {
  --charcoal: #17130f;
  --ink: #241b16;
  --paper: #fff9ef;
  --rice: #f7efe2;
  --red: #a5251d;
  --red-deep: #6d1713;
  --brass: #cfa15b;
  --leaf: #2e624b;
  --muted: #725f52;
  --line: rgba(36, 27, 22, 0.15);
  --shadow: 0 18px 50px rgba(23, 19, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(23, 19, 15, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}

.nav a {
  padding: 8px 0;
}

.nav a:hover {
  color: #fff;
}

.menu-toggle,
.menu-backdrop,
.floating-reserve {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/photos/beer-yakiniku.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.9), rgba(23, 19, 15, 0.48) 50%, rgba(23, 19, 15, 0.22)),
    linear-gradient(0deg, rgba(23, 19, 15, 0.75), rgba(23, 19, 15, 0.04) 48%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 74px;
}

.hero-logo {
  width: clamp(78px, 13vw, 128px);
  height: clamp(78px, 13vw, 128px);
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brass);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(3.7rem, 10vw, 8.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  width: min(610px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid currentColor;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.button.primary:hover {
  background: var(--red-deep);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.button.line {
  color: var(--ink);
  background: #fffdf8;
  border-color: rgba(36, 27, 22, 0.2);
}

.section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.breadcrumbs {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 16px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: var(--brass);
  content: "/";
}

.breadcrumbs a {
  color: var(--red);
  font-weight: 800;
}

.intro {
  background: var(--rice);
}

.intro-grid,
.visit-grid,
.access-grid,
.shop-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro-grid > div:last-child {
  display: grid;
  gap: 14px;
}

.intro-grid p {
  margin: 0;
}

h2 {
  margin: 0;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.35;
}

.intro-grid > p,
.section-heading p,
.visit-list p,
.reservation p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 0;
}

.menu-section {
  background:
    linear-gradient(180deg, rgba(165, 37, 29, 0.08), transparent 34%),
    var(--paper);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.highlights {
  background: var(--paper);
}

.highlight-grid article {
  overflow: hidden;
  padding: 24px;
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(23, 19, 15, 0.06);
}

.highlight-grid img {
  width: calc(100% + 48px);
  height: 170px;
  object-fit: cover;
  display: block;
  margin: -24px -24px 18px;
}

.highlight-grid span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  font-size: 0.82rem;
}

.highlight-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.photo-section {
  background: var(--rice);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.photo-grid article {
  min-height: 150px;
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  padding: 0;
  color: #fff;
  background: var(--charcoal);
  border: 1px solid rgba(36, 27, 22, 0.12);
  overflow: hidden;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 180ms ease;
}

.photo-grid article:hover img {
  transform: scale(1.035);
}

.photo-grid span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  padding: 5px 10px;
  background: rgba(23, 19, 15, 0.72);
  font-weight: 800;
}

.menu-categories {
  columns: 3 290px;
  column-gap: 18px;
}

.menu-category,
.season-note {
  break-inside: avoid;
  margin: 0 0 18px;
  padding: 22px;
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(23, 19, 15, 0.05);
}

.popular-menu {
  color: #fff;
  background: var(--red-deep);
  border-color: var(--red-deep);
  box-shadow: var(--shadow);
}

.menu-category h3,
.season-note h3 {
  margin-bottom: 14px;
}

.menu-category p,
.season-note p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.popular-menu p {
  color: rgba(255, 255, 255, 0.78);
}

.ranking-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.ranking-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.ranking-list strong {
  color: var(--brass);
}

.price-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.price-list dt {
  min-width: 0;
}

.price-list dd {
  margin: 0;
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}

.season-note {
  margin-top: 20px;
  background: var(--rice);
}

.lunch-section,
.event-section,
.family-section,
.party-section,
.takeout-section,
.instagram-section {
  background: var(--paper);
}

.event-section {
  background: var(--charcoal);
  color: #fff;
}

.event-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.event-feature img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  display: block;
  background: #080706;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.event-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.event-feature .event-date {
  margin: 12px 0 0;
  color: var(--brass);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
}

.event-benefits {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.event-benefits span {
  padding: 12px 14px;
  color: var(--charcoal);
  background: var(--brass);
  font-weight: 900;
}

.small-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.event-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  display: block;
  background: #080706;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lunch-section {
  background:
    linear-gradient(180deg, rgba(46, 98, 75, 0.1), transparent 34%),
    var(--rice);
}

.lunch-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.lunch-grid > div:first-child > p {
  margin: 18px 0 0;
  color: var(--muted);
}

.lunch-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.lunch-points span {
  padding: 7px 12px;
  color: #fff;
  background: var(--leaf);
  font-weight: 800;
}

.lunch-feature {
  width: min(100%, 520px);
  justify-self: end;
}

.lunch-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  display: block;
  background: #080706;
  border: 1px solid var(--line);
}

.lunch-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.lunch-menu-heading {
  margin-top: clamp(48px, 8vw, 90px);
  text-align: center;
}

.lunch-menu-heading h3 {
  margin: 10px 0 0;
  color: var(--charcoal);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.lunch-menu-heading p:last-child {
  max-width: 640px;
  margin: 12px auto 0;
  color: var(--muted);
}

.cold-noodle-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grilled-lunch-heading {
  border-top: 1px solid var(--line);
  padding-top: clamp(48px, 8vw, 90px);
}

.lunch-menu-grid article {
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid var(--line);
}

.lunch-menu-grid img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  display: block;
  background: #080706;
}

.lunch-menu-grid span {
  display: inline-flex;
  width: 100%;
  padding: 10px 12px;
  color: #fff;
  background: var(--charcoal);
  font-weight: 900;
}

.family-section {
  background: var(--rice);
}

.family-panel img {
  width: 100%;
  max-height: 290px;
  object-fit: cover;
  display: block;
  margin-bottom: 18px;
  border: 1px solid var(--line);
}

.party-section {
  background:
    linear-gradient(180deg, rgba(46, 98, 75, 0.08), transparent 36%),
    var(--paper);
}

.party-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.party-card {
  padding: 24px;
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(23, 19, 15, 0.06);
}

.party-card.main {
  color: #fff;
  background: var(--red-deep);
  border-color: var(--red-deep);
  box-shadow: var(--shadow);
}

.party-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: #fff;
  background: var(--leaf);
  font-size: 0.82rem;
  font-weight: 800;
}

.party-card.main span {
  color: var(--red-deep);
  background: var(--brass);
}

.party-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.party-card.main p {
  color: rgba(255, 255, 255, 0.78);
}

.party-card strong {
  display: block;
  margin-top: 4px;
  color: var(--red);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.party-card.main strong {
  color: #fff;
}

.check-list,
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--brass);
}

.party-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 54px);
  margin-top: 18px;
  padding: clamp(24px, 4vw, 40px);
  color: #fff;
  background: var(--charcoal);
}

.party-band p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.86);
}

.activity-section {
  background: var(--paper);
}

.activity-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 40px);
  color: #fff;
  background: var(--charcoal);
}

.activity-hero img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.activity-hero p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.activity-hero .button.line {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.activity-grid article {
  padding: 24px;
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(23, 19, 15, 0.05);
}

.activity-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  font-size: 0.82rem;
}

.activity-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.link-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.link-list a {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  color: var(--leaf);
  background: var(--rice);
  border: 1px solid var(--line);
  font-weight: 800;
}

.link-list a:hover {
  color: #fff;
  background: var(--leaf);
}

.offer-grid,
.embed-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.offer-panel,
.embed-box {
  padding: clamp(24px, 4vw, 38px);
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(23, 19, 15, 0.07);
}

.takeout-photos {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: repeat(2, minmax(110px, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.takeout-photos img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  display: block;
  object-fit: cover;
}

.takeout-photos img:first-child {
  grid-row: span 2;
}

.section-photo {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  display: block;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-panel p,
.embed-grid p,
.embed-box p {
  margin: 0;
  color: var(--muted);
}

.embed-section {
  background: var(--rice);
}

.embed-box {
  min-height: 240px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.instagram-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.instagram-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}

.notice-image {
  width: min(100%, 320px);
  max-height: 280px;
  object-fit: cover;
  display: block;
  justify-self: start;
  border: 1px solid var(--line);
}

.notice-image.wide {
  width: 100%;
  max-height: none;
  object-fit: contain;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.calendar-card {
  padding: 14px;
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(23, 19, 15, 0.08);
}

.calendar-card h3 {
  margin: 0 0 12px;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.calendar-card a {
  display: block;
  background: var(--paper);
}

.calendar-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1086 / 1448;
  object-fit: contain;
}

.calendar-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.calendar-archive-card {
  grid-column: 1 / -1;
}

.calendar-archive-card img {
  aspect-ratio: 5 / 4;
}

.embed-box strong {
  color: var(--leaf);
  font-size: 1.2rem;
}

.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.visit {
  color: #fff;
  background: var(--charcoal);
}

.visit .section-kicker {
  color: var(--brass);
}

.visit-list {
  display: grid;
  gap: 14px;
}

.visit-list p {
  margin: 0;
  padding-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.visit-list strong {
  color: #fff;
  margin-right: 12px;
}

.access-section {
  background: var(--rice);
}

.info-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--leaf);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.map-box {
  min-height: 330px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 26px;
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(46, 98, 75, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(46, 98, 75, 0.12) 1px, transparent 1px),
    #fffdf8;
  background-size: 32px 32px;
  border: 1px solid var(--line);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.map-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(23, 19, 15, 0.12);
}

.map-box span {
  color: var(--leaf);
  font-size: 3.2rem;
  font-weight: 900;
}

.map-box p {
  max-width: 360px;
  margin: 0;
  text-align: center;
}

.info-section {
  background: var(--paper);
}

.shop-panel {
  padding: clamp(24px, 4vw, 42px);
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(23, 19, 15, 0.08);
}

.shop-panel .info-list {
  margin: 0;
}

.reservation {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
  color: #fff;
  background: var(--leaf);
}

.reservation-photo {
  width: 100%;
  max-height: 230px;
  object-fit: cover;
  display: block;
  margin-bottom: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.reservation p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.reservation .button {
  width: fit-content;
}

.reservation .button.line {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
}

.footer p {
  margin: 0;
}

@media (max-width: 820px) {
  body.mobile-menu-open {
    overflow: hidden;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    min-height: 66px;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(18, 15, 12, 0.86);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  }

  .brand {
    max-width: calc(100% - 62px);
  }

  .brand strong {
    white-space: nowrap;
  }

  .brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav {
    position: fixed;
    z-index: 42;
    top: 0;
    right: 0;
    width: min(86vw, 360px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    padding: 86px 22px 28px;
    color: #fff;
    background:
      linear-gradient(180deg, rgba(41, 31, 24, 0.98), rgba(18, 15, 12, 0.98)),
      var(--charcoal);
    border-left: 1px solid rgba(207, 161, 91, 0.24);
    box-shadow: -24px 0 48px rgba(0, 0, 0, 0.38);
    transform: translateX(106%);
    transition: transform 0.28s ease;
  }

  .site-header[data-menu-open="true"] .nav {
    transform: translateX(0);
  }

  .nav a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 4px;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    font-weight: 800;
  }

  .nav a:hover {
    color: #fff;
  }

  .nav a[href*="reservation"] {
    justify-content: center;
    min-height: 56px;
    margin: 14px 0 8px;
    color: #fff;
    background: linear-gradient(180deg, #bf2d24, var(--red-deep));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 34px rgba(109, 23, 19, 0.38);
  }

  .menu-toggle {
    position: relative;
    z-index: 45;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(207, 161, 91, 0.38);
    border-radius: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .site-header[data-menu-open="true"] .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header[data-menu-open="true"] .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-menu-open="true"] .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .menu-backdrop {
    position: fixed;
    z-index: 41;
    inset: 0;
    display: block;
    width: 100vw;
    height: 100dvh;
    padding: 0;
    background: rgba(0, 0, 0, 0.48);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
  }

  .site-header[data-menu-open="true"] .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .floating-reserve {
    position: fixed;
    z-index: 39;
    right: 14px;
    bottom: calc(92px + env(safe-area-inset-bottom));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    min-height: 50px;
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(180deg, #c52f25, var(--red-deep));
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 18px 42px rgba(109, 23, 19, 0.36);
    font-weight: 900;
  }

  .hero-content {
    padding-top: 112px;
  }

  .hero-logo {
    width: 78px;
    height: 78px;
  }

  .intro-grid,
  .visit-grid,
  .access-grid,
  .shop-panel,
  .event-feature,
  .lunch-grid,
  .offer-grid,
  .embed-grid,
  .activity-hero {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .party-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .party-band {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-gallery,
  .lunch-menu-grid,
  .cold-noodle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .takeout-photos {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .takeout-photos img:first-child {
    grid-row: auto;
  }

  .lunch-feature {
    width: min(100%, 440px);
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 86svh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(23, 19, 15, 0.9), rgba(23, 19, 15, 0.22)),
      linear-gradient(90deg, rgba(23, 19, 15, 0.72), rgba(23, 19, 15, 0.26));
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .party-grid,
  .activity-grid,
  .event-gallery,
  .lunch-menu-grid,
  .calendar-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .menu-category,
  .season-note {
    padding: 18px;
  }

  .mini-actions {
    width: 100%;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer {
    flex-direction: column;
  }
}

.seo-section,
.reviews-section,
.reservation-section,
.faq-section {
  background: var(--paper);
}

.news-tools {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.news-tools input,
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  font: inherit;
}

.category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-tabs button,
.chat-options button {
  border: 1px solid var(--line);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.category-tabs button {
  flex: 0 0 auto;
  padding: 8px 12px;
}

.category-tabs button.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.news-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

.news-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-grid article,
.related-box,
.review-panel,
.reservation-form,
.faq-list details {
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(23, 19, 15, 0.08);
}

.news-grid article {
  padding: 20px;
}

.news-grid article span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 3px 8px;
  color: #fff;
  background: var(--leaf);
  font-size: 0.82rem;
  font-weight: 900;
}

.news-grid article h3,
.news-grid article p {
  margin: 0 0 10px;
}

.news-grid article a,
.related-box a,
.chat-panel a {
  color: var(--red);
  font-weight: 900;
}

.related-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
}

.review-panel,
.reservation-form {
  padding: clamp(20px, 4vw, 34px);
}

.review-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.stars {
  color: var(--brass);
  font-size: 2rem;
  letter-spacing: 2px;
}

.review-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.review-card {
  padding: 14px;
  background: rgba(125, 30, 24, 0.04);
  border: 1px solid rgba(125, 30, 24, 0.12);
}

.review-card-head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.review-card-head img,
.review-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
}

.review-card-head img {
  object-fit: cover;
}

.review-avatar {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.review-card-head strong,
.review-card-head small {
  display: block;
}

.review-card-head small,
.review-card p {
  color: var(--muted);
}

.review-card-stars {
  color: var(--brass);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.review-card p {
  margin: 6px 0 0;
  line-height: 1.8;
}

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.reservation-form label {
  display: grid;
  gap: 5px;
  font-weight: 800;
}

.reservation-form .full,
.reservation-form button {
  grid-column: 1 / -1;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.chat-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.chat-toggle {
  width: 64px;
  height: 64px;
  color: #fff;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-weight: 900;
  cursor: pointer;
}

.chat-panel {
  display: none;
  width: min(330px, calc(100vw - 32px));
  padding: 18px;
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.chat-widget[data-open="true"] .chat-panel {
  display: grid;
  gap: 10px;
}

.chat-panel p {
  margin: 0;
  color: var(--muted);
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-options button {
  padding: 7px 9px;
}

.page-hero {
  min-height: 70svh;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 19, 15, 0.92), rgba(23, 19, 15, 0.58)),
    url("assets/photos/beer-yakiniku.jpg") center / cover;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 920px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservation-grid,
  .reservation-form {
    grid-template-columns: 1fr;
  }
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-section {
  min-height: 100svh;
  padding-top: 150px;
  background: var(--rice);
}

.admin-login,
.admin-toolbar,
.admin-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(23, 19, 15, 0.08);
}

.admin-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  margin: 22px 0;
}

.admin-login label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.admin-login input {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  font: inherit;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
  margin-bottom: 18px;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px;
}

.admin-card h2,
.admin-card p {
  margin: 0 0 8px;
}

.status {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 9px;
  color: #fff;
  background: var(--leaf);
  font-weight: 900;
  font-size: 0.82rem;
}

.status.visited {
  background: #2e624b;
}

.status.cancelled {
  background: #6d1713;
}

.status.changed {
  background: #8b6b2e;
}

.admin-actions {
  display: grid;
  gap: 8px;
  align-content: start;
}

.admin-actions button {
  min-width: 120px;
  padding: 8px 10px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 760px) {
  .admin-login,
  .admin-card {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-actions button {
    min-width: 0;
  }
}

.admin-dashboard,
.admin-settings,
.admin-controls,
.today-block {
  margin-top: 22px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-grid article,
.chart-grid > div,
.admin-settings,
.admin-controls {
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(23, 19, 15, 0.08);
}

.dashboard-grid article {
  padding: 16px;
}

.dashboard-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.dashboard-grid strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.chart-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.chart-grid > div {
  padding: 16px;
}

.chart-grid h2,
.today-block h2,
.admin-settings h2,
.admin-section section > h2 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.bar-chart {
  display: grid;
  gap: 8px;
}

.bar-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 34px;
  gap: 8px;
  align-items: center;
  font-size: 0.86rem;
}

.bar-row i {
  display: block;
  width: var(--bar);
  min-width: 6px;
  height: 10px;
  background: var(--red);
}

.admin-settings,
.admin-controls {
  padding: 16px;
}

.settings-form {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 12px;
}

.settings-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.settings-form input,
.settings-form textarea,
.admin-controls input,
.admin-controls select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

.settings-form .full {
  grid-column: 1 / -1;
}

.admin-controls {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 160px 180px auto auto;
  gap: 10px;
  align-items: center;
}

.admin-card.pending,
.admin-card.changed {
  border-left: 6px solid #2867b2;
}

.admin-card.visited {
  border-left: 6px solid #2e624b;
}

.admin-card.cancelled {
  border-left: 6px solid #a5251d;
}

.status.pending,
.status.changed {
  background: #2867b2;
}

.status.visited {
  background: #2e624b;
}

.status.cancelled {
  background: #a5251d;
}

@media (max-width: 980px) {
  .dashboard-grid,
  .chart-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-controls,
  .settings-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .dashboard-grid,
  .chart-grid {
    grid-template-columns: 1fr;
  }

  .admin-section {
    padding-top: 132px;
  }
}
