:root {
  --ink: #11100e;
  --sumi: #171411;
  --brown: #2c2119;
  --brown-deep: #1f1712;
  --cream: #f4ead8;
  --cream-soft: #fbf5eb;
  --enji: #6f1f25;
  --enji-deep: #4c1619;
  --gold: #c8a15a;
  --gold-soft: #dfc88f;
  --muted: #766b5f;
  --white: #fffaf0;
  --line-dark: rgba(223, 200, 143, 0.22);
  --line-light: rgba(44, 33, 25, 0.14);
  --shadow: 0 24px 56px rgba(13, 10, 8, 0.28);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", "Times New Roman", serif;
  --sans: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  --inner: min(100% - 40px, 1120px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 74px;
  background: var(--sumi);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 250, 240, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.015) 1px, transparent 1px);
  background-size: 28px 28px;
}

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

img {
  height: auto;
  object-fit: cover;
}

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

p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin: 0;
}

p + p {
  margin-top: 18px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--sumi);
  background: var(--gold-soft);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  color: var(--white);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--inner);
  margin: 0 auto;
  padding: 18px 0;
  gap: 20px;
}

.site-logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.site-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -2;
}

.hero__media img {
  filter: saturate(0.88) contrast(1.04);
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(13, 10, 8, 0.5), rgba(13, 10, 8, 0.2) 34%, rgba(13, 10, 8, 0.76)),
    linear-gradient(90deg, rgba(13, 10, 8, 0.82), rgba(13, 10, 8, 0.5) 48%, rgba(13, 10, 8, 0.22)),
    radial-gradient(circle at 80% 18%, rgba(200, 161, 90, 0.18), transparent 34%);
}

.hero__content {
  width: var(--inner);
  margin: auto;
  padding: 108px 0 128px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.4;
}

.eyebrow::before {
  display: inline-block;
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1,
.section h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.55;
}

.hero h1 {
  max-width: 760px;
  font-size: 58px;
  line-height: 1.08;
}

.hero__lead {
  display: grid;
  gap: 24px;
  max-width: 560px;
  margin-top: 34px;
  color: rgba(255, 250, 240, 0.86);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.75;
}

.no-break {
  white-space: nowrap;
}

.pc-only-break {
  display: inline;
}

.access__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 20px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.button--primary {
  color: var(--sumi);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 250, 240, 0.06);
  border-color: rgba(255, 250, 240, 0.42);
}

.section--cream .button--ghost,
.section--access .button--ghost {
  color: var(--brown-deep);
  background: transparent;
  border-color: rgba(44, 33, 25, 0.28);
}

.button--text {
  min-height: 44px;
  padding-inline: 0;
  color: var(--gold-soft);
  border-color: transparent;
}

.section {
  position: relative;
  padding: 76px 0;
}

.section__inner {
  width: var(--inner);
  margin: 0 auto;
}

.section--cream {
  color: var(--brown-deep);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.88), rgba(244, 234, 216, 0.96)),
    var(--cream);
}

.section.location {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section--dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(111, 31, 37, 0.12), transparent 48%),
    linear-gradient(180deg, var(--sumi), var(--brown-deep));
}

.section--brown {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(31, 23, 18, 0.96), rgba(44, 33, 25, 0.98)),
    var(--brown);
}

.section.section--cinematic {
  padding: 24px 0 36px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 20, 17, 0.98), var(--sumi) 54%, rgba(244, 234, 216, 0.94));
}

.section--retro {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(111, 31, 37, 0.2), transparent 54%),
    linear-gradient(180deg, var(--brown), var(--brown-deep));
}

.section--access {
  padding-bottom: 112px;
  color: var(--white);
  background:
    linear-gradient(180deg, var(--brown-deep), var(--sumi));
}

.section__heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section__heading--center {
  max-width: 820px;
  margin-inline: auto;
  text-align: left;
}

.section h2 {
  color: inherit;
  font-size: 29px;
  text-wrap: balance;
}

.section h2 + p,
.section__heading p:not(.eyebrow) {
  margin-top: 18px;
  color: inherit;
}

.section--cream .section__heading p:not(.eyebrow),
.section--cream p {
  color: #3e3228;
}

.section--dark p,
.section--brown p,
.section--cinematic p,
.section--retro p,
.section--access p {
  color: rgba(255, 250, 240, 0.82);
}

.about__layout,
.regulars__grid,
.location__layout,
.plate__layout,
.retro__layout,
.access__grid {
  display: grid;
  gap: 34px;
}

.cinematic .section__inner {
  width: 100%;
  max-width: none;
}

.cinematic__frame {
  width: 100%;
  background: var(--sumi);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.cinematic__frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: #080706;
}

.about__content {
  padding-top: 10px;
}

.about__image,
.regulars__image,
.taste__image,
.plate__image,
.retro__image,
.owner__image {
  overflow: hidden;
  background: var(--brown);
  box-shadow: var(--shadow);
}

.about__image img,
.regulars__image img,
.taste__image img,
.plate__image img,
.retro__image img,
.owner__image img,
.dish-card img {
  width: 100%;
  height: 100%;
}

.about__image {
  aspect-ratio: 4 / 3;
}

.about__image figcaption {
  padding: 12px 14px;
  color: #5f5347;
  background: rgba(251, 245, 235, 0.94);
  font-size: 13px;
  line-height: 1.6;
}

.owner__layout {
  display: grid;
  gap: 42px;
}

.owner__image {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-dark);
}

.owner__image img {
  object-position: center center;
}

.owner__content {
  padding-top: 8px;
}

.owner__lead {
  margin: 24px 0 22px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.8;
}

