:root {
  --ink: #211e1a;
  --paper: #f3eee4;
  --surface: #fbf7ef;
  --tea: #31443a;
  --tea-dark: #1d2c26;
  --red: #a84634;
  --gold: #d7b571;
  --muted: #756e64;
  --line: rgba(33, 30, 26, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: #fffaf1;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(243, 238, 228, 0.96);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: grid;
  width: max-content;
  gap: 1px;
}

.wordmark span,
.hero-chinese {
  font-family: "Noto Serif SC", Georgia, serif;
}

.wordmark span {
  font-size: 1.27rem;
  letter-spacing: 0.08em;
}

.wordmark small,
nav,
.header-call,
.eyebrow,
.fact-strip span,
.dish span,
.button,
.preview-note span {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.wordmark small {
  opacity: 0.76;
}

nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
}

.header-call {
  justify-self: end;
  border-bottom: 1px solid currentColor;
  padding: 8px 1px 5px;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(18px, 4vw, 58px) 76px;
  color: #fffaf1;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("https://images.unsplash.com/photo-1747479332454-f2f9420556b8?auto=format&fit=crop&w=2200&q=86") center/cover;
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 18, 16, 0.88), rgba(13, 18, 16, 0.53) 55%, rgba(13, 18, 16, 0.13)),
    linear-gradient(0deg, rgba(13, 18, 16, 0.82), rgba(13, 18, 16, 0.03) 54%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 7.2ch;
  margin-bottom: 0;
  font-size: clamp(4.4rem, 12vw, 10.4rem);
  line-height: 0.82;
}

h1 span {
  display: block;
}

.hero-chinese {
  margin: 12px 0 24px;
  color: var(--gold);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.18em;
}

h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  line-height: 0.96;
}

h3 {
  margin: 0 0 7px;
  font-size: 1.05rem;
}

.hero-lede {
  max-width: 570px;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 12px 18px;
}

.button.light {
  background: #fffaf1;
  border-color: #fffaf1;
  color: var(--ink);
}

.button.outline {
  color: #fffaf1;
}

.button.dark {
  background: var(--tea-dark);
  border-color: var(--tea-dark);
  color: #fffaf1;
}

.button.line {
  color: var(--tea-dark);
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 58px);
  bottom: 34px;
  display: grid;
  color: #fffaf1;
  text-align: right;
}

.hero-note span {
  font-weight: 700;
}

.hero-note small {
  color: rgba(255, 250, 241, 0.72);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--tea-dark);
  color: #fffaf1;
}

.fact-strip div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 24px clamp(18px, 4vw, 58px);
  border-right: 1px solid rgba(255, 250, 241, 0.16);
}

.fact-strip span {
  color: var(--gold);
}

.fact-strip small {
  color: rgba(255, 250, 241, 0.66);
}

.section {
  padding: clamp(76px, 10vw, 138px) clamp(18px, 4vw, 58px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(30px, 6vw, 88px);
}

.intro-copy p,
.menu-heading > p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

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

.menu-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.48fr);
  align-items: end;
  gap: 30px;
  margin-bottom: 34px;
}

.menu-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.menu-heading > p {
  margin: 0;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dish {
  min-height: 370px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: #ece4d6;
}

.dish-feature {
  grid-column: span 2;
}

.dish-wide {
  grid-column: span 2;
}

.dish img {
  height: 100%;
  min-height: 285px;
  object-fit: cover;
}

.dish div {
  min-height: 127px;
  padding: 18px 19px 17px;
  background: var(--paper);
}

.dish span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
}

.dish p {
  margin: 0;
  color: var(--muted);
}

.visit {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 710px;
  background: #e3dacb;
}

.visit-image {
  background: url("https://images.unsplash.com/photo-1759893497863-c90a6dfa7a86?auto=format&fit=crop&w=1500&q=84") center/cover;
}

.visit-copy {
  display: grid;
  align-content: center;
  padding: clamp(54px, 8vw, 120px) clamp(24px, 7vw, 100px);
}

address {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--ink);
}

.hours-note {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
}

.preview-note {
  display: grid;
  grid-template-columns: auto minmax(0, 760px);
  justify-content: center;
  gap: 22px;
  padding: 24px clamp(18px, 4vw, 58px);
  background: var(--tea);
  color: rgba(255, 250, 241, 0.76);
}

.preview-note span {
  color: var(--gold);
}

.preview-note p {
  margin: 0;
  font-size: 0.86rem;
}

footer {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 58px);
  background: var(--tea-dark);
  color: #fffaf1;
}

footer p {
  margin: 0;
  color: rgba(255, 250, 241, 0.65);
  font-size: 0.88rem;
}

footer > a:last-child {
  font-weight: 700;
}

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

  nav {
    display: none;
  }

  .hero {
    min-height: 89svh;
    padding-bottom: 104px;
  }

  h1 {
    font-size: clamp(4.25rem, 22vw, 6.6rem);
  }

  .hero-note {
    right: auto;
    left: 18px;
    bottom: 30px;
    text-align: left;
  }

  .fact-strip,
  .intro,
  .menu-heading,
  .visit {
    grid-template-columns: 1fr;
  }

  .fact-strip div {
    min-height: 0;
    padding-top: 19px;
    padding-bottom: 19px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.16);
  }

  .intro {
    align-items: start;
  }

  .menu-heading .eyebrow {
    margin-bottom: -8px;
  }

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

  .dish-feature,
  .dish-wide {
    grid-column: span 1;
  }

  .dish {
    min-height: 0;
  }

  .dish img {
    min-height: 230px;
    max-height: 280px;
  }

  .visit {
    min-height: 0;
  }

  .visit-image {
    min-height: 360px;
  }

  .preview-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  footer {
    display: grid;
    gap: 13px;
  }
}
