:root {
  --ink: #171310;
  --paper: #f4efe4;
  --paper-warm: #e6decf;
  --cream: #faf7f0;
  --stone: #72685f;
  --stone-light: #b7aea4;
  --matcha: #738163;
  --matcha-dark: #56634b;
  --matcha-light: #a9b29b;
  --moon: #25221f;
  --white: #fffdf8;
  --shadow: 0 20px 55px rgba(32, 27, 23, 0.11);
  --shell: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 5%, rgba(255,255,255,.55), transparent 27rem),
    var(--paper);
  font-family: "DM Mono", ui-monospace, monospace;
  font-size: 17px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img {
  max-width: 100%;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3000;
  padding: 10px 14px;
  transform: translateY(-160%);
  color: var(--paper);
  background: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  color: var(--paper);
  background: rgba(23, 19, 16, .94);
  border-bottom: 1px solid rgba(244, 239, 228, .14);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand__kanji {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  letter-spacing: .1em;
}

.brand__name {
  color: #d8d0c3;
  font-family: "Shippori Mincho", serif;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
}

.site-nav a,
.language-button {
  color: #d8d0c3;
  font-size: 13px;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

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

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

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8f877e;
}

.language-button {
  padding: 5px 2px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: none;
  cursor: pointer;
}

.language-button.is-active {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.hero {
  min-height: min(820px, calc(100svh - 72px));
  position: relative;
  display: grid;
  align-items: end;
  overflow: clip;
  color: var(--white);
  background: var(--ink);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.86) contrast(.95) brightness(.78);
  transform: scale(1.015);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(20,17,14,.8) 0%, rgba(20,17,14,.45) 48%, rgba(20,17,14,.12) 100%),
    linear-gradient(0deg, rgba(20,17,14,.85) 0%, transparent 62%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(70px, 11vw, 132px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--stone);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .20em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d7cfbf;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero__lead {
  max-width: 720px;
  margin: 28px 0 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1.55;
}

.hero__support {
  max-width: 640px;
  margin: 18px 0 0;
  color: #ddd6c9;
  font-size: 16px;
  letter-spacing: .01em;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 21px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .13em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--solid {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: var(--matcha-dark);
  border-color: var(--matcha-dark);
}

.button--paper {
  color: var(--ink);
  background: rgba(250,247,240,.94);
  border-color: rgba(250,247,240,.94);
}

.button--paper:hover,
.button--paper:focus-visible {
  background: var(--paper);
  border-color: var(--paper);
}

.button--outline {
  color: var(--ink);
  border-color: var(--stone-light);
  background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--ink);
  background: rgba(250,247,240,.55);
}

.status-strip {
  color: var(--paper);
  background: var(--matcha-dark);
  border-top: 1px solid rgba(255,255,255,.12);
}

.status-strip__grid {
  min-height: 128px;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(250px, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding-block: 25px;
}

.status-strip .section-kicker {
  margin-bottom: 3px;
  color: #c7cfbd;
}

.status-line {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
}

.status-next {
  margin: 5px 0 0;
  color: #d1d8ca;
  font-size: 15px;
  line-height: 1.6;
}

.status-strip__notice {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding-left: 25px;
  border-left: 1px solid rgba(255,255,255,.22);
}

.status-strip__notice p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.status-strip__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: #f0d18a;
  box-shadow: 0 0 0 5px rgba(240,209,138,.12);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e5e9e0;
  font-size: 13px;
  letter-spacing: .10em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: #fff;
}

.section {
  padding-block: clamp(76px, 10vw, 138px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 50px;
}

.section-heading--compact {
  max-width: 850px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .65fr);
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.atmosphere-section h2,
.mondstube-section h2,
.visit-section h2 {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(34px, 5vw, 59px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.13;
  text-wrap: balance;
}

.section-heading p:not(.section-kicker),
.atmosphere-section p:not(.section-kicker),
.mondstube-section p:not(.section-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: #5f564e;
  line-height: 1.9;
}

.cafe-section {
  padding-bottom: clamp(88px, 11vw, 150px);
}

.cafe-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.note-card {
  min-height: 220px;
  position: relative;
  padding: 29px 27px;
  overflow: hidden;
  background: rgba(250,247,240,.75);
  border: 1px solid var(--paper-warm);
}

.note-card__mark {
  position: absolute;
  top: -12px;
  right: 9px;
  color: rgba(115,129,99,.13);
  font-family: "Shippori Mincho", serif;
  font-size: 112px;
  line-height: 1;
}

.note-card h3,
.feature-card h3,
.hours-card h3,
.directions-card h3,
.before-card h3 {
  position: relative;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

.note-card p {
  position: relative;
  margin: 16px 0 0;
  color: #625950;
  font-size: 16px;
  line-height: 1.75;
}


.feature-section {
  background: var(--cream);
  border-block: 1px solid var(--paper-warm);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 330px 1fr;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--paper-warm);
}

.feature-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-card:nth-child(1) img {
  object-position: center 46%;
}

.feature-card:nth-child(3) img {
  object-position: center 58%;
}

.feature-card__body {
  padding: 29px 28px 34px;
}

.feature-card__number {
  margin: 0 0 15px;
  color: var(--matcha);
  font-size: 13px;
  letter-spacing: .18em;
}

.feature-card h3 {
  font-size: 30px;
}

.feature-card__body > p:last-child {
  margin: 17px 0 0;
  color: #625950;
  font-size: 16px;
  line-height: 1.75;
}

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

.atmosphere-section__inner {
  display: grid;
  grid-template-columns: .42fr 1fr;
  align-items: center;
  gap: clamp(35px, 8vw, 120px);
}

.atmosphere-section__kanji {
  margin: 0;
  color: rgba(244,239,228,.13);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(120px, 22vw, 270px);
  letter-spacing: -.08em;
  line-height: .75;
}

.atmosphere-section .section-kicker {
  color: #b5bda9;
}

.atmosphere-section p:not(.section-kicker) {
  color: #c9c1b5;
}

.recent-section {
  padding-bottom: clamp(88px, 12vw, 155px);
}

.section-heading--split > p {
  margin: 0;
  color: #625950;
  font-size: 16px;
  line-height: 1.75;
}

.recent-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  grid-template-rows: 245px 245px;
  gap: 12px;
}

.recent-photo {
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper-warm);
  cursor: zoom-in;
}

.recent-photo--large {
  grid-row: 1 / span 2;
}

.recent-photo--tall {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.recent-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.recent-photo:hover img,
.recent-photo:focus-visible img {
  transform: scale(1.025);
  filter: brightness(.94);
}

.recent-photo--tall img {
  object-position: center 60%;
}

.recent-section__button {
  margin-top: 27px;
}

.mondstube-section {
  color: var(--paper);
  background: var(--moon);
  border-block: 1px solid rgba(255,255,255,.08);
}

.mondstube-section__grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
}

.moon-mark {
  width: clamp(92px, 13vw, 148px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244,239,228,.2);
  border-radius: 50%;
  color: #d8c992;
  font-family: Georgia, serif;
  font-size: clamp(60px, 9vw, 102px);
  line-height: 1;
}

.mondstube-section .section-kicker {
  color: #b9ad82;
}

.mondstube-section h2 {
  font-size: clamp(35px, 5vw, 62px);
}

.mondstube-section p:not(.section-kicker) {
  color: #cbc3b6;
}

.mondstube-section__small {
  font-size: 15px;
  opacity: .8;
}

.mondstube-section__button {
  white-space: nowrap;
}

.visit-section {
  padding-bottom: clamp(94px, 13vw, 168px);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 18px;
}

.hours-card,
.directions-card,
.before-card {
  border: 1px solid var(--paper-warm);
  background: rgba(250,247,240,.7);
}

.hours-card,
.directions-card {
  padding: clamp(25px, 4vw, 43px);
}

.hours-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--paper-warm);
}

