:root {
  --cream: #f3eee5;
  --paper: #f9f6f0;
  --ink: #29231f;
  --muted: #71675f;
  --accent: #a66045;
  --line: #d8d0c5;
  --serif: Georgia, "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  --page: min(84vw, 1320px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 2; letter-spacing: .035em; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--paper); background: var(--accent); }
.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; }

.site-header { position: sticky; top: 0; z-index: 20; height: 104px; padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; background: rgba(243,238,229,.94); border-bottom: 1px solid rgba(41,35,31,.12); backdrop-filter: blur(14px); }
.logo { display: flex; flex-direction: column; font-family: var(--serif); line-height: 1; letter-spacing: .14em; }
.logo span { font-size: 1.2rem; }
.logo small { margin-top: 8px; color: var(--muted); font-family: var(--sans); font-size: .48rem; letter-spacing: .32em; }
.global-nav { display: flex; align-items: center; gap: clamp(25px, 3.3vw, 56px); }
.global-nav a { position: relative; font-family: var(--serif); font-size: .72rem; letter-spacing: .18em; }
.global-nav a::after { position: absolute; right: 100%; bottom: -10px; left: 0; height: 1px; background: var(--accent); content: ""; transition: right .3s ease; }
.global-nav a:hover::after, .global-nav a.active::after { right: 0; }
.nav-toggle { display: none; padding: 8px; border: 0; background: none; }
.nav-toggle > span:not(.sr-only) { display: block; width: 25px; height: 1px; margin: 6px 0; background: var(--ink); transition: .25s; }

