:root {
  --bg: #ebe7df;
  --paper: #fbfaf7;
  --paper-soft: #f5f1eb;
  --ink: #171412;
  --muted: #665f58;
  --line: #ded7cc;
  --red: #b91f16;
  --red-dark: #95180f;
  --shadow: 0 18px 46px rgba(37, 32, 25, 0.16);
  --soft-shadow: 0 8px 24px rgba(37, 32, 25, 0.11);
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  --sans: "Hiragino Sans", "Yu Gothic", "YuGothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.demo-banner {
  position: relative;
  z-index: 50;
  padding: 8px 16px;
  background: #2f2a26;
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.site-frame {
  width: min(1360px, calc(100% - 56px));
  margin: 28px auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)),
    var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-main {
  min-height: 65vh;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid rgba(222, 215, 204, 0.7);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  min-height: 92px;
  padding: 0 clamp(28px, 5vw, 70px);
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  line-height: 1;
}

.brand__image {
  width: clamp(180px, 16vw, 232px);
  height: auto;
  object-fit: contain;
}

.desktop-nav,
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 46px);
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  padding: 9px 0 14px;
}

.desktop-nav a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: translateX(-50%);
}

.desktop-nav a.is-active::after,
.desktop-nav a:hover::after {
  opacity: 1;
}

.header-cta,
.mobile-nav__cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 26px;
  border: 1px solid var(--red);
  background: transparent;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.header-cta {
  justify-self: end;
  min-width: 190px;
  background: var(--red);
  color: #fff;
}

.button:hover,
.header-cta:hover,
.mobile-nav__cta:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
}

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

.button--wide {
  width: min(340px, 100%);
}

.button--ghost {
  color: var(--ink);
  border-color: #b9b1a6;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-size: 30px;
}

.menu-toggle__close {
  display: none;
}

.menu-open .menu-toggle__open {
  display: none;
}

.menu-open .menu-toggle__close {
  display: inline-flex;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  min-height: 360px;
  background: var(--paper);
}

.hero--compact {
  min-height: 330px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(46px, 7vw, 96px) clamp(34px, 6vw, 74px);
}

.hero__content p {
  max-width: 430px;
  margin: 0;
}

.hero__title {
  max-width: 560px;
  margin: 0 0 24px;
  font-size: clamp(34px, 3.45vw, 46px);
  font-weight: 600;
  line-height: 1.45;
  text-wrap: balance;
}

.hero__lead {
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.85;
}

.red-line,
.section-title::after {
  display: block;
  width: 48px;
  height: 2px;
  margin: 22px 0 24px;
  background: var(--red);
  content: "";
}

.hero__media {
  position: relative;
  height: 100%;
  min-height: 330px;
  overflow: hidden;
}

.hero__media::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 48%;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(251, 250, 247, 0.9) 30%, rgba(251, 250, 247, 0) 100%);
  content: "";
  pointer-events: none;
}

.hero__media img {
  height: 100%;
  object-fit: cover;
}

.hero__media--contain img {
  object-fit: contain;
  object-position: right bottom;
}

.hero__media--ramen img {
  object-position: center right;
}

.hero__media--shop img {
  object-position: center;
}

.section {
  padding: clamp(54px, 7vw, 88px) clamp(30px, 6vw, 70px);
}

.section + .section {
  border-top: 1px solid rgba(222, 215, 204, 0.76);
}

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

.section--tight {
  padding-top: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(34px, 5vw, 56px);
}

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

.section-title {
  margin: 0;
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 500;
  line-height: 1.55;
}

.section-title::after {
  margin: 14px 0 0;
}

.section-title--center {
  text-align: center;
}

.section-title--center::after {
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.home-cards,
.menu-grid,
.recommend-grid,
.news-grid {
  display: grid;
  gap: 28px;
}

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

.home-card,
.menu-card,
.recommend-card,
.news-card,
.faq-box,
.info-card,
.feature-text,
.process-card,
.cta-band,
.contact-dialog__body {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 2px 10px rgba(37, 32, 25, 0.05);
}

.home-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
}

.home-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.home-card__image img,
.menu-card__image img,
.news-card__image img,
.recommend-card__image img,
.thumb-list img,
.gallery__item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-card:hover img,
.menu-card:hover img,
.news-card:hover img,
.recommend-card:hover img {
  transform: scale(1.035);
}

