:root {
  --bg: #0c0a08;
  --bg-soft: #14110d;
  --bg-card: #1a1611;
  --gold: #c9a45c;
  --gold-soft: #e8d5a3;
  --cream: #f4ead8;
  --muted: #b7aa96;
  --line: rgba(201, 164, 92, 0.22);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --font: "Outfit", "Noto Sans SC", system-ui, sans-serif;
  --serif: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  --zh: "Noto Serif SC", "Cormorant Garamond", serif;
}

html[lang="zh-CN"] {
  --font: "Noto Sans SC", "Outfit", system-ui, sans-serif;
  --serif: "Noto Serif SC", "Cormorant Garamond", serif;
}

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

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

html[lang="zh-CN"] .eyebrow {
  text-transform: none;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3 {
  letter-spacing: 0.06em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: #1a1308;
}

.btn-gold:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
}

.btn-ghost:hover {
  background: rgba(201, 164, 92, 0.12);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 6vw;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.nav.is-scrolled,
.nav.is-open {
  background: rgba(12, 10, 8, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

.nav-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-brand span {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.lang {
  display: flex;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 38px;
  padding: 0.38rem 0.65rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.lang button.is-active {
  background: var(--gold);
  color: #1a1308;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-cta {
  color: #1a1308 !important;
  background: var(--gold);
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 6px auto;
  background: var(--cream);
  transition: transform 0.2s ease;
}

.nav.is-open .nav-toggle span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav.is-open .nav-toggle span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 6vw 5.5rem;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.92);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.55) 0%, rgba(12, 10, 8, 0.72) 45%, rgba(12, 10, 8, 0.94) 100%);
}

.hero-inner {
  position: relative;
  max-width: 720px;
}

.hero-logo {
  width: 132px;
  height: 132px;
  margin: 0 auto 1.4rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line), var(--shadow);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 0.2rem 0 0.35rem;
}

.hero-zh {
  font-family: var(--zh);
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  margin-bottom: 1rem;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
  margin: 0 auto 1.8rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.story,
.dishes,
.sedi,
.visit {
  padding: 5.5rem 6vw;
}

.story-grid,
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.visit-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 2.2rem;
}

.visit-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.story-copy h2,
.visit-card h2,
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1.1rem;
}

.story-copy p,
.visit-card p,
.visit-card address,
.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
}

.story-copy p + p {
  margin-top: 0.9rem;
}

.story-copy em {
  color: var(--gold-soft);
  font-style: italic;
}

.story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1120px;
  margin: 0 auto;
}

.dish {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease;
}

.dish:hover {
  transform: translateY(-4px);
}

.dish img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.dish:nth-child(1) img { object-position: 80% 50%; }
.dish:nth-child(3) img { object-position: 30% 50%; }
.dish:nth-child(5) img { object-position: 20% 50%; }
.dish:nth-child(6) img { object-position: 70% 50%; }

.dish-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.dish-sub {
  font-family: var(--zh);
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.dish h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.dish-body p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.price {
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.menu-cta {
  text-align: center;
  margin-top: 2.4rem;
}

.sedi {
  background: var(--bg-soft);
}

.sede-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 1120px;
  margin: 0 auto;
}

.sede {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.sede-body {
  padding: 1.25rem 1.3rem 1.4rem;
}

.sede-body h3 {
  font-size: 1.55rem;
  margin-bottom: 0.4rem;
}

.sede-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.sede-meta {
  margin: 0.9rem 0 1.15rem;
  line-height: 1.5;
}

.sede-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.visit {
  background: var(--bg-soft);
}

.hours {
  margin-bottom: 1.4rem;
}

.hours strong,
address {
  font-style: normal;
  color: var(--cream);
  font-size: 1.2rem;
}

.visit-card address {
  display: block;
  margin-bottom: 1.4rem;
}

.phone-link {
  color: inherit;
  white-space: nowrap;
  font-size: 0.88em;
}

.phone-link:hover {
  color: var(--gold);
}

.map-wrap {
  max-width: 1120px;
  margin: 2.6rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 340px;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

.footer {
  border-top: 0;
}

.footer-row {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 6vw 2rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.footer-brand span,
.footer-phone,
.powered {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-phone {
  display: block;
  margin-top: 0.15rem;
}

.footer-phone:hover {
  color: var(--gold);
}

.powered a {
  color: var(--gold);
  letter-spacing: 0.04em;
}

.powered a:hover {
  color: var(--gold-soft);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    z-index: 2;
  }

  .nav-links {
    position: absolute;
    inset: 0 0 auto 0;
    top: 0;
    z-index: 1;
    padding: 5.4rem 6vw 1.6rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    background: #0c0a08;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav.is-open .nav-links {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .story-grid,
  .visit-grid,
  .dish-grid,
  .sede-grid {
    grid-template-columns: 1fr;
  }

  .story-photo img {
    height: 320px;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: 88vh;
    padding-top: 3rem;
  }

  .hero-logo {
    width: 104px;
    height: 104px;
  }

  .story,
  .dishes,
  .sedi,
  .visit {
    padding: 3.8rem 6vw;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.nl-band {
  padding: clamp(2rem, 4vw, 3.2rem) 6vw;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.nl-band__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.nl-band__copy h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.nl-band__copy p {
  color: var(--muted);
  max-width: 42ch;
}

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nl-form__row {
  display: flex;
  gap: 0.7rem;
}

.nl-form__row .btn {
  flex-shrink: 0;
}

.nl-form__row input[type="email"] {
  flex: 1;
  min-width: 0;
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--cream);
}

.nl-form__row input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.18);
}

.checkbox-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.checkbox-row input {
  margin-top: 0.28rem;
  accent-color: var(--gold);
}

.nl-form__consent label {
  color: var(--muted);
  font-size: 0.85rem;
}

.nl-form__consent a {
  color: var(--gold);
}

.nl-form__consent a:hover {
  color: var(--gold-soft);
}

.toast {
  display: none;
  margin-top: 0;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  font-size: 0.9rem;
}

.toast.is-visible {
  display: block;
}

.toast.toast--error {
  border-color: #8a3a3a;
  background: #2a1414;
  color: #f3c4c4;
}

button[type="submit"][aria-busy="true"] {
  opacity: 0.72;
  cursor: wait;
}

body.nl-modal-open {
  overflow: hidden;
}

.nl-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.nl-modal[hidden] {
  display: none !important;
}

.nl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.72);
}

.nl-modal__card {
  position: relative;
  width: min(440px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem 1.6rem 1.5rem;
  box-shadow: var(--shadow);
}

.nl-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--bg);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.nl-modal__close:hover {
  background: #2a241c;
}

.nl-modal__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

html[lang="zh-CN"] .nl-modal__kicker {
  text-transform: none;
  letter-spacing: 0.08em;
}

.nl-modal__card h2 {
  margin: 0 0 0.6rem;
  font-size: 1.55rem;
}

.nl-modal__card > p {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nl-modal .nl-form__row {
  flex-direction: column;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 5.5rem 6vw 4rem;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
}

.legal h2 {
  font-size: 1.25rem;
  margin: 1.8rem 0 0.6rem;
}

.legal p,
.legal li {
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.legal a {
  color: var(--gold);
}

@media (max-width: 820px) {
  .nl-band__inner {
    grid-template-columns: 1fr;
  }

  .nl-form__row {
    flex-direction: column;
  }
}
