:root {
  color-scheme: light;
  --ink: #171616;
  --ink-soft: #3c3834;
  --paper: #fbf7f0;
  --surface: #fffdf8;
  --line: #e3d8ca;
  --muted: #706960;
  --green: #17443a;
  --green-soft: #eaf1ec;
  --wine: #76293d;
  --gold: #c99a54;
  --shadow: 0 18px 50px rgba(22, 19, 16, 0.18);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
  line-height: 1.8;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--surface);
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227, 216, 202, 0.8);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: var(--ink);
  border-radius: 50%;
  padding: 5px;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-sub {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 11px;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  font-size: 24px;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--wine);
}

.site-nav .nav-phone {
  color: #fff;
  padding-inline: 15px;
  box-shadow: 0 12px 30px rgba(118, 41, 61, 0.34);
}

.call-strip {
  background: var(--wine);
  color: #fff;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
}

.call-strip-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.call-strip span {
  font-size: 13px;
  font-weight: 700;
}

.call-strip a {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 6px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 10px 26px rgba(118, 41, 61, 0.25);
}

.button-secondary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(23, 68, 58, 0.22);
}

.button-ghost {
  background: rgba(255, 253, 248, 0.88);
  border-color: var(--line);
  color: var(--ink);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 10, 9, 0.76) 0%, rgba(12, 10, 9, 0.42) 48%, rgba(12, 10, 9, 0.16) 100%),
    linear-gradient(0deg, rgba(12, 10, 9, 0.66) 0%, rgba(12, 10, 9, 0.1) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 72px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.28;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 86px);
  font-weight: 700;
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: clamp(17px, 2.4vw, 24px);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions-main {
  align-items: center;
}

.hero-link-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(18, 16, 14, 0.42);
  backdrop-filter: blur(12px);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
}

.hero-link-strip span {
  color: var(--gold);
  font-weight: 700;
}

.hero-link-strip a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 999px;
}

.hero-link-strip a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.quick-info {
  background: var(--green);
  color: #fff;
}

.quick-info-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 2fr 1.25fr 1fr;
  gap: 1px;
}

.quick-info div {
  padding: 18px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-info span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 12px;
}

.quick-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.hours-list {
  display: inline-grid;
  grid-template-columns: max-content minmax(104px, max-content);
  column-gap: 10px;
  row-gap: 3px;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
}

.hours-list .day,
.hours-list .time {
  display: inline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.hours-list .day {
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
}

.hours-list .time {
  white-space: nowrap;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: var(--surface);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

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

.section-title {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 44px);
}

.lead {
  max-width: 760px;
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: 17px;
}

.dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(36, 28, 18, 0.08);
}

.card.dark-card {
  background: #211f1d;
  border-color: rgba(255, 255, 255, 0.12);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card img.image-contain {
  object-fit: contain;
  background: #151312;
}

.card-body {
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
}

.dark .card p,
.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-band {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
}

.feature-band img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.course-hero {
  padding-bottom: 76px;
}

.course-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 340px);
  gap: 42px;
  align-items: center;
}

.course-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-self: end;
  width: 100%;
  max-width: 340px;
}

.course-photo-grid img,
.lunch-course-images img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

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

.course-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(36, 28, 18, 0.09);
}

.course-card.featured {
  border-top: 4px solid var(--wine);
}

.course-card > img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 10px 26px rgba(22, 19, 16, 0.18);
}

.course-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.course-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.course-card h3 {
  margin: 0;
  font-size: 21px;
}

.course-price {
  margin: 10px 0 12px;
  color: var(--wine);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.course-card p {
  margin: 0;
  color: var(--muted);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
}

.course-detail-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
}

.course-detail-list li {
  position: relative;
  padding-left: 16px;
}

.course-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.course-note {
  margin-top: 18px !important;
  padding: 12px 14px;
  background: var(--green-soft);
  border-radius: 6px;
  color: var(--green) !important;
  font-weight: 700;
}

.lunch-course {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 34px;
  align-items: center;
}

.lunch-price-band {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
}

.lunch-price-band span {
  color: var(--gold);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.lunch-price-band strong {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 22px;
}

.lunch-course-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lunch-menu {
  margin-top: 34px;
}

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

.lunch-card,
.lunch-info-panel,
.lunch-recommend {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(36, 28, 18, 0.08);
}

.lunch-card {
  padding: 22px;
}

.lunch-card-head {
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.lunch-card h3,
.lunch-info-panel h3,
.lunch-recommend h3 {
  margin: 0;
  font-size: 21px;
}

.lunch-card p,
.lunch-info-panel p,
.lunch-recommend p {
  margin: 0;
  color: var(--muted);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
}

.lunch-options {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.lunch-options span,
.lunch-addon {
  display: block;
  padding: 9px 11px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green) !important;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.lunch-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.lunch-info-panel {
  padding: 22px;
}

.lunch-info-panel h3 {
  margin-bottom: 8px;
}

.lunch-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.lunch-chip-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 247, 240, 0.7);
  color: var(--ink-soft);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 12px;
}

.lunch-addon {
  margin-top: 16px !important;
}

.lunch-recommend {
  margin-top: 20px;
  padding: 24px;
  border-top: 4px solid var(--wine);
}

.lunch-recommend h3 {
  margin-bottom: 8px;
}

.course-more-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.course-more-panel h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.course-more-panel p {
  margin: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 253, 248, 0.7);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
}