.home-card__body {
  padding: 20px 20px 22px;
}

.home-card h3,
.menu-card h3,
.news-card h3,
.recommend-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.55;
}

.home-card p,
.menu-card p,
.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.text-link svg,
.button svg {
  width: 16px;
  height: 16px;
}

.notice-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notice-strip time {
  font-family: var(--sans);
  font-size: 13px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 12px;
  border: 1px solid rgba(185, 31, 22, 0.35);
  background: rgba(185, 31, 22, 0.06);
  color: var(--red);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.tag--solid {
  background: var(--red);
  color: #fff;
}

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

.feature-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.6);
}

.feature-card:nth-child(even) {
  grid-template-columns: 0.92fr 1.08fr;
}

.feature-card:nth-child(even) .feature-card__image {
  order: 2;
}

.feature-card__image {
  min-height: 220px;
  overflow: hidden;
}

.feature-card__image img {
  height: 100%;
  object-fit: cover;
}

.feature-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 44px);
}

.feature-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.icon-pill {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
}

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

.process-card {
  position: relative;
  min-height: 154px;
  padding: 22px;
  background: #fff;
}

.process-card:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -29px;
  width: 15px;
  height: 15px;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.process-card__num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 16px;
}

.process-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.chef-message {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.chef-message img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.chef-message__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.62);
}

.chef-message__body h2 {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 500;
}

.chef-message__body p {
  margin: 0;
  color: var(--muted);
}

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

.recommend-card {
  overflow: hidden;
  background: #fff;
}

.recommend-card__image {
  aspect-ratio: 2.45 / 1;
  overflow: hidden;
}

.recommend-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 16px 18px 18px;
}

.price {
  color: var(--red);
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 4vw, 40px) clamp(24px, 5vw, 52px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.68), rgba(245, 241, 235, 0.72)),
    var(--paper-soft);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 500;
}

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

.cta-band__actions {
  display: grid;
  grid-template-columns: minmax(230px, 1fr);
  gap: 12px;
  width: 330px;
  max-width: 100%;
}

.category-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.category-nav a {
  position: relative;
  display: grid;
  gap: 7px;
  justify-items: center;
  padding: 20px 12px 18px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  font-size: 13px;
  text-align: center;
}

.category-nav a:first-child {
  border-left: 0;
}

.category-nav a.is-active,
.category-nav a:hover {
  color: var(--ink);
}

.category-nav a.is-active::after,
.category-nav a:hover::after {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 2px;
  background: var(--red);
  content: "";
}

.category-nav svg {
  width: 26px;
  height: 26px;
}

.cat-icon {
  position: relative;
  display: block;
  width: 31px;
  height: 25px;
  color: var(--ink);
}

.cat-icon::before,
.cat-icon::after {
  position: absolute;
  content: "";
}