.taste {
  overflow: hidden;
}

.taste__panel {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 30px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.taste__image {
  margin-top: 32px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line-dark);
}

.plate__content {
  padding-top: 10px;
}

.plate__image {
  aspect-ratio: 4 / 3;
}

.location__image {
  aspect-ratio: auto;
  min-height: 0;
}

.location__image img {
  display: block;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.dish-list {
  display: grid;
  gap: 26px;
}

.dish-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 320px;
  background: var(--brown);
  border-bottom: 1px solid var(--line-light);
}

.dish-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  background: var(--brown);
}

.dish-card__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 72px 18px 18px;
  background: linear-gradient(
    to top,
    rgba(12, 9, 7, 0.9) 0%,
    rgba(12, 9, 7, 0.68) 48%,
    rgba(12, 9, 7, 0.02) 100%
  );
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.78);
}

.dish-card--text-top img {
  object-position: center 64%;
}

.dish-card--text-top .dish-card__body {
  top: 0;
  bottom: auto;
  padding: 20px 18px 86px;
  background: linear-gradient(
    to bottom,
    rgba(12, 9, 7, 0.9) 0%,
    rgba(12, 9, 7, 0.64) 50%,
    rgba(12, 9, 7, 0.02) 100%
  );
}

.dish-card h3 {
  color: #fff2d0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.dish-card__price {
  display: block;
  color: #f7df9e;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.dish-card p {
  color: rgba(255, 248, 232, 0.94);
  line-height: 1.75;
}

.regulars__content,
.location__content,
.retro__content {
  padding-top: 10px;
}

.regulars__image {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-dark);
}

.retro__image {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-dark);
}

.access__grid {
  align-items: start;
}

.shop-info {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.shop-info > div {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.shop-info dt {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 14px;
  white-space: nowrap;
}

.shop-info dd {
  color: rgba(255, 250, 240, 0.9);
}

.shop-info a {
  color: #e6c979;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-info span {
  color: rgba(255, 250, 240, 0.56);
  font-size: 14px;
}

.access__map {
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--line-dark);
  background: var(--brown);
}

.access__map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: sepia(0.18) saturate(0.85);
}

.site-footer {
  padding: 42px 0 92px;
  color: rgba(255, 250, 240, 0.64);
  background: var(--sumi);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--inner);
  margin: 0 auto;
  gap: 20px;
}

.site-footer__logo {
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
}

.fixed-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(223, 200, 143, 0.34);
  background: rgba(23, 20, 17, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.fixed-cta a + a {
  border-left: 1px solid rgba(223, 200, 143, 0.22);
}

.fixed-cta a:first-child {
  color: var(--sumi);
  background: var(--gold-soft);
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.js-enabled [data-reveal][data-revealed="true"] {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 700px) {
  :root {
    --inner: min(100% - 64px, 1120px);
  }

  .site-header__inner {
    padding-top: 24px;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(255, 250, 240, 0.78);
    font-size: 14px;
  }

  .site-nav a {
    transition: color 0.2s ease;
  }

  .site-nav a:hover {
    color: var(--gold-soft);
  }

  .hero__content {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .section {
    padding: 104px 0;
  }

  .section.section--cinematic {
    padding: 36px 0 44px;
  }

  .section h2 {
    font-size: 38px;
  }

  .about__layout,
  .regulars__grid,
  .location__layout,
  .plate__layout,
  .retro__layout,
  .access__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
  }

  .owner__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 64px;
  }

  .taste__panel {
    padding: 46px 54px;
    background: rgba(23, 20, 17, 0.62);
    border: 1px solid var(--line-dark);
  }

  .taste__image {
    width: min(72%, 780px);
    margin-top: -90px;
    margin-left: auto;
  }

  .about__layout,
  .location__layout,
  .plate__layout,
  .retro__layout {
    align-items: center;
  }

  .dish-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .dish-card {
    border-bottom: 0;
  }

  .dish-card--wide {
    grid-column: 1 / -1;
    min-height: 420px;
    border-top: 1px solid var(--line-light);
  }

  .dish-card--wide img {
    aspect-ratio: 16 / 9;
  }

  .shop-info > div {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 22px;
  }

  .access__map iframe {
    height: 460px;
  }
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 92px;
  }

  .hero__lead {
    font-size: 20px;
  }

  .section {
    padding: 124px 0;
  }

  .section.section--cinematic {
    padding: 40px 0 48px;
  }

  .section.location {
    padding-top: 20px;
    padding-bottom: 12px;
  }

  .section__heading--center {
    text-align: center;
  }

  .section__heading--center .eyebrow {
    justify-content: center;
  }

  .owner__image,
  .about__image,
  .plate__image,
  .retro__image {
    min-height: min(420px, 31vw);
  }

  .location__image {
    width: 88%;
    margin-inline: auto;
    min-height: 0;
  }

  .fixed-cta {
    right: 28px;
    bottom: 28px;
    left: auto;
    width: 260px;
  }
}

@media (max-width: 699px) {
  .pc-only-break {
    display: none;
  }

  body {
    padding-bottom: 86px;
  }

  .hero__lead {
    gap: 18px;
  }

  .section h2 {
    line-height: 1.35;
  }

  .dish-card {
    min-height: 340px;
  }

  .dish-card__body {
    padding: 84px 18px 20px;
  }

  .dish-card--text-top .dish-card__body {
    padding: 20px 18px 82px;
  }

  .dish-card--reba {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .dish-card--reba img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 380px) {
  :root {
    --inner: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: 50px;
  }

  .section h2 {
    font-size: 26px;
  }

  .fixed-cta a {
    font-size: 13px;
  }
}
