@charset "UTF-8";

:root {
  --paper: #f3eee3;
  --paper-deep: #e8dfcf;
  --surface: #fffdf8;
  --ink: #282b28;
  --ink-soft: #575a54;
  --moss: #344a3b;
  --moss-deep: #22332a;
  --copper: #985039;
  --copper-light: #bc765a;
  --line: rgba(40, 43, 40, 0.2);
  --line-light: rgba(255, 253, 248, 0.25);
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --shadow: 0 24px 70px rgba(37, 41, 35, 0.12);
  --shell: 74rem;
  --header-height: 4.75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  min-width: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-break: strict;
  line-height: 1.85;
  overflow-wrap: break-word;
  text-wrap: pretty;
  word-break: normal;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea {
  font-family: var(--font-sans);
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3 {
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.keep-together {
  display: inline-block;
}

.desktop-break {
  display: none;
}

button,
input,
textarea {
  color: inherit;
  font-size: 1rem;
}

button,
summary,
a,
label,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
	box-shadow: 0 0 0 6px #2b2926;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border: 2px solid var(--surface);
  background: var(--moss-deep);
  color: var(--surface);
  font-weight: 700;
}

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

.sample-notice {
  position: relative;
  z-index: 20;
  padding: 0.55rem 1rem;
  background: var(--ink);
  color: var(--surface);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.55;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 238, 227, 0.96);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2rem), 82rem);
  min-height: var(--header-height);
  margin-inline: auto;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  flex: 0 1 auto;
  min-width: 0;
  flex-direction: column;
  color: var(--ink);
  line-height: 1.1;
  text-decoration: none;
}

.site-brand__ja {
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.site-brand__en {
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
}

.mobile-menu {
  position: relative;
  flex: 0 0 auto;
}

.mobile-menu summary {
  display: grid;
  width: 3.5rem;
  min-height: 3rem;
  cursor: pointer;
  list-style: none;
  place-items: center;
  gap: 0.15rem;
  border: 1px solid var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu__icon,
.mobile-menu__icon::before {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.mobile-menu__icon::before {
  transform: translateY(0.3rem);
}

.mobile-menu[open] .mobile-menu__icon {
  transform: translateY(0.15rem) rotate(45deg);
}

.mobile-menu[open] .mobile-menu__icon::before {
  transform: rotate(90deg);
}

.mobile-menu__panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  display: grid;
	width: min(20rem, calc(100vw - 2rem));
	max-height: calc(100svh - var(--header-height) - 2rem);
	overflow-y: auto;
	overscroll-behavior: contain;
  padding: 0.6rem 1rem;
  border: 1px solid var(--line-light);
  background: var(--moss-deep);
  box-shadow: var(--shadow);
  color: var(--surface);
}

.mobile-menu__panel a {
  display: flex;
  align-items: center;
  min-height: 3.15rem;
  gap: 0.9rem;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--font-serif);
  text-decoration: none;
  white-space: nowrap;
}

.mobile-menu__panel a:last-child {
  border-bottom: 0;
}

.mobile-menu__panel span {
  color: #d6b29f;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.hero {
  padding: clamp(1rem, 3vw, 2.5rem);
  background: var(--paper);
}

.hero__layout {
  display: grid;
  width: min(100%, 90rem);
  margin-inline: auto;
  box-shadow: var(--shadow);
}

.hero__media {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: #c8c1b4;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero__photo-note {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.45rem 0.7rem;
  background: rgba(255, 253, 248, 0.9);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 8vw, 4.75rem) clamp(1.4rem, 6vw, 4rem);
  background: var(--moss);
  color: var(--surface);
}

.hero__issue {
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(2.1rem, 7vw, 4.5rem);
  color: #e1c2ad;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 8vw, 4.15rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.4;
  text-wrap: pretty;
}

.hero__copy > p:not(.hero__issue) {
  max-width: 34rem;
  margin-top: 1.6rem;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.93rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 3.25rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button--paper {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--moss-deep);
}

.button--paper:hover {
  background: transparent;
  color: var(--surface);
}

.button--copper {
  border-color: var(--copper);
  background: var(--copper);
  color: #fff;
}