.cat-icon--bowl::before,
.cat-icon--kids::before {
  left: 3px;
  right: 3px;
  bottom: 3px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.cat-icon--bowl::after,
.cat-icon--kids::after {
  left: 7px;
  right: 7px;
  bottom: 1px;
  border-bottom: 1.5px solid currentColor;
}

.cat-icon--dish::before {
  left: 4px;
  right: 4px;
  bottom: 5px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.cat-icon--dish::after {
  left: 9px;
  right: 9px;
  bottom: 2px;
  border-bottom: 1.5px solid currentColor;
}

.cat-icon--round::before {
  inset: 4px 7px 3px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.cat-icon--round::after {
  inset: 9px 12px 8px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.cat-icon--side::before {
  left: 8px;
  bottom: 3px;
  width: 12px;
  height: 15px;
  border: 1.5px solid currentColor;
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.cat-icon--side::after {
  left: 6px;
  right: 6px;
  top: 4px;
  border-top: 1.5px solid currentColor;
}

.cat-icon--drink::before {
  left: 10px;
  top: 3px;
  width: 10px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 3px 3px 5px 5px;
}

.cat-icon--drink::after {
  left: 12px;
  top: 0;
  width: 6px;
  height: 4px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
}

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

.menu-card {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.menu-card__image {
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
}

.menu-card__body {
  padding: 18px 20px 20px;
}

.menu-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.menu-card__title-row h3 {
  margin: 0;
  font-size: 21px;
}

.rank-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  border-radius: 50%;
  background: var(--red);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.takeout {
  display: inline-flex;
  margin-top: 14px;
  padding: 3px 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.4;
}

.two-column-menu {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 5vw, 72px);
}

.compact-items {
  display: grid;
  gap: 16px;
}

.compact-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
}

.compact-item img {
  aspect-ratio: 1.2 / 1;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.compact-item h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.compact-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(222, 215, 204, 0.7);
}

.note-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.68);
}

.note-grid > div {
  padding: 24px 30px;
}

.note-grid > div + div {
  border-left: 1px solid var(--line);
}

.note-grid h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 500;
}

.note-grid p,
.note-grid ul {
  margin: 0;
  color: var(--muted);
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
}

.filter-button {
  min-width: 112px;
  min-height: 40px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid #c9c1b6;
  background: #fff;
  font-family: var(--sans);
  font-size: 13px;
}

.filter-button.is-active,
.filter-button:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.news-feature__image {
  aspect-ratio: 1.85 / 1;
  overflow: hidden;
}

.news-feature__image img {
  height: 100%;
  object-fit: cover;
}

.news-feature h2 {
  margin: 10px 0 10px;
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 500;
  line-height: 1.55;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 12px;
}

.news-list {
  display: grid;
  gap: 0;
}

.news-row {
  display: grid;
  grid-template-columns: 190px 150px 1fr 24px;
  gap: 24px;
  align-items: center;
  min-height: 118px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.news-row img {
  aspect-ratio: 1.9 / 1;
  height: 100%;
  object-fit: cover;
}

.news-row h3 {
  margin: 6px 0 4px;
  font-size: 17px;
}

.news-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.row-arrow {
  color: var(--muted);
  font-size: 22px;
}

.pager {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.pager button {
  min-width: 42px;
  height: 40px;
  border: 1px solid #c9c1b6;
  background: #fff;
}

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

.subscribe-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}

.subscribe-panel__item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px 42px;
}

.subscribe-panel__item + .subscribe-panel__item {
  border-left: 1px solid var(--line);
}

.subscribe-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--ink);
  position: relative;
}

.subscribe-icon::before,
.subscribe-icon::after,
.subscribe-icon span {
  position: absolute;
  content: "";
}

.subscribe-icon--bowl::before {
  left: 10px;
  right: 10px;
  bottom: 18px;
  height: 24px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 38px 38px;
}

.subscribe-icon--bowl::after {
  left: 19px;
  right: 19px;
  bottom: 12px;
  border-bottom: 3px solid currentColor;
}

.subscribe-icon--instagram::before {
  inset: 9px;
  border: 4px solid currentColor;
  border-radius: 17px;
}

.subscribe-icon--instagram::after {
  inset: 25px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.subscribe-icon--instagram span {
  top: 20px;
  right: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.subscribe-panel h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.subscribe-panel p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: -22px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: var(--soft-shadow);
}

.info-strip__item {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0 18px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.info-strip__item:first-child {
  border-left: 0;
}

.info-strip svg,
.access-card svg {
  width: 34px;
  height: 34px;
  color: var(--ink);
}

.info-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  opacity: 0.88;
}

.info-strip h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
}

.info-strip p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.access-map-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.29fr) minmax(0, 0.71fr);
  gap: 42px;
  align-items: stretch;
}

.address-block p {
  margin: 0 0 28px;
}

.map-frame {
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #eee;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  border: 0;
  filter: grayscale(0.2) saturate(0.82) contrast(0.96);
}

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

.access-card {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.access-card:last-child {
  border-right: 0;
}

.access-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 23px;
  font-weight: 500;
}

.parking-map {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 0.8fr);
  width: 240px;
  max-width: 100%;
  margin-top: 16px;
  border: 1px solid #bdb5aa;
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
}

.parking-map span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-left: 1px solid #bdb5aa;
  border-bottom: 1px solid #bdb5aa;
}

.parking-map span:first-child {
  grid-row: span 2;
  border-left: 0;
  background: #d7d1c8;
}

.pay-list {
  display: grid;
  gap: 12px;
}

.pay-box {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 9px;
  font-family: var(--sans);
  font-weight: 800;
}

.pay-icons span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 27px;
  padding: 0 8px;
  border-radius: 4px;
  background: #f3f1ed;
}

