@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Noto+Serif+JP:wght@400;500;600&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");

:root {
  --ink: #171914;
  --ink-soft: #2b2d27;
  --paper: #eeeade;
  --paper-deep: #dfd9c9;
  --gold: #b99a5b;
  --gold-light: #d6bd86;
  --line: rgba(23, 25, 20, .18);
  --line-light: rgba(255, 255, 255, .18);
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --display: "DM Serif Display", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  color: #fff;
  transition: background .35s, height .35s, box-shadow .35s;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(21, 23, 19, .94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
  backdrop-filter: blur(14px);
}
.brand { position: relative; z-index: 102; width: 58px; }
.brand img { width: 100%; height: auto; }
.global-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.global-nav a {
  display: grid;
  gap: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  letter-spacing: .08em;
  transition: color .25s;
}
.global-nav a span {
  color: #fff;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: .03em;
}
.global-nav a:hover, .global-nav a:focus-visible { color: var(--gold-light); }
.global-nav__reserve {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .5);
  font-size: 13px !important;
}
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.hero__image { width: 100%; height: 100svh; object-fit: cover; object-position: center; }
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 8, .76) 0%, rgba(8, 10, 8, .18) 58%, rgba(8, 10, 8, .35) 100%),
              linear-gradient(0deg, rgba(8, 10, 8, .55), transparent 45%);
}
.hero__copy { position: absolute; left: 9vw; top: 50%; transform: translateY(-42%); }
.eyebrow {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow--dark { color: #806a3f; }
.hero h1, .section h2, .reservation h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .08em;
}
.hero h1 { font-size: clamp(42px, 5.4vw, 82px); line-height: 1.42; }
.hero h1 em { display: inline-block; color: #fff; font-style: normal; white-space: nowrap; }
.hero__lead { margin: 28px 0 0; font-family: var(--serif); font-size: clamp(14px, 1.2vw, 18px); letter-spacing: .18em; }
.hero__meta {
  position: absolute;
  right: 4vw;
  bottom: 40px;
  display: flex;
  gap: 0;
  color: rgba(255, 255, 255, .74);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .08em;
}
.hero__meta span { padding: 0 22px; border-left: 1px solid rgba(255, 255, 255, .35); }
.scroll-cue {
  position: absolute;
  left: 4vw;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}
.scroll-cue i { width: 1px; height: 54px; background: rgba(255, 255, 255, .55); }

.section { position: relative; padding: 150px max(6vw, 32px); }
.section-label {
  position: absolute;
  top: 48px;
  left: max(3vw, 20px);
  color: rgba(23, 25, 20, .48);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}
.section-label--light { color: rgba(255, 255, 255, .46); }
.intro { overflow: hidden; padding-bottom: 170px; }
.intro::after {
  content: "B3";
  position: absolute;
  right: -2vw;
  bottom: -14vw;
  color: rgba(23, 25, 20, .035);
  font-family: var(--display);
  font-size: 42vw;
  line-height: 1;
  pointer-events: none;
}
.intro__copy { position: relative; z-index: 2; width: min(680px, 72vw); margin-left: 9vw; }
.section h2 { font-size: clamp(36px, 5vw, 70px); line-height: 1.48; }
.intro__copy > p:last-child, .pairing__copy > p:last-child {
  width: min(540px, 100%);
  margin: 38px 0 0;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: .08em;
}
.intro__visual { position: relative; z-index: 2; width: min(1040px, 82vw); margin: 90px 0 0 auto; }
.intro__visual img { width: 100%; height: clamp(300px, 42vw, 560px); object-fit: cover; }
.intro__visual figcaption {
  position: absolute;
  right: 26px;
  bottom: -42px;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .12em;
}

.menu-section {
  overflow: hidden;
  color: #f5f1e7;
  background: var(--ink);
}
.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: radial-gradient(circle at 10% 20%, #c8ad74 0 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.section-heading { position: relative; z-index: 1; width: min(760px, 74vw); margin: 0 auto 90px; text-align: center; }
.section-heading > p:last-child { max-width: 560px; margin: 28px auto 0; color: rgba(255, 255, 255, .65); }
.course-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1240px; margin: 0 auto; }
.course-card { border: 1px solid var(--line-light); background: #1c1f19; }
.course-card--featured { transform: translateY(-28px); }
.course-card__image { position: relative; height: 320px; overflow: hidden; }
.course-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.45), transparent 50%); }
.course-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.course-card:hover .course-card__image img { transform: scale(1.04); }
.course-card__image span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 16px;
  color: rgba(255,255,255,.8);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .12em;
}
.course-card__body { padding: 30px 28px 34px; }
.course-card__kana { margin: 0 0 -8px; color: var(--gold-light); font-family: var(--display); font-size: 12px; letter-spacing: .2em; }
.course-card h3 { margin: 0; font-family: var(--serif); font-size: 44px; font-weight: 400; }
.course-card__body > p:not([class]) { min-height: 86px; margin: 18px 0 26px; color: rgba(255,255,255,.62); font-size: 13px; }
.course-card__price { margin: 0; border-top: 1px solid var(--line-light); padding-top: 18px; }
.course-card__price strong { font-family: var(--display); font-size: 31px; font-weight: 400; }
.course-card__price small { color: rgba(255,255,255,.55); }
.menu-note { position: relative; z-index: 1; max-width: 760px; margin: 30px auto 0; color: rgba(255,255,255,.48); font-size: 11px; text-align: center; }
.text-link { position: relative; z-index: 1; display: flex; justify-content: space-between; width: min(350px, 100%); margin: 46px auto 0; padding: 14px 0; border-bottom: 1px solid currentColor; font-family: var(--serif); font-size: 14px; letter-spacing: .08em; }
.text-link--light { color: #fff; }

.pairing { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); align-items: center; gap: 9vw; overflow: hidden; }
.pairing__visual { position: relative; min-height: 620px; }
.pairing__main { position: absolute; top: 0; right: 0; width: 85%; height: 520px; object-fit: cover; }
.pairing__sub { position: absolute; left: 0; bottom: 0; width: 36%; height: 380px; object-fit: cover; border: 12px solid var(--paper); }
.pairing__copy { padding-right: 5vw; }

