:root {
  color-scheme: light;
  --ink: #222222;
  --muted: #666666;
  --paper: #f8f5ef;
  --ivory: #ffffff;
  --dark: #1f1b16;
  --gold: #8b6b3f;
  --gold-dark: #6e532f;
  --gold-soft: #e8d9b5;
  --sand: #e7dcc6;
  --line: rgba(139, 107, 63, 0.18);
  --shadow: 0 10px 30px rgba(31, 27, 22, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body::selection {
  background: var(--gold);
  color: #ffffff;
}

a {
  color: inherit;
}

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

.title-cn {
  font-family: "Noto Serif SC", serif;
}

h1,
h2,
h3 {
  line-height: 1.3;
}

.site-header {
  background: rgba(248, 245, 239, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 22px rgba(31, 27, 22, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.site-header-inner {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin: auto;
  max-width: 1280px;
  min-height: 76px;
  width: 90%;
}

.site-brand {
  align-items: center;
  color: var(--dark);
  display: flex;
  font-weight: 600;
  gap: 12px;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.site-brand img {
  height: 48px;
  object-fit: contain;
  width: 48px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 50px;
  color: #312a22;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--gold);
  color: #ffffff;
  outline: none;
}

.site-nav .nav-call {
  background: var(--gold);
  color: #ffffff;
}

.site-nav .nav-call:hover,
.site-nav .nav-call:focus-visible {
  background: var(--gold-dark);
}

.hero {
  align-items: center;
  background: url("hero.jpg") center / cover no-repeat;
  color: #ffffff;
  display: flex;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  padding: 100px 0;
  position: relative;
  text-align: center;
}

.hero-shade {
  background: rgba(0, 0, 0, 0.58);
  inset: 0;
  position: absolute;
}

.hero-content {
  margin: auto;
  max-width: 920px;
  position: relative;
  width: 90%;
  z-index: 1;
}

.hero-logo {
  margin: 0 auto 28px;
  width: 140px;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
}

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

.hero h1 {
  font-size: clamp(44px, 6vw, 70px);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-offer {
  color: #f2f2f2;
  font-size: 20px;
  margin: 0 auto;
  max-width: 760px;
}

.hero-offer strong {
  color: var(--gold-soft);
}

.hero-actions,
.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-actions {
  justify-content: center;
  margin-top: 35px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 50px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

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

.button.primary {
  background: var(--gold);
  color: #ffffff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--gold-dark);
}

.button.secondary {
  background: transparent;
  border-color: var(--gold-soft);
  color: #ffffff;
}

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

.button.ghost {
  background: transparent;
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.hero-note {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  margin-top: 22px;
}

.quick-panel {
  background: var(--dark);
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-panel div {
  border-right: 1px solid rgba(232, 217, 181, 0.16);
  padding: 28px 5vw;
  text-align: center;
}

.quick-panel div:last-child {
  border-right: 0;
}

.quick-panel .label {
  color: var(--gold-soft);
  display: block;
  font-family: "Noto Serif SC", serif;
  font-size: 13px;
  margin-bottom: 6px;
}

.quick-panel strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
}

.section {
  padding: 90px max(5vw, calc((100vw - 1280px) / 2));
}

.section-heading {
  margin: 0 auto 55px;
  max-width: 860px;
  text-align: center;
}

.section-heading h2,
.ambience-copy h2,
.poster-copy h2 {
  color: #1f1f1f;
  font-size: 48px;
  margin-bottom: 18px;
}

.section-heading p:not(.eyebrow),
.ambience-copy p:not(.eyebrow),
.poster-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

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

.dish-card {
  background: var(--ivory);
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.dish-card:hover {
  box-shadow: 0 14px 34px rgba(31, 27, 22, 0.12);
  transform: translateY(-5px);
}

.dish-card img {
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}

.dish-card:hover img {
  transform: scale(1.05);
}

.dish-copy {
  padding: 28px;
}

.dish-number {
  align-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-family: "Noto Serif SC", serif;
  font-size: 16px;
  font-weight: 600;
  height: 40px;
  justify-content: center;
  margin-bottom: 18px;
  width: 40px;
}

.dish-copy h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.dish-copy p {
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 54px;
}

.dish-copy strong {
  color: var(--gold);
  display: block;
  font-size: 22px;
}

.ambience-section {
  align-items: center;
  background: #ffffff;
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ambience-copy {
  max-width: 580px;
}

.ambience-copy p:not(.eyebrow) {
  line-height: 1.8;
}

.ambience-section img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
}

.branches-section {
  background: var(--dark);
  color: #ffffff;
}

.branches-section .section-heading h2 {
  color: #ffffff;
}

.branches-section .section-heading .eyebrow {
  color: var(--gold-soft);
}

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

.branch-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 217, 181, 0.2);
  border-radius: 24px;
  padding: 36px;
}

.branch-area {
  color: var(--gold-soft);
  display: block;
  font-family: "Noto Serif SC", serif;
  font-size: 16px;
  margin-bottom: 12px;
}

.branch-card h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.branch-card p {
  color: #d4d4d4;
  margin-bottom: 26px;
}

.poster-section {
  align-items: center;
  background: var(--sand);
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
}

.poster-copy {
  max-width: 620px;
}

.poster-copy .button {
  margin-top: 30px;
}

.poster-copy .button.secondary {
  border-color: var(--gold);
  color: var(--gold);
}

.poster-copy .button.secondary:hover,
.poster-copy .button.secondary:focus-visible {
  color: #ffffff;
}

.poster-section img {
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 100%;
}

.terms {
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  padding: 30px 5vw;
  text-align: center;
}

.terms p {
  margin: auto;
  max-width: 1000px;
}

.site-footer {
  align-items: center;
  background: #111111;
  color: #bbbbbb;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 45px 5vw 105px;
  text-align: center;
}

.site-footer img {
  height: 70px;
  object-fit: contain;
  width: 70px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-links a {
  color: var(--gold-soft);
  font-weight: 600;
  text-decoration: none;
}

.sticky-cta {
  background: rgba(248, 245, 239, 0.98);
  border-top: 1px solid var(--line);
  bottom: 0;
  box-shadow: 0 -8px 26px rgba(31, 27, 22, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1100;
}

.sticky-cta a {
  border-right: 1px solid var(--line);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 8px;
  text-align: center;
  text-decoration: none;
}

.sticky-cta a:hover,
.sticky-cta a:focus-visible {
  background: var(--gold);
  color: #ffffff;
}

.sticky-cta a:last-child {
  border-right: 0;
}

@media (max-width: 920px) {
  .section-heading h2,
  .ambience-copy h2,
  .poster-copy h2 {
    font-size: 40px;
  }

  .dish-grid,
  .ambience-section,
  .branch-grid,
  .poster-section {
    grid-template-columns: 1fr;
  }

  .ambience-copy,
  .poster-copy {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header-inner {
    gap: 12px;
    min-height: 68px;
  }

  .site-brand span {
    display: none;
  }

  .site-brand img {
    height: 42px;
    width: 42px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    font-size: 13px;
    padding: 9px 11px;
  }

  .site-nav a:not(.nav-home):not(.nav-call) {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 68px);
    padding: 80px 0;
  }

  .hero-logo {
    width: 110px;
  }

  .eyebrow {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-offer {
    font-size: 17px;
  }

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

  .button {
    width: 100%;
  }

  .quick-panel {
    grid-template-columns: 1fr;
  }

  .quick-panel div {
    border-bottom: 1px solid rgba(232, 217, 181, 0.16);
    border-right: 0;
    padding: 20px;
  }

  .quick-panel div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-bottom: 70px;
    padding-top: 70px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .ambience-copy h2,
  .poster-copy h2 {
    font-size: 36px;
  }

  .dish-copy p {
    min-height: 0;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 480px) {
  .site-header-inner {
    width: 94%;
  }

  .site-brand img {
    height: 36px;
    width: 36px;
  }

  .site-nav a {
    font-size: 12px;
    padding: 8px 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section-heading h2,
  .ambience-copy h2,
  .poster-copy h2 {
    font-size: 32px;
  }

  .branch-card {
    padding: 26px;
  }

  .sticky-cta a {
    font-size: 12px;
    padding: 13px 5px;
  }
}