.button--copper:hover {
  border-color: #793b29;
  background: #793b29;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.75rem;
  gap: 0.55rem;
  border-bottom: 1px solid currentColor;
  color: var(--moss-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.text-link--light {
  color: var(--surface);
}

.hero__hours {
  display: grid;
  margin-top: clamp(2.5rem, 8vw, 5rem);
  gap: 1rem;
  border-top: 1px solid var(--line-light);
  padding-top: 1.25rem;
}

.hero__hours div {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 0.75rem;
}

.hero__hours dt {
  color: #e1c2ad;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.hero__hours dd {
  color: rgba(255, 253, 248, 0.85);
  font-size: 0.78rem;
  line-height: 1.6;
}

.hero__hours small {
  color: rgba(255, 253, 248, 0.62);
}

.section {
  padding-block: clamp(5.25rem, 11vw, 9.5rem);
}

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

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

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

.section--event,
.section--contact {
  background: var(--moss-deep);
  color: var(--surface);
}

.section--menu {
  border-block: 1px solid var(--line);
  background-color: var(--paper-deep);
  background-image: linear-gradient(rgba(40, 43, 40, 0.035) 1px, transparent 1px);
  background-size: 100% 2rem;
}

.section-heading {
  display: grid;
  margin-bottom: clamp(3.25rem, 7vw, 6.5rem);
  gap: 1.4rem;
}

.section-heading__index,
.eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading__index {
  color: var(--copper);
}

.eyebrow {
  margin-bottom: 1rem;
  color: #657064;
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 7.2vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.35;
}

.section-heading--light .section-heading__index,
.section-heading--light .eyebrow {
  color: #d6a98f;
}

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.28rem, 3.5vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.85;
}

.concept-grid {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.editorial-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 54% center;
}

figcaption {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

figcaption > span {
  color: var(--copper);
}

.concept-copy {
  display: grid;
  gap: 1.4rem;
}

.concept-copy > p:not(.lead) {
  color: var(--ink-soft);
}

.concept-copy blockquote {
  margin-top: 1rem;
  padding: 1.4rem 0 0 1.25rem;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--copper);
  font-family: var(--font-serif);
}

.concept-copy blockquote p {
  font-size: 1.1rem;
}

.concept-copy cite {
  display: block;
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.12em;
}

.books-layout {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.books-layout__photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 62% center;
}

.books-layout figcaption {
  color: rgba(255, 253, 248, 0.58);
}

.books-layout__copy {
  display: grid;
  gap: 1.4rem;
}

.books-layout__copy > p:not(.lead, .small-note) {
  color: rgba(255, 253, 248, 0.7);
}

.index-list {
  margin: 1rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.index-list li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  padding: 1rem 0;
  gap: 0 0.75rem;
  border-bottom: 1px solid var(--line-light);
}

.index-list li > span {
  grid-row: span 2;
  color: #d6a98f;
  font-size: 0.62rem;
  font-weight: 800;
}

.index-list strong {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  overflow-wrap: normal;
  word-break: normal;
}

.index-list small {
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.72rem;
}

.small-note {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.7;
}

.section--ink .small-note,
.section--event .small-note,
.section--contact .small-note {
  color: rgba(255, 253, 248, 0.58);
}

.coffee-story {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.coffee-story__media {
  display: grid;
  gap: 1rem;
}

.coffee-story__main img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 61% center;
}

.coffee-story__sub {
  width: 78%;
  margin: -3.25rem 0 0 auto;
  padding: 0.45rem 0 0 0.45rem;
  background: var(--surface);
}

.coffee-story__sub img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.coffee-story__copy {
  display: grid;
  gap: 1.4rem;
}

.coffee-story__copy > p:not(.lead) {
  color: var(--ink-soft);
}

.brew-notes {
  margin-block: 1rem;
  border-top: 1px solid var(--line);
}

.brew-notes div {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}

.brew-notes dt {
  color: var(--copper);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.brew-notes dd {
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

.space-photos {
  display: grid;
  gap: 1.25rem;
}

.space-photos img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.space-photos__wide img {
  object-position: center;
}

.space-photos__meeting img {
  object-position: 48% center;
}

.space-options {
  display: grid;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  border-top: 1px solid var(--line);
}

.space-options article {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.space-options__number {
  margin-bottom: 1.2rem;
  color: var(--copper);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.space-options h3 {
  margin-bottom: 0.7rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
}

.space-options article > p:not(.space-options__number) {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.space-options small {
  display: block;
  margin-top: 1rem;
  color: var(--moss);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.menu-intro {
  display: grid;
  align-items: end;
  margin-bottom: 3rem;
  gap: 1.5rem;
}

.menu-intro > p:first-child {
  max-width: 42rem;
  color: var(--ink-soft);
}

.menu-intro__mark {
  color: rgba(40, 43, 40, 0.14);
  font-family: var(--font-serif);
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 0.8;
  text-align: right;
}

.menu-grid {
  display: grid;
  gap: 3rem;
}

.menu-group {
  border-top: 3px solid var(--ink);
}

.menu-group__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1rem 0 1.5rem;
  gap: 1rem;
}

.menu-group__heading p {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
}

.menu-group h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.menu-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 1rem 0;
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.menu-list dt {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}

.menu-list dt small {
  display: block;
  margin-top: 0.22rem;
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
}

.menu-list dd {
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.section--menu > .shell > .small-note {
  margin-top: 2.5rem;
}

.gallery-grid {
  display: grid;
  gap: clamp(2rem, 7vw, 6rem);
}

.gallery-grid img {
  object-fit: cover;
}

.gallery-grid__owner img {
  aspect-ratio: 4 / 4.6;
  object-position: 48% center;
}

.gallery-grid__reading img {
  aspect-ratio: 4 / 3;
  object-position: 40% center;
}

.gallery-grid figcaption {
  display: grid;
  gap: 0.3rem;
}

.gallery-grid figcaption strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
}

.event-photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.event-photo figcaption {
  color: rgba(255, 253, 248, 0.62);
}

.event-content {
  display: grid;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  gap: clamp(2.5rem, 7vw, 6rem);
}

.event-content__intro {
  display: grid;
  align-content: start;
  gap: 1.4rem;
}

.event-content__intro > p:not(.lead) {
  color: rgba(255, 253, 248, 0.7);
}

.event-content__intro .button {
  width: fit-content;
  margin-top: 1rem;
}

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

.event-specs div {
  display: grid;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-light);
  gap: 0.55rem;
}

.event-specs dt {
  color: #d6a98f;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.event-specs dd {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.82rem;
}

.event-specs strong {
  display: block;
  color: var(--surface);
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.access-grid {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
}

.access-info__name {
  padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--ink);
}

.access-info__name > p:last-child {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.info-list > div {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  padding: 1.15rem 0;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  color: var(--copper);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.info-list dd {
  font-size: 0.88rem;
}

.info-list small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.access-info__note {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.map-placeholder {
  position: relative;
  min-height: 23rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background-color: #e2e0d5;
  background-image:
    linear-gradient(33deg, transparent 48%, rgba(52, 74, 59, 0.15) 49%, rgba(52, 74, 59, 0.15) 51%, transparent 52%),
    linear-gradient(91deg, transparent 47%, rgba(40, 43, 40, 0.09) 48%, rgba(40, 43, 40, 0.09) 51%, transparent 52%),
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 3rem 3rem, 3rem 3rem;
}

.map-placeholder > p {
  position: absolute;
  right: 1rem;
  bottom: 0.7rem;
  color: rgba(40, 43, 40, 0.45);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.map-placeholder__station {
  position: absolute;
  top: 18%;
  left: 12%;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--ink);
  background: var(--surface);
  font-family: var(--font-serif);
  font-size: 0.78rem;
}

.map-placeholder__route {
  position: absolute;
  top: 31%;
  left: 25%;
  width: 52%;
  height: 38%;
  border-right: 3px dotted var(--copper);
  border-bottom: 3px dotted var(--copper);
  transform: skewX(-22deg);
}

.map-placeholder__pin {
  position: absolute;
  right: 10%;
  bottom: 16%;
  display: grid;
  justify-items: center;
  padding: 0.85rem 1rem;
  background: var(--moss-deep);
  box-shadow: 0 12px 30px rgba(40, 43, 40, 0.2);
  color: var(--surface);
  line-height: 1.4;
}

.map-placeholder__pin i {
  width: 0.65rem;
  height: 0.65rem;
  margin-bottom: 0.4rem;
  border: 2px solid #e3b79f;
  border-radius: 50%;
}

.map-placeholder__pin strong {
  font-family: var(--font-serif);
  font-size: 0.9rem;
}

.map-placeholder__pin small {
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.6rem;
}

.contact-layout {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 1.4rem;
}

.contact-copy > p:not(.lead) {
  color: rgba(255, 253, 248, 0.7);
}

.contact-copy dl {
  margin-top: 1rem;
  border-top: 1px solid var(--line-light);
}

.contact-copy dl div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-copy dt {
  color: #d6a98f;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.contact-copy dd {
  margin-top: 0.3rem;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.8rem;
}

.contact-form {
  min-width: 0;
  padding: clamp(1.35rem, 5vw, 3rem);
  background: var(--surface);
  color: var(--ink);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.contact-form__demo {
  margin-top: 0.6rem;
  padding: 0.7rem 0.8rem;
  border-left: 3px solid var(--copper);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.contact-form fieldset {
  min-width: 0;
  margin: 1.75rem 0;
  padding: 0;
  border: 0;
}

.contact-form legend,
.field-grid label > span,
.field-message > span {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form label small {
  margin-left: 0.35rem;
  color: var(--copper);
  font-family: var(--font-sans);
  font-size: 0.62rem;
}

.choice-grid {
  display: grid;
  gap: 0.5rem;
}

.choice-grid label {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  cursor: pointer;
  gap: 0.55rem;
  font-size: 0.8rem;
}

.choice-grid input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  accent-color: var(--moss);
}

.field-grid {
  display: grid;
  gap: 1.25rem;
}

.field-grid label,
.field-message {
  display: block;
  min-width: 0;
}

.field-message {
  margin-top: 1.25rem;
}

.field-grid input,
.field-message textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
}

.field-grid input {
  min-height: 3rem;
  padding: 0.7rem 0.8rem;
}

.field-message textarea {
  display: block;
  resize: vertical;
  padding: 0.8rem;
  line-height: 1.7;
}

.field-grid input::placeholder,
.field-message textarea::placeholder {
	color: #666861;
  opacity: 1;
}

.contact-form__button {
  width: 100%;
  margin-top: 1.5rem;
}

.site-footer {
  background: var(--ink);
  color: var(--surface);
}

.site-footer__main {
  display: grid;
  padding-block: 4rem;
  gap: 3rem;
}

.site-brand--footer {
  color: var(--surface);
}

.site-brand--footer .site-brand__en {
  color: rgba(255, 253, 248, 0.58);
}

.site-footer__main > div > p {
  margin-top: 1.2rem;
  color: rgba(255, 253, 248, 0.58);
  font-family: var(--font-serif);
  font-size: 0.82rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
}

.footer-nav a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.sample-footer {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-light);
  background: #1d201e;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.65rem;
}

.sample-footer__inner,
.sample-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sample-footer a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.75rem;
}

.sample-footer > p {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 1rem auto 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
}

@media (min-width: 36rem) {
  .hero__hours {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sample-footer__inner,
  .sample-footer nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sample-footer__inner {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .sample-footer nav {
    gap: 1.25rem;
  }
}

@media (min-width: 48rem) {
  .desktop-break {
    display: inline;
  }

  .shell {
    width: min(calc(100% - 4rem), var(--shell));
  }

  .site-header__inner {
    width: min(calc(100% - 4rem), 82rem);
  }

  .section-heading h2 {
    letter-spacing: 0.035em;
    line-height: 1.45;
  }

  .concept-grid,
  .books-layout,
  .coffee-story,
  .event-content,
  .access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-copy,
  .books-layout__copy {
    padding-top: 3rem;
  }

  .coffee-story__sub {
    width: 58%;
    margin-top: -5rem;
  }

  .space-photos {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    align-items: end;
  }

  .space-photos__wide img {
    aspect-ratio: 16 / 10;
  }

  .space-photos__meeting {
    margin-bottom: -3rem;
  }

  .space-photos__meeting img {
    aspect-ratio: 4 / 5;
  }

  .space-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .space-options article {
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--line);
  }

  .space-options article:first-child {
    padding-left: 0;
  }

  .space-options article:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .menu-intro {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .menu-group:last-child {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
    align-items: end;
  }

  .gallery-grid__reading {
    margin-bottom: 5rem;
  }

  .gallery-grid__reading img {
    aspect-ratio: 16 / 10;
  }

  .event-specs div {
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: 1rem;
  }

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

  .site-footer__main {
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
    align-items: end;
  }
}

@media (min-width: 64rem) {
  :root {
    --header-height: 5.25rem;
  }

  .mobile-menu {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
  }

  .section-heading {
    grid-template-columns: 8rem minmax(0, 1fr);
  }

  .desktop-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    white-space: nowrap;
  }

  .desktop-nav a:hover {
    color: var(--copper);
  }

  .desktop-nav__contact {
    padding-inline: 1rem;
    border: 1px solid var(--ink);
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(25rem, 1fr);
    min-height: min(45rem, calc(100svh - 8rem));
  }

  .hero__media {
    aspect-ratio: auto;
  }

  .hero__copy {
    padding-inline: clamp(2rem, 4vw, 3.5rem);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  }

  .hero__hours {
    grid-template-columns: minmax(0, 1fr);
  }

  .books-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  }

  .coffee-story {
    grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-group:last-child {
    grid-column: auto;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.7fr) minmax(30rem, 1.3fr);
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 75rem) {
  .hero__hours {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 90rem) {
  .hero {
    padding-block: 2.5rem 4rem;
  }

  .section-heading {
    grid-template-columns: 16rem minmax(0, 1fr);
  }
}

@media (max-width: 22.5rem) {
  .site-brand__ja {
    font-size: 1.16rem;
  }

  .site-brand__en {
    font-size: 0.49rem;
    letter-spacing: 0.11em;
  }

  .hero__copy {
    padding-inline: 1.15rem;
  }

  .section-heading h2 {
    font-size: clamp(1.6rem, calc(6vw + 0.4rem), 1.75rem);
    letter-spacing: 0.005em;
  }

  .button,
  .event-content__intro .button {
    width: 100%;
  }

  .contact-form__button {
    padding-inline: 0.75rem;
    font-size: 0.94rem;
  }

  .info-list > div,
  .brew-notes div {
    grid-template-columns: 4.25rem minmax(0, 1fr);
  }
}

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

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