@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Noto+Sans+JP:wght@300;400;500&display=swap");

:root {
  --paper: #f5f0e7;
  --paper-light: #faf7f1;
  --ink: #2b231f;
  --ink-soft: #6f635c;
  --accent: #a65f49;
  --line: rgba(43, 35, 31, 0.18);
  --line-light: rgba(245, 240, 231, 0.2);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Noto Sans JP", "Yu Gothic", sans-serif;
  --content: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--sans); font-weight: 300; line-height: 2; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { margin-bottom: 0; font-family: var(--serif); font-weight: 500; line-height: 0.86; }
.section-shell { width: min(var(--content), calc(100% - 96px)); margin-inline: auto; }
.eyebrow { margin: 0 0 28px; color: var(--accent); font-size: 0.64rem; font-weight: 500; letter-spacing: 0.32em; line-height: 1.5; }
.heading-jp { margin: 20px 0 0; color: var(--ink-soft); font-size: 0.88rem; letter-spacing: 0.08em; }

/* Header */
.site-header { position: sticky; z-index: 20; top: 0; display: flex; min-height: 96px; align-items: center; justify-content: space-between; padding: 18px max(48px, calc((100vw - var(--content)) / 2)); border-bottom: 1px solid var(--line); background: rgba(245, 240, 231, 0.94); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: baseline; gap: 14px; }
.brand strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; letter-spacing: 0.13em; line-height: 1; }
.brand small { color: var(--ink-soft); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.16em; }
.global-nav { display: flex; align-items: center; gap: clamp(24px, 3.4vw, 56px); }
.global-nav a { position: relative; padding: 8px 0; font-family: var(--serif); font-size: 0.86rem; font-weight: 600; letter-spacing: 0.16em; }
.global-nav a::after { position: absolute; bottom: 1px; left: 0; width: 0; height: 1px; content: ""; background: var(--accent); transition: width 240ms ease; }
.global-nav a:hover::after, .global-nav a.is-current::after { width: 100%; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 1px; margin: 6px 0; background: var(--ink); transition: transform 200ms, opacity 200ms; }

/* Home hero */
.hero { position: relative; display: flex; min-height: calc(100svh - 96px); align-items: center; overflow: hidden; color: var(--paper); background-image: linear-gradient(90deg, rgba(31, 25, 22, .83) 0%, rgba(31, 25, 22, .64) 40%, rgba(31, 25, 22, .18) 72%, rgba(31, 25, 22, .05) 100%), url("images/hero-cafe.png"); background-position: center; background-size: cover; }
.hero::before { position: absolute; inset: 0; border: 1px solid rgba(245, 240, 231, .12); border-top: 0; content: ""; pointer-events: none; }
.hero-copy { position: relative; z-index: 2; width: min(var(--content), calc(100% - 96px)); margin-inline: auto; padding: clamp(90px, 10vw, 150px) 0 clamp(120px, 11vw, 170px); }
.hero h1 { max-width: 790px; margin: 0 0 42px; font-size: clamp(5rem, 9.2vw, 9.4rem); letter-spacing: -0.05em; text-shadow: 0 2px 24px rgba(20, 15, 13, .12); }
.hero .eyebrow { color: var(--paper); opacity: .78; }
.hero-japanese { margin: 0 0 18px; color: var(--paper); font-size: clamp(1rem, 1.35vw, 1.2rem); font-weight: 400; letter-spacing: 0.1em; }
.hero-copy > p:not(.eyebrow):not(.hero-japanese) { max-width: 510px; margin-bottom: 42px; color: rgba(245, 240, 231, .72); font-size: 0.84rem; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 34px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 0 30px; border: 1px solid var(--ink); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.12em; transition: color 200ms, background 200ms, transform 200ms; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--paper); border-color: var(--ink); background: var(--ink); }
.button-primary:hover { border-color: var(--accent); background: var(--accent); }
.button-light { color: var(--ink); border-color: var(--paper); background: var(--paper); }
.text-link { display: inline-block; padding-bottom: 3px; border-bottom: 1px solid var(--ink); font-size: 0.76rem; font-weight: 500; letter-spacing: 0.08em; }
.text-link span { display: inline-block; margin-left: 8px; transition: transform 200ms; }
.text-link:hover span { transform: translateX(5px); }
.hero .button-primary { color: var(--ink); border-color: var(--paper); background: var(--paper); }
.hero .button-primary:hover { color: var(--paper); border-color: var(--accent); background: var(--accent); }
.hero .text-link { border-color: rgba(245, 240, 231, .7); }
.hero-scroll { position: absolute; z-index: 2; bottom: 34px; left: max(48px, calc((100vw - var(--content)) / 2)); display: flex; align-items: center; gap: 14px; font-family: var(--serif); font-size: .66rem; letter-spacing: .24em; }
.hero-scroll i { position: relative; display: block; width: 72px; height: 1px; overflow: hidden; background: rgba(245, 240, 231, .42); }
.hero-scroll i::after { position: absolute; inset: 0; content: ""; background: var(--paper); transform: translateX(-100%); animation: scroll-line 2.4s ease-in-out infinite; }
.hero-hours { position: absolute; z-index: 2; right: max(48px, calc((100vw - var(--content)) / 2)); bottom: 28px; margin: 0; color: rgba(245, 240, 231, .55); font-family: var(--serif); font-size: .62rem; letter-spacing: .2em; }
@keyframes scroll-line { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }

/* Shared sections */
.section-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(64px, 10vw, 160px); }
.intro { padding-block: clamp(140px, 15vw, 230px); }
.section-number { margin-bottom: 46px; color: var(--accent); font-family: var(--serif); font-size: 1rem; letter-spacing: 0.16em; }
.intro h2, .section-heading h2, .story h2, .people h2, .shop-profile h2, .visit-note h2 { font-size: clamp(3.8rem, 7vw, 7.2rem); letter-spacing: -0.045em; }
.intro-copy { align-self: end; max-width: 590px; padding-bottom: 12px; }
.intro-copy p { margin-bottom: 42px; color: var(--ink-soft); font-size: 0.94rem; }
.featured { padding-bottom: clamp(140px, 15vw, 220px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 72px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; transition: background 240ms ease, transform 240ms ease, box-shadow 240ms ease; }
.menu-art { display: grid; height: 310px; place-items: center; overflow: hidden; color: var(--paper); font-family: var(--serif); transition: filter 300ms ease; }
.menu-art span { display: grid; width: 88px; height: 88px; place-items: center; border: 1px solid rgba(245,240,231,.55); border-radius: 50%; font-size: 1.3rem; letter-spacing: .08em; }
.coffee-art { background: radial-gradient(circle at 70% 24%, rgba(166,95,73,.72) 0 15%, transparent 15.5%), linear-gradient(145deg, #4b3c34, #796357); }
.cake-art { background: radial-gradient(circle at 25% 75%, rgba(245,240,231,.17) 0 18%, transparent 18.5%), linear-gradient(145deg, #5a4439, #a65f49); }
.toast-art { background: radial-gradient(circle at 68% 70%, rgba(245,240,231,.18) 0 21%, transparent 21.5%), linear-gradient(145deg, #6b5c50, #9b8977); }
.card-copy { min-height: 290px; padding: 38px 34px; }
.card-copy .tag { margin-bottom: 16px; color: var(--accent); font-family: var(--serif); font-size: .7rem; font-weight: 600; letter-spacing: .22em; }
.card-copy h3 { margin-bottom: 22px; font-family: var(--sans); font-size: 1rem; font-weight: 500; line-height: 1.5; }
.card-copy p { margin-bottom: 30px; color: var(--ink-soft); font-size: .82rem; }
.card-copy strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.home-message { position: relative; display: grid; min-height: 720px; place-items: center; overflow: hidden; color: var(--paper); text-align: center; background: var(--ink); }
.home-message::before, .home-message::after { position: absolute; width: 520px; height: 520px; border: 1px solid var(--line-light); border-radius: 50%; content: ""; }
.home-message::before { top: -330px; left: -140px; }
.home-message::after { right: -170px; bottom: -360px; }
.home-message-inner { position: relative; z-index: 1; padding: 110px 24px; }
.home-message h2 { margin-bottom: 32px; font-size: clamp(4.6rem, 10vw, 9rem); letter-spacing: -0.05em; }
.home-message .eyebrow { color: var(--accent); }
.message-japanese { margin-bottom: 8px; font-size: 1rem; letter-spacing: .12em; }
.home-message p:not(.eyebrow):not(.message-japanese) { margin-bottom: 40px; color: rgba(245,240,231,.6); font-size: .85rem; }

/* Inner page hero */
.page-hero { position: relative; padding: clamp(130px, 16vw, 240px) 48px clamp(110px, 13vw, 190px); overflow: hidden; text-align: center; background: var(--paper-light); }
.page-hero::before { position: absolute; top: 50%; left: 50%; width: min(62vw, 860px); aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; content: ""; transform: translate(-50%, -50%); opacity: .6; }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 40px; font-size: clamp(5.2rem, 14vw, 13rem); letter-spacing: -0.055em; }
.page-hero > p:last-child { margin: 0; color: var(--ink-soft); font-size: .86rem; letter-spacing: .04em; }
.page-hero-about, .page-hero-access { background: var(--paper-light); }

/* Menu */
.menu-section { padding-block: clamp(100px, 12vw, 180px) clamp(140px, 15vw, 220px); }
.filter-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 130px; }
.filter-button { min-width: 110px; padding: 10px 22px; border: 1px solid var(--line); border-radius: 0; background: transparent; cursor: pointer; font-family: var(--serif); font-size: .76rem; font-weight: 600; letter-spacing: .1em; transition: color 200ms, background 200ms, border 200ms; }
.filter-button:hover, .filter-button.is-active { color: var(--paper); border-color: var(--accent); background: var(--accent); }
.menu-groups { display: grid; gap: 150px; }
.menu-group { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(70px, 10vw, 160px); }
.menu-group[hidden] { display: none; }
.menu-group-heading { display: flex; align-items: flex-start; gap: 28px; }
.menu-group-heading > span { padding-top: 6px; color: var(--accent); font-family: var(--serif); font-size: .8rem; letter-spacing: .12em; }
.menu-group-heading h2 { font-size: clamp(3.8rem, 7vw, 7rem); letter-spacing: -.045em; }
.menu-list article { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; padding: 31px 0; border-bottom: 1px solid var(--line); transition: padding 220ms ease, background 220ms ease; }
.menu-list article:first-child { padding-top: 0; }
.menu-list h3 { margin-bottom: 10px; font-family: var(--sans); font-size: .96rem; font-weight: 500; line-height: 1.6; }
.menu-list p { margin: 0; color: var(--ink-soft); font-size: .8rem; }
.menu-list strong { flex: 0 0 auto; font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.menu-note { margin: 90px 0 0; color: var(--ink-soft); text-align: right; font-size: .72rem; }

/* About */
.story { align-items: center; padding-block: clamp(130px, 15vw, 230px); }
.story-art { position: relative; display: grid; min-height: 650px; place-items: center; overflow: hidden; color: var(--paper); background: #4a3c34; }
.story-art::before { position: absolute; width: 76%; aspect-ratio: 1; border: 1px solid rgba(245,240,231,.2); border-radius: 50%; content: ""; }
.story-art > span { position: absolute; top: 34px; left: 40px; font-family: var(--serif); font-size: 4.5rem; opacity: .18; }
.little-cup { position: relative; z-index: 1; width: 150px; height: 105px; border-radius: 5px 5px 50px 50px; background: #ddd2c2; box-shadow: 0 28px 45px rgba(10,8,7,.26); }
.little-cup::before { position: absolute; top: 24px; right: -45px; width: 54px; height: 48px; border: 11px solid #ddd2c2; border-left: 0; border-radius: 0 50% 50% 0; content: ""; }
.story-copy p:not(.eyebrow):not(.heading-jp) { color: var(--ink-soft); font-size: .9rem; }
.story-copy .heading-jp { margin: 28px 0 40px; }
.values-section { padding-block: clamp(130px, 15vw, 220px); background: var(--paper-light); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.value-card { min-height: 370px; padding: 44px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; transition: background 240ms ease, transform 240ms ease; }
.value-card span { color: var(--accent); font-family: var(--serif); font-size: .75rem; letter-spacing: .16em; }
.value-card h3 { margin: 95px 0 26px; font-family: var(--sans); font-size: 1.05rem; font-weight: 500; line-height: 1.5; }
.value-card p { color: var(--ink-soft); font-size: .82rem; }
.people { padding-block: clamp(140px, 16vw, 240px); }
.people-copy { align-self: end; }
.people-copy blockquote { margin: 0 0 48px; padding-left: 36px; border-left: 1px solid var(--accent); font-family: var(--sans); font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 300; line-height: 2.2; }
.people-copy p { margin-bottom: 3px; color: var(--ink-soft); font-size: .8rem; }
.shop-profile { padding-block: clamp(140px, 16vw, 240px); }
.profile-heading { margin-bottom: 80px; }
.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.profile-item { display: flex; min-height: 310px; align-items: flex-start; flex-direction: column; padding: 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 240ms ease, transform 240ms ease; }
.profile-item > span { color: var(--accent); font-family: var(--serif); font-size: .66rem; font-weight: 600; letter-spacing: .22em; }
.profile-item > strong { margin: auto 0 26px; font-family: var(--serif); font-size: clamp(3.2rem, 5vw, 5rem); font-weight: 500; letter-spacing: -.045em; line-height: .8; }
.profile-item > p { margin: 0; color: var(--ink-soft); font-size: .78rem; }
.fiction-note { margin: 36px 0 0; color: var(--ink-soft); font-size: .7rem; text-align: right; }

/* Access */
.access-section { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(70px, 10vw, 150px); align-items: center; padding-block: clamp(130px, 15vw, 220px); }
.osm-map { overflow: hidden; border: 1px solid var(--line); background: var(--paper-light); }
.osm-map iframe { display: block; width: 100%; height: 650px; border: 0; filter: grayscale(.9) sepia(.12) contrast(.92); }
.osm-map > a { display: flex; min-height: 52px; align-items: center; justify-content: space-between; padding: 0 20px; border-top: 1px solid var(--line); font-family: var(--serif); font-size: .7rem; font-weight: 600; letter-spacing: .14em; }
.osm-map > a span { font-size: 1rem; transition: transform 200ms; }
.osm-map > a:hover span { transform: translate(3px, -3px); }
.access-details h2 { margin-bottom: 0; font-size: clamp(3.6rem, 6.5vw, 6.8rem); letter-spacing: -.05em; }
.access-details .heading-jp { margin-bottom: 46px; }
.access-details dl { margin: 0; }
.access-details dl > div { display: grid; grid-template-columns: 110px 1fr; padding: 23px 0; border-bottom: 1px solid var(--line); }
.access-details dt { font-size: .78rem; font-weight: 500; }
.access-details dd { margin: 0; color: var(--ink-soft); font-size: .84rem; }
.access-details dd a { border-bottom: 1px solid var(--ink-soft); }
.access-details small { font-size: .74rem; }
.access-note { margin-top: 28px; padding: 18px 20px; border-left: 2px solid var(--accent); color: var(--ink-soft); background: rgba(166, 95, 73, .05); font-size: .7rem; }
.access-note strong { color: var(--ink); font-weight: 500; }
.visit-note { padding-bottom: clamp(140px, 15vw, 220px); }
.visit-note > div:first-child { margin-bottom: 70px; }
.note-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.note-grid article { min-height: 245px; padding: 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 240ms ease, transform 240ms ease; }
.note-grid h3 { margin-bottom: 28px; font-family: var(--sans); font-size: .98rem; font-weight: 500; line-height: 1.5; }
.note-grid p { margin: 0; color: var(--ink-soft); font-size: .8rem; }

/* Footer */
.site-footer { padding: 100px max(48px, calc((100vw - var(--content)) / 2)) 32px; color: var(--paper); background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1.5fr .8fr .55fr; gap: 70px; padding-bottom: 95px; }
.footer-logo { display: inline-block; margin-bottom: 22px; font-family: var(--serif); font-size: clamp(3.4rem, 6vw, 6.8rem); font-weight: 500; letter-spacing: -.04em; line-height: .8; }
.footer-tagline { margin: 0; color: rgba(245,240,231,.55); font-size: .8rem; letter-spacing: .08em; }
.footer-label { margin-bottom: 23px; color: var(--accent); font-family: var(--serif); font-size: .66rem; font-weight: 600; letter-spacing: .24em; }
.footer-hours > p:not(.footer-label) { margin-bottom: 2px; font-family: var(--serif); font-size: 1.35rem; letter-spacing: .08em; }
.footer-hours small { color: rgba(245,240,231,.5); font-size: .7rem; letter-spacing: .06em; }
.footer-social { display: flex; align-items: flex-start; flex-direction: column; }
.footer-social a { padding: 2px 0; border-bottom: 1px solid transparent; font-family: var(--serif); font-size: 1rem; letter-spacing: .04em; }
.footer-social a:hover { border-color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 26px; border-top: 1px solid var(--line-light); color: rgba(245,240,231,.42); font-family: var(--serif); font-size: .66rem; letter-spacing: .14em; }
.footer-bottom p { margin: 0; }

/* Motion: content stays visible unless JavaScript opts it into animation */
.reveal { opacity: 1; transform: none; }
.reveal.will-reveal { opacity: 0; transform: translateY(28px); transition: opacity 720ms ease var(--reveal-delay, 0ms), transform 720ms ease var(--reveal-delay, 0ms); }
.reveal.will-reveal.is-visible { opacity: 1; transform: none; }
.back-to-top { position: fixed; z-index: 30; right: 28px; bottom: 28px; display: grid; width: 62px; height: 62px; padding: 8px; place-content: center; border: 1px solid var(--line); border-radius: 50%; opacity: 0; color: var(--paper); background: var(--ink); box-shadow: 0 12px 32px rgba(43, 35, 31, .18); cursor: pointer; pointer-events: none; transform: translateY(16px); transition: opacity 220ms ease, transform 220ms ease, color 200ms ease, background 200ms ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top span { display: block; margin-bottom: -2px; font-size: 1rem; line-height: 1; }
.back-to-top small { display: block; font-family: var(--serif); font-size: .54rem; font-weight: 600; letter-spacing: .15em; line-height: 1; }

@media (hover: hover) {
  .feature-card:hover { z-index: 1; background: var(--paper-light); box-shadow: 0 22px 50px rgba(43, 35, 31, .1); transform: translateY(-8px); }
  .feature-card:hover .menu-art { filter: brightness(.92); }
  .value-card:hover, .profile-item:hover, .note-grid article:hover { background: rgba(166, 95, 73, .055); transform: translateY(-5px); }
  .menu-list article:hover { padding-right: 12px; padding-left: 12px; background: rgba(166, 95, 73, .045); }
  .back-to-top:hover { color: var(--paper); background: var(--accent); }
}

a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

@media (max-width: 980px) {
  .site-header { min-height: 82px; padding-inline: 28px; }
  .nav-toggle { display: block; }
  .nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .global-nav { position: fixed; inset: 82px 0 0; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 28px; background: var(--paper); }
  .global-nav.is-open { display: flex; }
  .global-nav a { font-size: 1.7rem; }
  .hero { min-height: calc(100svh - 82px); }
  .hero-copy { min-height: 0; }
  .section-grid, .menu-group, .access-section { grid-template-columns: 1fr; }
  .feature-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:last-child, .value-card:last-child { grid-column: 1 / -1; }
  .story-art { min-height: 560px; }
  .story-copy { padding-top: 20px; }
  .profile-grid { grid-template-columns: repeat(2, 1fr); }
  .osm-map iframe { height: 540px; }
  .footer-main { grid-template-columns: 1.3fr 1fr; }
  .footer-social { grid-column: 2; }
}

@media (max-width: 640px) {
  .section-shell { width: calc(100% - 36px); }
  .site-header { min-height: 74px; padding-inline: 18px; }
  .brand { gap: 9px; }
  .brand strong { font-size: 1.25rem; }
  .brand small { font-size: .52rem; }
  .global-nav { inset: 74px 0 0; }
  .hero { min-height: calc(100svh - 74px); background-position: 62% center; }
  .hero::after { position: absolute; inset: 0; content: ""; background: rgba(31, 25, 22, .18); }
  .hero-copy { z-index: 2; width: calc(100% - 36px); min-height: 0; padding: 80px 0 125px; }
  .hero h1 { font-size: clamp(3.9rem, 19vw, 5.3rem); }
  .hero-hours { display: none; }
  .hero-scroll { left: 18px; bottom: 26px; }
  .intro, .story, .people, .access-section { padding-block: 110px; }
  .intro h2, .section-heading h2, .story h2, .people h2, .shop-profile h2, .visit-note h2 { font-size: 3.65rem; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 50px; }
  .feature-grid, .values-grid, .note-grid { grid-template-columns: 1fr; }
  .feature-card:last-child, .value-card:last-child { grid-column: auto; }
  .menu-art { height: 270px; }
  .home-message { min-height: 620px; }
  .home-message h2 { font-size: 4.5rem; }
  .page-hero { padding: 110px 20px 100px; }
  .page-hero h1 { margin-bottom: 30px; font-size: clamp(4.6rem, 25vw, 7rem); }
  .page-hero::before { width: 110vw; }
  .menu-section { padding-block: 90px 120px; }
  .filter-buttons { justify-content: flex-start; margin-bottom: 90px; }
  .filter-button { min-width: 0; padding-inline: 17px; }
  .menu-groups { gap: 110px; }
  .menu-group { gap: 50px; }
  .menu-group-heading h2 { font-size: 4rem; }
  .menu-list p { padding-right: 8px; }
  .menu-note { margin-top: 70px; text-align: left; }
  .story-art { min-height: 460px; }
  .values-section { padding-block: 110px; }
  .value-card { min-height: 300px; }
  .value-card h3 { margin-top: 65px; }
  .people-copy blockquote { padding-left: 22px; }
  .shop-profile { padding-block: 110px; }
  .profile-heading { margin-bottom: 55px; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-item { min-height: 250px; }
  .fiction-note { text-align: left; }
  .osm-map iframe { height: 410px; }
  .access-details h2 { font-size: 3.7rem; }
  .access-details dl > div { grid-template-columns: 85px 1fr; }
  .visit-note { padding-bottom: 120px; }
  .note-grid article { min-height: auto; }
  .site-footer { padding: 80px 24px 26px; }
  .footer-main { grid-template-columns: 1fr; gap: 55px; padding-bottom: 70px; }
  .footer-social { grid-column: auto; }
  .footer-logo { font-size: 4rem; }
  .back-to-top { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .reveal, .reveal.will-reveal { opacity: 1; transform: none; }
  .hero-scroll i::after { animation: none; transform: none; }
}
