:root {
  --ink: #17110f;
  --ink-soft: #2c211d;
  --paper: #fffaf1;
  --paper-deep: #f3eadc;
  --ember: #e85b18;
  --ember-dark: #a72d16;
  --gold: #f0a11a;
  --cream: #fff3d4;
  --muted: #6f625b;
  --line: rgba(65, 38, 26, .16);
  --shadow: 0 22px 60px rgba(40, 20, 12, .14);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 3%, rgba(240, 161, 26, .13), transparent 24rem),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 42%, #f7efe3 100%);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .75rem 1rem; background: #fff; color: #000; }
.skip-link:focus { top: 1rem; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.notice {
  position: relative;
  z-index: 60;
  padding: .45rem 1rem;
  text-align: center;
  color: #f8e9df;
  background: var(--ink);
  font-size: .8rem;
  letter-spacing: .03em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(23,17,15,.96);
  backdrop-filter: blur(14px);
  color: white;
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .9rem; text-decoration: none; }
.brand-mark { width: 122px; height: 42px; object-fit: contain; background: var(--gold); padding: 3px 8px; border-radius: 3px; }
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy small { color: #d9c9be; font-size: .7rem; letter-spacing: .14em; }
.brand-copy strong { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.05rem; letter-spacing: .08em; }
.nav-list { display: flex; align-items: center; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }
.site-nav { display: flex; align-items: center; gap: 1.3rem; }
.nav-list a { position: relative; display: inline-flex; padding: .65rem 0; text-decoration: none; font-weight: 700; font-size: .92rem; }
.nav-list a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .3rem; height: 2px; background: var(--gold); transition: right .25s ease; }
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { right: 0; }
.nav-call { padding: .7rem 1rem !important; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; }
.nav-call::after { display: none; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; color: #fff; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s, opacity .2s; }

.hero { position: relative; overflow: hidden; padding: 72px 0 78px; color: white; background: var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .19; background-image: radial-gradient(#fff 0.7px, transparent 0.7px); background-size: 9px 9px; mask-image: linear-gradient(90deg,#000,transparent 70%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,.88fr) minmax(480px,1.12fr); align-items: center; gap: clamp(2.5rem, 6vw, 6rem); }
.eyebrow { margin: 0 0 .7rem; color: var(--gold); font-size: .82rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero h1 { max-width: 11ch; margin: 0; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(2.8rem, 6.4vw, 5.6rem); font-weight: 600; line-height: 1.16; letter-spacing: .035em; }
.hero-lead { max-width: 34rem; margin: 1.5rem 0 0; color: #eaded5; font-size: 1.04rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .75rem 1.25rem; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 800; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #21110b; background: var(--gold); }
.button-primary:hover { background: #ffb52f; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.34); }
.button-ghost:hover { background: rgba(255,255,255,.1); }
.hero-visual { position: relative; min-height: 590px; }
.hero-slider { position: absolute; inset: 0 12% 0 0; width: 88%; height: 100%; overflow: hidden; border-radius: 180px 20px 20px 20px; box-shadow: 0 28px 80px rgba(0,0,0,.42); }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.025); transition: opacity .8s ease, transform 6s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.slider-controls { position: absolute; z-index: 3; left: 1rem; bottom: 1rem; display: flex; gap: .45rem; }
.slider-control { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: white; background: rgba(17,10,8,.64); cursor: pointer; }
.slider-control:hover { background: var(--ember); }
.hero-small { position: absolute; right: 0; bottom: 38px; width: 42%; aspect-ratio: 4/5; object-fit: cover; border: 8px solid var(--ink); border-radius: 18px; box-shadow: var(--shadow); }
.hero-seal { position: absolute; right: 3%; top: -24px; display: grid; place-items: center; width: 112px; height: 112px; padding: 1rem; border-radius: 50%; color: var(--ink); background: var(--gold); font-family: "Yu Mincho", serif; font-size: .78rem; font-weight: 700; line-height: 1.5; text-align: center; transform: rotate(6deg); }

.quick-info { position: relative; z-index: 2; margin-top: -30px; }
.quick-grid { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,250,241,.96); box-shadow: var(--shadow); }
.quick-item { min-width: 0; padding: 1.15rem 1.4rem; border-right: 1px solid var(--line); }
.quick-item:last-child { border: 0; }
.quick-item span { display: block; color: var(--muted); font-size: .74rem; font-weight: 700; letter-spacing: .12em; }
.quick-item strong, .quick-item a { display: block; margin-top: .12rem; text-decoration: none; font-size: 1rem; font-weight: 800; }

.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-cream { background: var(--cream); }
.section-dark { color: white; background: var(--ink-soft); }
.section-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; margin-bottom: 2.4rem; }
.section-heading h2, .page-hero h1 { margin: 0; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(2rem, 4.4vw, 3.7rem); line-height: 1.25; letter-spacing: .04em; }
.section-heading p { max-width: 33rem; margin: 0; color: var(--muted); }
.section-dark .section-heading p { color: #d5c8c0; }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem,6vw,6rem); align-items: center; }
.story-photo { position: relative; }
.story-photo img { width: 100%; min-height: 480px; object-fit: cover; border-radius: 22px; }
.story-photo::after { content: "1968"; position: absolute; right: -1rem; bottom: -2.2rem; color: var(--ember); font-family: Georgia,serif; font-size: clamp(4rem,10vw,8rem); font-weight: 700; line-height: 1; opacity: .16; }
.story-copy h2 { margin: 0 0 1rem; font-family: "Yu Mincho", serif; font-size: clamp(2rem,4vw,3.2rem); line-height: 1.4; }
.story-copy p { margin: 0 0 1rem; color: #443631; }
.text-link { display: inline-flex; gap: .5rem; align-items: center; margin-top: .75rem; color: var(--ember-dark); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: .3em; }
.text-link::after { content: "→"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

.food-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 1rem; }
.food-card { position: relative; min-height: 380px; overflow: hidden; border-radius: 18px; color: white; background: #271a16; }
.food-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.food-card:hover img { transform: scale(1.045); }
.food-card::after { content: ""; position: absolute; inset: 36% 0 0; background: linear-gradient(transparent,rgba(0,0,0,.86)); }
.food-card-copy { position: absolute; z-index: 2; left: 1.3rem; right: 1.3rem; bottom: 1.25rem; }
.food-card-copy span { color: #ffd36e; font-size: .74rem; font-weight: 800; letter-spacing: .14em; }
.food-card-copy h3 { margin: .15rem 0 0; font-family: "Yu Mincho",serif; font-size: 1.5rem; }
.food-card:first-child .food-card-copy h3 { font-size: 2rem; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: clamp(2rem,5vw,4rem); border-radius: var(--radius); color: white; background: linear-gradient(125deg,var(--ember-dark),#5c170e); box-shadow: var(--shadow); }
.cta-panel h2 { margin: 0; font-family: "Yu Mincho",serif; font-size: clamp(1.8rem,4vw,3.1rem); }
.cta-panel p { margin: .5rem 0 0; color: #f8dacf; }
.cta-panel .button { background: white; color: var(--ember-dark); }

.page-hero { position: relative; overflow: hidden; padding: clamp(64px,9vw,118px) 0; color: white; background: var(--ink); }
.page-hero::after { content: ""; position: absolute; inset: 0 0 0 52%; opacity: .52; background: var(--page-image, linear-gradient(135deg,#4b281d,#17110f)) center/cover; mask-image: linear-gradient(90deg,transparent,#000 24%); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero p:last-child { max-width: 39rem; margin: 1rem 0 0; color: #e6d8cf; }
.breadcrumb { margin: 0 0 1.2rem; color: #c7b9b0; font-size: .8rem; }
.breadcrumb a { text-underline-offset: .2em; }
.content-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.48fr); gap: clamp(2rem,6vw,5rem); align-items: start; }
.prose h2 { margin: 2.4rem 0 .8rem; font-family: "Yu Mincho",serif; font-size: clamp(1.7rem,3vw,2.4rem); line-height: 1.45; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #443631; }
.feature-list { display: grid; gap: .9rem; margin: 1.5rem 0; padding: 0; list-style: none; }
.feature-list li { padding: 1.1rem 1.2rem; border-left: 4px solid var(--ember); background: white; box-shadow: 0 8px 26px rgba(43,23,15,.07); }
.aside-card { overflow: hidden; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.aside-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.aside-card-body { padding: 1.35rem; }
.aside-card h2, .aside-card h3 { margin: 0 0 .5rem; font-family: "Yu Mincho",serif; font-size: 1.35rem; }
.aside-card p { margin: .25rem 0; color: var(--muted); }
.source-note { margin: 0 0 2rem; padding: .9rem 1rem; border: 1px solid #e7c27a; border-radius: 10px; color: #634916; background: #fff7df; font-size: .9rem; }

.menu-jump { position: sticky; top: 82px; z-index: 10; overflow-x: auto; border-bottom: 1px solid var(--line); background: rgba(255,250,241,.94); backdrop-filter: blur(10px); }
.menu-jump .wrap { display: flex; gap: .6rem; padding-block: .8rem; }
.menu-jump a { flex: 0 0 auto; padding: .5rem .9rem; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-weight: 800; font-size: .86rem; background: white; }
.menu-jump a:hover { color: white; border-color: var(--ember); background: var(--ember); }
.menu-section { scroll-margin-top: 150px; padding: 4.8rem 0; }
.menu-section:nth-child(even) { background: var(--cream); }
.menu-section-heading { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.menu-section-heading span { color: var(--ember); font-family: Georgia,serif; font-size: 1rem; font-weight: 700; }
.menu-section-heading h2 { margin: 0; font-family: "Yu Mincho",serif; font-size: clamp(2rem,4vw,3rem); }
.menu-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.menu-card { display: grid; grid-template-rows: auto 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; transition: transform .2s, box-shadow .2s; }
.menu-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(46,25,17,.12); }
.menu-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.menu-card-body { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: .35rem 1rem; padding: 1.1rem 1.15rem; }
.menu-card h3 { margin: 0; font-size: 1rem; }
.menu-price { color: var(--ember-dark); font-weight: 900; white-space: nowrap; }
.menu-desc { grid-column: 1 / -1; margin: .15rem 0 0; color: var(--muted); font-size: .84rem; }

.gallery-filter { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.6rem; }
.gallery-filter button { padding: .55rem 1rem; border: 1px solid var(--line); border-radius: 999px; background: white; cursor: pointer; font-weight: 800; }
.gallery-filter button[aria-pressed="true"] { color: white; border-color: var(--ember); background: var(--ember); }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: .9rem; }
.gallery-item { grid-column: span 4; min-height: 280px; overflow: hidden; padding: 0; border: 0; border-radius: 14px; background: #251815; cursor: zoom-in; }
.gallery-item:nth-child(1), .gallery-item:nth-child(7) { grid-column: span 8; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item[hidden] { display: none; }
.lightbox { width: min(94vw,1050px); padding: 0; border: 0; border-radius: 16px; background: #100b09; box-shadow: 0 30px 90px #0009; }
.lightbox::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(4px); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox-close { position: absolute; top: .7rem; right: .7rem; width: 44px; height: 44px; border: 0; border-radius: 50%; color: white; background: rgba(0,0,0,.72); cursor: pointer; font-size: 1.3rem; }

.info-list { margin: 0; }
.info-row { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.info-row dt { color: var(--muted); font-weight: 700; }
.info-row dd { margin: 0; font-weight: 700; }
.route-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.route-card { padding: 1.35rem; border: 1px solid var(--line); border-radius: 14px; background: white; }
.route-card h3 { margin: 0 0 .45rem; font-size: 1rem; }
.route-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.map-card { position: relative; min-height: 420px; overflow: hidden; display: grid; place-items: center; border-radius: var(--radius); background: linear-gradient(135deg,#e9dcc7,#f6efe3); }
.map-card::before { content: ""; position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(30deg,transparent 44%,#bcae96 45%,#bcae96 47%,transparent 48%),linear-gradient(115deg,transparent 46%,#cbbca3 47%,#cbbca3 49%,transparent 50%); background-size: 130px 90px,170px 120px; }
.map-card-content { position: relative; max-width: 22rem; padding: 2rem; border-radius: 16px; text-align: center; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.map-pin { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50% 50% 50% 0; color: white; background: var(--ember); transform: rotate(-45deg); font-weight: 900; }
.map-pin span { transform: rotate(45deg); }

@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .menu-cards { grid-template-columns: repeat(2,1fr); }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(7) { grid-column: span 6; }
}

.site-footer { padding: 4rem 0 1.5rem; color: #e7d9d0; background: #120d0b; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .95fr; gap: 3rem; }
.footer-title { margin: 0 0 .7rem; color: white; font-family: "Yu Mincho",serif; font-size: 1.5rem; }
.footer-heading { margin: 0 0 .7rem; color: var(--gold); font-size: .78rem; letter-spacing: .12em; }
.footer-grid p { margin: .2rem 0; }
.footer-nav { display: grid; gap: .45rem; margin: 0; padding: 0; list-style: none; }
.footer-nav a { text-decoration: none; }
.footer-nav a:hover { color: var(--gold); }
.copyright { margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); color: #9f9088; font-size: .78rem; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 110px 0 auto; padding: 1rem 20px 2rem; background: #17110f; transform: translateY(-140%); opacity: 0; visibility: hidden; transition: .25s ease; }
  .site-nav { display: block; }
  .site-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav-list { display: grid; gap: .15rem; }
  .nav-list a { padding: .8rem .25rem; font-size: 1rem; }
  .nav-call { margin-top: .5rem; justify-content: center; }
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 10ch; }
  .hero-visual { min-height: 470px; }
  .hero-slider { inset-right: 9%; width: 91%; border-radius: 120px 18px 18px 18px; }
  .hero-small { width: 38%; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .story-grid { grid-template-columns: 1fr; }
  .story-photo img { min-height: 380px; }
  .food-grid { grid-template-columns: 1fr 1fr; }
  .food-card:first-child { grid-column: 1 / -1; }
  .cta-panel { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .notice { font-size: .72rem; }
  .header-inner { min-height: 72px; }
  .brand-mark { width: 98px; height: 36px; }
  .brand-copy small { display: none; }
  .site-nav { inset-top: 99px; }
  .hero { padding: 36px 0 58px; }
  .hero-grid { gap: 2rem; }
  .hero h1 { font-size: clamp(2.55rem,13vw,4rem); }
  .hero-lead { font-size: .95rem; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 390px; }
  .hero-slider { inset-right: 7%; width: 93%; border-radius: 82px 14px 14px 14px; }
  .hero-small { right: -4px; bottom: 24px; border-width: 5px; }
  .hero-seal { top: -18px; width: 88px; height: 88px; font-size: .65rem; }
  .quick-info { margin-top: -18px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .section { padding: 64px 0; }
  .section-heading { grid-template-columns: 1fr; gap: .8rem; }
  .story-photo img { min-height: 310px; }
  .food-grid { grid-template-columns: 1fr; }
  .food-card, .food-card:first-child { grid-column: auto; min-height: 330px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero::after { inset-left: 20%; opacity: .28; }
  .menu-jump { top: 72px; }
  .menu-cards { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(7) { grid-column: 1 / -1; min-height: 250px; }
  .info-row { grid-template-columns: 1fr; gap: .25rem; }
  .route-grid { grid-template-columns: 1fr; }
}

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