:root {
  color-scheme: light;
  --red-950: #2c1514;
  --red-900: #4f1918;
  --red-800: #762421;
  --red-700: #92322d;
  --ink: #202423;
  --muted: #68716f;
  --paper: #f7f2e8;
  --paper-strong: #efe5d4;
  --white: #ffffff;
  --jade: #2f7667;
  --jade-dark: #24584f;
  --gold: #c79a45;
  --line: rgba(32, 36, 35, 0.14);
  --shadow: 0 24px 70px rgba(32, 36, 35, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family:
    "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: rgba(32, 24, 24, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.brand-mark span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.5vw, 30px);
  font-size: 0.94rem;
  font-weight: 900;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  color: var(--white);
  background: var(--jade);
  border-radius: 8px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: min(94svh, 860px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 34px;
  padding: 138px clamp(20px, 6vw, 80px) 64px;
  color: var(--white);
  background: var(--red-950);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  opacity: 0.78;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(27, 15, 14, 0.94), rgba(55, 22, 21, 0.76) 42%, rgba(55, 22, 21, 0.2)),
    linear-gradient(0deg, rgba(34, 16, 14, 0.72), rgba(34, 16, 14, 0.08));
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(32, 36, 35, 0.42);
}

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

.hero-badge span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 4.8rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 18px 0 0;
  font-size: 1.4rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  overflow-wrap: anywhere;
}

.hero-actions,
.social-actions,
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--jade);
  border-color: rgba(255, 255, 255, 0.12);
}

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

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button-secondary.dark {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(32, 36, 35, 0.46);
  box-shadow: var(--shadow);
}

.hero-panel span,
.hero-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel strong {
  display: block;
  margin: 10px 0;
  font-size: 2.15rem;
  line-height: 1.16;
}

.quick-info {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr 1fr;
  background: var(--jade);
  color: var(--white);
}

.quick-item {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px clamp(20px, 5vw, 80px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.quick-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.quick-item strong {
  font-size: 1.1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.section {
  padding: 82px clamp(20px, 6vw, 80px);
}

.about-section,
.visit-section {
  background: var(--paper);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  max-width: 1120px;
}

.split-layout h2,
.section-heading h2,
.social-card h2 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.prose p,
.section-heading p,
.menu-category-head p,
.info-item p,
.social-card p,
.source-note,
.signature-card p,
.map-panel p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.prose {
  display: grid;
  gap: 18px;
  font-size: 1.05rem;
}

.signature-section,
.menu-section {
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-top: 14px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 18px;
  max-width: 1180px;
}

.signature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.signature-card.large {
  grid-row: span 2;
}

.signature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.signature-card.large img {
  height: 430px;
}

.signature-card.brand-card img {
  background: var(--red-800);
}

.signature-card div {
  padding: 24px;
}

.signature-card span {
  color: var(--jade);
  font-size: 0.82rem;
  font-weight: 900;
}

.signature-card h3 {
  margin: 8px 0 10px;
  font-size: 1.45rem;
  line-height: 1.22;
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 0 0 24px;
}

.menu-sheets {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin-bottom: 48px;
}

.menu-sheet {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(32, 36, 35, 0.1);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.menu-sheet:hover {
  border-color: rgba(47, 118, 103, 0.48);
  transform: translateY(-1px);
}

.menu-sheet img {
  width: 100%;
  aspect-ratio: 3 / 4.25;
  object-fit: cover;
  object-position: top center;
  background: var(--paper);
}

.menu-sheet span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.3;
}

.menu-quick-heading {
  max-width: 1180px;
  margin-bottom: 18px;
}

.menu-quick-heading span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-quick-heading h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
}

.menu-tab {
  appearance: none;
  min-height: 42px;
  padding: 9px 16px;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-tab:hover,
.menu-tab.is-active {
  color: var(--white);
  border-color: var(--jade);
  background: var(--jade);
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
}

.menu-category {
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.menu-category[hidden] {
  display: none;
}

.menu-category-head {
  padding: 24px 26px 20px;
  color: var(--white);
  background: var(--red-800);
}

.menu-category-head span {
  display: block;
  margin-bottom: 10px;
  color: #f2cf92;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-category-head h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.2;
}

.menu-category-head p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.menu-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: baseline;
  padding: 16px 26px;
  border-top: 1px solid var(--line);
}

.menu-list strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.3;
}

.menu-list span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.source-note {
  max-width: 1180px;
  margin-top: 18px;
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

.source-note a {
  color: var(--jade);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  max-width: 1180px;
}

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

.info-item {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.info-item span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--jade);
  font-size: 0.82rem;
  font-weight: 900;
}

.info-item strong {
  display: block;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.24;
}

.map-panel {
  min-height: 100%;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 28px;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(rgba(79, 25, 24, 0.78), rgba(79, 25, 24, 0.78)),
    url("assets/family-dishes.jpg") center / cover;
}

.map-panel span {
  color: #f2cf92;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-panel h3 {
  margin: 8px 0 10px;
  font-size: 2rem;
  line-height: 1.15;
}

.map-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.social-section {
  background: var(--red-800);
}

.social-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 1180px;
  padding: clamp(28px, 5vw, 46px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(79, 25, 24, 0.55);
}

.social-card .section-kicker {
  color: #f2cf92;
}

.social-card p {
  max-width: 700px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.social-actions {
  margin-top: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 80px);
  color: var(--white);
  background: var(--ink);
}

.site-footer span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

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

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .hero,
  .split-layout,
  .signature-grid,
  .visit-layout,
  .social-card {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .map-panel {
    max-width: 460px;
  }

  .signature-card.large {
    grid-row: auto;
  }

  .signature-card.large img,
  .signature-card img {
    height: 300px;
  }

  .social-actions {
    margin-top: 4px;
  }

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

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    min-height: 104px;
    padding: 10px 16px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .header-action {
    display: none;
  }

  .nav-links {
    width: 100%;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: min(88svh, 780px);
    padding: 154px 20px 42px;
  }

  .hero-content {
    max-width: 350px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-actions,
  .social-actions,
  .map-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .quick-item {
    min-height: auto;
    padding: 18px 20px;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 58px 20px;
  }

  .split-layout,
  .section-heading,
  .signature-grid,
  .menu-sheets,
  .menu-quick-heading,
  .menu-toolbar,
  .menu-board,
  .visit-layout,
  .info-grid,
  .social-card {
    width: 100%;
    max-width: 350px;
  }

  .split-layout h2,
  .section-heading h2,
  .social-card h2 {
    font-size: 1.95rem;
  }

  .signature-card img,
  .signature-card.large img {
    height: 220px;
  }

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

  .menu-sheets {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .menu-tab {
    min-width: 0;
    width: 100%;
    white-space: normal;
  }

  .menu-tab:first-child {
    grid-column: 1 / -1;
  }

  .menu-board {
    grid-template-columns: 1fr;
  }

  .menu-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 15px 20px;
  }

  .menu-category-head {
    padding: 22px 20px 18px;
  }

  .info-item {
    min-height: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
