:root {
  --ink: #172b25;
  --paper: #eee9dc;
  --paper-light: #f8f5ec;
  --orange: #b54522;
  --yellow: #e6bd4b;
  --line: rgba(23, 43, 37, .22);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 999;
  background: #fff; padding: .7rem 1rem;
}
.skip-link:focus { top: 1rem; }
.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;
}
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; min-height: 82px;
  display: flex; align-items: center; gap: 2rem; padding: 0 clamp(1rem, 4vw, 4rem);
  background: rgba(238, 233, 220, .94); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand { display: grid; line-height: 1; text-decoration: none; margin-right: auto; }
.brand span { font-size: .64rem; letter-spacing: .3em; margin-bottom: .28rem; }
.brand strong { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.5rem; letter-spacing: .14em; }
.desktop-nav { display: flex; gap: clamp(1.2rem, 2.6vw, 2.7rem); font-size: .76rem; font-weight: 700; }
.desktop-nav a, .header-reserve { text-decoration: none; }
.desktop-nav a:hover { color: var(--orange); }
.header-reserve { padding: .65rem 1rem; border-bottom: 2px solid var(--ink); font-size: .76rem; font-weight: 700; }
.menu-button { display: none; width: 46px; height: 46px; border: 0; background: none; }
.menu-button i { display: block; width: 24px; height: 2px; margin: 6px auto; background: var(--ink); transition: .2s; }
.menu-button[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  position: absolute; top: 81px; left: 0; right: 0; padding: 2rem;
  background: var(--paper-light); border-bottom: 1px solid var(--line);
}
.mobile-menu nav { display: grid; margin-bottom: 1.5rem; }
.mobile-menu nav a { padding: .75rem 0; text-decoration: none; border-bottom: 1px solid var(--line); }

.hero {
  min-height: 760px; padding: 170px max(6vw, calc((100vw - var(--max)) / 2)) 80px;
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center;
  background:
    radial-gradient(circle at 84% 23%, transparent 0 55px, var(--orange) 56px 58px, transparent 59px),
    linear-gradient(112deg, transparent 0 70%, rgba(216,97,52,.08) 70% 71%, transparent 71%),
    var(--paper);
}
.hero::after {
  content: ""; position: absolute; width: 380px; height: 380px; right: -120px; bottom: -130px;
  border-radius: 50%; background: var(--yellow); opacity: .8;
}
.eyebrow { margin: 0 0 1.3rem; font-size: .7rem; font-weight: 800; letter-spacing: .25em; }
.hero h1, h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-weight: 600;
}
.hero h1 { margin: 0; font-size: clamp(3.2rem, 8vw, 7.4rem); line-height: 1.15; letter-spacing: .04em; }
.hero h1 span { font-size: .48em; letter-spacing: .1em; }
.hero-lead { margin: 2rem 0; font-family: "Yu Mincho", serif; font-size: clamp(1rem, 1.5vw, 1.25rem); letter-spacing: .08em; }
.hero-actions { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: .75rem 1.4rem;
  background: var(--orange); color: #fff; text-decoration: none; font-weight: 800; font-size: .82rem;
  border: 1px solid var(--orange); transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); background: #913618; }
.text-link { font-size: .8rem; font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: .35em; }
.hero-mark { position: relative; z-index: 1; justify-self: center; text-align: center; transform: rotate(3deg); }
.stamp {
  width: clamp(190px, 26vw, 330px); aspect-ratio: 1; border-radius: 50%; background: var(--ink); color: var(--paper);
  display: grid; grid-template-columns: 1fr 1fr; place-items: center; padding: 1.8rem;
  font-family: "Yu Mincho", serif; font-size: clamp(3rem, 7vw, 6.4rem);
  box-shadow: 18px 18px 0 var(--orange);
}
.stamp span:first-child { border-right: 1px solid rgba(255,255,255,.35); width: 100%; }
.hero-mark p { margin: 2rem 0 0; font-size: .72rem; letter-spacing: .65em; font-weight: 800; }
.hero-side { position: absolute; right: 2rem; top: 50%; writing-mode: vertical-rl; letter-spacing: .3em; font-size: .7rem; z-index: 2; }