.gallery { overflow: hidden; color: #fff; background: var(--ink-soft); padding-right: 0; padding-left: 0; }
.gallery__heading { margin-left: 14vw; }
.gallery__track { display: grid; grid-template-columns: 1.25fr .8fr .8fr; gap: 18px; margin-top: 70px; overflow: hidden; }
.gallery__track figure { margin: 0; }
.gallery__track img { width: 100%; height: clamp(360px, 46vw, 660px); object-fit: cover; }
.gallery__track figure:nth-child(2) img, .gallery__track figure:nth-child(3) img { filter: saturate(.74); }
.seat-counts { display: flex; justify-content: center; gap: clamp(40px, 9vw, 140px); margin-top: 70px; }
.seat-counts p { display: grid; margin: 0; text-align: center; }
.seat-counts strong { color: var(--gold-light); font-family: var(--display); font-size: clamp(44px, 5vw, 74px); font-weight: 400; line-height: 1; }
.seat-counts span { margin-top: 12px; color: rgba(255,255,255,.58); font-size: 11px; letter-spacing: .12em; }

.news { background: var(--paper); }
.news__heading { margin-left: 9vw; }
.news-list { width: min(900px, 78vw); margin: 70px 6vw 0 auto; border-top: 1px solid var(--line); }
.news-list a { display: grid; grid-template-columns: 130px 1fr 32px; gap: 24px; align-items: center; padding: 30px 10px; border-bottom: 1px solid var(--line); }
.news-list time { color: #746a57; font-family: var(--display); font-size: 12px; letter-spacing: .08em; }
.news-list span { font-family: var(--serif); font-size: 14px; }
.news-list i { font-style: normal; transition: transform .25s; }
.news-list a:hover i { transform: translate(4px, -4px); }

.access { display: grid; grid-template-columns: 1fr 1fr; min-height: 900px; padding: 0; color: #fff; background: var(--ink); }
.access__image img { width: 100%; height: 100%; object-fit: cover; }
.access__content { position: relative; padding: 130px 8vw; }
.access__content .section-label { left: 30px; }
.access__content h2 { margin-bottom: 50px; font-size: clamp(34px, 4vw, 56px); }
.access dl { margin: 0; border-top: 1px solid var(--line-light); }
.access dl div { display: grid; grid-template-columns: 95px 1fr; gap: 22px; padding: 19px 0; border-bottom: 1px solid var(--line-light); }
.access dt { color: var(--gold-light); font-size: 11px; letter-spacing: .1em; }
.access dd { margin: 0; color: rgba(255,255,255,.78); font-family: var(--serif); font-size: 13px; }
.access dd a { border-bottom: 1px solid rgba(255,255,255,.5); }
.access dd small { color: rgba(255,255,255,.48); }
.access__actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 230px;
  padding: 17px 20px;
  border: 1px solid;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .08em;
  transition: color .25s, background .25s, border-color .25s;
}
.button--light { color: var(--ink); border-color: #fff; background: #fff; }
.button--light:hover { color: #fff; background: transparent; }
.access__actions .text-link { width: 150px; margin: 0; }

.reservation {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(14,16,13,.7), rgba(14,16,13,.84)), url("assets/images/alacarte2_pc.webp") center/cover;
}
.reservation::after { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(255,255,255,.18); pointer-events: none; }
.reservation__inner { position: relative; z-index: 1; padding: 80px 20px; }
.reservation h2 { font-size: clamp(44px, 6vw, 82px); line-height: 1.4; }
.reservation__inner > p:not(.eyebrow) { margin: 28px 0; color: rgba(255,255,255,.68); }
.reservation__actions { display: flex; justify-content: center; gap: 14px; margin-top: 36px; }
.button--gold { color: var(--ink); border-color: var(--gold-light); background: var(--gold-light); }
.button--gold:hover { color: #fff; background: transparent; }
.button--outline { color: #fff; border-color: rgba(255,255,255,.6); }
.button--outline:hover { color: var(--ink); background: #fff; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 90px 6vw 38px; color: #fff; background: #0e100d; }
.site-footer__brand img { width: 66px; }
.site-footer__brand p { color: rgba(255,255,255,.5); font-family: var(--serif); font-size: 12px; letter-spacing: .08em; }
.site-footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 30px; align-content: start; color: rgba(255,255,255,.72); font-family: var(--display); font-size: 14px; }
.site-footer__copyright { grid-column: 1 / -1; margin: 55px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 10px; letter-spacing: .08em; }
.mobile-cta { display: none; }

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

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .site-header { height: 72px; padding: 0 20px; }
  .brand { width: 46px; }
  .menu-button {
    position: relative;
    z-index: 102;
    width: 54px;
    height: 54px;
    display: grid;
    place-content: center;
    gap: 6px;
    color: #fff;
    border: 0;
    background: transparent;
  }
  .menu-button__label { font-family: var(--display); font-size: 10px; letter-spacing: .08em; }
  .menu-button__line { display: block; width: 28px; height: 1px; background: currentColor; transition: transform .3s; }
  .nav-open .menu-button__line:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .nav-open .menu-button__line:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .global-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 90px 12vw;
    background: #151713;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s, visibility .3s, transform .3s;
  }
  .nav-open .global-nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .global-nav a { font-size: 11px; }
  .global-nav a span { font-size: 26px; }
  .global-nav__reserve { width: 100%; margin-top: 14px; }
  .hero__meta { right: 18px; bottom: 92px; flex-direction: column; align-items: flex-end; gap: 4px; font-size: 10px; }
  .hero__meta span { border: 0; padding: 0; }
  .scroll-cue { display: none; }
  .section { padding: 110px 28px; }
  .section-label { top: 30px; left: 14px; writing-mode: initial; }
  .intro__copy, .section-heading { width: 100%; margin-left: 0; }
  .intro__visual { width: calc(100% + 28px); margin-top: 60px; }
  .intro__visual img { height: 410px; }
  .course-grid { grid-template-columns: 1fr; max-width: 560px; gap: 22px; }
  .course-card--featured { transform: none; }
  .course-card__image { height: 360px; }
  .pairing { grid-template-columns: 1fr; gap: 68px; }
  .pairing__visual { min-height: 520px; }
  .pairing__copy { padding: 0; }
  .gallery__heading { margin-left: 10vw; }
  .gallery__track { grid-template-columns: 1fr 1fr; }
  .gallery__track figure:first-child { grid-column: 1 / -1; }
  .gallery__track img { height: 440px; }
  .gallery__track figure:nth-child(n+2) img { height: 300px; }
  .news__heading { margin-left: 4vw; }
  .news-list { width: 92%; margin-right: 0; }
  .access { grid-template-columns: 1fr; }
  .access__image { height: 540px; }
  .access__content { padding: 110px 9vw; }
}

@media (max-width: 600px) {
  body { padding-bottom: 58px; }
  .hero__image { object-position: 58% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(8,10,8,.76), rgba(8,10,8,.15)), linear-gradient(0deg, rgba(8,10,8,.64), transparent 56%); }
  .hero__copy { left: 24px; top: 49%; }
  .hero h1 { font-size: clamp(38px, 10.8vw, 46px); }
  .hero__lead { font-size: 12px; }
  .hero__meta { left: 24px; right: auto; align-items: flex-start; }
  .section h2 { font-size: clamp(33px, 10vw, 48px); }
  .intro { padding-bottom: 120px; }
  .intro__copy > p:last-child, .pairing__copy > p:last-child { font-size: 14px; line-height: 2; }
  .intro__visual { width: calc(100% + 28px); }
  .intro__visual img { height: 330px; }
  .intro__visual figcaption { right: 18px; }
  .section-heading { margin-bottom: 55px; text-align: left; }
  .section-heading > p:last-child { margin-left: 0; }
  .course-card__image { height: 280px; }
  .pairing__visual { min-height: 400px; margin: 0 -28px; }
  .pairing__main { width: 88%; height: 340px; }
  .pairing__sub { width: 42%; height: 250px; border-width: 8px; }
  .gallery__heading { margin-left: 28px; }
  .gallery__track { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 28px 18px; }
  .gallery__track figure { min-width: 82vw; scroll-snap-align: center; }
  .gallery__track img, .gallery__track figure:nth-child(n+2) img { height: 430px; }
  .seat-counts { gap: 28px; }
  .seat-counts strong { font-size: 48px; }
  .news-list { width: 100%; }
  .news-list a { grid-template-columns: 1fr 24px; gap: 8px 18px; padding: 24px 0; }
  .news-list time { grid-column: 1; }
  .news-list span { grid-column: 1; font-size: 13px; }
  .news-list i { grid-column: 2; grid-row: 1 / 3; }
  .access__image { height: 440px; }
  .access__content { padding: 100px 28px; }
  .access__content .section-label { left: 14px; }
  .access dl div { grid-template-columns: 72px 1fr; }
  .access__actions { align-items: stretch; flex-direction: column; }
  .access__actions .button, .access__actions .text-link { width: 100%; }
  .reservation { min-height: 620px; }
  .reservation::after { inset: 14px; }
  .reservation__actions { flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; padding: 70px 28px 34px; }
  .site-footer__links { grid-template-columns: 1fr 1fr; }
  .site-footer__copyright { margin-top: 24px; }
  .mobile-cta {
    position: fixed;
    z-index: 120;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 58px;
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    color: #fff;
    background: #11130f;
    box-shadow: 0 -4px 18px rgba(0,0,0,.24);
  }
  .mobile-cta a { display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,.16); font-size: 13px; letter-spacing: .08em; }
  .mobile-cta a:last-child { color: var(--ink); background: var(--gold-light); font-weight: 700; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 35px; letter-spacing: .04em; }
}