.hero { width: var(--page); min-height: calc(100vh - 104px); margin: auto; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: clamp(60px, 10vw, 180px); padding: 90px 0 120px; }
.hero h1, .page-hero h1 { margin: 18px 0 10px; font-family: var(--serif); font-size: clamp(4rem, 8.5vw, 8.5rem); font-weight: 400; line-height: .92; letter-spacing: -.045em; }
.hero-jp, .page-title-jp { margin: 30px 0 12px; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.15rem, 2vw, 1.7rem); letter-spacing: .09em; }
.lead, .page-hero > p:last-child { max-width: 590px; color: var(--muted); }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-family: var(--sans); font-size: .64rem; font-weight: 600; letter-spacing: .32em; }
.button-row { margin-top: 46px; display: flex; align-items: center; gap: 34px; }
.button { min-height: 54px; padding: 12px 28px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ink); font-family: var(--serif); font-size: .8rem; letter-spacing: .12em; transition: color .25s, background .25s, border-color .25s, box-shadow .25s, transform .25s; }
.button:hover, .button:focus-visible { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(41,35,31,.14); }
.button-primary { color: var(--paper); background: var(--ink); }
.button-primary:hover { background: var(--accent); border-color: var(--accent); }
.button-light { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.text-link { padding-bottom: 4px; border-bottom: 1px solid var(--accent); font-size: .78rem; letter-spacing: .08em; }
.text-link span { margin-left: 8px; color: var(--accent); }

.hero-visual { position: relative; height: min(650px, 68vh); display: flex; align-items: center; justify-content: center; flex-direction: column; background: var(--accent); overflow: hidden; }
.hero-visual::before { position: absolute; inset: 22px; border: 1px solid rgba(249,246,240,.45); content: ""; }
.hero-visual > p { position: absolute; bottom: 42px; color: var(--paper); font-family: var(--serif); font-size: .6rem; letter-spacing: .28em; }
.cup { position: relative; z-index: 2; width: 185px; height: 128px; border-radius: 5px 5px 75px 75px; background: var(--paper); box-shadow: inset 0 -12px 18px rgba(41,35,31,.04); }
.coffee { position: absolute; top: 8px; right: 10px; left: 10px; height: 24px; border-radius: 50%; background: var(--ink); }
.handle { position: absolute; top: 27px; right: -54px; width: 76px; height: 72px; border: 17px solid var(--paper); border-left: 0; border-radius: 0 50% 50% 0; }
.saucer { z-index: 1; width: 245px; height: 32px; margin-top: -10px; border-radius: 50%; background: var(--paper); }
.steam { position: absolute; top: 24%; width: 2px; height: 78px; border-radius: 50%; background: rgba(249,246,240,.7); filter: blur(2px); animation: steam 3s ease-in-out infinite; }
.steam-one { left: 47%; }
.steam-two { top: 19%; left: 55%; animation-delay: 1s; }
@keyframes steam { 0%,100% { opacity: 0; transform: translateY(18px) scaleX(1); } 50% { opacity: 1; transform: translateY(-4px) scaleX(3); } }

.section { width: var(--page); margin: auto; padding: clamp(120px, 14vw, 210px) 0; }
.intro-grid, .story-grid, .access-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(70px, 12vw, 190px); }
.section-heading h2, .story-copy h2, .shop-details h2, .notice-box h2 { margin: 12px 0 35px; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.intro-copy { max-width: 600px; }
.intro-media { margin: 0; overflow: hidden; }
.intro-media img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.intro-copy p, .story-copy p:not(.eyebrow) { margin: 0 0 24px; color: var(--muted); }
.centered { margin-bottom: 75px; text-align: center; }
.featured-section, .values-section, .transport-section { width: 100%; padding-right: 8vw; padding-left: 8vw; background: var(--paper); }
.card-grid, .values-grid { max-width: 1320px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature-card { min-height: 400px; padding: 48px 40px; display: flex; flex-direction: column; background: var(--paper); transition: box-shadow .35s ease, transform .35s ease; }
.feature-card:hover, .feature-card:focus-within { position: relative; z-index: 1; transform: translateY(-7px); box-shadow: 0 20px 45px rgba(41,35,31,.12); }
.card-number, .value-card > span { color: var(--accent); font-family: var(--serif); font-size: .65rem; letter-spacing: .18em; }
.card-icon { height: 105px; display: grid; place-items: center; color: var(--accent); font-size: 2.7rem; }
.feature-card h3, .value-card h3, .transport-card h3 { margin: 12px 0; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.feature-card p, .value-card p { color: var(--muted); font-size: .82rem; }
.feature-card .price { margin-top: auto; color: var(--ink); font-family: var(--serif); font-size: 1rem; }
.visit-banner { width: var(--page); margin: 0 auto 9vw; padding: clamp(55px,7vw,100px); display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; color: var(--paper); background: var(--ink); }
.visit-banner h2 { margin: 12px 0 24px; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; line-height: .95; letter-spacing: -.04em; }
.visit-banner p:not(.eyebrow) { color: #cfc7bd; }

.page-hero { width: var(--page); margin: auto; padding: clamp(110px, 13vw, 190px) 0 clamp(100px, 11vw, 165px); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(5rem, 12vw, 11rem); }
.page-title-jp { margin-top: 45px; }
.filter-list { margin-bottom: 70px; display: flex; gap: 10px; flex-wrap: wrap; }
.menu-toolbar { margin-bottom: 70px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.menu-toolbar > p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: .58rem; letter-spacing: .2em; }
.menu-toolbar .filter-list { margin-bottom: 0; }
.filter-button { padding: 10px 21px; border: 1px solid var(--line); background: transparent; cursor: pointer; font-family: var(--serif); font-size: .72rem; letter-spacing: .1em; transition: color .25s, background .25s, border-color .25s, transform .25s; }
.filter-button:hover, .filter-button:focus-visible { transform: translateY(-2px); }
.filter-button.active, .filter-button:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-grid.filtered { grid-template-columns: minmax(0, 620px); justify-content: center; }
.menu-category { padding: 45px 36px; background: var(--paper); border-top: 3px solid var(--accent); transition: box-shadow .35s ease, transform .35s ease; }
.menu-category:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(41,35,31,.1); }
.menu-category h2 { margin: 10px 0 25px; padding-bottom: 22px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.menu-item { padding: 21px 0; display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.menu-item h3 { margin: 0; font-size: .86rem; font-weight: 500; }
.menu-item p { margin: 5px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.7; }
.menu-item > span { font-family: var(--serif); font-size: .88rem; white-space: nowrap; }
.menu-category.hidden { display: none; }
.menu-note { margin-top: 32px; color: var(--muted); font-size: .72rem; text-align: right; }

.story-visual { position: relative; min-height: 610px; display: grid; place-items: center; align-content: center; color: var(--paper); text-align: center; background: var(--accent); }
.concept-section { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(65px,9vw,145px); }
.concept-media { margin: 0; overflow: hidden; }
.concept-media img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.concept-copy h2 { margin: 12px 0 30px; font-family: var(--serif); font-size: clamp(3rem,5.5vw,5.8rem); font-weight: 400; line-height: .98; letter-spacing: -.035em; }
.concept-copy > p:not(.eyebrow):not(.concept-jp) { color: var(--muted); }
.concept-jp { margin: 0 0 30px; font-family: "Yu Mincho",serif; font-size: 1.25rem; letter-spacing: .07em; }
.information-section { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: clamp(60px,10vw,160px); }
.information-section .section-heading > p:last-child { max-width: 430px; color: var(--muted); }
.info-list { margin: 0; border-top: 1px solid var(--ink); }
.info-list > div { padding: 28px 0; display: grid; grid-template-columns: 130px 1fr; border-bottom: 1px solid var(--line); }
.info-list dt { padding-top: 8px; color: var(--accent); font-family: var(--serif); font-size: .58rem; letter-spacing: .18em; }
.info-list dd { margin: 0; display: flex; align-items: baseline; justify-content: space-between; gap: 25px; }
.info-list strong { font-family: var(--serif); font-size: clamp(1.8rem,3vw,3rem); font-weight: 400; }
.info-list span { color: var(--muted); font-size: .76rem; text-align: right; }
.story-visual::after { position: absolute; inset: 24px; border: 1px solid rgba(249,246,240,.45); content: ""; }
.sun-symbol { font-family: var(--serif); font-size: 10rem; font-style: italic; line-height: 1; }
.story-visual p { font-family: var(--serif); font-size: .65rem; letter-spacing: .25em; }
.story-copy h3 { margin: -15px 0 35px; font-family: "Yu Mincho", serif; font-size: 1.2rem; font-weight: 400; }
.value-card { min-height: 330px; padding: 48px 38px; background: var(--paper); transition: background .3s ease, transform .3s ease; }
.value-card:hover { position: relative; z-index: 1; background: var(--cream); transform: translateY(-5px); }
.quote-section { padding: clamp(100px, 14vw, 200px) 24px; color: var(--paper); text-align: center; background: var(--accent); }
.quote-section blockquote { margin: 0; font-family: "Yu Mincho", var(--serif); font-size: clamp(1.8rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.7; }
.quote-section p { margin-top: 35px; font-size: .68rem; letter-spacing: .16em; }

.access-grid { grid-template-columns: 1.15fr .85fr; }
.access-section { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(60px,8vw,130px); }
.access-details h2 { margin: 12px 0 35px; font-family: var(--serif); font-size: clamp(3rem,6vw,6rem); font-weight: 400; line-height: .98; }
.access-details dl { margin: 0; border-top: 1px solid var(--ink); }
.access-details dl > div { padding: 18px 0; display: grid; grid-template-columns: 135px 1fr; border-bottom: 1px solid var(--line); }
.access-details dt { color: var(--accent); font-family: var(--serif); font-size: .56rem; letter-spacing: .16em; }
.access-details dd { margin: 0; font-size: .82rem; }
.access-details small { color: var(--muted); }
.osm-map { min-width: 0; }
.osm-map iframe { display: block; width: 100%; height: clamp(460px,50vw,650px); border: 0; filter: sepia(.14) saturate(.65) contrast(.96); }
.osm-map > a { margin-top: 15px; display: inline-block; border-bottom: 1px solid var(--accent); font-family: var(--serif); font-size: .6rem; letter-spacing: .14em; }
.fiction-note { width: var(--page); margin: -55px auto 9vw; padding: 25px 30px; display: grid; grid-template-columns: 150px 1fr; gap: 25px; border: 1px solid var(--line); background: var(--paper); }
.fiction-note span { color: var(--accent); font-family: var(--serif); font-size: .56rem; letter-spacing: .18em; }
.fiction-note p { margin: 0; color: var(--muted); font-size: .72rem; line-height: 1.8; }
.map-placeholder { position: relative; height: 580px; overflow: hidden; background: #e5ded3; border: 1px solid var(--line); }
.road { position: absolute; background: var(--paper); box-shadow: 0 0 0 1px var(--line); }
.road-horizontal { top: 40%; right: 0; left: 0; height: 72px; transform: rotate(-8deg) scale(1.1); }
.road-vertical { top: 0; bottom: 0; left: 34%; width: 58px; transform: rotate(12deg) scale(1.1); }
.station, .park, .map-pin { position: absolute; font-size: .68rem; font-weight: 600; }
.station { bottom: 13%; left: 12%; }
.park { top: 14%; right: 10%; width: 110px; height: 72px; display: grid; place-items: center; border: 1px solid #bdb3a6; }
.map-pin { top: 45%; right: 20%; width: 72px; height: 72px; display: grid; place-items: center; color: var(--paper); background: var(--accent); border-radius: 50%; font-size: 1.35rem; }
.map-pin small { position: absolute; top: 80px; color: var(--ink); font-size: .68rem; white-space: nowrap; }
.shop-details dl { margin-top: 48px; }
.shop-details dl > div { padding: 19px 0; display: grid; grid-template-columns: 115px 1fr; border-bottom: 1px solid var(--line); }
.shop-details dt { color: var(--muted); font-size: .72rem; }
.shop-details dd { margin: 0; }
.shop-details small { color: var(--muted); }
.transport-grid { max-width: 1320px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px; }
.transport-card { padding: 30px 20px 20px 0; display: flex; gap: 22px; border-top: 1px solid var(--accent); transition: padding-left .3s ease, background .3s ease; }
.transport-card:hover { padding-left: 20px; background: rgba(166,96,69,.06); }
.transport-card > span { color: var(--accent); filter: grayscale(1); font-size: 1.4rem; }
.transport-card h3 { margin-top: 0; }
.transport-card p { color: var(--muted); font-size: .82rem; }
.notice-box { max-width: 900px; margin: 10vw auto; padding: clamp(65px, 8vw, 110px) 30px; border: 1px solid var(--line); text-align: center; background: var(--paper); }
.notice-box > p:not(.eyebrow) { max-width: 610px; margin: 20px auto 35px; color: var(--muted); }

.site-footer { padding: 75px 6vw; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; color: #c9c0b7; background: var(--ink); font-size: .7rem; }
.footer-logo { margin: 0 0 13px; color: var(--paper); font-family: var(--serif); font-size: 1.45rem; letter-spacing: .14em; }
.site-footer span { color: var(--accent); font-size: .55rem; font-weight: 600; letter-spacing: .24em; }
.site-footer p { margin: 10px 0; }
.footer-social { text-align: right; }
.footer-social a { margin-left: 22px; color: var(--paper); border-bottom: 1px solid var(--accent); }
.footer-social small { display: block; margin-top: 32px; color: #91877f; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease var(--reveal-delay,0ms), transform .8s cubic-bezier(.22,1,.36,1) var(--reveal-delay,0ms); }
.js .reveal.visible { opacity: 1; transform: none; }
.back-to-top { position: fixed; right: clamp(18px,3vw,42px); bottom: clamp(18px,3vw,38px); z-index: 30; width: 58px; height: 58px; padding: 0; display: grid; place-content: center; gap: 0; color: var(--paper); background: var(--ink); border: 1px solid rgba(249,246,240,.28); border-radius: 50%; opacity: 0; visibility: hidden; cursor: pointer; transform: translateY(12px); transition: opacity .3s, visibility .3s, transform .3s, background .25s; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover, .back-to-top:focus-visible { background: var(--accent); transform: translateY(-3px); }
.back-to-top span { font-size: 1rem; line-height: 1; }
.back-to-top small { font-family: var(--serif); font-size: .42rem; letter-spacing: .15em; }

@media (max-width: 920px) {
  :root { --page: min(88vw, 720px); }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { height: 520px; }
  .intro-grid, .story-grid, .access-grid { grid-template-columns: 1fr; gap: 75px; }
  .menu-grid { grid-template-columns: 1fr; }
  .card-grid, .values-grid, .transport-grid { grid-template-columns: 1fr; }
  .feature-card, .value-card { min-height: 280px; }
  .visit-banner { align-items: flex-start; flex-direction: column; }
  .story-copy { order: -1; }
  .site-footer { grid-template-columns: 1.5fr 1fr; }
  .concept-section, .information-section, .access-section { grid-template-columns: 1fr; gap: 65px; }
  .concept-media { order: 2; }
  .menu-toolbar { align-items: flex-start; flex-direction: column; }
  .footer-social { grid-column: 1 / -1; text-align: left; }
  .footer-social a { margin: 0 22px 0 0; }
}

@media (max-width: 680px) {
  body { font-size: 14px; }
  .site-header { height: 78px; padding: 0 6vw; }
  .logo span { font-size: 1rem; }
  .js .nav-toggle { z-index: 2; display: block; }
  body.nav-open { overflow: hidden; }
  .global-nav { position: absolute; inset: 78px 0 auto; padding: 15px 7vw 30px; display: flex; align-items: stretch; flex-direction: column; gap: 0; color: var(--ink); background: var(--paper); }
  .js .global-nav { position: fixed; opacity: 0; transform: translateY(-130%); transition: opacity .3s, transform .3s; }
  .js .global-nav.open { opacity: 1; transform: none; }
  .global-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; gap: 65px; padding: 80px 0 90px; }
  .hero h1 { font-size: clamp(3.5rem, 18vw, 5rem); }
  .hero-visual { height: 420px; }
  .cup, .saucer { transform: scale(.78); }
  .saucer { margin-top: -20px; }
  .section { padding: 100px 0; }
  .featured-section, .values-section, .transport-section { padding-right: 6vw; padding-left: 6vw; }
  .page-hero { padding: 90px 0 85px; }
  .page-hero h1 { font-size: clamp(4rem, 20vw, 6rem); }
  .button-row { align-items: flex-start; flex-direction: column; gap: 23px; }
  .map-placeholder { height: 420px; }
  .shop-details dl > div { grid-template-columns: 85px 1fr; }
  .filter-list { margin-bottom: 40px; }
  .menu-toolbar .filter-list { margin-bottom: 0; }
  .menu-toolbar { margin-bottom: 45px; }
  .info-list > div { grid-template-columns: 85px 1fr; }
  .info-list dd { align-items: flex-start; flex-direction: column; gap: 4px; }
  .info-list span { text-align: left; }
  .access-details dl > div { grid-template-columns: 105px 1fr; }
  .osm-map iframe { height: 440px; }
  .fiction-note { margin-top: -35px; margin-bottom: 90px; grid-template-columns: 1fr; gap: 8px; }
  .site-footer { grid-template-columns: 1fr; gap: 35px; padding: 60px 7vw; }
  .back-to-top { width: 50px; height: 50px; }
  .footer-social { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .steam, .back-to-top, .feature-card, .value-card, .transport-card, .button { animation: none; transition: none; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Home page */
body[data-page="home"] .site-header { position: absolute; inset: 0 0 auto; color: var(--paper); background: transparent; border-color: rgba(249,246,240,.28); backdrop-filter: none; }
body[data-page="home"] .logo small { color: rgba(249,246,240,.72); }
body[data-page="home"] .nav-toggle > span:not(.sr-only) { background: var(--paper); }
.home-hero { position: relative; width: 100%; min-height: min(960px,100svh); margin: 0; padding: clamp(160px,22vh,240px) 8vw 100px; display: flex; align-items: center; color: var(--paper); background-image: linear-gradient(90deg,rgba(25,20,17,.78) 0%,rgba(25,20,17,.52) 42%,rgba(25,20,17,.12) 72%),linear-gradient(0deg,rgba(25,20,17,.35),transparent 45%),url("images/cafe-hero.png"); background-position: center; background-size: cover; }
.home-hero .hero-copy { position: relative; z-index: 1; max-width: 820px; }
.home-hero h1 { margin: 20px 0 30px; font-size: clamp(4.8rem,10.5vw,10.5rem); line-height: .83; color: var(--paper); text-shadow: 0 2px 30px rgba(0,0,0,.18); }
.home-hero .hero-jp { margin: 38px 0 15px; color: var(--paper); }
.home-hero .lead { color: rgba(249,246,240,.78); }
.hero-link { margin-top: 46px; padding-bottom: 7px; display: inline-block; border-bottom: 1px solid var(--accent); font-family: var(--serif); font-size: .7rem; letter-spacing: .16em; }
.hero-link span { margin-left: 14px; color: var(--accent); }
.hero-hours { position: absolute; right: 4.5vw; bottom: 42px; margin: 0; font-family: var(--serif); font-size: .55rem; letter-spacing: .19em; }
.scroll-note { position: absolute; bottom: 44px; left: 4.5vw; padding-left: 52px; font-family: var(--serif); font-size: .52rem; letter-spacing: .22em; transform: rotate(-90deg); transform-origin: left center; }
.scroll-note::before { position: absolute; top: 50%; left: 0; width: 35px; height: 1px; background: var(--accent); content: ""; }
.section-number { margin-top: 55px; color: var(--muted); font-family: var(--serif); font-size: .58rem; letter-spacing: .2em; }
.intro-grid { grid-template-areas: "heading media" "copy media"; grid-template-columns: .78fr 1.22fr; column-gap: clamp(60px,9vw,150px); row-gap: 35px; }
.intro-grid .section-heading { grid-area: heading; align-self: end; }
.intro-grid .intro-media { grid-area: media; align-self: stretch; }
.intro-grid .intro-copy { grid-area: copy; align-self: start; }
.intro-grid .intro-media img { height: 100%; min-height: 680px; }
.intro-lead { color: var(--ink) !important; font-family: "Yu Mincho",serif; font-size: clamp(1.3rem,2.2vw,1.8rem); letter-spacing: .08em; }
.favorites-intro { color: var(--muted); }
.card-mark { height: 135px; display: grid; place-items: center; color: var(--accent); font-family: var(--serif); font-size: 5.5rem; font-style: italic; line-height: 1; }
.card-image { margin: 28px -18px 26px; overflow: hidden; background: var(--line); }
.card-image img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; transition: transform .7s ease; }
.feature-card:hover .card-image img { transform: scale(1.025); }
.feature-card .price small { margin-left: 8px; color: var(--muted); font-family: var(--sans); font-size: .48rem; letter-spacing: .12em; }
.visit-action { min-width: 220px; text-align: right; }
.visit-action > p { margin: 0 0 25px !important; color: var(--paper) !important; font-family: var(--serif); font-size: 1.05rem; letter-spacing: .08em; }
.visit-action small { color: #91877f; font-size: .48rem; letter-spacing: .2em; }
.visit-action .button span { margin-left: 14px; color: var(--accent); }

@media (max-width: 920px) {
  .home-hero { min-height: 820px; padding-right: 7vw; padding-left: 7vw; background-position: 58% center; }
  .home-hero .hero-copy { max-width: 700px; }
  .intro-grid { grid-template-areas: "heading" "media" "copy"; grid-template-columns: 1fr; row-gap: 55px; }
  .intro-grid .intro-media img { height: auto; min-height: 0; }
}

@media (max-width: 680px) {
  body[data-page="home"] .global-nav { color: var(--ink); }
  .home-hero { min-height: 760px; padding: 145px 7vw 95px; align-items: flex-end; background-image: linear-gradient(90deg,rgba(25,20,17,.72),rgba(25,20,17,.27)),linear-gradient(0deg,rgba(25,20,17,.72),transparent 65%),url("images/cafe-hero.png"); background-position: 62% center; }
  .home-hero h1 { font-size: clamp(4rem,20vw,6rem); }
  .home-hero .hero-jp { margin-top: 30px; font-size: 1.05rem; }
  .home-hero .lead br { display: none; }
  .hero-hours { right: 7vw; bottom: 28px; max-width: 230px; text-align: right; line-height: 1.5; }
  .scroll-note { display: none; }
  .card-mark { height: 100px; }
  .intro-media img { aspect-ratio: 4 / 3; }
  .visit-action { width: 100%; text-align: left; }
}
