:root {
  --ink: #171411;
  --paper: #f3efe7;
  --paper-deep: #e7dfd2;
  --rust: #9f3a24;
  --rust-dark: #792918;
  --gold: #c6a66c;
  --line: rgba(23, 20, 17, .18);
  --serif: "Noto Serif JP", "Yu Mincho", serif;
  --sans: "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.section { padding: 130px max(6vw, 40px); }
.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
}
.section-label span { color: var(--rust); }
.section-label::after { content: ""; width: 52px; height: 1px; background: currentColor; opacity: .45; }
.section-label.light { color: white; }
.section-label.light span { color: var(--gold); }
.kicker {
  color: var(--rust);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .22em;
}
h1, h2, h3, p { margin-top: 0; }
h2 {
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 67px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .07em;
}
.body-copy { max-width: 590px; line-height: 2.3; }
.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 30px;
  border: 1px solid transparent;
  background: var(--rust);
  color: white;
  font-size: 12px;
  letter-spacing: .14em;
  transition: background .25s, color .25s, border-color .25s;
}
.button:hover { background: var(--rust-dark); }
.button-small { min-height: 44px; padding: 0 22px; font-size: 11px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: .12em;
}
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.light-link { color: white; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 92px;
  align-items: center;
  padding: 0 3.5vw;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: white;
}
.site-header.is-scrolled {
  position: fixed;
  height: 74px;
  background: rgba(23,20,17,.96);
  backdrop-filter: blur(12px);
  animation: header-in .3s ease;
}
@keyframes header-in { from { transform: translateY(-100%); } }
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: Georgia, serif;
  font-size: 24px;
  letter-spacing: -.06em;
}
.brand-wa { font-weight: 700; }
.brand strong {
  margin-left: 8px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .02em;
}
.global-nav { display: flex; gap: 2.5vw; margin-left: auto; }
.global-nav a {
  position: relative;
  font-size: 11px;
  letter-spacing: .12em;
}
.global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: white;
  transform: scaleX(0);
  transition: transform .2s;
}
.global-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 24px; margin-left: 3vw; }
.tel-link { font-family: Georgia, serif; font-size: 13px; letter-spacing: .1em; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 780px; height: 100svh; overflow: hidden; color: white; }
.hero > img { position: absolute; inset: 0; animation: hero-zoom 12s ease-out both; }
@keyframes hero-zoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,8,6,.75), rgba(10,8,6,.12) 70%), linear-gradient(0deg, rgba(10,8,6,.5), transparent 45%);
}
.hero-copy {
  position: absolute;
  top: 49%;
  left: 9vw;
  transform: translateY(-50%);
}
.eyebrow { font-size: 10px; font-weight: 600; letter-spacing: .32em; }
.hero-copy h1 {
  margin: 25px 0 28px;
  font-family: var(--serif);
  font-size: clamp(55px, 7.2vw, 104px);
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: .12em;
}
.hero-copy > p:last-child { font-family: var(--serif); font-size: 16px; letter-spacing: .14em; line-height: 2.1; }
.scroll-cue {
  position: absolute;
  bottom: 0;
  left: 3.5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 8px;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
}
.scroll-cue i { width: 1px; height: 70px; background: rgba(255,255,255,.7); }
.hero-info {
  position: absolute;
  right: 3.5vw;
  bottom: 34px;
  display: flex;
  gap: 30px;
  font-size: 9px;
  letter-spacing: .15em;
}

.intro { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 9vw; min-height: 900px; }
.intro > .section-label { position: absolute; top: 75px; left: max(6vw, 40px); }
.intro-copy { align-self: center; padding-left: 5vw; }
.intro-image { position: relative; margin: 0; }
.intro-image img { min-height: 630px; }
.intro-image figcaption {
  position: absolute;
  right: -20px;
  bottom: 30px;
  color: white;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .15em;
  writing-mode: vertical-rl;
}
.stamp {
  position: absolute;
  z-index: 2;
  right: calc(50% - 55px);
  bottom: 90px;
  display: grid;
  width: 110px;
  height: 110px;
  place-content: center;
  border-radius: 50%;
  background: var(--rust);
  color: white;
  line-height: 1;
  text-align: center;
  transform: rotate(-8deg);
}
.stamp span { font-family: Georgia, serif; font-size: 15px; }
.stamp b { margin-top: 7px; font-family: var(--serif); font-size: 38px; font-weight: 400; }

