:root {
  --background: #f4efe7;
  --paper: #faf7f1;
  --surface: #e9e1d7;
  --ink: #2a211d;
  --muted: #746a63;
  --accent: #985c45;
  --line: rgba(42, 33, 29, 0.17);
  --line-light: rgba(244, 239, 231, 0.2);
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --header-height: 94px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

address {
  font-style: normal;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(1360px, calc(100% - 96px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(120px, 13vw, 210px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 10px 18px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  transform: translateY(-180%);
}

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

.section-label {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.5;
  text-transform: uppercase;
}

.display-heading {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7.2vw, 7.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.86;
}

.lead-ja {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.arrow-link {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  padding-block: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.arrow-link span {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.arrow-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.arrow-link:hover span {
  transform: translate(3px, -3px);
}

.arrow-link-light {
  color: var(--background);
  border-color: var(--background);
}

.arrow-link-light:hover {
  color: var(--background);
  border-color: var(--background);
  opacity: 0.72;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 231, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 17px;
  align-items: baseline;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.brand-jp {
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  gap: clamp(24px, 3.8vw, 64px);
  align-items: center;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  gap: 9px;
  align-items: baseline;
  padding-block: 12px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.site-nav a span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 0.58rem;
  letter-spacing: 0;
}

.site-nav a::after {
  position: absolute;
  right: 100%;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transition: right 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  right: 0;
}

.nav-toggle {
  display: none;
  gap: 14px;
  align-items: center;
  padding: 10px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.nav-toggle-lines {
  position: relative;
  width: 28px;
  height: 12px;
}

.nav-toggle-lines i {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transition: top 0.25s ease, transform 0.25s ease;
}

.nav-toggle-lines::before {
  position: absolute;
  top: 5.5px;
  right: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transition: opacity 0.2s ease;
}

.nav-toggle-lines i:first-child {
  top: 1px;
}

.nav-toggle-lines i:last-child {
  top: 10px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines i:first-child {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines i:last-child {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  opacity: 0;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(48px, 6vw, 84px) 72px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: stretch;
  min-height: calc(100svh - var(--header-height) - 156px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 18px 8px;
}

.hero-copy h1 {
  max-width: 930px;
  margin-block: 6vh 5vh;
  font-family: var(--serif);
  font-size: clamp(4.25rem, 8.1vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero-copy-bottom {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(250px, 1fr);
  gap: clamp(32px, 5vw, 80px);
  max-width: 780px;
  margin-bottom: 34px;
  align-items: start;
}

.hero-copy-bottom > p:last-child,
.prose-grid > p:last-child,
.story-teaser-copy > p:not(.section-label):not(.lead-ja),
.menu-intro-copy > p:not(.lead-ja):not(.note),
.story-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 2.05;
}

.hero-copy > .arrow-link {
  align-self: flex-start;
}

.hero-art {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--surface);
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  content: "";
}

.hero-art::before {
  top: -15%;
  right: -18%;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(42, 33, 29, 0.12);
  border-radius: 50%;
}

.hero-art::after {
  right: 0;
  bottom: 24%;
  left: 0;
  height: 1px;
  background: rgba(42, 33, 29, 0.15);
}

.art-note {
  position: absolute;
  z-index: 4;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.art-note-top {
  top: 28px;
  left: 30px;
}

.art-note-bottom {
  right: 28px;
  bottom: 27px;
  text-align: right;
}

.art-index {
  position: absolute;
  bottom: 8px;
  left: 25px;
  color: rgba(42, 33, 29, 0.18);
  font-family: var(--serif);
  font-size: clamp(6rem, 10vw, 10rem);
  line-height: 1;
}

.still-life {
  position: absolute;
  top: 48%;
  left: 50%;
  width: 72%;
  height: 50%;
  transform: translate(-50%, -50%);
}

.still-cup {
  position: absolute;
  z-index: 3;
  bottom: 22%;
  left: 25%;
  width: 48%;
  height: 47%;
  border: 1px solid var(--ink);
  border-radius: 2px 2px 42% 42%;
  background: var(--paper);
}

.still-cup::before {
  position: absolute;
  top: -6%;
  left: -1%;
  width: 102%;
  height: 14%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  background: var(--accent);
}

.still-cup i {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: -35%;
  width: 46%;
  height: 54%;
  border: 1px solid var(--ink);
  border-left: 0;
  border-radius: 0 50% 50% 0;
}

.still-saucer {
  position: absolute;
  z-index: 2;
  bottom: 17%;
  left: 15%;
  width: 76%;
  height: 9%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--background);
}

.still-shadow {
  position: absolute;
  bottom: 6%;
  left: 6%;
  width: 94%;
  height: 13%;
  border-radius: 50%;
  background: rgba(42, 33, 29, 0.1);
  transform: rotate(-5deg);
}

.still-steam {
  position: absolute;
  z-index: 4;
  top: 0;
  width: 18%;
  height: 32%;
  border-left: 1px solid var(--accent);
  border-radius: 50%;
}

.steam-a {
  left: 43%;
  transform: rotate(9deg);
}

.steam-b {
  top: 5%;
  left: 56%;
  height: 25%;
  transform: rotate(-8deg);
}

.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.53rem;
  letter-spacing: 0.19em;
  writing-mode: vertical-rl;
}

.hero-scroll span {
  width: 1px;
  height: 54px;
  background: var(--ink);
}

.statement-section {
  background: var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr);
  gap: 60px;
}

.statement-grid > .section-label {
  padding-top: 10px;
}

.prose-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(48px, 9vw, 150px);
  max-width: 900px;
  margin-top: clamp(58px, 8vw, 110px);
  margin-left: auto;
}

.favorites-section {
  background: var(--background);
}

.section-head {
  display: flex;
  gap: 56px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(72px, 9vw, 130px);
}

.section-head .section-label {
  margin-bottom: 25px;
}

.section-head > .lead-ja {
  padding-bottom: 6px;
}

.favorites-list {
  border-top: 1px solid var(--ink);
}

.favorite-item {
  display: grid;
  grid-template-columns: 52px 170px minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.item-number,
.item-price {
  font-family: var(--serif);
  font-size: 0.85rem;
}

.item-mark {
  position: relative;
  aspect-ratio: 1.45;
  overflow: hidden;
  background: var(--surface);
}

.item-mark span,
.item-mark::before,
.item-mark::after {
  position: absolute;
  content: "";
}

.mark-coffee span {
  top: 24%;
  left: 34%;
  width: 34%;
  height: 42%;
  border: 1px solid var(--ink);
  border-radius: 0 0 45% 45%;
  background: var(--paper);
}

.mark-coffee span::after {
  position: absolute;
  top: 20%;
  right: -38%;
  width: 42%;
  height: 45%;
  border: 1px solid var(--ink);
  border-left: 0;
  border-radius: 0 50% 50% 0;
  content: "";
}

.mark-pudding span {
  top: 25%;
  left: 35%;
  width: 34%;
  height: 45%;
  border: 1px solid var(--ink);
  border-radius: 45% 45% 4px 4px;
  background: var(--paper);
  box-shadow: inset 0 8px 0 var(--accent);
}

.mark-toast span {
  top: 23%;
  left: 34%;
  width: 36%;
  height: 48%;
  border: 1px solid var(--ink);
  border-radius: 36% 36% 3px 3px;
  background: var(--paper);
  transform: rotate(-7deg);
}

.item-copy .section-label {
  margin-bottom: 8px;
  font-size: 0.57rem;
}

.item-copy h3 {
  margin-bottom: 5px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.item-copy > p:last-child {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.8;
}

.story-teaser {
  background: var(--paper);
}

.story-teaser-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  gap: clamp(70px, 11vw, 180px);
  align-items: center;
}

.story-figure {
  position: relative;
  display: flex;
  min-height: 660px;
  padding: clamp(36px, 4vw, 60px);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: var(--background);
  background: var(--accent);
}

.story-figure::before {
  position: absolute;
  top: 22%;
  left: 16%;
  width: 82%;
  aspect-ratio: 0.82;
  border: 1px solid rgba(244, 239, 231, 0.45);
  border-radius: 50% 50% 0 0;
  content: "";
}

.story-figure p,
.story-figure span {
  position: relative;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.story-figure span {
  align-self: flex-end;
  text-align: right;
}

.story-figure strong {
  position: relative;
  z-index: 2;
  align-self: center;
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.story-teaser-copy .section-label {
  margin-bottom: 34px;
}

.story-teaser-copy .lead-ja {
  margin-block: clamp(48px, 6vw, 80px) 30px;
}

.story-teaser-copy > p:not(.section-label):not(.lead-ja) {
  max-width: 520px;
}

.story-teaser-copy .arrow-link {
  margin-top: 42px;
}

.visit-section {
  padding-block: clamp(110px, 12vw, 180px);
  color: var(--background);
  background: var(--ink);
}

.visit-section .section-label {
  color: var(--background);
  opacity: 0.58;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
}

.visit-grid .section-label {
  margin-bottom: 26px;
}

.visit-copy .lead-ja {
  margin-bottom: 36px;
}

.visit-copy address {
  margin-bottom: 42px;
  color: rgba(244, 239, 231, 0.68);
  font-size: 0.83rem;
  line-height: 2;
}

.site-footer {
  padding-block: clamp(80px, 9vw, 130px) 32px;
  color: var(--background);
  background: #201916;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 90px;
}

.footer-brand > a {
  display: inline-block;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer-brand > p {
  color: rgba(244, 239, 231, 0.56);
  font-family: var(--serif);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
}

.footer-info {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  padding-top: 10px;
}

.footer-label {
  margin-bottom: 22px;
  color: rgba(244, 239, 231, 0.48);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.footer-info > div > p:last-child {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  line-height: 2;
}

.footer-info span {
  color: rgba(244, 239, 231, 0.5);
  font-family: var(--sans);
  font-size: 0.66rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.social-links a {
  border-bottom: 1px solid rgba(244, 239, 231, 0.35);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  transition: opacity 0.2s ease;
}

.social-links a:hover {
  opacity: 0.58;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(244, 239, 231, 0.42);
  font-size: 0.53rem;
  letter-spacing: 0.18em;
}

.page-hero {
  min-height: calc(78svh - var(--header-height));
  padding-block: clamp(90px, 11vw, 160px) clamp(70px, 8vw, 120px);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  display: flex;
  min-height: calc(78svh - var(--header-height) - 250px);
  flex-direction: column;
  justify-content: space-between;
}

.page-hero h1 {
  margin-block: clamp(55px, 8vw, 110px) clamp(50px, 7vw, 90px);
  font-family: var(--serif);
  font-size: clamp(6rem, 13.5vw, 13rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.7;
  white-space: nowrap;
}

.page-intro {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(50px, 10vw, 170px);
  align-items: end;
  max-width: 900px;
  margin-left: auto;
}

.page-intro > p:last-child {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 2;
}

.category-nav {
  position: sticky;
  z-index: 50;
  top: var(--header-height);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(244, 239, 231, 0.95);
  backdrop-filter: blur(15px);
}

.category-nav a {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.category-nav a + a {
  border-left: 1px solid var(--line);
}

.category-nav a span {
  color: var(--accent);
  font-family: var(--serif);
}

.category-nav a:hover,
.category-nav a.is-active {
  color: var(--paper);
  background: var(--ink);
}

.menu-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(70px, 13vw, 200px);
  align-items: end;
}

.menu-intro-grid .section-label {
  margin-bottom: 26px;
}

.menu-intro-copy .lead-ja {
  margin-bottom: 34px;
}

.note {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.61rem;
  letter-spacing: 0.09em;
  line-height: 1.8;
}

.menu-catalog {
  padding-bottom: clamp(130px, 15vw, 230px);
}

.menu-category {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(60px, 10vw, 150px);
  padding-block: clamp(100px, 12vw, 180px);
  border-top: 1px solid var(--ink);
  scroll-margin-top: calc(var(--header-height) + 85px);
}

.menu-category-head {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 22px;
  align-items: start;
}

.category-number {
  padding-top: 8px;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.menu-category-head .section-label {
  margin-bottom: 24px;
}

.menu-category-head h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.88;
}

.menu-items {
  border-top: 1px solid var(--ink);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.menu-row h3 {
  margin-bottom: 7px;
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.menu-row h3 small {
  margin-left: 12px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.57rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.menu-row div > p {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.8;
}

.menu-row > p {
  font-family: var(--serif);
  font-size: 0.85rem;
  white-space: nowrap;
}

.pairing-callout {
  padding-block: clamp(110px, 12vw, 180px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.pairing-inner {
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.8fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
}

.pairing-inner h2 {
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.83;
}

.pairing-inner > p:not(.section-label) {
  color: var(--muted);
  font-size: 0.83rem;
}

.pairing-inner .arrow-link {
  grid-column: 3;
  justify-self: start;
  margin-top: -35px;
}

.beginning-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 11vw, 170px);
  align-items: center;
}

.beginning-figure {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--surface);
}

.figure-year {
  position: absolute;
  top: 26px;
  right: 30px;
  font-family: var(--serif);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.figure-window {
  position: absolute;
  top: 16%;
  right: 13%;
  bottom: 13%;
  left: 13%;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 50% 50% 0 0;
  background: var(--paper);
}

.figure-window::before,
.figure-window::after {
  position: absolute;
  content: "";
  background: var(--ink);
}

.figure-window::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.figure-window::after {
  top: 48%;
  right: 0;
  left: 0;
  height: 1px;
}

.figure-window i:first-child {
  position: absolute;
  right: -12%;
  bottom: -5%;
  width: 65%;
  height: 50%;
  border-radius: 50% 50% 0 0;
  background: var(--accent);
}

.figure-window i:last-child {
  position: absolute;
  top: 17%;
  left: 18%;
  width: 17%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
}

.beginning-figure > p {
  position: absolute;
  bottom: 24px;
  left: 28px;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.8;
}

.beginning-copy .section-label {
  margin-bottom: 30px;
}

.beginning-copy .lead-ja {
  margin-block: clamp(50px, 7vw, 90px) 32px;
}

.story-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.values-section {
  color: var(--background);
  background: var(--ink);
}

.values-section .section-label {
  color: var(--background);
  opacity: 0.5;
}

.values-list {
  border-top: 1px solid var(--line-light);
}

.value-item {
  display: grid;
  grid-template-columns: 60px 0.8fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
  padding-block: 48px;
  border-bottom: 1px solid var(--line-light);
}

.value-number {
  color: var(--accent);
  font-family: var(--serif);
}

.value-item h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.value-item h4 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.value-item div p {
  color: rgba(244, 239, 231, 0.6);
  font-size: 0.8rem;
  line-height: 2;
}

.owner-section {
  padding-block: clamp(130px, 16vw, 250px);
  background: var(--paper);
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(70px, 12vw, 190px);
  align-items: center;
}

.owner-heading {
  text-align: center;
}

.owner-initial {
  display: grid;
  width: 190px;
  aspect-ratio: 1;
  margin: 40px auto 28px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 6rem;
}

.owner-heading > p:last-child,
.signature {
  color: var(--muted);
  font-size: 0.59rem;
  letter-spacing: 0.18em;
  line-height: 1.8;
}

.owner-quote blockquote {
  margin-bottom: 55px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.7rem);
  letter-spacing: -0.05em;
  line-height: 0.89;
}

.owner-quote .lead-ja {
  max-width: 680px;
  margin-bottom: 30px;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(400px, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(70px, 11vw, 170px);
  align-items: center;
}

.editorial-map {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid var(--line);
  background-color: var(--surface);
  background-image: linear-gradient(rgba(42, 33, 29, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(42, 33, 29, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
}

.map-line,
.map-rail {
  position: absolute;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(42, 33, 29, 0.12);
}

.map-line-a {
  top: 44%;
  left: -10%;
  width: 120%;
  height: 58px;
  transform: rotate(-8deg);
}

.map-line-b {
  top: -10%;
  left: 40%;
  width: 44px;
  height: 120%;
  transform: rotate(4deg);
}

.map-line-c {
  right: 8%;
  bottom: -10%;
  width: 32px;
  height: 78%;
  transform: rotate(28deg);
}

.map-rail {
  right: -5%;
  bottom: 16%;
  left: -5%;
  height: 8px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: transparent;
  transform: rotate(3deg);
}

.map-north,
.map-station,
.map-park,
.map-arcade,
.map-destination,
.map-scale {
  position: absolute;
  z-index: 5;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

.map-north {
  top: 24px;
  left: 28px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.8rem;
}

.map-station {
  bottom: 8%;
  left: 10%;
  padding: 12px 16px;
  background: var(--paper);
}

.map-park {
  top: 16%;
  right: 8%;
  display: grid;
  width: 122px;
  height: 90px;
  place-items: center;
  border: 1px solid var(--ink);
  text-align: center;
}

.map-arcade {
  right: 21%;
  bottom: 28%;
  transform: rotate(-8deg);
}

.map-destination {
  top: 34%;
  left: 24%;
  color: var(--accent);
}

.map-destination span {
  display: block;
  margin-bottom: 7px;
  font-size: 2.2rem;
  line-height: 1;
}

.map-scale {
  right: 24px;
  bottom: 22px;
  color: var(--muted);
}

.shop-details .section-label {
  margin-bottom: 28px;
}

.details-list {
  margin-top: clamp(55px, 7vw, 90px);
  border-top: 1px solid var(--ink);
}

.details-list > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding-block: 21px;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.details-list dd {
  font-size: 0.83rem;
  line-height: 1.9;
}

.details-list dd small {
  color: var(--muted);
  font-size: 0.7rem;
}

.details-list a {
  border-bottom: 1px solid var(--ink);
}

.directions-section {
  background: var(--paper);
}

.directions-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.directions-list li {
  display: grid;
  grid-template-columns: 60px 0.8fr 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
}

.direction-number {
  color: var(--accent);
  font-family: var(--serif);
}

.directions-list h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.directions-list h4 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.directions-list div p {
  color: var(--muted);
  font-size: 0.78rem;
}

.travel-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 12vw, 180px);
}

.travel-intro .section-label {
  margin-bottom: 28px;
}

.travel-list {
  border-top: 1px solid var(--ink);
}

.travel-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 24px;
  padding-block: 32px;
  border-bottom: 1px solid var(--line);
}

.travel-list article > p {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.travel-list h3 {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.travel-list div p {
  color: var(--muted);
  font-size: 0.78rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  transition: opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1), transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}

.motion-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

@media (max-width: 1080px) {
  .shell {
    width: min(100% - 64px, 1360px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  }

  .hero-art {
    min-height: 560px;
  }

  .favorite-item {
    grid-template-columns: 42px 140px minmax(0, 1fr) auto;
  }

  .story-figure,
  .beginning-figure {
    min-height: 600px;
  }

  .pairing-inner {
    grid-template-columns: 0.35fr 1fr 0.75fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 78px;
  }

  .js .nav-toggle {
    display: flex;
  }

  .site-nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .js .site-nav {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    padding: 8vh 32px 40px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    color: var(--background);
    background: var(--ink);
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 0.25s, opacity 0.25s ease, transform 0.25s ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .js .site-nav a {
    gap: 20px;
    padding-block: 18px;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 8vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .js .site-nav a span {
    font-size: 0.68rem;
  }

  .js .site-nav a::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy h1 {
    margin-block: 70px;
  }

  .hero-art {
    min-height: 650px;
  }

  .statement-grid,
  .story-teaser-grid,
  .menu-intro-grid,
  .beginning-grid,
  .access-grid,
  .travel-grid {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    gap: 48px;
  }

  .prose-grid {
    margin-left: 0;
  }

  .story-teaser-grid,
  .beginning-grid,
  .access-grid {
    gap: 90px;
  }

  .story-figure,
  .beginning-figure,
  .editorial-map {
    width: min(100%, 620px);
    min-height: 720px;
    margin-inline: auto;
  }

  .menu-category {
    grid-template-columns: minmax(210px, 0.65fr) minmax(0, 1.35fr);
    gap: 50px;
  }

  .pairing-inner {
    grid-template-columns: 0.35fr 1fr;
  }

  .pairing-inner > p:not(.section-label),
  .pairing-inner .arrow-link {
    grid-column: 2;
    margin-top: 0;
  }

  .owner-grid {
    grid-template-columns: 0.45fr 1fr;
    gap: 70px;
  }

  .owner-initial {
    width: 140px;
    font-size: 4.5rem;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 36px, 1360px);
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .brand-jp {
    display: none;
  }

  .section {
    padding-block: 110px;
  }

  .display-heading {
    font-size: clamp(3.25rem, 15vw, 5.2rem);
  }

  .home-hero {
    padding-block: 48px 80px;
  }

  .hero-copy h1 {
    margin-block: 64px 58px;
    font-size: clamp(3.8rem, 18vw, 6.2rem);
  }

  .hero-copy-bottom,
  .prose-grid,
  .page-intro,
  .story-body,
  .footer-top,
  .footer-info,
  .visit-grid,
  .owner-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-bottom,
  .prose-grid,
  .page-intro {
    gap: 28px;
  }

  .hero-art {
    min-height: 490px;
  }

  .hero-scroll {
    display: none;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .favorite-item {
    grid-template-columns: 34px 92px 1fr auto;
    gap: 16px;
  }

  .item-copy > p:last-child {
    display: none;
  }

  .item-copy h3 {
    font-size: 1rem;
  }

  .item-price {
    font-size: 0.72rem;
  }

  .story-figure,
  .beginning-figure,
  .editorial-map {
    min-height: 520px;
  }

  .story-teaser-grid,
  .beginning-grid,
  .access-grid {
    gap: 70px;
  }

  .visit-grid {
    gap: 58px;
  }

  .footer-top {
    gap: 60px;
    padding-bottom: 65px;
  }

  .footer-info {
    gap: 34px;
  }

  .page-hero {
    min-height: 650px;
  }

  .page-hero-inner {
    min-height: 480px;
  }

  .page-hero h1 {
    margin-block: auto;
    font-size: clamp(4.7rem, 22vw, 8rem);
    white-space: normal;
  }

  .category-nav {
    width: 100%;
    top: var(--header-height);
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    border-right: 0;
    border-left: 0;
  }

  .category-nav a {
    min-height: 62px;
  }

  .menu-category {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .menu-category-head {
    grid-template-columns: 34px 1fr;
  }

  .menu-category-head h2 {
    font-size: 3.5rem;
  }

  .menu-row h3 small {
    display: block;
    margin-top: 3px;
    margin-left: 0;
  }

  .pairing-inner {
    grid-template-columns: 1fr;
  }

  .pairing-inner > p:not(.section-label),
  .pairing-inner .arrow-link {
    grid-column: auto;
  }

  .value-item,
  .directions-list li {
    grid-template-columns: 38px 1fr;
    gap: 24px;
  }

  .value-item > div,
  .directions-list li > div {
    grid-column: 2;
  }

  .value-item h3,
  .directions-list h3 {
    font-size: 2.4rem;
  }

  .owner-grid {
    gap: 75px;
  }

  .owner-heading {
    text-align: left;
  }

  .owner-initial {
    width: 120px;
    margin-right: 0;
    margin-left: 0;
  }

  .details-list > div {
    grid-template-columns: 95px 1fr;
    gap: 18px;
  }
}

@media (max-width: 420px) {
  .favorite-item {
    grid-template-columns: 28px 1fr auto;
  }

  .item-mark {
    display: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .editorial-map {
    min-height: 450px;
  }

  .map-park {
    width: 96px;
    height: 72px;
  }
}

/* Finished home page */
.home-page .site-header {
  position: fixed;
  color: var(--background);
  border-bottom-color: rgba(244, 239, 231, 0.22);
  background: linear-gradient(to bottom, rgba(32, 25, 22, 0.52), transparent);
  backdrop-filter: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.home-page .site-header.is-scrolled {
  color: var(--ink);
  border-bottom-color: var(--line);
  background: rgba(244, 239, 231, 0.96);
  backdrop-filter: blur(16px);
}

.home-page .brand-jp {
  color: inherit;
  opacity: 0.64;
}

.home-page .site-header .nav-toggle {
  color: inherit;
}

.home-page .site-header .nav-toggle-lines i {
  background: currentColor;
}

.home-page.nav-open .site-header:not(.is-scrolled) {
  background: var(--ink);
}

.visual-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: stretch;
  overflow: hidden;
  color: var(--background);
  background-color: var(--ink);
  background-image: url("images/cafe-hero.jpg");
  background-position: center;
  background-size: cover;
}

.visual-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(32, 25, 22, 0.84) 0%, rgba(32, 25, 22, 0.62) 44%, rgba(32, 25, 22, 0.16) 78%), linear-gradient(0deg, rgba(32, 25, 22, 0.5) 0%, transparent 45%);
}

.visual-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  padding-block: calc(var(--header-height) + clamp(70px, 10vh, 120px)) clamp(100px, 14vh, 160px);
  flex-direction: column;
  justify-content: center;
}

.hero-label {
  margin-bottom: clamp(42px, 7vh, 76px);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  opacity: 0.72;
}

.visual-hero h1 {
  max-width: 1000px;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 9vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-wrap: balance;
}

.visual-hero-bottom {
  display: grid;
  grid-template-columns: minmax(320px, 570px) auto;
  gap: clamp(50px, 10vw, 150px);
  align-items: end;
  margin-top: clamp(55px, 8vh, 90px);
}

.hero-ja {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  letter-spacing: 0.09em;
  line-height: 1.65;
}

.hero-description {
  max-width: 520px;
  color: rgba(244, 239, 231, 0.7);
  font-size: 0.8rem;
  line-height: 2;
}

.hero-link {
  display: inline-flex;
  gap: 34px;
  align-items: center;
  justify-self: start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(244, 239, 231, 0.72);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  white-space: nowrap;
  transition: opacity 0.25s ease;
}

.hero-link span {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.hero-link:hover {
  opacity: 0.66;
}

.hero-link:hover span {
  transform: translate(3px, -3px);
}

.visual-hero-meta {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 26px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(244, 239, 231, 0.48);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
}

.home-intro {
  background: var(--paper);
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(135px, 0.3fr) minmax(360px, 1fr) minmax(270px, 0.65fr);
  gap: clamp(48px, 7vw, 110px);
  row-gap: clamp(70px, 9vw, 130px);
  align-items: start;
}

.home-intro-grid > .section-label {
  padding-top: 11px;
}

.home-intro-heading {
  grid-column: 2 / -1;
}

.home-intro-heading .lead-ja {
  margin-top: clamp(52px, 7vw, 90px);
}

.home-intro-image {
  grid-column: 1 / 3;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.home-intro-image picture,
.home-intro-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-intro-image img {
  object-fit: cover;
}

.home-intro-copy {
  grid-column: 3;
  align-self: end;
  padding-bottom: 2px;
}

.home-intro-copy > p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 2.1;
}

.home-intro-copy > p + p {
  margin-top: 28px;
}

.home-intro-copy .arrow-link {
  margin-top: 48px;
}

.home-favorites {
  background: var(--background);
}

.home-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
  margin-bottom: clamp(70px, 9vw, 125px);
}

.home-section-head .section-label {
  margin-bottom: 26px;
}

.home-section-head > p {
  padding-bottom: 5px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.94rem;
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.home-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-menu-card {
  display: flex;
  min-height: 520px;
  padding: clamp(28px, 3vw, 42px);
  flex-direction: column;
  border-top: 2px solid var(--accent);
  background: var(--paper);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease;
}

.home-menu-card:hover {
  box-shadow: 0 28px 65px rgba(42, 33, 29, 0.09);
  transform: translateY(-8px);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-top > span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.75rem;
}

.card-image {
  aspect-ratio: 1;
  margin: 38px 0 34px;
  overflow: hidden;
  background: var(--surface);
}

.card-image picture,
.card-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.card-image img {
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.home-menu-card:hover .card-image img {
  transform: scale(1.025);
}

.card-symbol {
  position: relative;
  height: 190px;
  margin-block: 42px 32px;
  overflow: hidden;
  background: var(--surface);
}

.card-symbol::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 135px;
  height: 135px;
  border: 1px solid rgba(42, 33, 29, 0.12);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.symbol-coffee span {
  position: absolute;
  z-index: 2;
  top: 31%;
  left: 39%;
  width: 24%;
  height: 38%;
  border: 1px solid var(--ink);
  border-radius: 2px 2px 42% 42%;
  background: var(--paper);
}

.symbol-coffee span::before {
  position: absolute;
  top: -8%;
  left: -1%;
  width: 102%;
  height: 18%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "";
  background: var(--accent);
}

.symbol-coffee span::after {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: -42%;
  width: 46%;
  height: 48%;
  border: 1px solid var(--ink);
  border-left: 0;
  border-radius: 0 50% 50% 0;
  content: "";
}

.symbol-pudding span {
  position: absolute;
  z-index: 2;
  top: 29%;
  left: 38%;
  width: 26%;
  height: 43%;
  border: 1px solid var(--ink);
  border-radius: 44% 44% 5px 5px;
  background: var(--paper);
  box-shadow: inset 0 12px 0 var(--accent);
}

.symbol-toast span {
  position: absolute;
  z-index: 2;
  top: 28%;
  left: 37%;
  width: 28%;
  height: 46%;
  border: 1px solid var(--ink);
  border-radius: 35% 35% 4px 4px;
  background: var(--paper);
  box-shadow: inset 0 0 0 7px rgba(152, 92, 69, 0.18);
  transform: rotate(-6deg);
}

.card-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 24px;
  align-items: start;
  margin-top: auto;
}

.card-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.card-content > p:not(.card-price) {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.9;
}

.card-price {
  grid-column: 2;
  grid-row: 1;
  padding-top: 5px;
  font-family: var(--serif);
  font-size: 0.86rem;
}

.home-menu-link {
  margin-top: 55px;
  text-align: right;
}

.home-access {
  padding-block: clamp(120px, 14vw, 210px);
  color: var(--background);
  background: var(--ink);
}

.home-access .section-label {
  color: var(--background);
  opacity: 0.54;
}

.home-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(70px, 11vw, 170px);
  align-items: end;
}

.home-access-grid .section-label {
  margin-bottom: 28px;
}

.home-access h2 {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.home-access-copy .lead-ja {
  margin-bottom: 28px;
}

.home-access-copy address {
  margin-bottom: 34px;
  color: rgba(244, 239, 231, 0.64);
  font-size: 0.8rem;
  line-height: 2;
}

.home-access-copy dl {
  margin-bottom: 38px;
  border-top: 1px solid var(--line-light);
}

.home-access-copy dl div {
  display: flex;
  gap: 25px;
  justify-content: space-between;
  padding-block: 11px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.home-access-copy dd {
  font-family: var(--serif);
  font-size: 0.74rem;
}

@media (max-width: 980px) {
  .visual-hero h1 {
    font-size: clamp(4.3rem, 11vw, 7rem);
  }

  .home-intro-grid {
    grid-template-columns: 130px 1fr;
  }

  .home-intro-heading {
    grid-column: 2;
  }

  .home-intro-image {
    grid-column: 1 / -1;
  }

  .home-intro-copy {
    grid-column: 2;
    max-width: 560px;
  }

  .home-menu-card {
    min-height: 480px;
  }

  .card-symbol {
    height: 160px;
  }
}

@media (max-width: 760px) {
  .visual-hero {
    background-position: 64% center;
  }

  .visual-hero::before {
    background: linear-gradient(90deg, rgba(32, 25, 22, 0.88) 0%, rgba(32, 25, 22, 0.64) 70%, rgba(32, 25, 22, 0.35) 100%), linear-gradient(0deg, rgba(32, 25, 22, 0.58), transparent 55%);
  }

  .visual-hero-content {
    padding-block: calc(var(--header-height) + 70px) 130px;
  }

  .visual-hero h1 {
    font-size: clamp(3.75rem, 17vw, 6rem);
  }

  .visual-hero-bottom,
  .home-intro-grid,
  .home-section-head,
  .home-access-grid {
    grid-template-columns: 1fr;
  }

  .visual-hero-bottom {
    gap: 38px;
  }

  .visual-hero-meta p:last-child {
    display: none;
  }

  .home-intro-grid {
    gap: 46px;
  }

  .home-intro-copy {
    grid-column: auto;
  }

  .home-intro-heading,
  .home-intro-image {
    grid-column: auto;
  }

  .home-section-head {
    gap: 38px;
  }

  .home-section-head > p {
    padding-bottom: 0;
  }

  .home-menu-grid {
    grid-template-columns: 1fr;
  }

  .home-menu-card {
    min-height: auto;
  }

  .card-symbol {
    height: 210px;
  }

  .home-access-grid {
    gap: 68px;
  }
}

@media (max-width: 440px) {
  .visual-hero h1 {
    font-size: 3.45rem;
  }

  .hero-description {
    font-size: 0.75rem;
  }

  .visual-hero-meta {
    bottom: 20px;
  }

  .home-access h2 {
    font-size: 3.45rem;
  }
}

/* Remaining pages */
[hidden] {
  display: none !important;
}

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

.menu-browser {
  background: var(--paper);
}

.menu-browser-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.5fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: end;
  margin-bottom: clamp(70px, 9vw, 120px);
}

.menu-browser-head .section-label {
  margin-bottom: 26px;
}

.menu-browser-head > p {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 2;
}

.menu-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 68px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.filter-button {
  display: grid;
  min-height: 88px;
  padding: 15px 18px;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-content: center;
  align-items: baseline;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--serif);
  font-size: 1.15rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.22s ease, background-color 0.22s ease;
}

.filter-button + .filter-button {
  border-left: 1px solid var(--line);
}

.filter-button > span {
  color: var(--accent);
  font-size: 0.63rem;
}

.filter-button small {
  grid-column: 2;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--background);
  background: var(--ink);
}

.filter-button:hover small,
.filter-button.is-active small {
  color: rgba(244, 239, 231, 0.58);
}

.menu-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 340px;
  padding: clamp(28px, 3vw, 40px);
  flex-direction: column;
  overflow: hidden;
  border-top: 2px solid var(--accent);
  background: var(--background);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

.product-card::after {
  position: absolute;
  right: -6px;
  bottom: -24px;
  color: rgba(42, 33, 29, 0.045);
  content: attr(data-category);
  font-family: var(--serif);
  font-size: 4.4rem;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.product-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.product-meta p {
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.product-meta span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.72rem;
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin: 72px 0 13px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.45;
}

.product-card > p {
  position: relative;
  z-index: 1;
  max-width: 310px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.9;
}

.product-card strong {
  position: relative;
  z-index: 1;
  margin-top: 25px;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
}

.concept-section {
  background: var(--paper);
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(400px, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(70px, 11vw, 170px);
  align-items: center;
}

.concept-image {
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}

.concept-image picture,
.concept-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.concept-image img {
  object-fit: cover;
}

.concept-copy .section-label {
  margin-bottom: 28px;
}

.concept-copy .lead-ja {
  margin-block: clamp(48px, 6vw, 76px) 30px;
}

.concept-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.concept-body p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 2;
}

.facts-section {
  background: var(--background);
}

.facts-heading {
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.45fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(72px, 9vw, 125px);
}

.facts-heading > p:last-child {
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 2;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-card {
  position: relative;
  min-height: 430px;
  padding: 34px 28px;
  background: var(--background);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease, background-color 0.3s ease;
}

.fact-number {
  position: absolute;
  top: 32px;
  right: 28px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.7rem;
}

.fact-label {
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.fact-value {
  min-height: 142px;
  margin-block: 55px 26px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.fact-card h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.07em;
}

.fact-card > p:last-child {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.9;
}

.fiction-footnote {
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.65rem;
}

.access-overview {
  background: var(--paper);
}

.fiction-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: clamp(85px, 10vw, 140px);
  padding: 22px 0;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--line);
}

.fiction-notice span {
  color: var(--accent);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.fiction-notice p {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.8;
}

.access-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
  gap: clamp(70px, 12vw, 180px);
  align-items: start;
}

.access-overview-heading .section-label {
  margin-bottom: 28px;
}

.access-facts {
  border-top: 1px solid var(--ink);
}

.access-facts > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.access-facts dt {
  color: var(--accent);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.access-facts dt small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.access-facts dd {
  font-size: 0.82rem;
  line-height: 1.9;
}

.access-facts dd span {
  color: var(--muted);
  font-size: 0.7rem;
}

.access-facts a {
  border-bottom: 1px solid var(--ink);
}

.osm-section {
  background: var(--background);
}

.map-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.5fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.map-section-head .section-label {
  margin-bottom: 26px;
}

.map-section-head > div:last-child > p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 2;
}

.osm-frame {
  width: 100%;
  height: clamp(480px, 58vw, 720px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.osm-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-caption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.54rem;
  letter-spacing: 0.15em;
}

@media (max-width: 1060px) {
  .menu-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .concept-grid,
  .access-overview-grid {
    gap: 70px;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .menu-browser-head,
  .concept-grid,
  .facts-heading,
  .access-overview-grid,
  .map-section-head {
    grid-template-columns: 1fr;
  }

  .menu-browser-head,
  .map-section-head {
    gap: 38px;
  }

  .menu-filters {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-button + .filter-button {
    border-left: 0;
  }

  .filter-button:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .filter-button:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .menu-products-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 300px;
  }

  .concept-grid {
    gap: 70px;
  }

  .concept-body {
    grid-template-columns: 1fr;
  }

  .facts-heading {
    gap: 38px;
  }

  .fact-card {
    min-height: 360px;
  }

  .fiction-notice {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .access-overview-grid {
    gap: 75px;
  }

  .osm-frame {
    height: 430px;
  }
}

@media (max-width: 430px) {
  .filter-button {
    min-height: 78px;
    padding-inline: 12px;
    font-size: 0.98rem;
  }

  .access-facts > div {
    grid-template-columns: 105px 1fr;
    gap: 18px;
  }

  .osm-frame {
    height: 390px;
  }
}

.back-to-top {
  position: fixed;
  z-index: 80;
  right: clamp(16px, 2.4vw, 34px);
  bottom: clamp(16px, 2.4vw, 34px);
  display: grid;
  visibility: hidden;
  width: 62px;
  height: 62px;
  padding: 8px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(250, 247, 241, 0.94);
  box-shadow: 0 12px 30px rgba(42, 33, 29, 0.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transform: translateY(12px);
  transition: visibility 0.25s, opacity 0.25s ease, transform 0.25s ease, color 0.2s ease, background-color 0.2s ease;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top-icon {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1;
}

.back-to-top-label {
  margin-top: 3px;
  font-size: 0.47rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
}

@media (hover: hover) {
  .product-card:hover,
  .fact-card:hover {
    z-index: 2;
    background: var(--paper);
    box-shadow: 0 24px 55px rgba(42, 33, 29, 0.09);
    transform: translateY(-7px);
  }

  .value-item,
  .directions-list li,
  .travel-list article {
    transition: background-color 0.25s ease;
  }

  .value-item h3,
  .directions-list h3,
  .travel-list h3 {
    transition: color 0.25s ease;
  }

  .value-item:hover {
    background: rgba(244, 239, 231, 0.035);
  }

  .value-item:hover h3,
  .directions-list li:hover h3,
  .travel-list article:hover h3 {
    color: var(--accent);
  }

  .directions-list li:hover,
  .travel-list article:hover {
    background: rgba(152, 92, 69, 0.045);
  }

  .back-to-top:hover {
    color: var(--background);
    background: var(--ink);
    transform: translateY(-4px);
  }
}

@media (max-width: 680px) {
  .back-to-top {
    width: 54px;
    height: 54px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