.ticker { overflow: hidden; padding: .8rem 0; color: var(--paper); background: var(--ink); }
.ticker div { width: max-content; display: flex; align-items: center; gap: 2.2rem; animation: ticker 24s linear infinite; }
.ticker span { font-size: .68rem; font-weight: 800; letter-spacing: .26em; }
.ticker i { color: var(--orange); font-style: normal; font-size: .5rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(5rem, 10vw, 9rem) max(5vw, calc((100vw - var(--max)) / 2)); }
.section-label { display: flex; align-items: center; gap: .8rem; margin-bottom: 4rem; }
.section-label span { width: 38px; height: 38px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-size: .7rem; }
.section-label p { margin: 0; font-size: .65rem; letter-spacing: .3em; font-weight: 800; }
h2 { margin: 0; font-size: clamp(2.1rem, 5vw, 4.7rem); line-height: 1.35; letter-spacing: .06em; }

.about { background: var(--paper-light); display: grid; grid-template-columns: .25fr 1fr .85fr; gap: clamp(2rem, 6vw, 6rem); }
.about .section-label { align-self: start; writing-mode: vertical-rl; }
.about-title { padding-top: 4rem; }
.about-copy { padding-top: 10rem; max-width: 430px; }
.about-copy .lead { font-family: "Yu Mincho", serif; font-size: 1.17rem; font-weight: 700; }
.facts { margin: 3rem 0 0; border-top: 1px solid var(--line); }
.facts div { display: grid; grid-template-columns: 80px 1fr; border-bottom: 1px solid var(--line); padding: .9rem 0; }
.facts dt { font-size: .72rem; font-weight: 800; }
.facts dd { margin: 0; font-size: .82rem; }

.menu { color: var(--paper-light); background: var(--ink); }
.menu-head, .news-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: end; }
.menu-head > p, .news-head > p { max-width: 420px; margin: 0 0 .7rem; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 5rem; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); }
.menu-grid article { min-height: 330px; padding: 2rem; border-right: 1px solid rgba(255,255,255,.25); }
.menu-grid article:last-child { border: 0; }
.menu-grid article > span { color: var(--yellow); font-family: "Yu Mincho", serif; font-size: 1.4rem; }
.menu-grid h3 { margin: 3.5rem 0 .4rem; font-size: .72rem; letter-spacing: .3em; }
.menu-grid p { margin: 0 0 1.4rem; font-family: "Yu Mincho", serif; font-size: 1.35rem; font-weight: 700; }
.menu-grid small { color: rgba(255,255,255,.7); }
.outline-link {
  display: flex; justify-content: space-between; align-items: center; margin-top: 3rem; padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.45); text-decoration: none; font-weight: 800;
}

.gallery { display: grid; grid-template-columns: .22fr .78fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; background: var(--paper); }
.gallery .section-label { align-self: start; writing-mode: vertical-rl; }
.gallery-copy > p:not(.eyebrow) { max-width: 480px; margin: 2rem 0; }
.button-dark { background: var(--ink); border-color: var(--ink); }
.instagram-card {
  min-height: 520px; position: relative; overflow: hidden; padding: 3rem; color: var(--paper-light);
  background:
    linear-gradient(25deg, transparent 0 39%, rgba(230,189,75,.82) 40% 55%, transparent 56%),
    radial-gradient(circle at 70% 30%, var(--orange) 0 20%, transparent 20.5%),
    var(--ink);
  text-decoration: none;
}
.instagram-card::before {
  content: "ひ"; position: absolute; right: -1rem; bottom: -8rem;
  font-family: "Yu Mincho", serif; font-size: 25rem; line-height: 1; color: rgba(255,255,255,.08);
}
.instagram-card p { position: relative; margin: 0; font-weight: 900; font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: .95; letter-spacing: -.03em; }
.instagram-card span { position: absolute; left: 3rem; bottom: 3rem; font-size: .8rem; font-weight: 800; }