.signature { display: grid; grid-template-columns: 1.15fr 1fr; min-height: 860px; background: var(--rust); color: white; }
.signature-image { min-height: 700px; }
.signature-copy { align-self: center; padding: 90px 8vw; }
.signature-copy .kicker { margin-top: 70px; color: var(--gold); }
.signature-copy h2 { font-size: clamp(55px, 6vw, 86px); }
.signature-copy > p:not(.kicker) { max-width: 500px; line-height: 2.1; }
.signature-copy dl { margin: 40px 0 25px; border-top: 1px solid rgba(255,255,255,.3); }
.signature-copy dl div { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.3); }
.signature-copy dt, .signature-copy dd { margin: 0; font-size: 12px; }
.signature-copy small { display: block; opacity: .65; font-size: 9px; }
.signature-copy .text-link { margin-top: 40px; }

.menu-section { position: relative; }
.section-heading { margin: 70px 0; }
.menu-feature {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  min-height: 460px;
  margin: 0 0 90px 8vw;
  background: var(--ink);
  color: white;
}
.menu-feature div { align-self: center; padding: 55px; }
.menu-feature span { color: var(--gold); font-size: 9px; letter-spacing: .25em; }
.menu-feature h3 { margin: 20px 0; font-family: var(--serif); font-size: 32px; font-weight: 400; letter-spacing: .12em; }
.menu-feature p { font-size: 12px; line-height: 2; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); }
.menu-card { min-height: 430px; padding: 45px; background: var(--paper); }
.menu-card > span { color: var(--rust); font-family: Georgia, serif; font-size: 11px; }
.menu-card h3 { margin: 15px 0 35px; font-family: var(--serif); font-size: 25px; font-weight: 400; letter-spacing: .12em; }
.menu-card ul { margin: 0; padding: 0; list-style: none; }
.menu-card li { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px dotted var(--line); font-size: 12px; }
.menu-card li b { flex: 0 0 auto; font-weight: 400; }
.menu-card small { display: inline-block; margin-top: 25px; color: #6c6259; }
.menu-note { margin: 30px 0 0; font-size: 10px; text-align: right; }

.gallery-section { padding-top: 130px; background: var(--ink); color: white; }
.gallery-heading { display: flex; align-items: flex-start; justify-content: space-between; padding-top: 0; padding-bottom: 70px; }
.gallery-heading > div:last-child { width: 50%; }
.gallery-heading .kicker { color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .65fr 1fr; grid-template-rows: 350px 350px; gap: 8px; }
.gallery-grid figure { margin: 0; overflow: hidden; }
.gallery-grid figure img { transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-large { grid-row: 1 / 3; }
.gallery-grid figure:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-grid figure:nth-child(3) { grid-column: 2; grid-row: 2; }
.gallery-grid figure:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }
.instagram-link {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  padding: 50px max(6vw, 40px);
  border-top: 1px solid rgba(255,255,255,.18);
}
.instagram-link span { font-family: var(--serif); font-size: 30px; }
.instagram-link b { font-size: 11px; font-weight: 400; letter-spacing: .14em; }
.instagram-link i { font-size: 25px; font-style: normal; }

.news-content { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; margin-top: 80px; }
.news-card { align-self: center; padding: 50px; border: 1px solid var(--line); }
.news-card > span { color: var(--rust); font-size: 9px; letter-spacing: .25em; }
.news-card p { margin: 25px 0 35px; }

.access-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 900px; background: var(--rust); color: white; }
.access-image { position: relative; overflow: hidden; }
.access-image::after { content: ""; position: absolute; inset: 0; background: rgba(70,18,8,.25); }
.access-image img { filter: saturate(.7); transform: scale(1.1); }
.access-copy { align-self: center; padding: 90px 8vw; }
.access-copy .kicker { margin-top: 70px; color: var(--gold); }
.access-copy address { font-style: normal; }
.shop-info { margin: 35px 0; border-top: 1px solid rgba(255,255,255,.3); }
.shop-info div { display: grid; grid-template-columns: 110px 1fr; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.3); }
.shop-info dt, .shop-info dd { margin: 0; font-size: 12px; }
.attention { opacity: .7; font-size: 9px; }
.access-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px; }
.button-light { background: white; color: var(--rust); }
.button-light:hover { background: var(--paper); }
.button-outline { border-color: rgba(255,255,255,.5); background: transparent; }
.button-outline:hover { background: white; color: var(--rust); }

.reservation-section { padding: 140px 30px; background: var(--paper-deep); text-align: center; }
.reservation-section h2 { margin: 30px 0; }
.reservation-section > p:nth-of-type(2) { font-family: var(--serif); }
.reservation-section > div { display: flex; justify-content: center; gap: 45px; align-items: center; margin-top: 45px; }
.button-reserve { min-width: 260px; }
.reservation-tel { font-family: Georgia, serif; font-size: 20px; letter-spacing: .1em; }
.reservation-tel small { display: block; font-family: var(--sans); font-size: 9px; letter-spacing: .15em; }

