:root {
  --ink: #241c18;
  --muted: #6d5a4d;
  --paper: #fffaf3;
  --white: #ffffff;
  --cream: #fff1dc;
  --line: #ead8c0;
  --red: #b63a2f;
  --red-dark: #85251f;
  --amber: #f0a43a;
  --green: #2f6b5f;
  --shadow: 0 18px 45px rgba(49, 31, 22, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 10px 18px;
  color: var(--white);
  background: rgba(36, 28, 24, 0.58);
  backdrop-filter: blur(14px);
}

.site-logo {
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: none;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--white);
  background: #33231b;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  border-radius: 0;
  aspect-ratio: auto;
}

.hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1400ms ease;
}

.hero__media .hero__slide--teba,
.hero__media .hero__slide--counter {
  object-fit: contain;
  object-position: center;
}

.hero__media .hero__slide--exterior {
  object-fit: contain;
  object-position: center top;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero__media.is-missing::after {
  color: rgba(255, 255, 255, 0.82);
}

.hero__overlay {
  z-index: 1;
  background:
    radial-gradient(ellipse at 24% 46%, rgba(20, 14, 10, 0.56) 0%, rgba(20, 14, 10, 0.34) 34%, rgba(20, 14, 10, 0.12) 62%, rgba(20, 14, 10, 0) 100%),
    linear-gradient(180deg, rgba(20, 14, 10, 0.08) 0%, rgba(20, 14, 10, 0.14) 58%, rgba(20, 14, 10, 0.28) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 104px 0 128px;
}

.eyebrow,
.section-kicker {
  color: var(--amber);
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero h1 {
  margin-top: 8px;
  font-size: 2.32rem;
  line-height: 1.08;
  font-weight: 900;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.hero__catch {
  margin-top: 12px;
  font-size: 1.55rem;
  line-height: 1.28;
  font-weight: 900;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.hero__catch span {
  display: block;
}

.hero__lead {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero__badges span {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  padding: 7px 11px;
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.hero .cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.hero .button {
  min-height: 58px;
  padding: 12px 10px;
  font-size: 1rem;
}

.hero .button--ghost {
  grid-column: 1 / -1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero .mobile-hero-hidden {
  display: none;
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.site-logo:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 30px rgba(182, 58, 47, 0.34);
}

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

.button--light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(36, 28, 24, 0.16);
}

.hero .button--light {
  color: #23180d;
  background: var(--amber);
  box-shadow: 0 16px 30px rgba(240, 164, 58, 0.28);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.button--outline {
  color: var(--red-dark);
  border-color: rgba(182, 58, 47, 0.36);
  background: rgba(255, 255, 255, 0.42);
}

.open-status {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(47, 107, 95, 0.92);
  padding: 7px 12px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.open-status.is-closed {
  background: rgba(36, 28, 24, 0.82);
}

.dish-lead {
  padding: 34px 0 54px;
  background: #fff4e4;
}

.dish-lead h2 {
  margin-top: 6px;
  font-size: 1.75rem;
  line-height: 1.32;
}

.dish-lead__grid {
  display: grid;
  align-items: stretch;
  gap: 16px;
  margin-top: 20px;
}

.dish-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(182, 58, 47, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(49, 31, 22, 0.12);
}

.dish-card--main {
  border-color: rgba(182, 58, 47, 0.36);
  background: #fff6ec;
  box-shadow: 0 14px 34px rgba(49, 31, 22, 0.12);
}

.dish-card__image {
  border-radius: 0;
  aspect-ratio: auto;
  height: clamp(290px, 78vw, 380px);
}

.dish-card--main .dish-card__image {
  aspect-ratio: auto;
}

.dish-card__image img {
  object-position: center;
}

.dish-card--main .dish-card__image img,
.dish-card--popular .dish-card__image img,
.dish-card--tsukune .dish-card__image img,
.menu-card--featured .menu-card__photo img,
.menu-card--popular .menu-card__photo img,
.menu-card--tsukune .menu-card__photo img,
.specialty__image img {
  object-fit: contain;
  object-position: center;
}

.dish-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.dish-card__label {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(182, 58, 47, 0.1);
  color: var(--red-dark) !important;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
}

.dish-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 5vw, 1.55rem);
  font-weight: 900;
  line-height: 1.36;
}

.dish-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 700;
}

.section {
  padding: 70px 0;
}

.section--warm {
  background: #fff5e7;
}

.section--cream {
  background: #fffdf8;
}

.section h2,
.final-cta h2 {
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1.32;
}

.section h3 {
  font-size: 1.12rem;
  line-height: 1.45;
}

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

.hirunomi {
  border-top: 1px solid rgba(182, 58, 47, 0.12);
  border-bottom: 1px solid rgba(182, 58, 47, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(255, 240, 220, 0.96)),
    var(--cream);
}

.hirunomi__grid {
  display: grid;
  align-items: center;
  gap: 26px;
}

.hirunomi__copy {
  display: grid;
  gap: 12px;
}

.hirunomi__label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  border-radius: 999px;
  background: var(--red);
  color: var(--white) !important;
  padding: 5px 12px;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
}

.hirunomi h2 {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(2rem, 10vw, 3.1rem);
  font-weight: 900;
  line-height: 1.12;
}

.hirunomi__price {
  display: block;
  color: var(--red);
  font-size: clamp(2.6rem, 14vw, 4.2rem);
  line-height: 1;
}

.hirunomi__lead {
  max-width: 680px;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.78;
}

.hirunomi__note {
  color: var(--red-dark) !important;
  font-size: 0.92rem;
  font-weight: 900;
}

.hirunomi__points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.hirunomi__points li {
  border: 1px solid rgba(182, 58, 47, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 10px 12px;
  color: var(--red-dark);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.45;
}

.hirunomi__mood {
  display: grid;
  gap: 6px;
  margin-top: 6px;
  border-left: 4px solid var(--amber);
  padding-left: 14px;
}

.hirunomi__mood p {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.hirunomi__figure {
  margin: 0;
  border: 1px solid rgba(182, 58, 47, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  padding: 8px;
  box-shadow: 0 16px 36px rgba(49, 31, 22, 0.13);
}

.hirunomi__figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.intro__grid,
.specialty__grid,
.access__grid {
  display: grid;
  gap: 34px;
}

.specialty__grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.intro__grid > div:first-child p:last-child,
.specialty__copy > p:last-of-type,
.access__grid > div:first-child p {
  margin-top: 16px;
}

.intro-points,
.recommend-grid,
.menu-grid {
  display: grid;
  gap: 14px;
}

.intro-points article,
.recommend-card,
.menu-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  box-shadow: 0 10px 28px rgba(49, 31, 22, 0.08);
}

.intro-points span {
  color: var(--green);
  font-weight: 900;
  font-size: 0.86rem;
}

.intro-points h3,
.recommend-card h3,
.menu-card h3 {
  margin-top: 5px;
}

.intro-points p,
.recommend-card p,
.menu-card p {
  margin-top: 8px;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(182, 58, 47, 0.16), rgba(47, 107, 95, 0.14)),
    #f7e4ce;
  aspect-ratio: 4 / 3;
}

.hero__media.photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 0;
  aspect-ratio: auto;
}

.hero__media.photo-frame img {
  max-width: none;
}

.photo-frame::after {
  content: attr(data-fallback-label);
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.photo-frame.is-missing::after {
  display: flex;
}

.photo-frame.is-missing img {
  display: none;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialty__image {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 340px;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}

.specialty__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  align-self: center;
}

.copy-large {
  margin-top: 16px;
  color: var(--ink) !important;
  font-size: 1.36rem;
  line-height: 1.55;
  font-weight: 900;
}

.mini-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-top: 24px;
}

.mini-cta .button {
  width: 100%;
}

.text-link {
  color: var(--red-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.recommend-grid {
  margin-top: 24px;
}

.recommend-card {
  border-left: 5px solid var(--green);
}

.section-heading {
  max-width: 760px;
}

.section-heading > p:last-child {
  margin-top: 12px;
}

.photo-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.photo-card {
  margin: 0;
}

.photo-card figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-weight: 800;
}

.section-heading--split {
  display: grid;
  gap: 12px;
  max-width: none;
}

.menu-grid {
  align-items: stretch;
  gap: 16px;
  margin-top: 26px;
}

.menu-board {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  border: 1px solid rgba(182, 58, 47, 0.18);
  border-radius: var(--radius);
  background: #fffdf9;
  padding: 18px;
  box-shadow: 0 18px 42px rgba(49, 31, 22, 0.12);
}

.menu-board__copy {
  display: grid;
  gap: 8px;
}

.menu-board__copy h3 {
  font-size: clamp(1.5rem, 7vw, 2.1rem);
  line-height: 1.35;
}

.menu-board__copy p:last-child,
.menu-board__footer p {
  color: var(--muted);
  line-height: 1.75;
}

.menu-board__figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f7e4ce;
  box-shadow: 0 12px 28px rgba(49, 31, 22, 0.13);
}

.menu-board__figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.menu-board__footer {
  display: grid;
  gap: 12px;
}

.menu-board__footer .button {
  width: 100%;
}

.menu-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 12px 30px rgba(49, 31, 22, 0.1);
}

.menu-card--featured {
  border-color: rgba(182, 58, 47, 0.34);
  background: #fff6ec;
}

.menu-card--popular {
  border-color: rgba(47, 107, 95, 0.34);
  background: #f2fbf7;
}

.menu-card--tsukune {
  border-color: rgba(182, 58, 47, 0.24);
  background: #fffaf3;
}

.menu-card--photo {
  padding: 0;
}

.menu-card__photo {
  border-radius: 0;
  aspect-ratio: auto;
  height: clamp(240px, 68vw, 300px);
}

.menu-card__photo img {
  object-position: center;
}

.menu-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 18px 20px;
}

.menu-card .menu-card__label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  background: rgba(182, 58, 47, 0.1);
  color: var(--red-dark) !important;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.menu-card--popular .menu-card__label {
  background: rgba(47, 107, 95, 0.12);
  color: var(--green) !important;
}

.menu-card--drink .menu-card__label {
  background: rgba(240, 164, 58, 0.16);
  color: #7a4b0a !important;
}

.menu-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 4.8vw, 1.3rem);
  font-weight: 900;
  line-height: 1.42;
}

.menu-card p:not(.menu-card__label) {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.menu-card strong {
  margin-top: auto;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.5;
}

.drink-strip {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.drink-strip__image {
  border-radius: 0;
  aspect-ratio: 16 / 9;
}

.drink-strip > div:last-child {
  padding: 0 22px 24px;
}

.drink-strip p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.access__grid {
  align-items: start;
}

.cta-row--access {
  margin-top: 24px;
}

.shop-info {
  font-style: normal;
}

.shop-info dl {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(49, 31, 22, 0.1);
}

.shop-info div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

.shop-info div:last-child {
  border-bottom: 0;
}

.shop-info dt {
  color: var(--muted);
  font-weight: 900;
}

.shop-info dd {
  margin: 0;
  font-weight: 800;
}

.shop-info a {
  color: var(--red-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.access-photos {
  display: grid;
  gap: 14px;
}

.access-photos .photo-frame {
  aspect-ratio: 4 / 5;
  box-shadow: 0 12px 32px rgba(49, 31, 22, 0.1);
}

.character-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: var(--white);
}

.character-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.final-cta {
  padding: 70px 0 84px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(36, 28, 24, 0.9), rgba(36, 28, 24, 0.94)),
    #241c18;
  text-align: center;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .section-kicker {
  color: var(--amber);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta__inner > p:last-of-type {
  margin-top: 12px;
}

.cta-row--center {
  justify-content: center;
}

.site-footer {
  padding: 28px 18px 92px;
  color: rgba(255, 255, 255, 0.76);
  background: #19130f;
  font-size: 0.9rem;
  text-align: center;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

.mobile-action {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 250, 243, 0.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 -12px 28px rgba(49, 31, 22, 0.14);
}

.mobile-action a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 20px rgba(182, 58, 47, 0.22);
  font-size: 1.02rem;
  font-weight: 900;
  text-decoration: none;
}

.mobile-action a:last-child {
  color: #23180d;
  background: var(--amber);
  box-shadow: 0 10px 20px rgba(240, 164, 58, 0.24);
}

@media (max-width: 639px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 64px;
    overflow: visible;
    color: var(--ink);
    background: #fff5e7;
  }

  .hero__media,
  .hero__media.photo-frame {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(260px, 70vw, 340px);
    border-radius: 0;
    background: #2d211a;
  }

  .hero__overlay {
    display: none;
  }

  .hero__slide {
    transition: none;
  }

  .hero__media .hero__slide:not(.hero__slide--exterior) {
    opacity: 0 !important;
  }

  .hero__media .hero__slide--exterior {
    z-index: 2;
    opacity: 1 !important;
    object-fit: contain;
    object-position: center top;
  }

  .hero__content {
    padding: 26px 0 34px;
  }

  .hero .eyebrow {
    color: var(--red-dark);
  }

  .hero h1,
  .hero__catch {
    color: var(--ink);
    text-shadow: none;
  }

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

  .hero__badges span {
    border-color: rgba(182, 58, 47, 0.22);
    background: rgba(255, 255, 255, 0.78);
    color: var(--red-dark);
    backdrop-filter: none;
  }
}

@media (min-width: 640px) {
  .site-header {
    padding-inline: 26px;
  }

  .site-nav {
    display: flex;
    gap: 18px;
  }

  .section-inner {
    width: min(1120px, calc(100% - 56px));
  }

  .dish-lead__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
  }

  .dish-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .dish-card__image {
    height: 340px;
  }

  .dish-card__body {
    padding: 20px;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero__content {
    padding: 150px 0 80px;
  }

  .hero__catch {
    font-size: 2.15rem;
  }

  .cta-row,
  .mini-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mini-cta {
    align-items: center;
  }

  .mini-cta .button {
    width: auto;
  }

  .hero .cta-row {
    display: flex;
    gap: 10px;
    margin-top: 24px;
  }

  .hero .mobile-hero-hidden {
    display: inline-flex;
  }

  .hero .button {
    min-height: 54px;
    padding-inline: 18px;
  }

  .hero .button--ghost {
    grid-column: auto;
  }

  .button {
    min-width: 168px;
  }

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

  .menu-grid {
    gap: 18px;
  }

  .menu-board {
    gap: 22px;
    padding: 24px;
  }

  .menu-board__footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .menu-board__footer .button {
    width: auto;
    min-width: 180px;
  }

  .menu-card__photo {
    height: 260px;
  }

  .menu-card__body {
    padding: 20px;
  }

  .drink-strip {
    grid-template-columns: minmax(260px, 0.95fr) 1fr;
    align-items: center;
  }

  .drink-strip > div:last-child {
    padding: 28px 28px 28px 0;
  }

  .mobile-action {
    display: none;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

@media (min-width: 900px) {
  body {
    font-size: 17px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero__content {
    padding-bottom: 74px;
  }

  .section {
    padding: 92px 0;
  }

  .hirunomi__grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr);
    gap: 46px;
  }

  .dish-lead {
    padding: 58px 0 72px;
  }

  .dish-lead h2 {
    font-size: 2.35rem;
  }

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

  .dish-card h3,
  .dish-card--main h3 {
    font-size: 1.7rem;
  }

  .intro__grid,
  .access__grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
    gap: 56px;
  }

  .access__grid > div:first-child,
  .access__grid .shop-info {
    grid-column: 1;
  }

  .access-photos {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
  }

  .access-photos .photo-frame {
    min-height: 100%;
  }

  .intro-points {
    grid-template-columns: 1fr;
  }

  .specialty__grid {
    grid-template-columns: minmax(0, 52%) minmax(320px, 1fr);
    align-items: center;
    column-gap: 64px;
  }

  .specialty__image {
    min-height: 0;
    max-height: 640px;
    aspect-ratio: 3 / 4;
  }

  .specialty__copy {
    max-width: 500px;
    justify-self: start;
  }

  .section h2,
  .final-cta h2 {
    font-size: 2.55rem;
  }

  .section-heading--split {
    grid-template-columns: 1fr 0.9fr;
    align-items: end;
  }

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

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

  .menu-card__photo {
    height: 250px;
  }

  .menu-card h3 {
    font-size: 1.22rem;
  }
}
