/* Shared design tokens — all pages work directly from the filesystem. */
:root {
  --paper: #f7f3eb;
  --ink: #302923;
  --muted: #74675c;
  --accent: #985b46;
  --line: #d9cfc2;
  --surface: #eee6da;
  --serif: Georgia, 'Times New Roman', 'Yu Mincho', serif;
  --sans: 'Yu Gothic', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 2.05; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 7px; }
::selection { background: var(--accent); color: var(--paper); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; }
h1 { font-size: clamp(4rem, 7.6vw, 7.7rem); line-height: 1.04; letter-spacing: -.055em; }
h2 { font-size: clamp(2.6rem, 4.5vw, 4.8rem); line-height: 1.14; letter-spacing: -.045em; margin-bottom: 24px; }
h3 { font-size: 1.125rem; font-weight: 500; letter-spacing: .035em; line-height: 1.8; }
em { color: var(--accent); font-weight: 400; }
p { margin-bottom: 1.5em; }
.skip-link { position: fixed; top: -100px; left: 20px; background: var(--paper); padding: 12px 24px; z-index: 100; }
.skip-link:focus { top: 10px; }
.site-header { width: 88%; max-width: 1320px; margin: auto; min-height: 144px; display: flex; justify-content: space-between; align-items: center; gap: 36px; border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 22px; }
.brand-wordmark { font-family: var(--serif); font-size: 2.85rem; line-height: 1; letter-spacing: -.065em; }
.brand-dot { color: var(--accent); }
.brand-caption { font-size: .8125rem; letter-spacing: .23em; padding-left: 22px; border-left: 1px solid var(--line); }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 46px); }
.site-nav a { padding: 14px 0; font-size: .75rem; letter-spacing: .14em; position: relative; }
.site-nav a::after { content: ''; position: absolute; bottom: 3px; left: 0; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.site-nav a:hover::after, .site-nav a[aria-current='page']::after { transform: scaleX(1); }
.site-nav a[aria-current='page'] { color: var(--accent); }
.nav-toggle { display: none; }
.eyebrow { display: block; color: var(--accent); font-family: var(--sans); font-size: .75rem; font-weight: 500; line-height: 1.7; letter-spacing: .23em; margin-bottom: 30px; }
.hero { max-width: 1320px; width: 88%; margin: auto; display: grid; grid-template-columns: 1.2fr .8fr; gap: 9%; padding: 86px 0 88px; align-items: center; }
.hero h1 { margin-bottom: 32px; }
.hero-japanese { font-size: 1.125rem; letter-spacing: .1em; margin-bottom: 24px; }
.lead { color: var(--muted); font-size: .9375rem; line-height: 2.2; margin-bottom: 35px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 44px; padding: 12px 0; font-size: .875rem; border-bottom: 1px solid var(--ink); transition: color .2s, border-color .2s; }
.button:hover, .text-link:hover { color: var(--accent); border-color: var(--accent); }
.button span { font-size: 1.3rem; }
.hero-panel { min-height: 550px; padding: 36px; background: var(--surface); display: flex; flex-direction: column; align-items: center; justify-content: space-between; position: relative; }
.hero-panel::before { content: ''; position: absolute; inset: 13px; border: 1px solid #cfc1b1; pointer-events: none; }
.panel-top { font-size: .625rem; letter-spacing: .19em; color: var(--muted); text-align: center; }
.panel-word { font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif; font-size: clamp(4.5rem, 7vw, 7rem); font-weight: 400; line-height: 1.55; color: var(--accent); }
.panel-bottom { width: 100%; display: flex; flex-direction: column; gap: 12px; align-items: center; font-size: .8125rem; letter-spacing: .15em; }
.panel-bottom span:last-child { color: var(--muted); font-size: .75rem; }
.info-strip { width: 88%; max-width: 1320px; margin: auto; border-block: 1px solid var(--line); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px 26px; flex-wrap: wrap; font-size: .875rem; }
.info-strip p { margin: 0; }
.info-strip .eyebrow { display: inline; margin: 0 14px 0 0; }
.info-strip small { font-size: .875rem; color: var(--muted); margin-left: 14px; }
.info-strip a { padding: 5px 0; border-bottom: 1px solid var(--line); }
.strip-divider { margin: 0 14px; color: var(--muted); }
.section { width: 84%; max-width: 1220px; margin: auto; padding: 130px 0; }
.home-intro, .story { display: grid; grid-template-columns: 1fr 1fr; gap: 12%; align-items: start; }
.home-intro > div:last-child { padding-top: 44px; }
.home-intro > div:last-child p, .story-body p { line-height: 2.35; }
.section-japanese { font-size: .9375rem; color: var(--muted); letter-spacing: .04em; margin-bottom: 0; }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .875rem; transition: color .2s, border-color .2s; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 60px; }
.section-heading h2 { margin-bottom: 18px; }
.favorites, .values { padding-top: 20px; }
.favorite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.favorite { padding: 30px 0 14px; border-top: 1px solid var(--line); }
.item-number { font-size: .75rem; color: var(--accent); letter-spacing: .16em; display: block; margin-bottom: 32px; }
.favorite h3 { margin-bottom: 18px; }
.favorite p { font-size: .9375rem; color: var(--muted); margin-bottom: 24px; }
.price { font-family: var(--serif); font-size: 1.65rem; }
.fine-print { color: var(--muted); font-size: .875rem; margin: 35px 0 0; }
.page-heading { width: 84%; max-width: 1220px; margin: auto; padding: 100px 0 92px; border-bottom: 1px solid var(--line); }
.page-heading h1 { margin-bottom: 40px; }
.page-heading .page-japanese { font-size: 1.125rem; letter-spacing: .06em; color: var(--ink); margin-bottom: 12px; }
.page-heading p:last-child { color: var(--muted); font-size: .9375rem; margin-bottom: 0; }
.menu-content { width: 84%; max-width: 1220px; margin: auto; padding-bottom: 110px; }
.menu-section { display: grid; grid-template-columns: 1fr 1.3fr; gap: 10%; padding: 88px 0; border-bottom: 1px solid var(--line); }
.menu-category h2 { font-size: clamp(2.5rem, 3.5vw, 3.75rem); }
.menu-category .section-japanese { color: var(--ink); margin-bottom: 20px; }
.menu-category > p:last-child { font-size: .9375rem; color: var(--muted); }
.menu-list { margin: 0; }
.menu-list > div { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.menu-list > div:first-child { padding-top: 0; }
.menu-list > div:last-child { border: 0; padding-bottom: 0; }
.menu-list dt { font-weight: 500; }
.menu-list dt span { display: block; font-size: .875rem; letter-spacing: .08em; color: var(--accent); margin: 4px 0; }
.menu-list small { display: block; margin-top: 8px; font-size: .875rem; font-weight: 400; color: var(--muted); }
.menu-list dd { white-space: nowrap; margin: 0; font-family: var(--serif); font-size: 1.45rem; }
.menu-note { color: var(--muted); font-size: .875rem; padding-top: 34px; }
.menu-note p { margin: 0 0 8px; }
.story-signature { display: block; margin-top: 70px; font-family: 'Yu Mincho', serif; font-size: 2rem; letter-spacing: .22em; color: var(--accent); }
.story-body p { margin-bottom: 32px; }
.visit-banner { border-top: 1px solid var(--line); padding: 70px 8%; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.visit-banner p { margin-bottom: 0; }
.visit-banner .eyebrow { margin-bottom: 18px; }
.access-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 12%; }
.shop-details { margin-top: 40px; }
.shop-details > div { display: grid; grid-template-columns: 84px 1fr; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); font-size: .9375rem; }
.shop-details dt { color: var(--muted); }
.shop-details dd { margin: 0; }
.shop-details small, .address-note { font-size: .875rem; }
.address-note { display: block; margin-top: 10px; color: var(--muted); }
.route-steps { list-style: none; padding: 0; margin-top: 40px; counter-reset: route; }
.route-steps li { counter-increment: route; position: relative; padding: 0 0 30px 54px; }
.route-steps li::before { content: '0' counter(route); position: absolute; left: 0; top: 0; color: var(--accent); font-family: var(--serif); font-size: 1.5rem; }
.route-steps h3 { margin-bottom: 12px; font-size: 1rem; }
.route-steps p { font-size: .9375rem; color: var(--muted); }
.access-note { border-top: 1px solid var(--line); padding-top: 25px; font-size: .875rem; color: var(--muted); }
.access-note p { margin-bottom: 5px; }
.site-footer { background: var(--ink); color: var(--paper); padding: 80px 6% 24px; }
.footer-main { max-width: 1320px; margin: auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 70px; }
.footer-brand { font-family: var(--serif); font-size: 3.8rem; line-height: 1.1; letter-spacing: -.05em; display: inline-block; }
.footer-brand span { display: block; font-family: var(--sans); font-size: .8125rem; letter-spacing: .25em; margin-top: 20px; }
.footer-identity p { margin: 26px 0 0; font-size: .875rem; color: #d3c7ba; }
.site-footer .eyebrow { color: #d3c7ba; margin-bottom: 24px; }
.footer-hours .hours { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 14px; }
.footer-hours p:last-child { color: #d3c7ba; font-size: .875rem; margin-bottom: 0; }
.footer-social { display: flex; align-items: start; flex-direction: column; }
.social-pending { font-family: var(--serif); font-size: 1.45rem; }
.social-pending span { font-family: var(--sans); font-size: .8125rem; color: #d3c7ba; margin-left: 14px; }
.footer-social .text-link { margin-top: 24px; border-color: #76685c; }
.site-footer a:hover { color: #e6baaa; }
.footer-bottom { max-width: 1320px; margin: auto; border-top: 1px solid #63574d; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #d3c7ba; }
.footer-bottom small, .footer-bottom a { font-size: .75rem; }
.footer-bottom a { letter-spacing: .12em; padding: 8px 0; }
@media (min-width: 1700px) { .hero { padding-block: 110px; } }
@media (max-width: 1000px) {
  .brand-caption { display: none; }
  .hero { gap: 6%; grid-template-columns: 1.15fr .85fr; }
  .hero-panel { min-height: 490px; padding: 28px; }
  .hero h1 { font-size: clamp(3.7rem, 8vw, 6rem); }
  .panel-top { font-size: .55rem; }
  .info-strip { justify-content: flex-start; }
  .section, .page-heading, .menu-content { width: 88%; }
  .section { padding-block: 95px; }
  .home-intro, .story, .access-layout { gap: 7%; }
  .favorite-grid { gap: 28px; }
  .footer-main { gap: 32px; grid-template-columns: 1.2fr 1fr 1fr; }
}
@media (max-width: 700px) {
  .site-header { min-height: 106px; padding: 22px 0; flex-wrap: wrap; gap: 22px; }
  .brand-wordmark { font-size: 2.4rem; }
  .brand-caption { display: inline; font-size: .75rem; padding-left: 16px; }
  .brand { gap: 16px; }
  .site-nav { width: 100%; justify-content: space-between; gap: 12px; }
  .site-nav a { font-size: .6875rem; letter-spacing: .08em; }
  .js .nav-toggle { display: flex; gap: 12px; align-items: center; min-height: 44px; padding: 8px 0 8px 10px; border: 0; background: none; font-size: .875rem; color: var(--ink); }
  .js .site-nav { display: none; }
  .js .site-nav.is-open { display: flex; }
  .hero { padding: 60px 0 40px; grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: clamp(3.8rem, 15vw, 6.4rem); }
  .hero-japanese { font-size: 1rem; }
  .hero-panel { display: none; }
  .lead { font-size: .9375rem; }
  .eyebrow { font-size: .6875rem; margin-bottom: 24px; }
  .info-strip { padding: 24px 0; gap: 14px; flex-direction: column; align-items: start; }
  .info-strip small { display: block; margin: 4px 0 0; }
  .section { padding: 76px 0; }
  .home-intro, .story, .access-layout { grid-template-columns: 1fr; gap: 38px; }
  .home-intro > div:last-child { padding: 0; }
  h2 { font-size: clamp(2.7rem, 10vw, 3.5rem); }
  .section-heading { flex-direction: column; align-items: start; gap: 24px; margin-bottom: 36px; }
  .favorites, .values { padding-top: 10px; }
  .favorite-grid { grid-template-columns: 1fr; gap: 24px; }
  .favorite { padding-top: 24px; }
  .item-number { margin-bottom: 20px; }
  .page-heading { padding: 64px 0 52px; }
  .page-heading h1 { font-size: clamp(3rem, 11vw, 4.8rem); margin-bottom: 28px; }
  .page-heading .page-japanese { font-size: 1rem; }
  .menu-content { padding-bottom: 70px; }
  .menu-section { grid-template-columns: 1fr; gap: 34px; padding: 55px 0; }
  .menu-category h2 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .menu-category > p:last-child { margin-bottom: 0; }
  .menu-list > div { gap: 18px; }
  .menu-list dt { font-size: .9375rem; }
  .story-signature { margin-top: 34px; }
  .visit-banner { flex-direction: column; align-items: start; padding: 48px 6%; gap: 24px; }
  .shop-details > div { grid-template-columns: 76px 1fr; gap: 14px; }
  .site-footer { padding-top: 54px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 42px 22px; padding-bottom: 44px; }
  .footer-identity { grid-column: 1 / -1; }
  .footer-brand { font-size: 3.5rem; }
  .footer-hours .hours { font-size: 1.3rem; }
  .footer-bottom { flex-wrap: wrap; gap: 10px 24px; }
  .footer-bottom small:nth-child(2) { order: 3; width: 100%; }
}
@media (max-width: 380px) {
  .brand-caption { display: none; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-identity { grid-column: auto; }
  .hero h1 { font-size: 3.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Home: photographic hero, editorial cards, and the final visit invitation. */
.home-page .site-header { min-height: 112px; border-bottom: 0; }
.home-hero {
  width: 100%; max-width: none; margin: 0; padding: 92px max(8%, calc((100vw - 1220px) / 2));
  min-height: 690px; min-height: clamp(620px, 78svh, 860px);
  display: flex; align-items: center; position: relative; isolation: isolate;
  background: #302923; color: #fff9ef;
}
.home-hero .hero-image {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.home-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(29, 23, 18, .76) 0%, rgba(29, 23, 18, .60) 46%, rgba(29, 23, 18, .12) 100%);
}
.home-hero .hero-copy { max-width: 740px; }
.home-hero h1 { font-size: clamp(4.6rem, 8.2vw, 8.5rem); margin-bottom: 30px; }
.home-hero h1 em { color: inherit; }
.home-hero .eyebrow, .home-hero .lead { color: #fff9ef; }
.home-hero .eyebrow { margin-bottom: 28px; }
.home-hero .hero-japanese { margin-bottom: 18px; }
.home-hero .lead { margin-bottom: 22px; }
.home-hero .button { border-color: #e6d5c0; }
.home-hero .button:hover { color: #fff; border-color: #fff; }
.home-hero a:focus-visible { outline-color: #fff9ef; }
.hero-caption { position: absolute; bottom: 28px; right: 6%; font-size: .625rem; letter-spacing: .19em; }
.home-page .info-strip { padding-block: 25px; border-top: 0; }
.home-favorites .favorite-grid { gap: 24px; }
.home-favorites .favorite {
  background: #f0e9df; border: 1px solid var(--line); padding: 36px 30px;
  display: flex; flex-direction: column; position: relative;
}
.home-favorites .favorite::before { content: ''; position: absolute; top: -1px; left: 30px; width: 36px; height: 2px; background: var(--accent); }
.home-favorites .favorite h3 { font-size: 1.2rem; }
.home-favorites .favorite p { flex: 1; }
.home-favorites .price { display: block; padding-top: 22px; margin-top: 8px; border-top: 1px solid var(--line); }
.home-access {
  padding: 96px max(8%, calc((100vw - 1220px) / 2)); background: var(--surface);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 10%; align-items: center;
}
.home-access-copy > p:last-child { margin-bottom: 0; color: var(--muted); }
.home-access-details { border-left: 1px solid #cbbcac; padding-left: 48px; }
.home-access-details > p:not(.eyebrow) { font-size: .9375rem; }
.home-access-details .access-station { font-size: 1rem; margin-bottom: 16px; }
.home-access-details span { font-size: .875rem; }
@media (max-width: 1000px) {
  .home-hero { padding-inline: 6%; }
  .home-favorites .favorite { padding: 28px 22px; }
  .home-favorites .favorite h3 { font-size: 1.05rem; }
  .home-access { padding-inline: 6%; gap: 6%; }
  .home-access-details { padding-left: 30px; }
}
@media (max-width: 700px) {
  .home-page .site-header { min-height: 100px; }
  .home-hero { min-height: 640px; padding: 65px 6% 80px; }
  .home-hero .hero-image { object-position: 58% center; }
  .home-hero::before { background: rgba(29, 23, 18, .70); }
  .home-hero h1 { font-size: clamp(3.8rem, 15vw, 6rem); }
  .home-hero .hero-japanese { font-size: 1rem; }
  .home-hero .lead { font-size: .9375rem; max-width: 28em; }
  .hero-caption { left: 6%; right: auto; font-size: .55rem; letter-spacing: .12em; }
  .home-favorites .favorite-grid { gap: 18px; }
  .home-favorites .favorite { padding: 30px; }
  .home-favorites .favorite h3 { font-size: 1.125rem; }
  .home-access { grid-template-columns: 1fr; padding-block: 66px; gap: 38px; }
  .home-access-details { padding: 32px 0 0; border-left: 0; border-top: 1px solid #cbbcac; }
}

/* Keep supplied photographs uncropped and in their original proportions. */
.home-favorites .menu-photo, .home-intro .intro-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.home-favorites .menu-photo { margin-bottom: 28px; }
.home-intro .intro-photo { margin-bottom: 40px; }
.home-intro > div, .home-favorites .favorite { min-width: 0; }
@media (max-width: 700px) {
  .home-intro .intro-photo { margin-bottom: 30px; }
  .home-favorites .menu-photo { margin-bottom: 24px; }
}

/* Inner pages share the same quiet editorial rhythm as the homepage. */
[hidden] { display: none !important; }
.menu-filter { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 44px; }
.menu-filter button {
  padding: 12px 26px; min-height: 48px; border: 1px solid var(--line);
  background: transparent; color: var(--ink); cursor: pointer; font-size: .9375rem;
  transition: background .2s, color .2s, border-color .2s;
}
.menu-filter button:hover { border-color: var(--accent); }
.menu-filter button[aria-pressed='true'] { background: var(--accent); border-color: var(--accent); color: #fff9ef; }
.filter-status { font-size: .875rem; color: var(--muted); margin: 18px 0 0; }
.about-photo { max-width: 1220px; width: 84%; margin: 64px auto 0; }
.about-photo img { display: block; width: 100%; height: auto; }
.about-information { padding-top: 20px; }
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0; }
.facility-grid > div { background: var(--surface); padding: 30px; border-top: 1px solid var(--line); }
.facility-grid dt { font-size: .875rem; color: var(--accent); margin-bottom: 16px; }
.facility-grid dd { margin: 0; font-size: 1.125rem; }
.facility-grid dd span { display: block; font-size: .875rem; color: var(--muted); margin-top: 12px; }
.sample-note { font-size: .875rem; color: var(--muted); line-height: 2; margin: 24px 0; }
.map-section { padding-top: 0; }
.access-map { display: block; width: 100%; height: 480px; border: 1px solid var(--line); background: var(--surface); }
.map-caption { display: flex; justify-content: space-between; gap: 24px; align-items: start; margin-top: 20px; }
.map-caption p { font-size: .875rem; color: var(--muted); max-width: 42em; }
.map-caption a { flex-shrink: 0; }
@media (max-width: 1000px) {
  .about-photo { width: 88%; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .map-caption { flex-direction: column; gap: 0; }
}
@media (max-width: 700px) {
  .menu-filter { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 30px; }
  .menu-filter button { padding: 12px; }
  .about-photo { margin-top: 36px; }
  .facility-grid { grid-template-columns: 1fr; gap: 16px; }
  .facility-grid > div { padding: 26px; }
  .access-map { height: 380px; }
}

/* Optional motion: content remains visible even if scripting fails. */
@keyframes gentle-reveal {
  from { opacity: .65; translate: 0 18px; }
  to { opacity: 1; translate: 0 0; }
}
.reveal-enter { animation: gentle-reveal .7s cubic-bezier(.2,.65,.3,1) both; }
.button, .text-link, .menu-filter button, .back-to-top {
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.favorite, .facility-grid > div {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover, .text-link:hover, .menu-filter button:hover { transform: translateY(-2px); }
  .favorite:hover, .facility-grid > div:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 14px 28px -20px rgba(48,41,35,.38); }
  .back-to-top:hover { background: var(--accent); transform: translateY(-3px); }
}
.button:active, .menu-filter button:active, .back-to-top:active { transform: translateY(1px); }
.hamburger { display: flex; width: 24px; height: 20px; flex-direction: column; justify-content: space-between; }
.hamburger span { width: 24px; height: 2px; background: currentColor; transform-origin: center; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded='true'] .hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] .hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.back-to-top {
  position: fixed; right: max(24px, env(safe-area-inset-right)); bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 30; width: 54px; height: 60px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; background: var(--ink); color: var(--paper);
  border: 1px solid #9e8b79; box-shadow: 0 4px 18px rgba(48,41,35,.16); line-height: 1.4;
}
.back-to-top span:first-child { font-size: 1.3rem; }
.back-to-top span:last-child { font-size: .625rem; letter-spacing: .12em; }
.site-footer { padding-bottom: 104px; }
@media (max-width: 700px) {
  .js .nav-toggle { width: 48px; height: 48px; padding: 12px; justify-content: center; border: 1px solid var(--line); }
  .js .site-nav.is-open { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .js .site-nav a { padding: 16px 4px; min-height: 48px; font-size: .8125rem; }
  .back-to-top { right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); width: 48px; height: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .button:hover, .text-link:hover, .menu-filter button:hover, .favorite:hover, .facility-grid > div:hover, .back-to-top:hover { transform: none; }
}