.news { background: var(--paper-light); }
.news-row {
  display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 2rem;
  margin-top: 4rem; padding: 1.5rem 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  text-decoration: none;
}
.news-row time { font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.news-row strong { font-family: "Yu Mincho", serif; font-size: 1.05rem; }
.news-row span { font-size: 1.5rem; }

.access { color: var(--paper-light); background: var(--orange); display: grid; grid-template-columns: .2fr 1fr .8fr; gap: clamp(2rem, 5vw, 5rem); }
.access .section-label { writing-mode: vertical-rl; align-self: start; }
.access-main dl { margin: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,.55); }
.access-main dl div { display: grid; grid-template-columns: 120px 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,.55); }
.access-main dt { font-size: .72rem; font-weight: 800; }
.access-main dd { margin: 0; }
.access-main small { opacity: 1; }
.access-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.button-light { background: var(--paper-light); color: var(--ink); border-color: var(--paper-light); }
.light-link { color: #fff; }
.map-art { min-height: 620px; position: relative; overflow: hidden; background: var(--paper); color: var(--ink); }
.map-lines {
  position: absolute; inset: 0;
  background:
    linear-gradient(25deg, transparent 44%, rgba(23,43,37,.17) 44.5% 45%, transparent 45.5%),
    linear-gradient(100deg, transparent 33%, rgba(23,43,37,.22) 33.5% 34.2%, transparent 34.7%),
    linear-gradient(-20deg, transparent 67%, rgba(23,43,37,.2) 67.5% 68%, transparent 68.5%);
}
.pin {
  position: absolute; left: 48%; top: 39%; width: 74px; height: 74px; border-radius: 50% 50% 50% 0;
  display: grid; place-items: center; background: var(--ink); color: #fff; transform: rotate(-45deg);
}
.pin span { transform: rotate(45deg); font-family: "Yu Mincho", serif; font-size: 2rem; }
.map-art p { position: absolute; left: 2rem; bottom: 2rem; margin: 0; font-size: 2rem; font-weight: 900; line-height: 1; letter-spacing: -.02em; }

.site-footer {
  min-height: 320px; padding: 4rem max(5vw, calc((100vw - var(--max)) / 2)) 2rem;
  color: var(--paper); background: #0e1d18; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.footer-brand { display: grid; align-content: start; line-height: 1; }
.footer-brand span { font-size: .8rem; letter-spacing: .35em; }
.footer-brand strong { margin-top: .6rem; font-family: "Yu Mincho", serif; font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: .12em; }
.site-footer > div:nth-child(2) { display: grid; align-content: start; justify-items: start; gap: .7rem; font-size: .82rem; }
.copyright { grid-column: 1 / -1; align-self: end; margin: 0; font-size: .68rem; opacity: .65; }
.mobile-cta { display: none; }

@media (max-width: 980px) {
  .desktop-nav, .header-reserve { display: none; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr .6fr; }
  .about, .gallery, .access { grid-template-columns: 1fr 1fr; }
  .about .section-label, .gallery .section-label, .access .section-label { grid-column: 1 / -1; writing-mode: initial; margin-bottom: 0; }
  .about-title, .about-copy { padding-top: 0; }
  .gallery-copy { align-self: start; }
  .access-main { grid-column: 1; }
  .map-art { grid-column: 2; }
}

@media (max-width: 700px) {
  body { padding-bottom: 62px; }
  .site-header { min-height: 68px; }
  .mobile-menu { top: 67px; }
  .hero { min-height: auto; padding: 130px 1.25rem 4rem; grid-template-columns: 1fr; gap: 4rem; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 5rem); }
  .hero-mark { justify-self: start; margin-left: 1rem; }
  .stamp { width: 190px; box-shadow: 12px 12px 0 var(--orange); }
  .hero-side { display: none; }
  .section { padding: 5rem 1.25rem; }
  .section-label { margin-bottom: 2.5rem; }
  .about, .gallery, .access, .menu-head, .news-head { display: grid; grid-template-columns: 1fr; gap: 3rem; }
  .about .section-label, .gallery .section-label, .access .section-label, .access-main, .map-art { grid-column: 1; }
  .menu-grid { grid-template-columns: 1fr; margin-top: 3rem; }
  .menu-grid article { min-height: auto; padding: 2rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .menu-grid article:last-child { border-bottom: 0; }
  .menu-grid h3 { margin-top: 1.8rem; }
  .instagram-card { min-height: 400px; padding: 2rem; }
  .instagram-card span { left: 2rem; bottom: 2rem; }
  .news-row { grid-template-columns: 90px 1fr auto; gap: .7rem; }
  .access-main dl div { grid-template-columns: 90px 1fr; }
  .map-art { min-height: 420px; }
  .site-footer { grid-template-columns: 1fr; }
  .copyright { grid-column: 1; }
  .mobile-cta {
    position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; height: 62px; display: grid; grid-template-columns: .65fr 1.35fr;
    background: var(--ink); color: #fff; box-shadow: 0 -5px 20px rgba(0,0,0,.15);
  }
  .mobile-cta a { display: grid; place-items: center; text-decoration: none; font-size: .75rem; font-weight: 800; border-right: 1px solid rgba(255,255,255,.3); }
  .mobile-cta a:last-child { background: var(--orange); }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 2.85rem; }
  .hero-actions { gap: 1.2rem; }
  .access-main dl div { grid-template-columns: 72px 1fr; }
}

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