.hours-card__head span {
  color: var(--stone);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hours-list {
  margin: 17px 0 23px;
}

.hours-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--paper-warm);
}

.hours-list dt {
  color: var(--stone);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hours-list dd {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
}

.hours-card > p,
.directions-card p {
  color: #625950;
  font-size: 16px;
  line-height: 1.75;
}

.directions-card {
  position: relative;
  overflow: hidden;
}

.directions-card::after {
  content: "道";
  position: absolute;
  right: -11px;
  bottom: -45px;
  z-index: 0;
  color: rgba(115,129,99,.09);
  font-family: "Shippori Mincho", serif;
  font-size: 190px;
  line-height: 1;
}

.directions-card > * {
  position: relative;
  z-index: 1;
}

.directions-card__address {
  margin: 0 0 25px !important;
  color: var(--ink) !important;
  font-family: "Shippori Mincho", serif;
  font-size: 22px !important;
  line-height: 1.5 !important;
}

.directions-card h3 {
  margin-bottom: 13px;
}

.directions-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.before-card {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: clamp(35px, 7vw, 100px);
  margin-top: 18px;
  padding: clamp(28px, 5vw, 52px);
}

.before-card h3 {
  font-size: clamp(27px, 3.5vw, 40px);
}

.before-card ul {
  columns: 2;
  column-gap: 44px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.before-card li {
  position: relative;
  break-inside: avoid;
  padding: 9px 0 9px 19px;
  color: #5f564e;
  font-size: 16px;
  line-height: 1.65;
  border-bottom: 1px solid var(--paper-warm);
}

.before-card li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--matcha);
  font-size: 21px;
  line-height: 1;
}