.gallery {
  position: relative;
}

.gallery__viewport {
  overflow: hidden;
}

.gallery__track {
  display: flex;
  transition: transform 0.32s ease;
}

.gallery__item {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery__item figure {
  margin: 0;
}

.gallery__item img {
  aspect-ratio: 1.55 / 1;
  border-radius: 4px;
}

.gallery__item figcaption {
  margin-top: 8px;
  font-size: 12px;
  text-align: center;
}

.gallery__arrow {
  position: absolute;
  top: 38%;
  width: 36px;
  height: 44px;
  border: 0;
  background: rgba(23, 20, 18, 0.42);
  color: #fff;
}

.gallery__arrow--prev {
  left: 0;
}

.gallery__arrow--next {
  right: 0;
}

.gallery__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.gallery__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9c1b6;
}

.gallery__dot.is-active {
  background: var(--red);
}

.faq-box {
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.75);
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.faq-question::after {
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  content: "";
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(225deg);
}

.faq-answer {
  display: none;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.98);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(80px, 1fr);
  align-items: center;
  gap: 22px;
  padding: 30px clamp(28px, 5vw, 70px) 16px;
}

.site-footer .brand__image {
  width: 164px;
}

.footer-nav {
  gap: clamp(18px, 3vw, 34px);
  font-size: 12px;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-family: var(--sans);
  font-size: 22px;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.copyright {
  display: block;
  padding: 0 20px 24px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  text-align: center;
}

.contact-dialog {
  width: min(620px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.contact-dialog::backdrop {
  background: rgba(23, 20, 18, 0.42);
}

.contact-dialog__body {
  padding: clamp(28px, 5vw, 44px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-dialog__body h2 {
  margin: 0 0 12px;
  font-size: 31px;
  font-weight: 500;
}

.contact-dialog__body p {
  margin: 0 0 20px;
  color: var(--muted);
}

.contact-dialog__close-form {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
}

.dialog-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  padding: 11px 12px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--red);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .site-frame {
    overflow: visible;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 74px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 42px rgba(37, 32, 25, 0.16);
    transition: max-height 0.25s ease;
  }

  .menu-open .mobile-nav {
    max-height: 440px;
  }

  .mobile-nav a,
  .mobile-nav__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 30px;
    border: 0;
    border-top: 1px solid var(--line);
    background: transparent;
    color: var(--ink);
    font-size: 15px;
  }

  .mobile-nav a.is-active {
    color: var(--red);
  }

  .mobile-nav__cta {
    justify-content: center;
    color: #fff;
    background: var(--red);
  }

  .home-cards,
  .info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-strip__item:nth-child(odd) {
    border-left: 0;
  }

  .info-strip__item {
    padding: 18px;
    border-top: 1px solid var(--line);
  }

  .info-strip__item:nth-child(-n + 2) {
    border-top: 0;
  }

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

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

  .process-card:not(:last-child)::after {
    display: none;
  }

  .news-row {
    grid-template-columns: 150px 130px 1fr 24px;
  }
}

@media (max-width: 1120px) and (min-width: 901px) {
  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .hero__content {
    padding: 52px 48px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__lead {
    font-size: 19px;
  }

  .section-head {
    display: block;
  }

  .section-head > p {
    margin-top: 12px;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 14px;
  }

  .site-frame {
    width: min(390px, calc(100% - 24px));
    margin: 18px auto;
  }

  .site-header__inner {
    min-height: 66px;
    padding: 0 20px;
  }

  .brand__image {
    width: 148px;
  }

  .hero,
  .hero--compact {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__content {
    padding: 34px 24px 24px;
  }

  .hero__title {
    margin-bottom: 14px;
    font-size: 30px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .red-line {
    margin: 14px 0 18px;
  }

  .hero__media {
    min-height: 0;
    height: auto;
  }

  .hero__media::before {
    display: none;
  }

  .hero__media img {
    height: auto;
    max-height: 270px;
    object-fit: cover;
  }

  .hero__media--contain img {
    object-fit: contain;
  }

  .section {
    padding: 38px 24px;
  }

  .section-head {
    display: block;
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .home-cards,
  .feature-grid,
  .process-grid,
  .recommend-grid,
  .menu-grid,
  .news-grid,
  .two-column-menu,
  .access-map-grid,
  .access-cards,
  .subscribe-panel,
  .cta-band,
  .chef-message,
  .news-feature,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .home-card {
    grid-template-columns: 112px 1fr;
    grid-template-rows: none;
  }

  .home-card__image {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .home-card__body {
    padding: 16px;
  }

  .home-card h3 {
    font-size: 18px;
  }

  .notice-strip {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .feature-card,
  .feature-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-card:nth-child(even) .feature-card__image {
    order: 0;
  }

  .feature-card__image {
    min-height: 0;
    aspect-ratio: 1.75 / 1;
  }

  .feature-card h3,
  .process-card h3 {
    font-size: 19px;
  }

  .chef-message img {
    min-height: 180px;
  }

  .cta-band {
    gap: 22px;
  }

  .cta-band h2 {
    font-size: 23px;
  }

  .cta-band__actions {
    width: 100%;
  }

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

  .category-nav a {
    padding: 15px 8px 13px;
  }

  .menu-card {
    display: grid;
    grid-template-columns: 118px 1fr;
  }

  .menu-card__image {
    aspect-ratio: auto;
    height: 100%;
  }

  .menu-card__body {
    padding: 12px 12px 13px;
  }

  .menu-card__title-row {
    display: block;
  }

  .menu-card__title-row h3 {
    font-size: 16px;
  }

  .menu-card p {
    font-size: 12px;
    line-height: 1.65;
  }

  .price {
    font-size: 15px;
  }

  .rank-badge {
    top: 8px;
    left: 8px;
    width: 44px;
    height: 44px;
    font-size: 10px;
  }

  .compact-item {
    grid-template-columns: 92px 1fr;
    gap: 12px;
  }

  .note-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .news-filters {
    justify-content: flex-start;
    gap: 10px;
  }

  .filter-button {
    min-width: auto;
    min-height: 36px;
    padding: 0 13px;
    font-size: 12px;
  }

  .news-feature {
    gap: 14px;
    padding: 12px;
  }

  .news-row {
    grid-template-columns: 96px 1fr 20px;
    gap: 14px;
    min-height: 108px;
    padding: 14px 0;
  }

  .news-row .news-meta {
    grid-column: 2;
    display: flex;
    gap: 8px;
  }

  .news-row__body {
    grid-column: 2;
  }

  .news-row h3 {
    margin-top: 4px;
    font-size: 14px;
  }

  .news-row p {
    display: none;
  }

  .pager {
    gap: 7px;
  }

  .pager button {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .subscribe-panel__item,
  .subscribe-panel__item + .subscribe-panel__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px;
    text-align: center;
    border-left: 0;
  }

  .subscribe-panel__item + .subscribe-panel__item {
    border-top: 1px solid var(--line);
  }

  .subscribe-icon {
    width: 100%;
    height: 52px;
    font-size: 42px;
  }

  .info-strip {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 0;
  }

  .info-strip__item,
  .info-strip__item:nth-child(-n + 2) {
    grid-template-columns: 44px 1fr;
    justify-items: start;
    text-align: left;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .info-strip__item:first-child {
    border-top: 0;
  }

  .access-card {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .access-card:last-child {
    border-bottom: 0;
  }

  .gallery__item {
    grid-template-columns: repeat(4, 72%);
    overflow: hidden;
  }

  .gallery__item img {
    aspect-ratio: 1.42 / 1;
  }

  .gallery__dots {
    display: flex;
  }

  .gallery__arrow {
    display: none;
  }

  .faq-box {
    padding: 12px 16px;
  }

  .faq-question {
    min-height: 48px;
    gap: 18px;
    font-size: 13px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 28px 22px 12px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 8px 22px;
    max-width: 260px;
  }

  .footer-social {
    justify-content: center;
  }

  .contact-dialog {
    width: min(360px, calc(100% - 24px));
  }

  .contact-dialog__body h2 {
    font-size: 27px;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .site-frame {
    width: calc(100% - 18px);
    margin: 9px auto;
    border-radius: 7px;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero__content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .home-card,
  .menu-card {
    grid-template-columns: 104px 1fr;
  }

  .mobile-nav a,
  .mobile-nav__cta {
    padding-right: 22px;
    padding-left: 22px;
  }
}