.reservation-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.reservation-panel.primary {
  border-top: 4px solid var(--wine);
}

.note {
  margin-top: 16px;
  color: var(--muted);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
}

.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 90px 0 64px;
}

.page-hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(34px, 6vw, 64px);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.page-hero .eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
}

.menu-hero {
  padding: 76px 0 70px;
  background:
    radial-gradient(circle at 85% 20%, rgba(201, 154, 84, 0.2), transparent 32%),
    linear-gradient(135deg, #161312 0%, #241b18 48%, #0f1513 100%);
}

.menu-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 44px;
  align-items: center;
}

.menu-hero-inner h1 {
  max-width: 760px;
}

.menu-hero-photos {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, 178px);
  gap: 12px;
}

.menu-hero-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.menu-hero-photos img:first-child {
  grid-row: 1 / 3;
}

.menu-feature-band img {
  aspect-ratio: 16 / 11;
}

.menu-note {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(234, 241, 236, 0.72);
  color: var(--green);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

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

.menu-category-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(36, 28, 18, 0.08);
}

.menu-category-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-category-body {
  padding: 20px;
}

.menu-category-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.menu-category-body p {
  margin: 0;
  color: var(--muted);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading-row .section-title {
  margin-bottom: 0;
}

.section-subcopy {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 14px;
}

.dark .section-subcopy {
  color: rgba(255, 255, 255, 0.7);
}

.menu-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
}

.menu-gallery img {
  width: 100%;
  height: 100%;
  min-height: 152px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.menu-gallery .wide {
  grid-column: span 2;
}

.menu-gallery .tall {
  grid-row: span 2;
  min-height: 314px;
}

.menu-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 30px;
  align-items: center;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--wine);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-cta-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.6vw, 40px);
}

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

.menu-cta-actions {
  display: grid;
  gap: 10px;
}

.menu-cta-actions .button,
.menu-cta-actions .button-ghost {
  width: 100%;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.route-list {
  margin: 0;
  padding-left: 1.25em;
}

.route-list li {
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 48px 0 30px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-hours {
  grid-column: 1 / -1;
  padding: 18px 0 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-hours h3 {
  margin: 0 0 12px;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-hours dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(126px, 1fr));
  gap: 10px;
}

.footer-hours dl > div {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-hours dt,
.footer-hours dd {
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
}

.footer-hours dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.footer-hours dd {
  margin-top: 3px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1.35;
}

.copyright {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 12px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 8px 10px;
  }

  .site-nav .nav-phone {
    color: #fff;
  }

  .quick-info-inner,
  .footer-hours dl,
  .menu-hero-inner,
  .menu-category-grid,
  .menu-cta-panel,
  .course-hero-inner,
  .course-grid,
  .lunch-course,
  .lunch-menu-grid,
  .lunch-info-grid,
  .grid.four,
  .grid.three,
  .grid.two,
  .feature-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .course-photo-grid {
    justify-self: start;
  }

  .menu-hero-photos {
    max-width: 560px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .course-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .course-card > img {
    width: 96px;
    height: 96px;
    margin: 0;
  }

  .course-more-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 78vh;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-sub {
    display: none;
  }

  .site-nav {
    top: 68px;
  }

  .call-strip-inner {
    min-height: 58px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 8px 0;
  }

  .call-strip a {
    font-size: 20px;
  }

  .hero-content {
    padding-bottom: 44px;
  }

  .quick-info div {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hours-list {
    grid-template-columns: max-content minmax(0, 1fr);
  }

  .section {
    padding: 54px 0;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .course-card {
    grid-template-columns: 1fr;
  }

  .course-card > img {
    width: 112px;
    height: 112px;
  }

  .menu-hero-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .menu-hero-photos img {
    aspect-ratio: 1 / 1;
  }

  .menu-hero-photos img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

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

  .menu-gallery img,
  .menu-gallery .tall {
    min-height: 142px;
  }

  .menu-gallery .tall {
    grid-row: span 1;
  }

  .menu-gallery .wide {
    grid-column: span 2;
  }

  .menu-cta-panel {
    padding: 22px;
  }

  .hero-link-strip {
    width: 100%;
  }
}
