:root {
  --bg: #111111;
  --surface: #1a1a1a;
  --surface-alt: #202020;
  --text: #f4ead5;
  --muted: #d6c6a2;
  --gold: #d4a546;
  --red: #7d1f1f;
  --line: rgba(212, 165, 70, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: radial-gradient(circle at top, #1b1b1b 0%, #0f0f0f 60%, #0b0b0b 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(9px);
  background: rgba(16, 14, 12, 0.85);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.brand-cn {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  color: var(--gold);
  line-height: 1;
}

.brand h1 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.top-nav {
  display: flex;
  gap: 1rem;
}

.top-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
}

.top-nav a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.86) 20%, rgba(10, 10, 10, 0.5) 65%, rgba(10, 10, 10, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.hero h2 {
  font-family: "Noto Serif SC", serif;
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero p {
  max-width: 55ch;
  color: #efe3ca;
}

.button {
  display: inline-block;
  margin-top: 0.8rem;
  background: linear-gradient(135deg, #bc8f3f, #d4a546);
  color: #1b1308;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
}

.intro,
.gallery,
.menu-section,
.visit {
  padding: 3.5rem 0;
}

h3 {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.6rem, 2.7vw, 2.25rem);
  margin-top: 0;
  color: #f3dfb2;
}

.intro p,
.menu-note {
  color: #dfcfb2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery figcaption {
  padding: 0.65rem 0.8rem;
  color: #e4d4b8;
  font-size: 0.94rem;
}

.menu-stack {
  display: none;
  gap: 0.8rem;
}

.menu-stack img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-desktop {
  display: grid;
}

.visit {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1.4fr;
  align-items: start;
}

.contact-card {
  background: linear-gradient(175deg, #1f1b17, #15120f);
  border: 1px solid var(--line);
  padding: 1.2rem;
  border-radius: 12px;
}

.contact-card a {
  color: var(--gold);
}

.map-wrap iframe {
  width: 100%;
  min-height: 400px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0d0d0d;
  color: #c7b189;
}

.site-footer p {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-desktop {
    display: none;
  }

  .menu-tablet {
    display: grid;
  }

  .visit {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-nav {
    display: none;
  }

  .hero {
    min-height: 62vh;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-tablet {
    display: none;
  }

  .menu-mobile {
    display: grid;
  }
}