.site-footer {
  padding: 60px 0 34px;
  color: #c7beb2;
  background: var(--ink);
}

.site-footer__grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.site-footer p {
  margin: 3px 0;
  font-size: 14px;
  letter-spacing: .04em;
}

.site-footer__kanji {
  margin-bottom: 13px !important;
  color: var(--paper) !important;
  font-family: "Shippori Mincho", serif;
  font-size: 33px !important;
  letter-spacing: .18em !important;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.site-footer__links a {
  font-size: 13px;
  letter-spacing: .10em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--paper);
}

.fuku {
  width: min(460px, calc(100vw - 40px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 52px auto 0;
  padding: 10px;
  border: 0;
  color: #4c4540;
  background: transparent;
  cursor: pointer;
}

.fuku__hint {
  color: #2c2825;
  font-size: 9px;
  letter-spacing: .04em;
  transition: color .4s ease;
}

.fuku:hover .fuku__hint,
.fuku:focus-visible .fuku__hint,
.fuku.is-revealed .fuku__hint {
  color: #756c64;
}

.fuku__mushroom,
.fuku__text {
  display: none;
}

.fuku.is-revealed .fuku__mushroom,
.fuku.is-revealed .fuku__text {
  display: block;
  animation: reveal .5s ease both;
}

.fuku__mushroom {
  width: 54px;
  color: #9a8c7e;
}

.fuku__mushroom svg {
  display: block;
}

.fuku__text {
  color: #8a8179;
  font-size: 10px;
  letter-spacing: .05em;
}

.lightbox {
  width: auto;
  max-width: min(94vw, 1100px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(15,12,10,.88);
  backdrop-filter: blur(4px);
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  display: block;
  object-fit: contain;
  background: var(--paper);
}

.lightbox__close {
  width: 38px;
  height: 38px;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(23,19,16,.65);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .brand {
    grid-column: 1 / 3;
  }

  .status-strip__grid {
    grid-template-columns: 1fr auto;
  }

  .status-strip__notice {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 15px 0 0;
    border-top: 1px solid rgba(255,255,255,.2);
    border-left: 0;
  }

  .cafe-notes,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: minmax(260px, .8fr) 1fr;
    grid-template-rows: auto;
  }

  .feature-card:nth-child(even) {
    grid-template-columns: 1fr minmax(260px, .8fr);
  }

  .feature-card:nth-child(even) img {
    grid-column: 2;
  }

  .feature-card:nth-child(even) .feature-card__body {
    grid-column: 1;
    grid-row: 1;
  }

  .feature-card img {
    min-height: 310px;
  }

  .atmosphere-section__inner {
    grid-template-columns: .3fr 1fr;
  }

  .recent-grid {
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 250px 250px 330px;
  }

  .recent-photo--large {
    grid-row: 1 / span 2;
  }

  .recent-photo--tall {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .mondstube-section__grid {
    grid-template-columns: auto 1fr;
  }

  .mondstube-section__button {
    grid-column: 2;
    justify-self: start;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 40px, 1160px);
  }

  body {
    font-size: 14px;
  }

  .site-header__inner {
    min-height: 62px;
  }

  .brand__kanji {
    font-size: 21px;
  }

  .brand__name {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(20,17,14,.9) 0%, rgba(20,17,14,.54) 58%, rgba(20,17,14,.25) 100%);
  }

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

  .hero__content {
    padding-block: 72px 58px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__actions,
  .directions-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .status-strip__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 17px;
    padding-block: 23px;
  }

  .text-link {
    justify-self: start;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading,
  .section-heading--split {
    display: block;
    margin-bottom: 35px;
  }

  .section-heading--split > p {
    margin-top: 19px;
  }

  .section-heading h2,
  .atmosphere-section h2,
  .mondstube-section h2,
  .visit-section h2 {
    font-size: clamp(32px, 9.8vw, 46px);
  }

  .cafe-notes {
    gap: 10px;
  }

  .note-card {
    min-height: 0;
  }

  .feature-grid {
    gap: 12px;
  }

  .feature-card,
  .feature-card:nth-child(even) {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 1fr;
  }

  .feature-card:nth-child(even) img,
  .feature-card:nth-child(even) .feature-card__body {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card img {
    min-height: 0;
  }

  .feature-card__body {
    padding: 25px 23px 31px;
  }

  .atmosphere-section__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .atmosphere-section__kanji {
    font-size: 105px;
  }

  .recent-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 190px 280px;
  }

  .recent-photo--large {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .recent-photo--tall {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .mondstube-section__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .moon-mark {
    width: 92px;
  }

  .mondstube-section__button {
    grid-column: auto;
  }

  .hours-card,
  .directions-card {
    padding: 26px 22px;
  }

  .before-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 27px 23px;
  }

  .before-card ul {
    columns: 1;
  }

  .site-footer__grid {
    display: block;
  }

  .site-footer__links {
    justify-content: flex-start;
    margin-top: 25px;
  }
}

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

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


/* v0.1 readability adjustments */
.section-heading p:not(.section-kicker),
.atmosphere-section p:not(.section-kicker),
.mondstube-section p:not(.section-kicker) { font-size: 17px; }
.section-heading--split > p { font-size: 16px; }
.note-card p,
.feature-card__body > p:last-child,
.hours-card > p,
.directions-card p,
.before-card li { font-size: 16px; }
.site-footer p { font-size: 14px; }
.site-footer__links a { font-size: 13px; }

@media (max-width: 700px) {
  body { font-size: 17px; }
  .brand { gap: 8px; }
  .brand__kanji { font-size: 19px; }
  .brand__name { display: inline; font-size: 12px; letter-spacing: .12em; }
  .language-button { font-size: 13px; }
  .hero__support { font-size: 16px; }
  .button { font-size: 15px; }
  .status-next, .text-link { font-size: 15px; }
  .eyebrow, .section-kicker { font-size: 13px; }
}


/* v0.2 interaction, gallery and readability corrections */
.hero__media img { object-position: center 55%; }

.atmosphere-section p.atmosphere-section__kanji {
  margin: 0;
  color: rgba(244,239,228,.16);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(145px, 19vw, 255px);
  letter-spacing: -.08em;
  line-height: .75;
}

.recent-grid {
  grid-template-columns: 1.35fr .85fr .85fr;
  grid-template-rows: 250px 250px 290px;
}
.recent-photo--large { grid-column: 1; grid-row: 1 / span 2; }
.recent-photo--wide { grid-column: 1 / -1; grid-row: 3; }
.recent-photo--wide img { object-position: center 48%; }

.fuku { color: #b8aea2; }
.fuku__hint {
  color: rgba(216,208,195,.52);
  font-size: 12px;
  letter-spacing: .06em;
}
.fuku:hover .fuku__hint,
.fuku:focus-visible .fuku__hint,
.fuku.is-revealed .fuku__hint { color: rgba(244,239,228,.82); }
.fuku__mushroom { color: #aaa093; }
.fuku__text { color: #bdb3a7; font-size: 12px; }

@media (max-width: 980px) {
  .recent-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 230px 230px 290px;
  }
  .recent-photo--large { grid-column: 1 / -1; grid-row: 1; }
  .recent-photo--wide { grid-column: 1 / -1; grid-row: 4; }
}

@media (max-width: 700px) {
  .hero { min-height: 650px; }
  .hero__media img { object-position: 58% center; }
  .atmosphere-section p.atmosphere-section__kanji { font-size: 132px; }
  .recent-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 190px 190px 250px;
  }
  .recent-photo--large { grid-column: 1 / -1; grid-row: 1; }
  .recent-photo--wide { grid-column: 1 / -1; grid-row: 4; }
  .fuku__hint, .fuku__text { font-size: 13px; }
}


/* v0.4 — clearer benefits, responsive type, and simplified page structure */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 5.4vw, 74px);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.hero__lead {
  max-width: 720px;
}

.recent-grid > *,
.feature-grid > *,
.cafe-notes > * {
  min-width: 0;
}

.feature-card__body > p:last-child {
  max-width: 55ch;
}

@media (max-width: 980px) {
  .hero h1 {
    max-width: 700px;
    font-size: clamp(38px, 7vw, 64px);
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 620px;
  }

  .hero__media img {
    object-position: 55% center;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.5vw, 50px);
    line-height: 1.08;
  }

  .hero__lead {
    font-size: 18px;
    line-height: 1.55;
  }

  .recent-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 260px;
  }

  .recent-photo,
  .recent-photo--large,
  .recent-photo--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card__body > p:last-child {
    max-width: none;
  }
}

@media (max-width: 420px) {
  :root {
    --shell: min(100% - 40px, 1160px);
  }

  .hero h1 {
    font-size: clamp(32px, 10.2vw, 43px);
  }

  .section-heading h2,
  .mondstube-section h2,
  .visit-section h2 {
    font-size: clamp(30px, 9.2vw, 40px);
  }
}


/* v0.5 — an independent transition for the human moments of NichiNichi */
.moments-section {
  padding-block: clamp(68px, 9vw, 112px);
  background:
    linear-gradient(90deg, rgba(115,129,99,.10), rgba(115,129,99,.045)),
    var(--paper);
  border-block: 1px solid var(--paper-warm);
}

.moments-copy {
  max-width: 900px;
  margin-inline: auto;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(25px, 3.2vw, 38px);
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: 1.55;
  text-wrap: pretty;
}

.moments-copy p {
  margin: 0;
}

.moments-copy p + p {
  margin-top: .72em;
}

.moments-copy p:nth-child(2) {
  color: #4e493f;
}

.moments-copy p:nth-child(3) {
  color: var(--matcha-dark);
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 40px, 1160px);
  }

  .moments-section {
    padding-block: 64px;
  }

  .moments-copy {
    font-size: clamp(23px, 6.8vw, 31px);
    line-height: 1.58;
  }

  .moments-copy p + p {
    margin-top: .9em;
  }
}