.site-footer { position: relative; padding: 80px 6vw 35px; background: var(--ink); color: white; }
.footer-brand { font-size: 34px; }
.footer-brand strong { font-size: 26px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 30px; margin: 45px 0; }
.footer-links a { font-size: 10px; letter-spacing: .12em; opacity: .8; }
.site-footer p { font-size: 10px; opacity: .6; }
.site-footer > small { position: absolute; right: 6vw; bottom: 35px; font-size: 9px; opacity: .5; }
.mobile-reserve { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .global-nav, .tel-link { display: none; }
  .header-actions { margin-left: auto; margin-right: 65px; }
  .menu-toggle {
    position: absolute;
    z-index: 3;
    right: 3.5vw;
    display: grid;
    width: 45px;
    height: 45px;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) { width: 24px; height: 1px; background: currentColor; transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .global-nav.is-open {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0;
    background: var(--ink);
  }
  .global-nav.is-open a { font-family: var(--serif); font-size: 22px; }
  .intro-copy { padding-left: 0; }
  .menu-feature { margin-left: 0; }
  .menu-card { padding: 35px 25px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 58px; font-size: 14px; }
  .section { padding: 90px 24px; }
  .site-header { height: 72px; padding: 0 20px; }
  .site-header.is-scrolled { height: 64px; }
  .site-header .button { display: none; }
  .header-actions { margin: 0; }
  .menu-toggle { right: 10px; }
  .hero { min-height: 690px; height: 100svh; }
  .hero-copy { top: 46%; left: 24px; }
  .hero-copy h1 { font-size: clamp(48px, 15vw, 66px); letter-spacing: .09em; }
  .hero-copy > p:last-child { font-size: 13px; }
  .hero-info { right: 20px; bottom: 22px; flex-direction: column; gap: 3px; text-align: right; }
  .scroll-cue { display: none; }
  .intro { display: flex; min-height: 0; flex-direction: column; gap: 55px; padding-top: 150px; }
  .intro > .section-label { top: 75px; left: 24px; }
  .intro-image img { min-height: 460px; }
  .intro-image figcaption { right: 10px; }
  .stamp { right: 15px; bottom: 420px; width: 86px; height: 86px; }
  .stamp b { font-size: 28px; }
  .signature { grid-template-columns: 1fr; }
  .signature-image { min-height: 450px; }
  .signature-copy { padding: 80px 24px; }
  .signature-copy .kicker, .access-copy .kicker { margin-top: 55px; }
  .signature-copy dl div { flex-direction: column; gap: 2px; }
  .section-heading { margin: 60px 0 45px; }
  .menu-feature { grid-template-columns: 1fr; }
  .menu-feature img { height: 330px; }
  .menu-feature div { padding: 35px 28px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { min-height: 0; padding: 40px 28px; }
  .menu-note { text-align: left; }
  .gallery-section { padding-top: 90px; }
  .gallery-heading { display: block; padding: 0 24px 55px; }
  .gallery-heading > div:last-child { width: 100%; margin-top: 55px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 390px 240px 270px; gap: 5px; }
  .gallery-large { grid-column: 1 / 3; grid-row: 1; }
  .gallery-grid figure:nth-child(2) { grid-column: 1; grid-row: 2; }
  .gallery-grid figure:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-grid figure:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
  .instagram-link { grid-template-columns: 1fr auto; gap: 5px; padding: 35px 24px; }
  .instagram-link b { grid-row: 2; }
  .instagram-link i { grid-row: 1 / 3; }
  .news-content { grid-template-columns: 1fr; margin-top: 55px; }
  .news-card { padding: 35px 25px; }
  .access-section { grid-template-columns: 1fr; }
  .access-image { height: 400px; }
  .access-copy { padding: 80px 24px; }
  .shop-info div { grid-template-columns: 90px 1fr; }
  .access-actions { display: grid; }
  .reservation-section { padding: 100px 24px; }
  .reservation-section > div { flex-direction: column; gap: 28px; }
  .site-footer { padding: 65px 24px 80px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .site-footer > small { right: auto; bottom: 35px; left: 24px; }
  .mobile-reserve {
    position: fixed;
    z-index: 15;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 58px;
    place-items: center;
    background: var(--rust);
    color: white;
    font-size: 12px;
    letter-spacing: .16em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
