:root {
  --color-bg: oklch(0.985 0 0);
  --color-surface: oklch(0.955 0.008 282);
  --color-ink: oklch(0.18 0.018 282);
  --color-muted: oklch(0.43 0.02 282);
  --color-primary: oklch(0.34 0.11 282);
  --color-primary-deep: oklch(0.22 0.07 282);
  --color-accent: oklch(0.55 0.18 34);
  --color-light: oklch(0.985 0 0);
  --color-line: oklch(0.18 0.018 282 / 0.18);
  --font-display: "Arial Narrow", "Aptos Display", "Helvetica Neue", sans-serif;
  --font-body: "Aptos", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --page-gutter: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(5.5rem, 11vw, 10rem);
  --content-max: 90rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--color-light);
  color: var(--color-primary-deep);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem var(--page-gutter);
  color: var(--color-light);
}

.wordmark,
.footer-wordmark {
  width: fit-content;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  font-size: 0.88rem;
}

.site-nav a,
.language-option,
.menu-toggle {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.25rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
}

.language-option,
.menu-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-option {
  opacity: 0.58;
  transition: opacity 180ms ease;
}

.language-option.is-active {
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100dvh;
  align-items: flex-end;
  overflow: hidden;
  padding: clamp(8rem, 18vh, 12rem) var(--page-gutter) clamp(3rem, 8vh, 5.5rem);
  color: var(--color-light);
  background: var(--color-primary-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: hero-image-in 1.6s var(--ease-out) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, oklch(0.12 0.035 282 / 0.84) 0%, oklch(0.12 0.035 282 / 0.42) 43%, transparent 73%),
    linear-gradient(0deg, oklch(0.08 0.02 282 / 0.66), transparent 52%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(42rem, 90%);
  animation: hero-copy-in 1s 180ms var(--ease-out) both;
}

.hero-place,
.section-note {
  margin-bottom: 1.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.story h2,
.menu-heading h2,
.visit h2 {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 8vw, 6rem);
}

.hero-intro {
  max-width: 37rem;
  margin-top: 1.5rem;
  color: oklch(0.96 0 0 / 0.9);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding: 0.78rem 1.25rem 0.78rem 1.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 220ms var(--ease-out), background 220ms ease;
}

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

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button-light {
  background: var(--color-light);
  color: var(--color-primary-deep);
}

.button-light:hover {
  background: oklch(0.92 0.018 34);
}

.button-accent {
  background: var(--color-accent);
  color: var(--color-light);
}

.button-accent:hover {
  background: oklch(0.5 0.17 34);
}

.hero-hours {
  position: absolute;
  z-index: 2;
  right: var(--page-gutter);
  bottom: clamp(3rem, 8vh, 5.5rem);
  max-width: 12rem;
  font-size: 0.82rem;
  text-align: right;
}

.section-shell {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: clamp(3rem, 10vw, 9rem);
  padding-block: var(--section-space);
}

.story h2,
.menu-heading h2,
.visit h2 {
  font-size: clamp(3.3rem, 7vw, 6rem);
}

.story-copy {
  align-self: end;
  padding-bottom: 0.5rem;
}

.story-copy > p {
  max-width: 38rem;
  color: var(--color-muted);
}

.story-copy .story-lead {
  margin-bottom: 1.35rem;
  color: var(--color-ink);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link span:last-child {
  transition: transform 220ms var(--ease-out);
}

.text-link:hover span:last-child {
  transform: translate(0.18rem, -0.18rem);
}

.menu-section {
  display: grid;
  grid-template-columns: minmax(20rem, 0.86fr) minmax(26rem, 1.14fr);
  background: var(--color-primary);
  color: var(--color-light);
}

.menu-visual {
  position: relative;
  min-height: 52rem;
}

.menu-visual img {
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.7rem 0.9rem;
  background: oklch(0.1 0.02 282 / 0.78);
  font-size: 0.76rem;
}

.menu-content {
  align-self: center;
  padding: var(--section-space) var(--page-gutter);
}

.menu-heading {
  max-width: 41rem;
}

.menu-heading > p:last-child {
  max-width: 34rem;
  margin-top: 1.5rem;
  color: oklch(0.94 0.01 282 / 0.82);
}

.menu-list {
  max-width: 44rem;
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid oklch(1 0 0 / 0.28);
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid oklch(1 0 0 / 0.28);
}

.menu-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
}

.menu-item p {
  color: oklch(0.95 0 0 / 0.72);
  font-size: 0.88rem;
}

.menu-item .price {
  flex: 0 0 auto;
  color: var(--color-light);
  font-variant-numeric: tabular-nums;
}

.menu-footnote {
  max-width: 35rem;
  margin-top: 1.25rem;
  color: oklch(0.95 0 0 / 0.84);
  font-size: 0.78rem;
}

.kitchen {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(23rem, 1fr) minmax(13rem, 0.55fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: var(--section-space);
}

.kitchen-copy {
  align-self: start;
  padding-top: clamp(0rem, 8vw, 7rem);
}

.kitchen-copy h2 {
  max-width: 9ch;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-stretch: condensed;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.kitchen-copy p {
  max-width: 28rem;
  margin-top: 1.5rem;
  color: var(--color-muted);
}

.kitchen-image img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.kitchen-image figcaption {
  margin-top: 0.75rem;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.kitchen-quote {
  max-width: 12ch;
  padding-bottom: 4rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(22rem, 0.8fr);
  min-height: 44rem;
  background: var(--color-primary-deep);
  color: var(--color-light);
}

.visit-main,
.visit-details {
  padding: var(--section-space) var(--page-gutter);
}

.visit-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(circle at 85% 15%, oklch(0.46 0.13 282 / 0.7), transparent 34%),
    var(--color-primary-deep);
}

.visit-details {
  display: grid;
  align-content: center;
  gap: 2.25rem;
  background: var(--color-primary);
}

.visit-details > div {
  padding-bottom: 2.25rem;
  border-bottom: 1px solid oklch(1 0 0 / 0.24);
}

.visit-details > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.visit-details h3 {
  margin-bottom: 0.6rem;
  color: oklch(0.95 0 0 / 0.65);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visit-details address {
  font-style: normal;
}

.visit-details p + p {
  margin-top: 0.18rem;
}

.visit-details a {
  border-bottom: 1px solid oklch(1 0 0 / 0.4);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem var(--page-gutter);
  background: var(--color-ink);
  color: var(--color-light);
  font-size: 0.78rem;
}

.site-footer > p {
  color: oklch(0.95 0 0 / 0.7);
  text-align: center;
}

.footer-meta {
  display: flex;
  justify-self: end;
  gap: 1.25rem;
}

.noscript-note {
  padding: 0.75rem var(--page-gutter);
  background: var(--color-accent);
  color: var(--color-light);
  text-align: center;
}

html[lang="zh"] body {
  letter-spacing: 0.01em;
}

html[lang="zh"] .hero h1,
html[lang="zh"] .story h2,
html[lang="zh"] .menu-heading h2,
html[lang="zh"] .kitchen-copy h2,
html[lang="zh"] .kitchen-quote,
html[lang="zh"] .visit h2 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.025em;
}

@keyframes hero-image-in {
  from {
    filter: saturate(0.75);
    transform: scale(1.04);
  }
  to {
    filter: saturate(1);
    transform: scale(1);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal-in linear both;
    animation-range: entry 5% cover 28%;
    animation-timeline: view();
  }

  @keyframes reveal-in {
    from {
      opacity: 0.82;
      transform: translateY(1.25rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 64rem) {
  .story {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-copy {
    max-width: 42rem;
    justify-self: end;
  }

  .menu-section {
    grid-template-columns: 0.78fr 1.22fr;
  }

  .kitchen {
    grid-template-columns: minmax(14rem, 0.7fr) minmax(20rem, 1fr);
  }

  .kitchen-quote {
    grid-column: 1 / -1;
    max-width: 20ch;
    padding: 0;
  }
}

@media (max-width: 48rem) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    padding-top: 1.15rem;
  }

  .js .menu-toggle {
    display: block;
    min-width: 3.25rem;
    min-height: 2.75rem;
    border: 1px solid oklch(1 0 0 / 0.55);
    border-radius: 999px;
  }

  .js .site-nav {
    position: fixed;
    z-index: 30;
    inset: 4.8rem 1rem auto;
    display: grid;
    gap: 0;
    padding: 0.6rem 1.25rem;
    border-radius: 0.85rem;
    background: var(--color-light);
    color: var(--color-primary-deep);
    box-shadow: 0 6px 8px oklch(0.1 0 0 / 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition: opacity 180ms ease, transform 250ms var(--ease-out);
  }

  .js .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .js .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-line);
  }

  .js .site-nav a:last-child {
    border-bottom: 0;
  }

  .language-switcher {
    font-size: 0.75rem;
  }

  .no-js .site-header {
    grid-template-columns: 1fr auto;
  }

  .no-js .site-nav {
    gap: 0.8rem;
    font-size: 0.75rem;
  }

  .no-js .language-switcher {
    display: none;
  }

  .hero {
    padding-bottom: 3rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, oklch(0.1 0.03 282 / 0.78), oklch(0.1 0.03 282 / 0.18)),
      linear-gradient(0deg, oklch(0.08 0.02 282 / 0.82), transparent 70%);
  }

  .hero-copy {
    width: 100%;
  }

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

  .hero-hours {
    display: none;
  }

  .story {
    padding-block: 5.5rem;
  }

  .story h2,
  .menu-heading h2,
  .visit h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .story-copy {
    justify-self: start;
  }

  .menu-section {
    grid-template-columns: 1fr;
  }

  .menu-visual {
    min-height: 32rem;
  }

  .menu-content {
    padding-block: 5.5rem;
  }

  .kitchen {
    grid-template-columns: 1fr;
    padding-block: 5.5rem;
  }

  .kitchen-copy {
    padding-top: 0;
  }

  .kitchen-image {
    width: min(100%, 30rem);
    justify-self: end;
  }

  .kitchen-quote {
    grid-column: auto;
    font-size: 2.25rem;
  }

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

  .visit-main,
  .visit-details {
    padding-block: 5.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer > p {
    text-align: left;
  }

  .footer-meta {
    justify-self: start;
  }
}

@media (max-width: 25rem) {
  .site-header {
    gap: 0.65rem;
  }

  .language-switcher {
    gap: 0.25rem;
  }

  .wordmark {
    font-size: 1.25rem;
  }

  .menu-item {
    align-items: flex-start;
  }

  .menu-item p {
    max-width: 24ch;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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