@media (max-width: 420px) {
  :root {
    --shell: min(100% - 40px, 1160px);
  }
}


/* v0.6 — controlled three-line Hero in both languages */
.hero-title-line {
  display: block;
}

.hero h1 {
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

@media (max-width: 700px) {
  .hero h1 .hero-title-line {
    white-space: nowrap;
  }

  .hero h1 [data-lang="de"],
  .hero h1 [data-lang="en"] {
    font-size: 0.94em;
    letter-spacing: -0.025em;
  }
}

@media (max-width: 420px) {
  .hero h1 [data-lang="de"],
  .hero h1 [data-lang="en"] {
    font-size: 0.88em;
    letter-spacing: -0.03em;
  }
}


/* v0.7 — Hero wording with “kleiner Küche / small kitchen” */
@media (max-width: 700px) {
  .hero h1 [data-lang="de"],
  .hero h1 [data-lang="en"] {
    font-size: 0.86em;
    letter-spacing: -0.03em;
  }
}

@media (max-width: 420px) {
  .hero h1 [data-lang="de"],
  .hero h1 [data-lang="en"] {
    font-size: 0.74em;
    letter-spacing: -0.04em;
  }
}


/* v0.9 — Mondstube intro uses normal body case instead of a kicker */
.mondstube-section__intro {
  max-width: 70ch;
  margin: 0 0 22px;
  color: #d8cfbf;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.72;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 700px) {
  .mondstube-section__intro {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.68;
  }
}


/* v0.16 — stable Meta in-app layout without changing normal Chrome */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.font-warmup {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -9999px;
  top: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.font-warmup__mincho { font-family: "Shippori Mincho", Georgia, serif; }
.font-warmup__baskerville { font-family: "Libre Baskerville", Georgia, serif; }

.hero-title-standard { display: block; }
.hero-title-meta { display: none; }

/* Only Meta's in-app browser receives this defensive mobile composition. */
@media (max-width: 700px) {
  html.meta-inapp,
  html.meta-inapp body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  html.meta-inapp .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  html.meta-inapp .brand {
    grid-column: 1;
    min-width: 0;
    gap: 5px;
    white-space: nowrap;
  }

  html.meta-inapp .brand__kanji,
  html.meta-inapp .brand__name {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  html.meta-inapp .brand__kanji {
    font-size: 18px;
    letter-spacing: .035em;
  }

  html.meta-inapp .brand__name {
    display: inline;
    font-size: 9.5px;
    letter-spacing: .04em;
  }

  html.meta-inapp .language-switch {
    grid-column: 2;
    justify-self: end;
    gap: 4px;
    white-space: nowrap;
  }

  html.meta-inapp .language-button {
    font-size: 11px;
    letter-spacing: .07em;
  }

  html.meta-inapp .hero {
    overflow: hidden;
  }

  html.meta-inapp .hero__content.shell {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    margin-inline: auto;
    min-width: 0;
  }

  html.meta-inapp .hero h1,
  html.meta-inapp .hero h1 > [data-lang],
  html.meta-inapp .hero__lead,
  html.meta-inapp .hero__lead > [data-lang] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  html.meta-inapp .hero-title-standard {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  html.meta-inapp .hero-title-meta { display: block; }

  html.meta-inapp .hero h1 {
    font-size: clamp(36px, 10.3vw, 42px);
    line-height: 1.08;
    letter-spacing: -.025em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  html.meta-inapp .hero-title-line {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
  }

  html.meta-inapp .hero__lead {
    font-size: 18px;
    line-height: 1.52;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
}

@media (max-width: 360px) {
  html.meta-inapp .brand__kanji { font-size: 16px; }
  html.meta-inapp .brand__name { font-size: 8.5px; }
  html.meta-inapp .language-button { font-size: 10px; }
  html.meta-inapp .hero h1 { font-size: 35px; }
}
