:root {
  --bg: #fffdf9;
  --surface: #ffffff;
  --surface-warm: #fff5ed;
  --ink: #241f1c;
  --muted: #6e625b;
  --line: #eadfd7;
  --accent: #c9151e;
  --accent-dark: #9f1018;
  --accent-soft: #ffe6df;
  --green: #2d7b48;
  --shadow: 0 18px 50px rgba(83, 45, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(234, 223, 215, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 3vw, 34px);
  color: #3f3732;
  font-size: 0.95rem;
  font-weight: 650;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
  min-height: calc(100vh - 82px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 56px) 52px;
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
}

.section-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.79rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
}

h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.58rem;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 780;
}

.button.primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 28px rgba(201, 21, 30, 0.18);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: var(--surface);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  color: var(--accent);
  font-size: 1.45rem;
  font-weight: 850;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 210px 175px 210px;
  gap: 10px;
  transform: rotate(-1deg);
}

.photo-collage img {
  height: 100%;
  border: 7px solid var(--bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-duck {
  grid-column: 1 / 3;
}

.photo-dumplings {
  grid-row: 2 / 4;
}

.photo-noodles,
.photo-hotpot {
  min-height: 0;
}

.guide-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 56px) 84px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.guide-strip article {
  padding: 24px;
  background: var(--surface);
}

.guide-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 820;
}

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

.section-heading {
  max-width: 880px;
  padding: 0 clamp(18px, 4vw, 56px);
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading p:not(.section-label) {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 0 clamp(18px, 4vw, 56px);
}

.filter {
  min-height: 42px;
  padding: 0 16px;
  color: #463d38;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 720;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 21, 30, 0.35);
}

.filter.is-active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 56px) 92px;
}

.dish-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(64, 35, 22, 0.08);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.dish-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(64, 35, 22, 0.13);
}

.dish-card.is-hidden {
  display: none;
}

.dish-card img {
  height: 190px;
}

.dish-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.dish-region {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dish-chinese {
  margin-bottom: 13px;
  color: #3d352f;
  font-weight: 740;
}

.dish-chinese em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.dish-body > p:not(.dish-region, .dish-chinese) {
  color: var(--muted);
}

.dish-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 14px;
  padding-top: 8px;
}

.dish-meta span {
  padding: 6px 9px;
  color: #5a433b;
  background: var(--surface-warm);
  border: 1px solid #f0d8ca;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 760;
}

.dish-meta span:first-child {
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-color: #ffd0c5;
}

.order-box {
  padding: 12px;
  color: #3d352f;
  background: #fffaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 760;
}

.order-box small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.ordering {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: start;
  margin: 0 clamp(18px, 4vw, 56px) 92px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--ink);
  border-radius: 8px;
  color: #fff;
}

.ordering .section-label {
  color: #ffb9aa;
}

.ordering p {
  color: rgba(255, 255, 255, 0.74);
}

.phrase-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.phrase-list article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.phrase-list span,
.phrase-list strong {
  display: block;
}

.phrase-list span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.phrase-list strong {
  color: #fff;
  font-size: 1.04rem;
}

.future {
  padding: 0 clamp(18px, 4vw, 56px) 30px;
}

.section-heading.compact {
  padding: 0;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-intro.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro p:not(.section-label),
.playbook-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.city-guides,
.cuisine-guides,
.food-map,
.restaurant-playbook {
  padding: 54px clamp(18px, 4vw, 56px);
}

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

.city-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(64, 35, 22, 0.07);
}

.city-card img {
  height: 180px;
}

.city-card div {
  padding: 20px;
}

.city-card.feature-city {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 1fr 1fr;
}

.city-card.feature-city img {
  height: 100%;
}

.city-number {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.city-card p,
.city-card li,
.cuisine-grid p,
.route-list p,
.playbook-grid p {
  color: var(--muted);
}

.city-card ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.city-card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.cuisine-guides {
  background: #fff8f2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.cuisine-grid article {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cuisine-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-weight: 850;
}

.food-map {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}

.route-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route;
}

.route-list li {
  position: relative;
  padding: 22px 22px 22px 74px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-list li::before {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  content: counter(route);
  counter-increment: route;
  font-weight: 850;
}

.route-list span,
.route-list strong {
  display: block;
}

.route-list span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-list strong {
  margin: 4px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.route-list p {
  margin: 0;
}

.restaurant-playbook {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 68px);
  margin: 0 clamp(18px, 4vw, 56px) 82px;
  padding: clamp(28px, 5vw, 54px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.playbook-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.playbook-grid article {
  padding: 22px;
  background: #fffaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.playbook-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-weight: 850;
}

.playbook-grid h3 {
  font-size: 1.35rem;
}

.playbook-grid p {
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .photo-collage {
    max-width: 760px;
    margin: 0 auto;
  }

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

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

  .food-map,
  .restaurant-playbook {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.7rem);
  }

  .hero-stats,
  .guide-strip,
  .ordering,
  .phrase-list,
  .city-grid,
  .cuisine-grid,
  .playbook-grid {
    grid-template-columns: 1fr;
  }

  .city-card.feature-city {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .city-card.feature-city img {
    height: 210px;
  }

  .photo-collage {
    grid-template-rows: 150px 138px 150px;
  }

  .guide-strip {
    margin-bottom: 58px;
  }

  .dish-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .main-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .photo-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 170px);
    transform: none;
  }

  .photo-duck,
  .photo-dumplings {
    grid-column: auto;
    grid-row: auto;
  }

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

  .dish-card img {
    height: 210px;
  }

  .route-list li {
    padding: 72px 18px 18px;
  }

  .route-list li::before {
    top: 18px;
    left: 18px;
  }

  .restaurant-playbook {
    margin-right: clamp(18px, 4vw, 56px);
    margin-left: clamp(18px, 4vw, 56px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
